pax_global_header00006660000000000000000000000064144604627150014523gustar00rootroot0000000000000052 comment=18fe5dfb025204f0d797ddde3d220e9682e9db70 sphinx-design-0.5.0/000077500000000000000000000000001446046271500143055ustar00rootroot00000000000000sphinx-design-0.5.0/.github/000077500000000000000000000000001446046271500156455ustar00rootroot00000000000000sphinx-design-0.5.0/.github/dependabot.yml000066400000000000000000000011301446046271500204700ustar00rootroot00000000000000# To get started with Dependabot version updates, you'll need to specify which # package ecosystems to update and where the package manifests are located. # Please see the documentation for all configuration options: # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: - package-ecosystem: github-actions directory: / commit-message: prefix: ⬆️ schedule: interval: monthly - package-ecosystem: pip directory: / commit-message: prefix: ⬆️ schedule: interval: monthly sphinx-design-0.5.0/.github/workflows/000077500000000000000000000000001446046271500177025ustar00rootroot00000000000000sphinx-design-0.5.0/.github/workflows/ci.yml000066400000000000000000000060741446046271500210270ustar00rootroot00000000000000name: continuous-integration on: push: branches: [main] tags: - 'v*' pull_request: jobs: pre-commit: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Python 3.8 uses: actions/setup-python@v4 with: python-version: 3.8 - uses: pre-commit/action@v3.0.0 tests: strategy: fail-fast: false matrix: os: [ubuntu-latest] python-version: ["3.8", "3.9", "3.10", "3.11"] sphinx-version: ["~=7.0"] include: - os: ubuntu-latest python-version: 3.8 sphinx-version: "~=5.0" - os: ubuntu-latest python-version: 3.8 sphinx-version: "~=6.0" - os: windows-latest python-version: 3.8 sphinx-version: "~=7.0" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} cache: pip - name: Install dependencies run: | python -m pip install --upgrade pip pip install --upgrade "sphinx${{ matrix.sphinx-version }}" -e .[testing] - name: Run pytest run: | pytest --cov=sphinx_design --cov-report=xml --cov-report=term-missing - name: Upload to Codecov if: matrix.python-version == '3.8' && matrix.os == 'ubuntu-latest' uses: codecov/codecov-action@v3 with: name: pytests flags: pytests file: ./coverage.xml fail_ci_if_error: true docs-build-format: runs-on: ubuntu-latest strategy: matrix: format: [html, latex, man] steps: - uses: actions/checkout@v3 - name: Set up Python 3.9 uses: actions/setup-python@v4 with: python-version: "3.9" cache: pip - name: Install dependencies run: | python -m pip install --upgrade pip pip install -e .[rtd] - name: Build documentation run: sphinx-build -nW --keep-going -b ${{ matrix.format }} docs/ docs/_build/${{ matrix.format }} # https://github.com/marketplace/actions/alls-green#why check: # This job does nothing and is only used for the branch protection if: always() needs: - pre-commit - tests - docs-build-format runs-on: ubuntu-latest steps: - name: Decide whether the needed jobs succeeded or failed uses: re-actors/alls-green@release/v1 with: jobs: ${{ toJSON(needs) }} publish: name: Publish to PyPi needs: [pre-commit, tests] if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') runs-on: ubuntu-latest steps: - name: Checkout source uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v4 with: python-version: 3.8 - name: install flit run: | pip install flit~=3.4 - name: Build and publish run: | flit publish env: FLIT_USERNAME: __token__ FLIT_PASSWORD: ${{ secrets.PYPI_KEY }} sphinx-design-0.5.0/.gitignore000066400000000000000000000040411446046271500162740ustar00rootroot00000000000000# OS files .DS_Store # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ cover/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder .pybuilder/ target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # pyenv # For a library or package, you might want to ignore these files since the code is # intended to run in multiple environments; otherwise, check them in: # .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. # However, in case of collaboration, if having platform-specific dependencies or dependencies # having no cross-platform support, pipenv may install dependencies that don't work, or not # install all needed dependencies. #Pipfile.lock # PEP 582; used by e.g. github.com/David-OConnor/pyflow __pypackages__/ # Celery stuff celerybeat-schedule celerybeat.pid # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ # pytype static type analyzer .pytype/ # Cython debug symbols cython_debug/ .vscode/ node_modules/ sphinx-design-0.5.0/.pre-commit-config.yaml000066400000000000000000000023101446046271500205620ustar00rootroot00000000000000# Install pre-commit hooks via # pre-commit install exclude: > (?x)^( \.vscode/settings\.json| tests/.*xml| tests/.*txt| )$ repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.4.0 hooks: - id: check-json - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/pycqa/isort rev: 5.12.0 hooks: - id: isort - repo: https://github.com/psf/black rev: 23.7.0 hooks: - id: black - repo: https://github.com/PyCQA/flake8 rev: 6.0.0 hooks: - id: flake8 additional_dependencies: [flake8-bugbear~=22.7] - repo: https://github.com/pre-commit/mirrors-mypy rev: v1.4.1 hooks: - id: mypy additional_dependencies: [] - repo: local hooks: - id: css name: css description: Compile the SCSS/SASS files to CSS inside the python package files: \.(scss|sass)$ language: node additional_dependencies: ['sass@1.35.2'] # entry: sass entry: npm run css require_serial: true pass_filenames: false # args: [--style=compressed, --no-source-map, style/index.scss, sphinx_design/compiled/style.min.css] sphinx-design-0.5.0/.readthedocs.yml000066400000000000000000000002611446046271500173720ustar00rootroot00000000000000version: 2 python: version: "3.8" install: - method: pip path: . extra_requirements: - rtd sphinx: builder: html fail_on_warning: true sphinx-design-0.5.0/CHANGELOG.md000066400000000000000000000201011446046271500161100ustar00rootroot00000000000000# Change Log ## 0.5.0 - 2023-07-27 ## What's Changed * ⬆️ Drop Python 3.7 support, by [@chrisjsewell](https://github.com/chrisjsewell)) in [#146](https://github.com/executablebooks/sphinx-design/pull/146) * ⬆️ UPGRADE: sphinx>=5,<8, by [@chrisjsewell](https://github.com/chrisjsewell)) in [#148](https://github.com/executablebooks/sphinx-design/pull/148) **Full Changelog**: ## v0.4.0 - 2023-04-13 **Full Changelog**: ### Enhancements made - Make default blue color a11y friendly. [#124](https://github.com/executablebooks/sphinx-design/pull/124) ([@feanil](https://github.com/feanil), [@choldgraf](https://github.com/choldgraf)) - Make card titles translatable [#113](https://github.com/executablebooks/sphinx-design/pull/113) ([@jpmckinney](https://github.com/jpmckinney), [@chrisjsewell](https://github.com/chrisjsewell)) ### Version upgrades - Sphinx 6.x. [#106](https://github.com/executablebooks/sphinx-design/pull/106) ([@marxin](https://github.com/marxin), [@choldgraf](https://github.com/choldgraf), [@srideep3](https://github.com/srideep3), [@jpmckinney](https://github.com/jpmckinney), [@akaszynski](https://github.com/akaszynski), [@benjaoming](https://github.com/benjaoming), [@codecov-commenter](https://github.com/codecov-commenter), [@spoorcc](https://github.com/spoorcc), [@nicoa](https://github.com/nicoa), [@LecrisUT](https://github.com/LecrisUT)) - Support for Python 3.11 [#105](https://github.com/executablebooks/sphinx-design/pull/105) ([@tirthasheshpatel](https://github.com/tirthasheshpatel), [@choldgraf](https://github.com/choldgraf), [@jpmckinney](https://github.com/jpmckinney), [@codecov-commenter](https://github.com/codecov-commenter)) ### Contributors to this release The following people contributed discussions, new ideas, code and documentation contributions, and review. See [our definition of contributors](https://github-activity.readthedocs.io/en/latest/#how-does-this-tool-define-contributions-in-the-reports). ([GitHub contributors page for this release](https://github.com/executablebooks/sphinx-design/graphs/contributors?from=2022-08-22&to=2023-04-12&type=c)) @akaszynski ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Aakaszynski+updated%3A2022-08-22..2023-04-12&type=Issues)) | @bastimeyer ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Abastimeyer+updated%3A2022-08-22..2023-04-12&type=Issues)) | @benjaoming ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Abenjaoming+updated%3A2022-08-22..2023-04-12&type=Issues)) | @choldgraf ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Acholdgraf+updated%3A2022-08-22..2023-04-12&type=Issues)) | @chrisjsewell ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Achrisjsewell+updated%3A2022-08-22..2023-04-12&type=Issues)) | @codecov-commenter ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Acodecov-commenter+updated%3A2022-08-22..2023-04-12&type=Issues)) | @feanil ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Afeanil+updated%3A2022-08-22..2023-04-12&type=Issues)) | @jpmckinney ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Ajpmckinney+updated%3A2022-08-22..2023-04-12&type=Issues)) | @LecrisUT ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3ALecrisUT+updated%3A2022-08-22..2023-04-12&type=Issues)) | @marxin ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Amarxin+updated%3A2022-08-22..2023-04-12&type=Issues)) | @mikemckiernan ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Amikemckiernan+updated%3A2022-08-22..2023-04-12&type=Issues)) | @nicoa ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Anicoa+updated%3A2022-08-22..2023-04-12&type=Issues)) | @pre-commit-ci ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Apre-commit-ci+updated%3A2022-08-22..2023-04-12&type=Issues)) | @spoorcc ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Aspoorcc+updated%3A2022-08-22..2023-04-12&type=Issues)) | @srideep3 ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Asrideep3+updated%3A2022-08-22..2023-04-12&type=Issues)) | @tirthasheshpatel ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Atirthasheshpatel+updated%3A2022-08-22..2023-04-12&type=Issues)) | @zerocewl ([activity](https://github.com/search?q=repo%3Aexecutablebooks%2Fsphinx-design+involves%3Azerocewl+updated%3A2022-08-22..2023-04-12&type=Issues)) ## v0.3.0 - 2022-08-22 - ⬆️ Update Materials Design Icons to v4.0.0-46-gc9e5528, thanks to @2bndy5 (#69) - 🐛 FIX: dropdown/tab-item `:name:` options (#91) - 🐛 FIX: Docs build against non-html formats (#88) - 👌 IMPROVE: Add card options `class-img-top`/`class-img-bottom` (#92) - 👌 IMPROVE: Add `link-alt` to fix card link accessibility (#89) - adds the `link-alt` option to `card` (and `grid-item-card`) directives, in order to assign a discernable name to the link (for screen readers). - 👌 IMPROVE: Make tab ids deterministic (#93) - Use increasing indices, rather than UUIDs - 🔧 MAINTAIN: Fix docutils `PendingDeprecationWarning` (#94) - 📚 DOCS: Update font awesome icons (#64) **Full Changelog**: ## v0.2.0 - 2022-06-14 - ⬆️ Support Sphinx v5, drop v3 - ⬆️ Add Python 3.10 support **Full Changelog**: ## v0.1.0 - 2022-04-21 - ✨ NEW: Add material design icons roles, thanks to @2bndy5 in [#41](https://github.com/executablebooks/sphinx-design/pull/41) - ⬆️ UPGRADE: octicons to v16.1.1, thanks to @pocek in [#43](https://github.com/executablebooks/sphinx-design/pull/43) - 🐛 FIX: Links in card titles by @chrisjsewell in [#59](https://github.com/executablebooks/sphinx-design/pull/59) - 🐛 FIX: Exception on missing card link by @chrisjsewell in [#60](https://github.com/executablebooks/sphinx-design/pull/60) - 🔧 MAINTAIN: Move from setuptools to flit for package build by @chrisjsewell in [#58](https://github.com/executablebooks/sphinx-design/pull/58) - 🔧 MAINTAIN: Drop furo-specific stylesheet, thanks to @pradyunsg in [#22](https://github.com/executablebooks/sphinx-design/pull/22) **Full Changelog**: ## v0.0.13 - 2021-10-27 ✨ NEW: add icon `far` role (#35), thanks to @OriolAbril 👌 IMPROVE: Styling for tabs (#21), thanks to @pradyunsg 👌 IMPROVE: Properly remove the border on dropdown card body (#23), thanks to @pradyunsg 🐛 FIX: `sd-outline-*` classes color (#25) ## v0.0.11 - 2021-09-08 ✨ NEW: Add `ref-type` option to `button-ref` directive ## v0.0.10 - 2021-08-08 ✨ NEW: Add `grid-item` directive `child-direction` and `child-align` options ✨ NEW: Add `card` directive `img-background` option ## v0.0.9 - 2021-06-08 ♻️ REFACTOR: `test_sd_hide_root_title` to `sd_hide_title` front-matter 👌 IMPROVE: dropdown chevrons ## v0.0.8 - 2021-06-08 ✨ NEW: Add `test_sd_hide_root_title` config option to hide the root title. 👌 IMPROVE: `sd-card-hover:hover` add scale 101% 📚 DOCS: Update landing page ## v0.0.7 - 2021-05-08 ✨ NEW: Add `reverse` option for `grid` directive ✨ NEW: Add animations ## v0.0.6 - 2021-04-08 ✨ NEW: Add `card-carousel` directive ## v0.0.5 - 2021-28-07 👌 IMPROVE: Make octicon's size variable ## v0.0.4 - 2021-28-07 👌 IMPROVE: Allow `auto` for grid columns ## v0.0.3 - 2021-26-07 👌 IMPROVE: Add more CSS classes and add documentation 📚 ## v0.0.2 - 2021-23-07 Improve documentation 📚 ## v0.0.1 - 2021-22-07 Initial release 🎉 sphinx-design-0.5.0/LICENSE000066400000000000000000000021131446046271500153070ustar00rootroot00000000000000MIT License Copyright (c) 2023 Chris Sewell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS 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. sphinx-design-0.5.0/README.md000066400000000000000000000060521446046271500155670ustar00rootroot00000000000000# sphinx-design [![Github-CI][github-ci]][github-link] [![Coverage Status][codecov-badge]][codecov-link] [![PyPI][pypi-badge]][pypi-link] A sphinx extension for designing beautiful, view size responsive web components. Created with inspiration from [Bootstrap](https://getbootstrap.com/) (v5), [Material Design](https://material.io) and [Material-UI](https://material-ui.com/) design frameworks. ## Usage Simply pip install `sphinx-design` and add the extension to your `conf.py`: ```python extensions = ["sphinx_design"] ``` ## Supported browsers - Chrome >= 60 - Firefox >= 60 - Firefox ESR - iOS >= 12 - Safari >= 12 - Explorer >= 12 (Mirrors: ) ## Theme support View the documentation in multiple themes: - [alabaster](https://sphinx-design.readthedocs.io/en/alabaster-theme) - [sphinx-book-theme](https://sphinx-design.readthedocs.io/en/sbt-theme) - [pydata-sphinx-theme](https://sphinx-design.readthedocs.io/en/pydata-theme) - [sphinx-rtd-theme](https://sphinx-design.readthedocs.io/en/rtd-theme) - [furo](https://sphinx-design.readthedocs.io/en/furo-theme) ## Comparison to sphinx-panels This package is an iteration on [sphinx-panels](https://github.com/executablebooks/sphinx-panels) and intends to replace it. See [Migrating from sphinx-panels](./docs/get_started.md) for more information. ## Development It is recommended to use [tox](https://tox.readthedocs.io/en/latest/) to run the tests and document builds. Run `tox -va` to see all the available tox environments. To run linting, formatting and SASS compilation, use [pre-commit](https://pre-commit.com/). `pre-commit run --all css` will run the SASS compiler, for which you will need [node](https://nodejs.org) and [npm](https://www.npmjs.com/) installed, or you can directly run `npm run css`. ## TODO - note design goal; to be flexible, but limit the amount of directive nesting required. This factors in to - card header/footer syntax? (don't really want to have to use separate directives for these, hence `^^^`/`+++` syntax) - auto-wrap `grid-item` and `tab-item`, if not already inside `grid` or `tab-set`? grids items cannot contain headers; is this in anyway possible with docutils structure? naming of directives/roles: standard prefix? why are cards setup with "word-wrap: break-word;"? handle latex Use autoprefixer when compiling SASS (see ) horizontal card (grid row inside card, picture on left) subtitle for card (see ) rtd PRs not working [github-ci]: https://github.com/executablebooks/sphinx-design/workflows/continuous-integration/badge.svg?branch=main [github-link]: https://github.com/executablebooks/sphinx-design [codecov-badge]: https://codecov.io/gh/executablebooks/sphinx-design/branch/main/graph/badge.svg [codecov-link]: https://codecov.io/gh/executablebooks/sphinx-design [pypi-badge]: https://img.shields.io/pypi/v/sphinx-design.svg [pypi-link]: https://pypi.org/project/sphinx-design sphinx-design-0.5.0/codecov.yml000066400000000000000000000002421446046271500164500ustar00rootroot00000000000000coverage: status: project: default: target: 90% threshold: 0.2% patch: default: target: 75% threshold: 0.2% sphinx-design-0.5.0/docs/000077500000000000000000000000001446046271500152355ustar00rootroot00000000000000sphinx-design-0.5.0/docs/_static/000077500000000000000000000000001446046271500166635ustar00rootroot00000000000000sphinx-design-0.5.0/docs/_static/logo_square.svg000066400000000000000000000060031446046271500217230ustar00rootroot00000000000000 sphinx-design-0.5.0/docs/_static/logo_wide.svg000066400000000000000000000251001446046271500213520ustar00rootroot00000000000000 sphinx-design-0.5.0/docs/additional.md000066400000000000000000000032231446046271500176670ustar00rootroot00000000000000(special)= # Additional These are additional components that are not part of the standard Materials Design or Bootstrap systems. ## `article-info` This directive is used to display a block of information about an article, normally positioned just below the title of the article (shown below with non-standard outline). ```{article-info} :avatar: images/ebp-logo.png :avatar-link: https://executablebooks.org/ :avatar-outline: muted :author: Executable Books :date: "Jul 24, 2021" :read-time: "5 min read" :class-container: sd-p-2 sd-outline-muted sd-rounded-1 ``` `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/article-info.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/article-info.txt :language: rst ``` ```` ````` The `author`, `date`, and `read-time` options are parsed as syntax, so you can use substitutions like: - `date` - MyST: `` :date: "{sub-ref}`today`" `` - RST: `:data: |today|` - `read-time` - MyST: `` :read-time: "{sub-ref}`wordcount-minutes` min read" `` ### options avatar : A URI (relative file path or URL) to an image for use as the avatar (a user portrait, logo or branded graphic). avatar-alt : Alternative text for the avatar. avatar-link : A URL to link to if the avatar icon is clicked. avatar-outline : A semantic color to use for the outline of the avatar. author : Text to display in the author of of the article. date : Text to display in the date of the article. read-time : Text to indicate the time to read the article. class-container : Additional CSS classes for the container element. class-avatar : Additional CSS classes for the avatar element. sphinx-design-0.5.0/docs/badges_buttons.md000066400000000000000000000177231446046271500205740ustar00rootroot00000000000000# Badges, Buttons & Icons {octicon}`rocket` (badges)= ## Badges Inline badges can be used as a labelling component. Badges are available in each semantic color, with filled and outline variants: - {bdg}`plain badge` - {bdg-primary}`primary`, {bdg-primary-line}`primary-line` - {bdg-secondary}`secondary`, {bdg-secondary-line}`secondary-line` - {bdg-success}`success`, {bdg-success-line}`success-line` - {bdg-info}`info`, {bdg-info-line}`info-line` - {bdg-warning}`warning`, {bdg-warning-line}`warning-line` - {bdg-danger}`danger`, {bdg-danger-line}`danger-line` - {bdg-light}`light`, {bdg-light-line}`light-line` - {bdg-dark}`dark`, {bdg-dark-line}`dark-line` `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/badge-basic.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/badge-basic.txt :language: rst ``` ```` ````` `bdg-link-` and `bdg-ref-` variants are also available for use with links and references. The syntax is the same as for the `ref` role. {bdg-link-primary}`https://example.com` {bdg-link-primary-line}`explicit title ` {bdg-ref-primary}`badges` `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/badge-link.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/badge-link.txt :language: rst ``` ```` ````` See [Bootstrap badges](https://getbootstrap.com/docs/5.0/components/badge/) for more information, and related [Material Design chips](https://material.io/components/chip). (buttons)= ## Buttons Buttons allow users to navigate to external (`button-link`) / internal (`button-ref`) links with a single tap. ```{button-link} https://example.com ``` ```{button-link} https://example.com Button text ``` ```{button-link} https://example.com :color: primary :shadow: ``` ```{button-link} https://example.com :color: primary :outline: ``` ```{button-link} https://example.com :color: secondary :expand: ``` ```{button-ref} buttons :color: info ``` ```{button-ref} buttons :color: info Reference Button text ``` `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/button-link.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/button-link.txt :language: rst ``` ```` ````` Note that by default sphinx converts the content of references to raw text. For example `**Bold text**` with `ref-type` set to `ref` will be rendered without bold: ```{button-ref} buttons :ref-type: ref :color: primary **Bold text** ``` However, if using [myst-parser](https://myst-parser.readthedocs.io/), you can set the `ref-type` to `myst`, and the content will be properly rendered: ```{button-ref} buttons :ref-type: myst :color: primary **Bold text** ``` Use the `click-parent` option to make the button's parent container also clickable. :::{card} Card with an expanded button ```{button-link} https://example.com :color: info :expand: :click-parent: ``` ::: See the [Material Design](https://material.io/components/buttons) and [Bootstrap](https://getbootstrap.com/docs/5.0/components/buttons/) descriptions for further details. ### `button-link` and `button-ref` options ref-type (`button-ref` only) : Type of reference to use; `any` (default), `ref`, `doc`, or `myst` color : Set the color of the button (background and font). One of the semantic color names: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`, `muted`. outline : Outline color variant align : Align the button on the page; `left`, `right`, `center` or `justify` expand : Expand to fit parent width click-parent : Make parent container also clickable tooltip : Add tooltip on hover shadow : Add shadow CSS class : Additional CSS classes (icons)= ## Inline Icons Inline icon roles are available for the [GitHub octicon](https://primer.style/octicons/), [Google Material Design Icons](https://github.com/google/material-design-icons), or [FontAwesome](https://fontawesome.com/icons?d=gallery&m=free) libraries. Octicon icons and Material icons are added as SVG's directly into the page with the `octicon` and `material-` roles. See below for the different flavors of Material Design Icons. By default the icon will be of height `1em` (i.e. the height of the font). A specific height can be set after a semi-colon (`;`) with units of either `px`, `em` or `rem`. Additional CSS classes can also be added to the SVG after a second semi-colon (`;`) delimiter. ### Octicon Icons A coloured icon: {octicon}`report;1em;sd-text-info`, some more text. ````{tab-set-code} ```{literalinclude} ./snippets/myst/icon-octicon.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/icon-octicon.txt :language: rst ``` ```` ````{dropdown} All Octicons :open: ```{_all-octicon} ``` ```` ### Material Design Icons Material Design icons come as several flavors. Each flavor represents a different role used in sphinx-design. These flavors are: - `material-regular` - `material-outlined` - `material-round` - `material-sharp` - `material-twotone` Not all icons are available for each flavor, but most are. Instead of displaying the 10660+ icons here, you are encouraged to browse the available icons from the [Material Design Icons' showcase](https://fonts.google.com/icons) hosted by Google. - A regular icon: {material-regular}`data_exploration;2em`, some more text - A coloured regular icon: {material-regular}`settings;3em;sd-text-success`, some more text. - A coloured outline icon: {material-outlined}`settings;3em;sd-text-success`, some more text. - A coloured sharp icon: {material-sharp}`settings;3em;sd-text-success`, some more text. - A coloured round icon: {material-round}`settings;3em;sd-text-success`, some more text. - A coloured two-tone icon: {material-twotone}`settings;3em;sd-text-success`, some more text. ````{tab-set-code} ```{literalinclude} ./snippets/myst/icon-material-design.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/icon-material-design.txt :language: rst ``` ```` ### FontAwesome Icons FontAwesome icons are added via the Fontawesome CSS classes. If the theme you are using does not already include the FontAwesome CSS, it should be loaded in your configuration from a [font-awesome CDN](https://cdnjs.com/libraries/font-awesome), with the [html_css_files](https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_css_files) option, e.g.: ```python html_css_files = [ "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" ] ``` Use either `fa` (deprecated in font-awesome v5), `fas`, `fab` or `far` for the role name. Note that not all regular style icons are free, `far` role only works with free ones. ````{warning} Since the FontAwesome icons are fetched directly from their distributed CSS, specifying a height/size to the `fa*` roles is not supported. However, you can always add your custom CSS class that controls the `font-size` property. If a height/size is supplied to a `fa*` role, then it will be interpreted as a CSS class. There can only be a maximum of 1 `;` in the `fa*` roles' arguments ```` ````{tab-set-code} ```markdown - An icon {fas}`spinner;sd-text-primary`, some more text. - An icon {fab}`github`, some more text. - An icon {fab}`gitkraken;sd-text-success fa-xl`, some more text. - An icon {fas}`skull;sd-text-danger`, some more text. ``` ```rst - An icon :fas:`spinner;sd-text-primary`, some more text. - An icon :fab:`github`, some more text. - An icon :fab:`gitkraken;sd-text-success fa-xl`, some more text. - An icon :fas:`skull;sd-text-danger`, some more text. ``` ```` - An icon {fas}`spinner;sd-text-primary`, some more text. - An icon {fab}`github`, some more text. - An icon {fab}`gitkraken;sd-text-success fa-xl`, some more text. - An icon {fas}`skull;sd-text-danger`, some more text. By default, icons will only be output in HTML formats. But if you want FontAwesome icons to be output on LaTeX, using the [fontawesome package](https://ctan.org/pkg/fontawesome), you can add to your configuration: ```python sd_fontawesome_latex = True ``` sphinx-design-0.5.0/docs/cards.md000066400000000000000000000127141446046271500166600ustar00rootroot00000000000000(sd-cards)= # Cards Cards contain content and actions about a single subject. A card is a flexible and extensible content container, it can be formatted with components including headers and footers, titles and images. :::{card} Card Title Card content ::: See the [Material Design](https://material.io/components/cards) and [Bootstrap card](https://getbootstrap.com/docs/5.0/layout/grid/) descriptions for further details. `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/card-basic.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/card-basic.txt :language: rst ``` ```` ````` All content before the first occurrence of three or more `^^^` is considered as a header, and all content after the final occurrence of three or more `+++` is considered as a footer: :::{card} Card Title Header ^^^ Card content +++ Footer ::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/card-head-foot.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/card-head-foot.txt :language: rst ``` ```` ````` When using cards in grids (see [`grid-item-card`](./grids.md)) footers can be aligned. ::::{grid} 2 :::{grid-item-card} Card Title Header ^^^ Card content +++ Footer ::: :::{grid-item-card} Card Title Header ^^^ Longer Card content +++ Footer ::: :::: ## Card images You can also add an image as the background of a card or at the top/bottom of the card, with the `img-background`, `img-top`, `img-bottom` options: :::::{grid} 2 3 3 4 ::::{grid-item} :::{card} Title :img-background: images/particle_background.jpg :class-card: sd-text-black :img-alt: your desired alt text Text ::: :::: ::::{grid-item-card} Title :img-top: images/particle_background.jpg :img-alt: your desired alt text Header ^^^ Content +++ Footer :::: ::::{grid-item-card} Title :img-bottom: images/particle_background.jpg :img-alt: your desired alt text Header ^^^ Content +++ Footer :::: ::::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/card-images.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/card-images.txt :language: rst ``` ```` ````` (cards-clickable)= ## Clickable cards Using the `link` and `link-type` options, you can turn an entire card into a clickable link. Try hovering over then clicking on the cards below: :::{card} Clickable Card (external) :link: https://example.com :link-alt: example The entire card can be clicked to navigate to . ::: :::{card} Clickable Card (internal) :link: cards-clickable :link-type: ref :link-alt: cards-clickable The entire card can be clicked to navigate to the `cards-clickable` reference target. ::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/card-link.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/card-link.txt :language: rst ``` ```` ````` ## Aligning cards You can use the `text-align` option to align the text in a card, and also `auto` margins to align the cards horizontally. :::{card} Align Center :width: 75% :margin: 0 2 auto auto :text-align: center Content ::: :::{card} Align Right :width: 50% :margin: 0 2 auto 0 :text-align: right Content ::: :::{card} Align Left :width: 50% :margin: 0 2 0 auto :text-align: left Content ::: (cards:carousel)= ## Card carousels The `card-carousel` directive can be used to create a single row of fixed width, scrollable cards. The argument should be a number between 1 and 12, to denote the number of cards to display. When scrolling a carousel, the scroll will snap to the start of the nearest card: ::::{card-carousel} 2 :::{card} card 1 content ::: :::{card} card 2 Longer content ::: :::{card} card 3 ::: :::{card} card 4 ::: :::{card} card 5 ::: :::{card} card 6 ::: :::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/card-carousel.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/card-carousel.txt :language: rst ``` ```` ````` (cards:options)= ## `card` options width : The width that the card should take up (in %): auto, 25%, 50%, 75%, 100%. margin : Outer margin of grid. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto. text-align : Default horizontal text alignment: left, right, center or justify img-background : A URI (relative file path or URL) to an image to be placed below the content. img-top : A URI (relative file path or URL) to an image to be placed above the content. img-bottom : A URI (relative file path or URL) to an image to be placed below the content. img-alt : Alternative text for the image (that will be used by screen-readers). link : Turn the entire card into a clickable link to an external/internal target. link-type : Type of link: `url` (default), `ref`, `doc`, `any`. link-alt : Alternative text for the link (that will be used by screen-readers). shadow : The size of the shadow below the card: `none`, `sm` (default), `md`, `lg`. class-card : Additional CSS classes for the card container element. class-header : Additional CSS classes for the header element. class-body : Additional CSS classes for the body element. class-title : Additional CSS classes for the title element. class-footer : Additional CSS classes for the footer element. class-img-top : Additional CSS classes for the top image (if present). class-img-bottom : Additional CSS classes for the bottom image (if present). sphinx-design-0.5.0/docs/conf.py000066400000000000000000000052231446046271500165360ustar00rootroot00000000000000"""Configuration file for the Sphinx documentation builder.""" import os project = "Sphinx Design" copyright = "2021, Executable Book Project" author = "Executable Book Project" extensions = ["myst_parser", "sphinx_design"] suppress_warnings = ["design.fa-build"] sd_fontawesome_latex = True html_theme = os.environ.get("SPHINX_THEME", "alabaster") html_title = f"Sphinx Design ({html_theme.replace('_', '-')})" html_static_path = ["_static"] html_logo = "_static/logo_wide.svg" html_favicon = "_static/logo_square.svg" if html_theme not in ("sphinx_book_theme", "pydata_sphinx_theme"): html_css_files = [ "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" ] if html_theme == "alabaster": html_logo = "" html_theme_options = { "logo": "logo_wide.svg", "logo_name": False, "description": "(alabaster theme)", "github_button": False, "github_type": "star", "github_banner": False, "github_user": "executablebooks", "github_repo": "sphinx-design", } if html_theme == "sphinx_book_theme": html_theme_options = { "repository_url": "https://github.com/executablebooks/sphinx-design", "use_repository_button": True, "use_edit_page_button": True, "use_issues_button": True, "repository_branch": "main", "path_to_docs": "docs", "home_page_in_toc": False, } if html_theme == "furo": html_css_files = [ "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/fontawesome.min.css" ] html_theme_options = { "sidebar_hide_name": True, } if html_theme == "sphinx_rtd_theme": html_theme_options = { "logo_only": True, } exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] myst_enable_extensions = ["colon_fence", "deflist", "substitution", "html_image"] myst_substitutions = { "loremipsum": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. " "Sed iaculis arcu vitae odio gravida congue. Donec porttitor ac risus et condimentum. " "Phasellus bibendum ac risus a sollicitudin. " "Proin pulvinar risus ac mauris aliquet fermentum et varius nisi. " "Etiam sit amet metus ac ipsum placerat congue semper non diam. " "Nunc luctus tincidunt ipsum id eleifend. Ut sed faucibus ipsum. " "Aliquam maximus dictum posuere. Nunc vitae libero nec enim tempus euismod. " "Aliquam sed lectus ac nisl sollicitudin ultricies id at neque. " "Aliquam fringilla odio vitae lorem ornare, sit amet scelerisque orci fringilla. " "Nam sed arcu dignissim, ultrices quam sit amet, commodo ipsum. " "Etiam quis nunc at ligula tincidunt eleifend." } sphinx-design-0.5.0/docs/css_classes.md000066400000000000000000000162651446046271500200760ustar00rootroot00000000000000# CSS Classes For most roles/directive, it is preferentially recommended to use the available options to style components since, for example, this allows for better cross-output-format styling. But for custom cases, these roles/directives also provide `class` options for adding CSS classes directly to element, or you can directly use the `div` directive. All CSS classes that are part of sphinx-design are prefixed with `sd-`. :::{div} sd-text-center sd-font-italic sd-text-primary Some CSS styled text ::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/div-basic.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/div-basic.txt :language: rst ``` ```` ````` If you find yourself using a class(es) often, consider opening an issue to request a new role/directive or option! The `div` directive also has the `style` option, which allows you to add inline CSS styles, although it is not recommended to use this option for most cases. ## Text Classes are available for styling and alignment: - Alignment: - `sd-text-justify` - `sd-text-left` - `sd-text-right` - `sd-text-center` - Size (size decreases from 1 to 6): - `sd-fs-1` - `sd-fs-2` - `sd-fs-3` - `sd-fs-4` - `sd-fs-5` - `sd-fs-6` - Weight: - `sd-font-weight-light` - `sd-font-weight-lighter` - `sd-font-weight-normal` - `sd-font-weight-bold` - `sd-font-weight-bolder` - Style - `sd-font-italic` - `sd-text-decoration-none` - `sd-text-lowercase` - `sd-text-uppercase` - `sd-text-capitalize` - Wrapping - `sd-text-wrap` - `sd-text-nowrap` - `sd-text-truncate` (requires `display: inline-block` or `display: block`) - Color - `sd-text-{semantic color name}` (uses `--sd-color-{semantic color name}` CSS variable) - `sd-bg-text-{semantic color name}` (uses `--sd-color-{semantic color name}-text` CSS variable) ## Display Define the layout of an element and its children (see [`display`](https://developer.mozilla.org/en-US/docs/Web/CSS/display)): - `sd-d-none` - `sd-d-inline` - `sd-d-inline-block` - `sd-d-block` - `sd-d-grid` - `sd-d-flex-row` (align items horizontally) - `sd-d-flex-column` (align items vertically) - `sd-d-inline-flex` Variants are also available for screen-sizes (xs, sm, md, lg), e.g. `sd-d-sm-none`. Items within a flex box can also be aligned along the major axis or minor axis, dependant on the flex-direction. For example, using `sd-d-flex-column` and `sd-align-major-center` will center the items in the vertical direction. - `sd-align-major-start` - `sd-align-major-end` - `sd-align-major-center` - `sd-align-major-spaced` (spaced to fill the full axis) - `sd-align-major-justify` (spaced to fill the full axis, with the first/last item on the edges of the axis) - `sd-align-minor-start` - `sd-align-minor-end` - `sd-align-minor-center` For more information, see [this guide to flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/). ## Sizing Size objects width/height by percentage: - `sd-width-25`, `sd-height-25` - `sd-width-50`, `sd-height-50` - `sd-width-75`, `sd-height-75` - `sd-width-100`, `sd-height-100` - `sd-width-auto`, `sd-height-auto` ## Spacing Padding (`p`) and margins (`m`) can be controlled with these classes for; (`t`)op, (`r`)ight, (`b`)ottom, (`l`)eft, `x` (left and right), and `y` (top and bottom). Spacing are defined on a scale of 0 to 5, for example `sd-px-1` or `sd-mt-5`. Note, for grids the special gutter classes `sd-g-{screen-size}-{spacing}` are used to set margins, or for only `x`/`y`; `sd-gx-{screen-size}-{spacing}`. ## Colors Colors can be set using [CSS variable](./css_variables.md), they are defined for the semantic color names: `primary`, `secondary`, `success`, `warning`, `danger`, `info`, `light`, `dark`, and `muted`, and specific colors `black` and `white`. - `sd-bg-{name}` - `sd-bg-text-{name}` - `sd-text-{name}` - `sd-outline-{name}` Additional transparent colouring: - `sd-bg-transparent` - `sd-outline-transparent` - `sd-text-transparent` ## Borders Borders can be applied to elements of thickness 0 to 5, for all are a specific side: - `sd-border-{thickness}` - `sd-border-top-{thickness}` - `sd-border-bottom-{thickness}` - `sd-border-right-{thickness}` - `sd-border-left-{thickness}` ````{grid} 1 2 3 3 :gutter: 1 ```{grid-item-card} :shadow: none :class-card: sd-border-0 `sd-border-0` ``` ```{grid-item-card} :shadow: none :class-card: sd-border-1 `sd-border-1` ``` ```{grid-item-card} :shadow: none :class-card: sd-border-2 `sd-border-2` ``` ```{grid-item-card} :shadow: none :class-card: sd-border-3 `sd-border-3` ``` ```{grid-item-card} :shadow: none :class-card: sd-border-4 `sd-border-4` ``` ```{grid-item-card} :shadow: none :class-card: sd-border-5 `sd-border-5` ``` ```` Border can be rounded by different amounts using: - `sd-rounded-0` - `sd-rounded-1` - `sd-rounded-2` - `sd-rounded-3` - `sd-rounded-pill` - `sd-rounded-circle` ````{grid} 1 2 3 3 :gutter: 1 ```{grid-item-card} :shadow: none :class-card: sd-rounded-0 `sd-rounded-0` ``` ```{grid-item-card} :shadow: none :class-card: sd-rounded-1 `sd-rounded-1` ``` ```{grid-item-card} :shadow: none :class-card: sd-rounded-2 `sd-rounded-2` ``` ```{grid-item-card} :shadow: none :class-card: sd-rounded-3 `sd-rounded-3` ``` ```{grid-item-card} :shadow: none :class-card: sd-rounded-pill `sd-rounded-pill` ``` ```{grid-item-card} :shadow: none :class-card: sd-rounded-circle `sd-rounded-circle` ``` ```` ## Shadows Shadows can be applied to box elements (the color of the shadow is defined using `--sd-color-shadow` CSS variable): - `sd-shadow-none` - `sd-shadow-sm` - `sd-shadow-md` - `sd-shadow-lg` ````{grid} 1 2 3 4 :gutter: 3 ```{grid-item-card} :shadow: none `sd-shadow-none` ``` ```{grid-item-card} :shadow: sm `sd-shadow-sm` ``` ```{grid-item-card} :shadow: md `sd-shadow-md` ``` ```{grid-item-card} :shadow: lg `sd-shadow-lg` ``` ```` ## Avatars Avatars can represent a user or a brand,with a logo or branded graphic ([see Material Design imagery](https://material.io/design/communication/imagery.html#informational-imagery)). These classes center an image, set their size and add a circular crop: - `sd-avatar-xs` - `sd-avatar-sm` - `sd-avatar-md` - `sd-avatar-lg` - `sd-avatar-xl` - `sd-avatar-inherit` - `sd-avatar-initial` ````{grid} 1 2 3 3 :gutter: 1 ```{grid-item-card} sd-avatar-xs ``` ```{grid-item-card} sd-avatar-sm ``` ```{grid-item-card} sd-avatar-md ``` ```{grid-item-card} sd-avatar-lg ``` ```{grid-item-card} sd-avatar-xl ``` ```` ## Load Animations Add CSS animations when loading elements using the `sd-animate-{name}` classes: - `sd-animate-slide-from-left` - `sd-animate-slide-from-right` - `sd-animate-grow100` - `sd-animate-grow50` - `sd-animate-grow50-rot20` See [uxdesign.cc](https://uxdesign.cc/the-ultimate-guide-to-proper-use-of-animation-in-ux-10bd98614fa9) and [material.io](https://material.io/design/motion/understanding-motion.html#user-education) for good guides to animation. sphinx-design-0.5.0/docs/css_variables.md000066400000000000000000000053361446046271500204060ustar00rootroot00000000000000# CSS Variables All colors used by sphinx-design are defined as [CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties). Therefore they can be overriden by adding a `.css` file in a `_static` folder in your projects source folder (see [the sphinx documentation](https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_css_files)): ```python html_static_path = ['_static'] html_css_files = ['custom.css'] ``` For colors, there are nine semantic colors that can be defined. For each of these colors you should define: - `--sd-color-{name}` as the actual color - `--sd-color-{name}-highlight` as the color used when the component is highlighted (e.g. if hovering over a button). By default, this is a 15% darker version of the original color. - `--sd-color-{name}-text` as the color to use for text displayed on top of the color. By default, this is dark grey for light colors and white for dark colors. The defaults are: ```css :root { --sd-color-primary: #007bff; --sd-color-secondary: #6c757d; --sd-color-success: #28a745; --sd-color-info: #17a2b8; --sd-color-warning: #f0b37e; --sd-color-danger: #dc3545; --sd-color-light: #f8f9fa; --sd-color-muted: #6c757d; --sd-color-dark: #212529; --sd-color-primary-highlight: #0069d9; --sd-color-secondary-highlight: #5c636a; --sd-color-success-highlight: #228e3b; --sd-color-info-highlight: #148a9c; --sd-color-warning-highlight: #cc986b; --sd-color-danger-highlight: #bb2d3b; --sd-color-light-highlight: #d3d4d5; --sd-color-muted-highlight: #5c636a; --sd-color-dark-highlight: #1c1f23; --sd-color-primary-text: #fff; --sd-color-secondary-text: #fff; --sd-color-success-text: #fff; --sd-color-info-text: #fff; --sd-color-warning-text: #212529; --sd-color-danger-text: #fff; --sd-color-light-text: #212529; --sd-color-muted-text: #fff; --sd-color-dark-text: #fff; --sd-color-shadow: rgba(0, 0, 0, 0.15); --sd-color-card-border: rgba(0, 0, 0, 0.125); --sd-color-card-border-hover: hsla(231, 99%, 66%, 1); --sd-color-card-background: transparent; --sd-color-card-text: inherit; --sd-color-card-header: transparent; --sd-color-card-footer: transparent; --sd-color-tabs-label-active: hsla(231, 99%, 66%, 1); --sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1); --sd-color-tabs-label-inactive: hsl(0, 0%, 66%); --sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1); --sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62); --sd-color-tabs-underline-inactive: transparent; --sd-color-tabs-overline: rgb(222, 222, 222); --sd-color-tabs-underline: rgb(222, 222, 222); --sd-fontsize-tabs-label: 1rem } ``` sphinx-design-0.5.0/docs/dropdowns.md000066400000000000000000000042621446046271500176020ustar00rootroot00000000000000(sd-dropdowns)= # Dropdowns Dropdowns can be used to toggle, usually *non-essential*, content and show it only when a user clicks on the header panel. The dropdown can have a title, as the directive argument, and the `open` option can be used to initialise the dropdown in the open state. :::{dropdown} Dropdown content ::: :::{dropdown} Dropdown title Dropdown content ::: :::{dropdown} Open dropdown :open: Dropdown content ::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/dropdown-basic.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/dropdown-basic.txt :language: rst ``` ```` ````` ## Dropdown opening animations Use `:animate: fade-in` or `:animate: fade-in-slide-down` options to animate the reveal of the hidden content. :::{dropdown} Dropdown `fade-in` :animate: fade-in {{ loremipsum }} ::: :::{dropdown} Dropdown `fade-in-slide-down` :animate: fade-in-slide-down {{ loremipsum }} ::: ## Dropdowns in other components Dropdowns can be nested inside other components, such as inside parent dropdowns or within [grid items](./grids.md). ::::{dropdown} Parent dropdown title :open: :::{dropdown} Child dropdown title :color: warning :icon: alert Dropdown content ::: :::: :::::{grid} 1 1 2 2 :gutter: 1 ::::{grid-item} :::{dropdown} Dropdown Column 1 Dropdown content ::: :::: ::::{grid-item} :::{dropdown} Dropdown Column 2 Dropdown content ::: :::: ::::: ## `dropdown` options open : Open the dropdown by default. color : Set the color of the dropdown header (background and font). One of the semantic color names: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`, `muted`. icon : Set an [octicon icon](icons) to prefix the dropdown header. animate : Animate the dropdown opening (`fade-in` or `fade-in-slide-down`). margin : Outer margin of grid. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto. name : Set a reference-able name for the dropdown container. class-container : Additional CSS classes for the container element. class-title : Additional CSS classes for the title element. class-body : Additional CSS classes for the body element. sphinx-design-0.5.0/docs/get_started.md000066400000000000000000000061371446046271500200730ustar00rootroot00000000000000# Getting Started ```{article-info} :avatar: images/ebp-logo.png :avatar-link: https://executablebooks.org :author: "[Chris Sewell](https://github.com/chrisjsewell)" :date: "{sub-ref}`today`" :read-time: "1 min read" :class-avatar: sd-animate-grow50-rot20 ``` ## Usage Simply pip install `sphinx-design` and add the extension to your `conf.py`: ```python extensions = ["sphinx_design"] ``` For using with [MyST Parser](https://github.com/executablebooks/myst-parser), for Markdown documentation, it is recommended to use the `colon_fence` syntax extension: ```python extensions = ["myst_parser", "sphinx_design"] myst_enable_extensions = ["colon_fence"] ``` ## Configuration To hide the the title header of a page, add to the top of the page: ::::{tab-set} :::{tab-item} MyST Markdown ```markdown --- sd_hide_title: true --- ``` ::: :::{tab-item} RestructuredText ```rst :sd_hide_title: ``` ::: :::: ## Supported browsers - Chrome >= 60 - Firefox >= 60 - Firefox ESR - iOS >= 12 - Safari >= 12 - Explorer >= 12 (Mirrors: ) ## Migrating from sphinx-panels This package arose as an iteration on [sphinx-panels](https://github.com/executablebooks/sphinx-panels), with the intention to make it more flexible, easier to use, and minimise CSS clashes wth sphinx themes. Notable changes: ### Reduce direct use of CSS classes These are replaced by the use of directive options, which are: - Easier to understand - Easier to validate - Easier to work with non-HTML outputs - Easier to improve/refactor ### `panel` directive replaced The `panel` directive is replaced by the use of the top-level `grid` directive, then using `grid-item-card` directive children, rather than delimiting cards by `---`. If no card is needed, then the `grid-item` directive can be used instead and `card` can be also used independently of grids. Approximately, `.. panels::` is equivalent to `.. grid:: 1 2 2 2` with option `:gutter: 2`. ### `tabbed` directive replaced The `tabbed` directive is replaced by the use of the top-level `tab-set` directive, then using `tab-item` directive children. The `:sync:` option allows to synchronize tab selection across sets. The `tab-set-code` directive provides a shorthand for synced code examples. ### `link-button` directive replaced The `link-button` directive is replaced by the use of `button-ref`/`button-link`. Directive options have also been added to replace the use of classes: - `stretched-link` -> `:click-parent:` - `btn-block` -> `:expand:` ### `octicon` icon role The default SVGs produced are now sized relative to the surrounding text (i.e. using `1em`). The syntax for specifying a custom size and adding classes is also changed. This is similar for favicon icons, where the `,` delimiter is also replaced by `;`, e.g. ``:fa:`name,class` `` -> ``:fa:`name;class` ``. ### Improved CSS Updated Bootstrap CSS from v4 -> v5, which in particular allows top-level grid to define both column numbers and gutter sizes. All CSS classes are prefixed with `sd-` (no clash with other theme/extension CSS) All colors use CSS variables (customisable) sphinx-design-0.5.0/docs/grids.md000066400000000000000000000141361446046271500166740ustar00rootroot00000000000000(sd-grids)= # Grids ## Introduction Grids are based on a 12 column system, which can adapt to the size of the viewing screen. A `grid` directive can be set with the number of default columns (1 to 12); either a single number for all screen sizes, or four numbers for extra-small (<576px), small (768px), medium (992px) and large screens (>1200px), then child `grid-item` directives should be set for each item. Try re-sizing the screen to see the number of columns change: ::::{grid} 1 2 3 4 :outline: :::{grid-item} A ::: :::{grid-item} B ::: :::{grid-item} C ::: :::{grid-item} D ::: :::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/grid-basic.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/grid-basic.txt :language: rst ``` ```` ````` You can also use the `auto` value for the column width(s), to size columns based on the natural width of their content. ::::{grid} auto :::{grid-item} :outline: :padding: 2 short text content ::: :::{grid-item} :outline: :padding: 2 some longer text content ::: :::{grid-item} :outline: :padding: 2 short text content ::: :::: ## Placing a card in a grid The `grid-item-card` directive is a short-hand for placing a card content container inside a grid item (see [Cards](./cards.md)). Most of the `card` directive's options can be used also here: ::::{grid} 2 :::{grid-item-card} Title 1 A ::: :::{grid-item-card} Title 2 B ::: :::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/grid-card.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/grid-card.txt :language: rst ``` ```` ````` ## Controlling spacing between items You can set the spacing between grid items with the `gutter` option. Like for grid columns, you can either provide a single number or four for small, medium and large and extra-large screens. ::::{grid} 2 :gutter: 1 :::{grid-item-card} A ::: :::{grid-item-card} B ::: :::: ::::{grid} 2 :gutter: 3 3 4 5 :::{grid-item-card} A ::: :::{grid-item-card} B ::: :::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/grid-gutter.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/grid-gutter.txt :language: rst ``` ```` ````` ## Item level column width You can override the number of columns a single item takes up by using the `columns` option of the `grid-item` directive. Given the total columns are 12, this means 12 would indicate a single item takes up the entire grid row, or 6 half. Alternatively, use `auto` to automatically decide how many columns to use based on the item content. Like for grid columns, you can either provide a single number or four for small, medium and large and extra-large screens. ::::{grid} 2 :::{grid-item-card} :columns: auto A ::: :::{grid-item-card} :columns: 12 6 6 6 B ::: :::{grid-item-card} :columns: 12 C ::: :::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/grid-card-columns.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/grid-card-columns.txt :language: rst ``` ```` ````` ## Reversing the item order Use the `grid` directive's `reverse` option to reverse the order of the items. This can be useful if you want an item to be on the right side on large screens, but at the top on small screens. ::::{grid} 1 1 2 2 :reverse: :::{grid-item} ```{image} ./images/ebp-logo.png :width: 200px :class: sd-m-auto ``` ::: :::{grid-item-card} Some text ::: :::: ## Nesting grids Grids can be nested in other grids to create complex, adaptive layouts: ::::::{grid} 1 1 2 2 :gutter: 1 :::::{grid-item} ::::{grid} 1 1 1 1 :gutter: 1 :::{grid-item-card} Item 1.1 Multi-line content ::: :::{grid-item-card} Item 1.2 Content ::: :::: ::::: :::::{grid-item} ::::{grid} 1 1 1 1 :gutter: 1 :::{grid-item-card} Item 2.1 Content ::: :::{grid-item-card} Item 2.2 Content ::: :::{grid-item-card} Item 2.3 Content ::: :::: ::::: :::::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/grid-nested.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/grid-nested.txt :language: rst ``` ```` ````` See the [Bootstrap Grid system](https://getbootstrap.com/docs/5.0/layout/grid/) for further details. ## `grid` options gutter : Spacing between items. One or four integers (for "xs sm md lg") between 0 and 5. margin : Outer margin of grid. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto. padding : Inner padding of grid. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5. outline : Create a border around the grid. reverse : Reverse the order of the grid items. class-container : Additional CSS classes for the grid container element. class-row : Additional CSS classes for the grid row element. ## `grid-item` options columns : The number of columns (out of 12) a grid-item will take up. One or four integers (for "xs sm md lg") between 1 and 12 (or `auto` to adapt to the content). margin : Outer margin of grid item. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto. padding : Inner padding of grid item. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5. child-direction : Direction of children in the grid item: `column` (default) or `row`. child-align : Alignment of children, along the `child-direction`: `start` (default), `end`, `center`, `justify` or `spaced`. outline : Create a border around the grid item. class : Additional CSS classes for the grid item element. ## `grid-item-card` options columns : The number of columns (out of 12) a grid-item will take up. One or four integers (for "xs sm md lg") between 1 and 12 (or `auto` to adapt to the content). margin : Outer margin of grid item. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto. padding : Inner padding of grid item. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5. class-item : Additional CSS classes for the grid item element. Plus all options from [](cards:options). sphinx-design-0.5.0/docs/images/000077500000000000000000000000001446046271500165025ustar00rootroot00000000000000sphinx-design-0.5.0/docs/images/ebp-logo.png000066400000000000000000000262601446046271500207220ustar00rootroot00000000000000PNG  IHDRݡ,wIDATx p}'~{{"H@$HHDJD_oUQ6v*Ļ؉d*'L$ےu$C%x$@`fm %~OP0;{^'1PX,p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X i!1fv/v(5-LU"($\.Q !RQ)$l>522pllF쩼faaR~^oAA$In4 Zr XXljj.lk&͐35ҥK1I\.JKKk***n' ,EQTU5 RUߡNN{E!Lb顡Ǐ @iiiMMͪUjjj1d ,ƺA 555777n"%0;;;kjjvڵyf0^`-V^}o߾gyi>ގ8 `u>__݋XVŋvuu݋X|H$?o&݋iX<9qw󝞞1}KJ3 >_\\lv|{ov#&=ছn! H$n>!;v(++_`팱 L45A'Lojj2ܱJ,ͅH$255 4M3;^QJo466Xs.m2m"-bxsLwww__a.]t[nزߛxYvgFykzhhh|^|Ŧ&CƵ2_*ceD0 G?o[o5J쫯jXr;BHEE?}k۶m3|`XnLl?͆\XXx׬,YyG!:;; )eM,xq5x$r~ENL;BHV4^GٺuP.d//'E"|+: cAr1K4XJȈ_uuu---7n\v-,A`9$Iy;nwSSӮ]ZZZxQ,+$fϞ=6l7˃}sP X5<<| 7444Y&ݑU hrr_|---7o.//]Kx<ޓ /lݺ;Xvc UU>|̕[z^2s'tpGӴlܸ1//o0# PWW032s P\\\VVB?3HX9B7GQ1 EEEzL&#q ϧsC91 ApJ9g ̔w1 >.̄Tdw@`pC4<_!10 % 0 p.̄F49 ݂. ɒd,ey1?,ѳ uJKKk,G~W.]$}_Թ0,BJJJk,G;}tGGR5<<2ؘ (ԋ9p ˹TU\>w,DbttTOJ ԘyΥ(24u"vZo\G&@`9i×CP^^v,J$fw"rOO" =!"=zTQQkjj,RUbaa_Y$ `˹X\xwOhXfA \H+.e̕jmm5#3!k〹ۧsU|pÆ ud&s?ˀl{8N[[2Xwĉg}VJiKK\Xc:uG?!nZCJ7?;]T۴i=X5fvp ?Q+UUUR XǗTdO2ܷo/~ GyDgn ,aYtWWӧϞ=ks-\.{!>+%X),,|sb~ c;p~JnH${e_0Ҽ^o0t\n;X`{n , n , n , n , n <j]H}*%( f7(KSYtR}Oy֛ݰP*/Kۈ>eiB2GA63UGϰش0e 1ASnFl$VNtk#=ꅃK&ZEմZ.K7Ù͗D;gG2~Һ[ Mؒ}5?B\^Nַђs-&.Q6vE'S9(Imz `_l>\8tlL%aj@<^8D +iJBKWnZn9 nYba,0ƢjdM] i*+uI9_GP-["wD /\çԋ_#mwvZd2J fԋo iwU^3OAd"|qU;)^veCpjpiM"v%JVo\~eA:t0+GT6yQ>",$n2ELw6/+ʑcF,V^Qq{ bp}-JtY?褑8@dWt݋W<#;[KHEZXIZ`rBrrqm8`4"҂rqV#~N ԉ\H>zú;QS3wԄ".Xۢw.hϳaK˝/ B|ZU7&B\@MSazmCα+M1 wѲzcϩ=oG_Fΰĵ>^ F\~'&oB!Z4$wITÊ"}RjMlVEh65VzhS/L3Wo~` L&..߲rc D^i_J{׿M0#hqw^y,s8CwcU{m7+0jahc粑V& 8hI}GPj057O%6_,mςyXI*R*q. |T5 H^xJ^I૸ |Wlo%T\o<^8/l~NHě/5&5haCY,KnoS:_6 &(8<ē/J}Hnʻ\|S@DqG<>'n7[ 9 d<8Sl05+,0y!uZPBM_Ns")>D n,X!ugdݤ_a>r$^[_P17t $u%}#Woi ba [JI "h*J},GI_j4U שg yƻŪf6Vf_=c2٣#uA,N@)zǟ«U*Z\E*֙H^x6֫ M~URSCBJ5%CC\ybC9\%+sn63"fUT 9(?_>/źVZMnxIbamKTO,Kdh׶ϑ [X8QKE񗐂2ZRG-b0y^:^~6bp\.ٽ|, Vf7VgC]*MbVZ UB@zKIT,9No/_٭|k ʂr_ZBqRUT%Ajl4m(CoG\Hq{3vJ^G\urzVl!mzCn6.̧GUʩW`3ùL[liC` \#NSܔզsJ[?-ݑuE"J6q?1"vm>"j_zN@Ü2Ҧ nazCyC8"F Wy:)(3E"px\[2gPy6;wIMwdoCLG՞7kcks,RXI&Y,_tBI={GVYuŕ[ /W?e3#l>jx}sNbXW:|gf0.X%coeU>Wmzp}:Ͻ&%w7AXlZ9rEuฉw;IQ~^U=m]ᄇ*{ҕ9(VXdB>_~96=dv7NBE҆#?cmqwV_Myy\TP<]dv7Nh4 E;ghgppXӴvuc9#y>--lft'pW(=jz!^6z(>m-9*ߒ |}IciýʙUbm~q'-24MW4 im|n|TzV?؇,)=oɇ_pMW(mkC:`e u;I~RZw0'cE'C{E!ϫo7oVRmh-VoPz ٝj~彟Pذ~R7BkH^z`f\_tX2 ^.f7dwGjhŚkӴɾW{l#nM\=X}+C16yQ9ݡ^2VvJK{&}b['/?XJHQ`X7u85Ӵ v3- _EZe(Zqv~qEmXT"kn|:ЩdsSfe/JR;+cQ[@ٔ+֊kvВ:RX]iFRV/# m6zW3U7߉Nʝ/ҕ\b VoU$PAKU yWӚ,fԸ`G<4TE?/w/a.IDkZh*/!blݯil~.\Zwcgn[Tk=S\u:=/M Lj;ֵiFZTEK 1AgsZ4ĢlvEcfy]=|h? L3!NP $sJZ$e+ LcɸL?Y2!,XlE&l%fSߔxjWI7H]!&.q ? lH ۗ;0 ̒qSTEPd::;)0URRS3_ $]Wd=ѕkOςITp{G\ʻADTD)I} .' ϊ*LSrKcR_\H%fP?gSL(*RRԉ+Iq BJ"?r+J.δ!qXEf Qh3Z6=ʯsDk-]S@ /.@`9c`Q6crbr6"KR4@g@`9 c963gaWd쮮GHV%IX,6M)'^WNf-[ i˃M@Kn̄rqkc$Pny\l s cB|bbY?@ZrgX5|k 7\ε^E  ~}b]+-_mlY1, qhrhU dW,Nzabl0;/&vXX|Yg\9BKiKEshqCS߰,X,ҊmD*JFXhT$r!ňwR K@<~ZޘZ|LhB`RPR`AQX:,(!K% 1%aXT$>iXV@EJa)dX:,!1dq,K%2 FXtت%.AMCKj)!p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p'Y_LIENDB`sphinx-design-0.5.0/docs/images/fun-fish.png000066400000000000000000002636661446046271500207520ustar00rootroot00000000000000PNG  IHDR^Vݔ IDATxwǿg.m;WŲ$%F`/1kLX`AJ+Hp٥.l{y?ܹe) r9)ysΜ99*hX+$Ph|(_:> !PV&*1u׹L*=%_thzDĴ:N<ؚ+W[bZ:Quu:}UbjĴ`}v]8,6ws4cNLoMv2x÷e~'/ P=ꚁ$拓%_B鱚xT&9u=ys}_t1}!@TF"Ҕ YrhӤVk8i4̋1٪1M,ju=2qNkZ^٭^Z/n`إٍN--RkY+XM0AZy?5ڢƲ,:]4/bl,4q:^KhAyJo/*}fV (XM5%fܓHwzhk=;>z< ŋ#m_ FZGm}V܅ZӤֲhY(]wm7;هB!36,^6М9L7|#uMLjL JJZM`o?aY{063r?4:߸3rGywPWWGPJQUUE߾}w \y%RQaMr 2p3DEd."E>FQJZDD:,QJڽv-Zx ׯ{]DlBAe&~wYYYͳAHӤTi nzosL^D)Wo6J)F$x79ߖe-ʾ9պ ?01"sߖ{,ǩR֚I6mf$znR!elWwU/bkH(G w(zWmJ)~VvK6\:*jg}?0bDz479h3@ϋ7ేoLbM(_.M >%5 B8"]1::]a]1wo)vo6{f_ 1GT-1:4wP*Y*8$qMag 0ZJOƳ#:#^( g>B C}W+.'(Oɂ\P{^˺A>Y\XQ'@q, "k}u߷z@$nPMa5xžw= >+^Ykӡǧؗl 0`SF)~d1 ˆxo5%Vkq8D8M5GTA?^KOOy@ c8n᜽1IF{p.}{z"hmr4vrFB80%RxΥL >WozND=.C_ ZH[9n R028a4whݚV­_'Ɖս&\+dST=>+>u^- % Ld-xŞ2_+ /RRe،+#(cڡ5Q/pIݜS äT<x00o?w}ׯ9LOf>c*밌+C*?+^YXc7,aPJ ː#OH'YEurau>NAZL Ӣbĉ0g2g̐Hde pM fgΞA#iv'L øGӳݐ3椓T.1@D:պ^sD_f1nSIVeǪ!%F-uu*EHSflfo#T%g*1-4i~g.2tZ:e4=YeQYXOX~:USXG7 ѴlWFeeaBO- c499f睊%냟gאd޼X=nC-AM4*3ٳ[jcO 4K5nh4~GiVSn&/&̋kz3WQcY04M}ʼljMtz MFԳY'g}[*,S#hƉ]_i굍( d͹r/{ɸeA;;NԿV_Zef-}be)kf2/_\^u[S,oD:ꨭ/䜬'Q(Bxs@^ލK 6,opeMMM՛ʳEjojB[ 7zYS Bdff&L)pzf͚%ε}ڗ}/lKe5L=I?3^>eJ)>wRUUY^^NϞ=}O=V 7 ۲ز>/1{"GSSW.r9 4M HYVl [*D`;0{&HU43sSVD+r)n_}Æ #77+{W]~Ҧ̎/՞ sC!8Y7$,HM&/{W]u{7O^x4**l?oGۏ~NULU6*[@5>iӦir 5NRr9lQ+VON- ni&)+3Vy=?ieW _w˻ n AߙpgAkMyyy Z`٫|G8${~w?wHzكN>e"ӯIX*W'2Bz+?>/ f^J+dee>* Y}.7RFPk{=Vו =P%L8 v^muohpz'yݢbd^RP~]ZCilI&Q&@#TTڬU1N,)Cjw(nCЇapsŇΧYNb~{9aݳO}),pgut>]>{R00}T.mb&ԇy- m m;/&--ǩ ſ„7&]zO=6i G EDO`e(W #QΪfw) 34Xm5arAsl*[/5$P欁X~e\q0 ]Kj(7M#lAvO`ݏH gp.}gpl),!-v`c] ÄшI˽n< e]5nRz)JȄf#1biL"Z5)i߿6A?*y( @DӂG̢|A)lP.4,urfXw"Y{׮@ 2x8WP5<z3S-Oښo 1_thd+HHh;tˏoѣAM(0U[;sv4MЁuJ}z(3m& u&JgJܭTW FW/g~F`;S+= 8BOibdК5ŻUW{,氈Ej@Ge!kFkcK-)o3I|kZ))o&''oprJ)^nii\,C>x!#Jzۺ`L" aÆNXqId}y*S,A笳XTVV&cM+Qocp;sye±*/",Zhmmt*K4h`=V*/oM>~hna_G)/g~Sk0dO ill$777!]Q4޼WfL<]L$//W$Vk]ᇇo:.ྸH_5-axx :ZFgԚ_ Lm*-W=H)˲Z|QQuJKDznmm+(yyy g S#ח\;zn`4PU3ow\G~g+7n»wO?O18(xl;f̘oY~˛VB+*H*<vm8AϞ=[nMNXlYA5QF1S~48;cYS,.>*q[c8ǎmL:$\:ut'> B~{- {}}o9f0U-x6u. (R5>rɼ@~;4,Oav=x @ٍ<$8~Y =G?͚ Fep>䓹 đGI^^YEA4]c⋌7g{,?m)`wNjhhั:XE*1"Opl[gGބ=γշ2,4J@n)}@{_]cz 3#}}*7H9P!??.v?ohg ~Ԫ\\X 5MIk^Mνs؍EWGcoz&lR(xu<%zTD@s穉.};O"9O=;;*Y^&tx6F$Hl5 J >X+X&0Ek؆7~%|6M|>.=.~P[ĘHC"mUv)eUy~继st&N~Sd%![(΃ŋ.E oJq h+C:Ӥylte}KJJdQ7ҲlJzgӭG&ٹ~̈栿mdVs7YjW) H<,,z!7=nz')UJ}wv9}0U7eB9<3W,U$G}nB\o f ~}dһ׷k@G90=5kFJqP< |EEg5}N5ż2b aGl2}dd0(Mlacm3*. 'WT0%È&e ~4 )M1y+d&vI-oďZh P] +jxO67wl"i{sb醊R4B8ay)#fg`շP n1bۈ)J3SXAɤ&LCm aZ-P(d~{VHM DY:Nbf<,3ޔeDn~lܷrᲣ2FاY=}lty`^ekp_ؾe(v[.ݛPjzu{uOWRXG(649>в1J u[8;M:{~(+6n+" nB @k!jl2iG-PzXp|v*-\8#BpN9枧M<ϑ=I)e_#`݆ h;ahiӠ3BN㥒-=$ZL?$~{xhliiYao="q}ذ.dф&&/rj$;S '{l@l~"ꣃ8$(>Ek.[Mbs~x \d%g #d^@bٺ:y93 (YJemSuͳ.gсӧQGPvU+"'%W~7<4lQҒU{[vt|>̀5yv<ߔwaX>3iQpb#؎_#ڿ֦t >K_hs8&<*QzTcǔoM[1rssˠzsc[SO=iXq&EޚqR$>5ziH|mui>,S@MBDtS'k*Ѫi&=@p.d:<^w @Hhi%x;WteqMteݷJiaÆ7h `} 1 {hRN<_\Cù_ZS4O V;{󨣎ظk!7ZZZ|E9ee ?(b\~yXVڵphCڷvEvvki}qD"7T'{!*G{!l1ذ}Λ?Be6Ӛ76zx.]lAFFF)} w*` ~mggSЎȸ?++>B56; j[r+6>*+5,s>V!?qOBۀ^3!ZDk|e?w_k\$wg=aRzPN3|]_СzD F@Ijt)-1CnZ :[тw) Hd5E6$>/|m]ʳХqd B`~%ZXzc2b[~?gSRzPC{J h Jі}/¢5Ѵn-ჺA,Z|L\+ׂw:ޥMQHq6-8 /޸SNcDooD=F[9t(FB ίݏ" WrOasԚHDVòe͝O@Wh;g6ߛy齛م"R8Qg4˺ uu;4]k(]dRb e~?3?iSuEXX4Lӵ„Cay[Ӷ턂<{;̇ DQ,,~oD{k^߄CXUʌଖcM9ѥ6&$<DnYkD)<ԵxzӟގKm@)gXu= ^Aufbv=ZfM #@!tF?{mJqghZ]{+>kres[[1mf i7NةeQeԯټ_ڹ\|@t/?r %mBߔk`:LMٸiTni{aI}GZz\WۆEQ>s|G B7A?L?fNCXchU(Q̬(SGiњV6װIbt)= *ٸ8Y݊!%FW^@հLZMMּ7xN!Ϯi$TU}vtY za2g~Ҋ'4e+KBȽ!FwImg0+Nܽ-{vvt)= Fj(ZC:-ikҺDKUJVm΂^> Ÿ(QU#3hI>gUk|B$hbTxuzvz'6,28(BbjLL"D\>>y4>;jڱl]J`m}&%DTiPwٗb/1[1`!Z +b$cn,ձ`ZV&6s"(Fu@β,wȞ1, VڌM h~oL ۝@~KWwlll9hkYK0dzVn͠q+_%RIW^9g *^=Һ ~%*Bn*bTQX/4Gi;~.*OJtj;Xjqw_J~wskkm9K][—VĔ}j+'iw$; JcUkWwv ;0M#O>uO<拷fo;-hwwՂWaUg1k6}v?.$ +R\Yzk$VXXGCCvbRz( ##A|u#mx챬x36W:,bw][3}Nc1P@ r螣ݻP;Q\h>C=41UUUԛ"RBlwgff~tCEgd>_66֝E ɓ3=i7|c)Yjzۮb"~?vى7 [ӿ8A%N4y![tjխWG{{*WV[/ٗKH0 "M;{N_j5Xsy!2hL6RePWRN箓⬬w U'ٙ_)i4J"0p⵫ƍ9 v-,_VȽCrxH4u`Ʈ ߝJUG9iiՋj7Mr" ֚ۏosu%离4vD4Ͽ*8xxQ3bGoxNRr|I纈5_8\ZJ8l,l'poV UUU'Oii)?=z.n/9S|]tQ/TJc=,^RDφ^yJ(-y-Qutxo>6s )wfʣV /c9^zMEW^<3n^%-݌yaA:3{챰 إtDbMwvYiiJ姏s]E{0x`VXԩSSq{dN6-!Myyy .}$CƏG2s}cJ3=׽ʣ4jr rںxa̽ {sLe{Ռ%#YINQM{ƎoAnnngp]tE޴퉴])0@sϭ0cպf CO3zOLQwz<>Z7lw"*A\y}vzv. ;mEK/Qb]]]k[{0XtiJi՛2NnɤIR)'fkXhh`Ḁ=ΐ=o4WCN~^ e7M_!s}vzAnW ?OH5cǎMF,.qU sakC 5L L `a>`cX߱l. gDKNvxUpԫL35hsa;K%p_)P>'+4M8f̘1S^^رct,n;rWJѴrBBo:ap)X:X+pyпw&rHĉSVٳg w*H']T$ [ENh9/?mEY'\?r d#iTylC06 l5z+ڃDEq^%2:DN7X;~GIe}IYVx3bGNǞNO%Ⴧ>A)ŠA,+/b Z9V ؜Q$њ0=@8Ơ[yCsWGV|?q4g( +;pߩUT#(! ɮIjG('$A?D4߯]Oy0=Vp`v˚ų (5࣏ g{󻂵,O`~m(:YՋλm>8gKxRKoε]ІFo}|*(Y9~|EvO!᠅?B23z+*thNDnғҨ%4G&3ozT0XD|?ՖbBLa2 j4Db^r)qFpڊM3%!^„ q8n5nRnZJ8k$0F CS0Ѻ>_W:Q$]O]>MpVYߐX=] R-dcVnjhY8.Ri$LM6Ce>0<B!m|χ+!@Ί<nh5 @#PqAbݒӱ$7|}6K^YzѮdŽH(™+@Ab\a*խl~dfۚm=6 ^@4llb25%8J_\aЂ;I$۔"%GB~RzyH#7)7Z+|J&j(CaP"dW|"DR.ħYRVQjxL&'_<ʞ}e8D9WamĕpYY\2v ǝ 9'mH꒒H:{L {bȁ"{8 paOH]\UedDB)hS,B-"P=;U*f|wACl _&NJ̤:mo\Z}’S>XXh<= 㖘2¾?9Ɓ6`xF-ۛ/i~ < >x>f|kw@kt=|T Y˲;3* # WRJi&ާ{}K|XW;O5#<}w+DyLID>58F?'Æ wyB O> ݳ'0q}_pXazk#k%"[cǝL-V7t- ZF4%hYoAɵi(kɷdU]U%eN;# o#1JROPw?ʊ?bW 9rgEГob`8b=4$4F74ubx._曩r<8o-ṫOuu=Z9¹[Xb)o 3Ϩeˬ҉SZggf-a`aܭrI]s۱"W}%#z+wOˏ  pH8>Ai-_{{pc|-ʭaǿI4=j?R}'m.jn+`HE=mfr%IZsv^Iޟeb"juztu b7-\bFK-Y"ݶt ڥH(9 VxȦ=7"zY>//oKK*D"%O̔K7\ B647m㝩8VWLy` OCjWˆq;eY;o;D觟N>0W *Y SwhVD"hH46 {F!{BQ7?(` Qh hl+/J:%"nR_~[o _kk<键fPYgAO~=㊳yisÀoϸ1xuGmٰS)=++kJVV`g`vv&O͹R#UUEni?&h9>(#EOa|7tN~J?\섴VxcݱTupĉHvDG҅N5Ck^}XG޻ BHI!f *hCKHlhxX^dŎ҅5 IDATG7_,:DDN^Lݎ.h!**k"Bӣt[_0F~B2.l%^W U̞ IٸZ Zhk$swW'bEadg<+bzW[@4fnPYC!(17DuSEG4L+1,UHH|LDqTF,1ZkՏ]^ [#+$ P>D <=oah PB@Zg:a 5 -4ݲX)лu+U{&\ da4?xµD"7~4O.x_#vE7F;呴?tz ##U$c{1uw$]0254|dȼHk5xgXdcF. hh1-ĴбO1-tˆk1nn9۵ѓv4??vtz GFHkĎG׆y)л.(g↬Sۆny >d73h22.Dk#c&>j!/<"7Gv4]B~ D-`k*hD_WɢdA΂#v4?etMuvPPwK_{T7B w>dZke\"a3 P49 [,DZte{лMWUfv9yMD " `Z~.c߾蚌6ADin_ 9FQ(D VExiuMQSnr]qGSBwCD2օ~+݌əS4BӛM0&Xh4g^ÿ޼:>2. пQX"4kHզI0lqȁk1##  ?Zu a!Tgy$z",BTDn@Z?Z}TQe]2.l5D_a7b /4>HSӏbDE\cwbz{vGwa "HȚB#cAsN+H0b;rj4"w{ N0`Ɯ>?PCлUg(cXEAРxk5>1gH1yxbI },{QgzfgvskVUߪVutIC[e8,.3c8l>07g1{u/aKUw0zB.+9XiYlTnQk=Cto0w.\qjԽH@VtJ)w Ӿ8֜(L]WzN]o6M}ZȌs/tvp7GtRJfBšGE&nB5 >Wmo7}^ǐ^z+2Ãn;\*@7ozzC~%H2mV* g7 q7F`lHD.Re߶8qXoĤotE}:Gt~CPv`VXܤhԺ?9b :!h6M6L*cc͍',Nhj"s!V,f% 2^q]=@PREWrdfiO݄Kt)<\3ބTNlXh C=@X2 fd\5/莥M> M}!{KK蜒^ /T|)[ADr}XGx|{jmxp=]KxmGx\Q{ΪŜ?H{2=hl۸_lpXb>MSf 7 GMG"xUA H^oU#IV& fyGsJwX{L\_ŷC F ߢd# U  Vm3ȉJY4lK܄L5@]KE˱];skZAR[Z$)"}}n=3kL2׿8n喲{;.mhFaaUUıc 7&9sG X͌X?NQGW[/u|6;_HϞ)**0Vq}}=1Caxe>u'?j5s?p뤄xjj`&wcMЧ+Up*C2LJ#)k6<[DaIJ2ڿcTm1#F0k, S;vT"_[䓱e***8#yW())0T}~RXAaiz2jlRdiX@UWt-Y٦d`*rcm[`X n P4BS +]7Ť͎?yid7ÇM9~?x`V|äu4#F0i$l?c@o.i:T)Q]+ϊ 7m휕]Rꪍ7~c@E= o6sѼi)$N;Q&!p>Gw0t&%^~Bd!xI 846ni }!Rt5WF^z~TO?MqqqywP(ol>Swy9ht8WOx㍌5*I'a=yLjbzAAwZҲX L̚N:gyF=;z*_nBT)*Qv=&s~ߌIVi %$=oxi26&cqڡУ+Я~||P|9d۽p8Bx 䋖ϙCii)GqD2ϟϐ!C>]]W(0r<_?޼yF߸򗿔x\+=iCK 6ᆖwA/%~CqꪫPUU>}l6¶mt]9Z[|է`΂K[=(ߋ_U?TwR &_RZ-^]v|{)ฌFB$'/}=t"/|yPKr4'%wW޴m%\JɠAPJ1}_GqG{O|H!SLAi O`L (jhSc+`ܹ;3+9uA;OR,0ra|r{}R\  EO3mSs++<OO^)-`J 2|Oi^pLŧ䜣u:f:`|9yһUK{ܼ1< t12 qB gg-69ƍyg{34}هAM#2JJJ(5Rm ECÁg0h ,XʬOv+8Y0MCr{`M%KozE˗ؑy?pz pȬ2Ωߞn?ٟk }%1wedQK"3;`r)VSg^oDn9 L=Y .hk28h<,^i`'rM 2quT=z4[fA=?HZAݠHw>O<]t?lϏ#n߰VӴQ24c~r\ +]gsِ$r@)3iJc|KK|oo_`i$-p|Uh!5@kM^`sSMOY,ïIE#6&l*ZȐ2ewk?')Yvjcs4?*9us̏K*0dPΝf9?㷅|x GȾ'%枆L|w O.,ݻzEr򚗬0n7,NJB˓+^3iC9d w*fItun6fI9H \4є/nFP04rfY/,i O0sڴBxI5r%Rn&]r(J~F2H%i-o5 ~g_>$W)uQSSC$֫sϢݺR׮ykP]Ly۟j0MH$r{@؎̀|@"bbi8_6HRVpQf1:_#5@SJw[fB WCyIgg{saV/"P4}-pSJK)Wc %3ˁu.T L]~k(TI A)/ܐxS>u?93xcj2_}h=8i>?묳֭߼ .{G ߫1d`% ?D@cI)y=8Uu"ؠĠ4DQAaAQAaBps) ^ܴg4H_:\{+PVFc_.g7&(ega$h`eFr %ǧe}8%չh!0S#2xEKis su2ʯ ֗nƑSWߪVLJ7pKKK}r/\E|yy᯿:Qe'п ҡU&᳣}^}֯_D"R2c2g0 OE>(,q J E.Caql &Mt\7߈mP(<7jmdtٕ;`;w͟J?h3{Sid/5_ؖ4/OwD}"RJ֟Q|X:-ϤU0kwn?Hs޵}+s;qY¯M5ӋS&{RD t"N8jup3hdֿ*c^^vYh!ptq7ToF'' M0ZUߎ={d>뎔mG~XWl )`xyɢ$_ ǁؼV5k`Pn9| ztq`iu+ܾ;:T^wlQ{&7W/~ GZ4].cϏR *9~޽{3zhHyy92m4.]J]]]8p_x-̭|/*Viw2bZy#2x}p~d<x1Z7 h\OcꚗtR" gg=D `iCI3{ϟF{vP KсRpDK[4 IDATB2U4B)<֐ ̸Gl/If;#\)[.L,i6oUsp|SoQ㉬rٲ}59!⬳r$TcIuy8t=*Kx:6*x2R.zF7Hew X&˪X!\ve#lh2@6őg}ݍR#UH]RBThQ)$y YSJi&KӶnΏ]>L-q诙yыԆ= _@fhWF5}c.~=׺[u\җ@{r(Ɯb*VOBW@hX@Y6Q ȔAJ74c<##-ՍL bhmSa-9 ГZ'pTGiěmWG4m[Ei 'My^u|%} vrhC2Zgeރ^\ %M\i+ My歜pB;4|^wͰ `]ny.]7CEi2E##^ r6gN$ceóp^ HHW6y!sNE qV/v{x=7Fj10y&A Mw4]݊v=`}$c{/JK)9f.V)-ch51YBT8G=BљIŦ|ye,Fx| z#*GZmPBoK|G{ Ӻ|  2zi7p$4OLW*Os/ye74dlx+pP[. BP 3K*)FϸO7KF.όKDZQ7'dL SXH5!͵FmKlSb&?tlKbۮF.* &CYvg?3稶MkΥs ^'V jsWcC2ƠJ͌9Ƿpm{;2jt/;̀iM%'':{-ciIh{&<Ͽ^?8x[6ʗTt~!`ړ0j@dzjz j-u↹G+KB0M jSץi+ׄ)SeR!aZ{`0ծFIG4\Bs:}}/'w_\-n2_/?\*z7imW9vWFBBo>wnWqX+w_I_({y;vHnlZjxBl^.rH,ֲj[[N۶F:R*ڽ_vvI>\s)r/Ylͩ>['3 fsE'JHY0 uk2_2 (/:QWY;%c ]MӚjkk***seTbP?/V(> G9`C---OZ4o> hML/o<͖%fvn0ʨ8+/\09׋SȏH#eQ o'RQ~;cNɀ짷0|<3)w+_7ضdE#c]i`wC.F=q"wx佃4xU/1MsFguTUUUս8΁{ˡ;6*Ox6 \⩧_d/taȗOtOV.+l!شvz,qw\Mw _C;É]8H$1^_"ڎ&,w)<ʇrmzYU__igqcF㓠W}9j0|Jt>{d 0STw/[><͆w!zMH&tsqv, u&}{ f{e,0ep4Wr|g**ˁߡxBf>'Moض>555/!9h0vL;O/$613Geh6NPC(=W.<.ai /a'B;pYfLR'~_ϼaЖ5MM=o?#7rʕoMӹ%hw.P4 ڄ o{W\ADiZ^SG"O:o6τ2GEE/VZ;O wrעn3{W?xUU[;ӧ6`@J7_~z÷Buo t̓W^ў:tEf͎{B$>p5s(lk>?)+W mb%W2֬]kOׯ+:lϿβ,ʊF}aYSx^}}X;RJ[8^~[G.]*5XVտ^{6zkqіUUҫvݚ|yZRx5^/ݻ/Dض(bZ}ęgbg+#4-Zĉq ޳{={~!Cr_->OA|żuA_:D^@q>W_rŵL`;@59a+QgMlZ!v(PB f(dž5tحJzZl\j^+QE2vu m[L]A0R` ^Ȣ×R;+B iEBtw.j\&01zQ\]EE+e5X)  lxᡢ_9)xwJUP__(GPJ8 TbZJt d & эVcNFP: %-0z\,JOBD/2alPv$6#t * '*d'{ahBi~]R_ hB`o zoG[䠟lY+URS+jգ_H)fkFtfB@[-oz\i Q3,Fk0Bg+iYS=VAl}*^ "gk^H;Sd8uR^JܨԗTBNJg z؜X߂(J(>9ʉ kkNϘVCF`0.֣3h( cJ9^߽Ov oQN.@zt^ҲJOj )=}aD>J鞼G밉]=2rЅ vP9RVvDNL(@|=6A>lHo+kn1w .PT&<{zJ P jLمA] Kұy\֟RLIv؟]XQ%ҶLA9>e6tv~4D ,=d0rҲJ8_V;9gsz)T/I]<0e[>􊺀|!nJ\"PMSLUpZ6b2eBZDn(:! B)h$BxXD /'# zMz%U}1$5U8kNJhS '%ӟ@.|qQҖI*>v3_&&h%BBG AWCG+k~ک݃=BSRUJE(i;, !NWàc :lR%5z nBA4 a)W:Q# \' zmt7n-w"E(3NQf [P 4dfzE@#= uM5TrggB%*C~ZON~ vv\`l3Kk? DQ򡉴&Ӛ͍an2q,۶q,ӈ5x7/}/L ЅD%=-4:"F ֲXW&^kB6ך 1@]tɽ_Rsf4@hS1),4#?; TձCW[k:AɌM(_xYڃnqlEzsE{pzM)oK9"N}ٌ$qB"?޵EڄR*5?/H:!O{&l5+$2 X1e /; hґ/X_Gjz 6L`}.L =;^ړsz Zsye^o$ QxǔnD@`&f^Gͭ`?d IDAT~/^"mwßi'uA@6PRRrm$tWY%D$%*ϱP-INe^a ?kh-?֚i7@ 466>Nx?찳7|j41Má4p(8e(mx^0nv/+RJ}ߕ}p:{8#8m#abGu]AGӾn:XR87Tty2IYa=rqT|͘2ˡ1 DFH)֭=w *,k*0}[$jAA]:SwYKGEKLdTP}9w|оf7̗Sњ~mO=߳}e,w/׊۹5! vq3|ƩR2x8rteˊޕhqgw})/˖ R+=v,3)k+(dOήċsﴱQKiZ?zh<`6=z.i_J6Mȅ S>x8S5ϤO%T)R*iqpS.y^Jج;9F͠uI׌ 鯴xB`*ŢrEP[;J)S˝܄OO_Μ _~E+'7w vYhokjS~þ%I7ࠣ||?,NMwP.D(8! Ywq oܸq̙3u]7***<5/)%xD߉8CK{KKK&|69s̺:yߗ_{qAR$M&"}V$3b.1_ILb SZ-WI P`| )Ӓ@,"5/A$~sS⦌gl&EJyx2=//KB*))oƌ;p@+]n>k648c|0?< 8qRRJlf…\s54[xt}|Oxp]րdr{GUi\0mۯK)G{3۾y-]bԩW7:tА͙3vg4BXR-@+h8cZ7cDΛ8!{1lذnK(,;w( XcE/VJBp3qD Re'ßO=^ze](^1DOOu0eY,^P3MӸ>Cm͚5`B߿_yIIIy$4r֬O 5ŠBJT AQ)Ѩf H jpm[FAF4QP \񕂯FN ݧ롿5(:ZXyWZO {b9* 9gҥdvU][%H^5ix837|!Bcc#BU_GnOh4zeYw*KiD"HMSZ(?)~=RCg{yV|qJ{u5Jl 4+'@dt1URwNMg(xW9S$vyٿm3`V\`sabrC o ='x"ݺu;dӦMo`':--~Ó\~}crJ]=:^|}aY}~z nKWG=lRmC=qqǩ)Ͷ;_# (;0+̭wYX7AzSECĂ[{Fh3DFS-%&, Mׅ]6s?3s6@E;3弧A8 +V믓azϸN}zb.C$-{tڕ+VdVb„ Pï{0MYz9&L[oig&ɿ|WݺeHرcz͙qJ#?t́mC(k; ~bAU}`ƍ9c^7)pþ{;CF E;}/~d%{SPP{>I#nH{)4 Zذƍ~Z_ScCAXىN]P4c7V f0PcAO6EpX]k_*BhSIZ$oT AizVA0 vJإ"!%Nac ,[ӛ>Z6@吕U?xشi@Q%4۶}iF }هw}˗ӡCbBšqI ˲ߵUuH̙3ǘ4ip&Q#GJ]c,M~46@FЯ+t*`pJ LkTo8q.CUG{Zat1 ܫkC 'rQ=gf/:ڜiJr+zO>+Wz~apaDmP(DUU_|illdԩռC.:P[ϐf3 Eʊ^s+&BɺO`Use坧֟AK/I"ѣhBjkk 馛|s>BPYY*"?90M)%}]vmUZ$ Z[B"0K%oV*Gp7#OYL:ni8: ?^z59-[n >Ux E ;f`ĉ 1-3Mxo)ĥf- @VW -쟞gq8?I?n߻~Le"A`:{E t]OQ]*r=W+o7߿oJ'HC<qL4ӟxЭ)0Y_&L͛p!oԩܹsw6{ 'd*/1QϞ=zՠ3B&t?4kf͚)'{ Լ$G@FSf\"#hMJK:s.%6X˅fԓZ>1$џzv#a()rtݡwWݽdĉ:N?uB'/rwS8t^yvϞCPS9eᄐډnh ȇs0F/ow206lMrΝ1.,CVqqC-eYBKUSSZq,y!>o4!$4t%7d~=5Irrp=BpϷgGэln!O~PR="~}o·!]܋}sA_s89wj ֆcַ=?{9: .b2'>}iFv0֭n}wi\ziꌣdѡF0Θ176[MӴ2Jcuo`XlAYa'ȴDJ}x]B88m,؃7C!8أ3eaz.n -]̈c}/2E=T:x<#!C4i|ӵ׫W/|8ci!7(f `ɒ%~~i_G0as#`lv#K޽;Q™D!N#==!QB[Q [r170oiVMd;OSfx>~uh}e,ZɽȺ{arnܿMhxeEEpĥеZ~ PRRۦBNμT{;{zMC3~98[J΀PBd~L_-݇9r[S~k#`jBm *K.uʔ+.H/FɨQZCϗ=u\]p`gy `ڴi9 /K-NF"pG%'Mԩ~KS\SNXLC8KΝk P*0n8 >;|jEׇOτAi}>~Jp'Ϊ:x>- ;Ç~,ݻwǶmɤ]O/6)[E!dQp^W +W  ozx| *2_^7LJ%-f3ٳsKFz1jÆ s<#{h4vs]opޑZKWoS[+,tF j:-( Z%R|1 XHe[ Qp]`o{-9Ex8DYu|iǏczA2Ru9*(;F)j;ɓ>}q1so|muU\jE>gӚ[ns!s ضMii6lӥ?QθL' =eMQ5HOӹNY_#pMyN&IgUY|,NOP)ؒ衞=ώ)"Tl+Rk~@ʵ$_=8txSBܧnpkjE\kq< Vו綏 Jaɿ3fPYY3gΤoȥt?[ [EE) )go=נ'N|#3cI`kSu䓵rn M-om-דdx6ԕ:C;i\t,~Q̝;P(t6ضMS-.,Ik ?pLa;vf &*S~gpԊ 8<]uUcȢȣ:u*+B|L d-۾Iՠ[/ i,T1 6ZPMr; gEJ(71Y0nu:m;HWgZ='[ Ivzjɤthj-F RJ;L}PW.QUo8Gaȑ!e| ]f ̐?y:vwU݂i^{]WGpb`ԉ矿f D/F~z9}j wc4c՗=\KBS6y*&jA ٱA&"%ިNu z8 yilv6~ T%If͚Jwu}e1χLR/)N~GeeA(" QP8{ΟVTaKKV ކeYFuun4 \Bw+~kSr0`@t:cw+^c襭ǗzQ8ZޥpDһ3|0+uU΋$% +XXM%. ._Ɇ.ٳgn:4P[R[Æ ຟ:ںy^ >ÆSgK.oiBѥ'WV_xfMӠ]1,˲׬m#]%۲\kŐab|8Α:MʬuA1F:\lM`iSۇtAp?w| "c8< W@w^Z\ʖ-mxPS1 IDATҹ ˶:MٳY:9iԺ 1{l-Z3w)긥iݾD$o9s਎LBGܟNK0ť.^5,mS_ks.JPZ*ڃt;< WuNzK/Kn6dCK$B 뻝847ȂaYK W+/@x) (UxWfURΕvVd=T)Sj[${[$~s82 {']:{r]iaݶʍ؂UR 0ľhpfNY"H$5inzDr~.e3,8u; ͌BT.7w0VhFw 1m@// ;_x,\)6cvyšZ<@4 9+2ju&/#=QdUҵΔY21H li6l2R6m{5K|)-)@QQB]u_c^\gRʳ w% 6>WدS^K^="R""Gx=^3K܃cX,F]lIv JoP鍹-T  t7zW$7apnJ|Ba{p+٥Lg%8‰$|rz2O~=Ud2ڰ3_㹴 G|({NmElM9lRV*Զ |Aiy0 ÷L9|kT}ݶmƍNr?VZkU]u/ﶫlۮh 1m/) nLa5$i GY S )H('nsj]׿piӶK[k!_,r8$,Ĕ- K .X->I`w׭sTm~ $߻-hR\?}>G`x6!\)pl,fS/`J-qlRgqi;_AXCwӇ?z8t== d LK&: ׎*J~JFaLK 79tLG"xW}7L1T0 v"t5^'f:v< > r\\Fdt5- XV{kgH+pqub/=:+Fws?Cq`P Vob4 ^ ^R;t&' _91UlőJkumlzf~OʰaBpgsFZ΃\-wSOeٲe/<M.3ou]IM #XwC/y~i˺?Pa:X;vɮHUY{x'T u:Ҭ.Um lKbeCpiҮ_3gV$=cD 56,.WA^~fNhm]͗dih_.%kPt˦LD)T jjԴ֊b:Nv4%r[)-Bq76y'%B9}wG$T!'s'sN4#uoc.Oj]wݕ}ݗJ a…\;!_ W4Ymi6mSGǶm;Y}FXx,:Jç(*uT`dh;EqYے6E"`p   ۆ0u-W QJ.LX%%I%샕oL2}ODoڋgy0Otrdgճ"wP_9e2"- 8NF -oVg$Rp50|WOu]aPO}+O3`}-WuL՚j/;u벼` NOUV6+W}ϗ^q+ny'WvƌcUh!;-Tte֤ #"6&d2t"hl8ĭybVF/ QXz=L&-[QR^Z5SZ 2ʊTcdOU8];:}LK~zP67INsSCU]7/sX^i+W L@Ϟ9vb.t'J3↋sa{pwsgDn}-Z{jEoBi,K;Vn٥WjOG0LwNp "% +wnP*2L`'<5q@rЮDC:Vs冩* !W?[V+cD$ TZ>;j^ϓ~Sl * (K0`Ipqˎw`VXJ vHsTO2x:􄳒זplSWTqo5N0`~M{ua"b<>DNI)P\;uQdw0M$V`+  ']5gg&-1CX"j c=:9e:? 4+ mJ,bjBFԇy[jYs$< rh%6L޷B,nVkqO ꥥ cC؄ \I:MԉR`q5@ÀEuq_҉WVW6]R$2p\ F$`2 !ikcn\U͐{ H)fYUD6!PWWRRf7$Z_Ao;Cm-H'+in.qUm|}A^mNe[oN,\s/|u6ZP]KW®ݴsz[:~֭{‹Oe[*)=qȱuNs'f{#B$GF:Z:Z.mĶ$8Hl]"#m3j)@4*`[@9Ԣj2SYֹoj@RJPZ 8nɹN8-9xwsu/Q%+ }~wTA-X ÑOj歓vv;d$@`Wb5T -OkeP[aA6ov2Hߨ79?UmKmd&p(j,KԐBua+~锍aSjRL@u=G({N?"1i\1T#&%w>iH7Q]˳тkKڗ'4yMf'_!ismpAۂ`] =#n;.1= TzadnL:Ҁ5)íi*fՐM[II$5ZNq("1$ɹ22c6y$us;6S(ml.B45yޡ4WoQĚJ35 ur1ZI&e{YVݲl,KI{v~ 5#k6}ㄍ" ZV4C0Kf#Iz&2/E4<-!Q9xKnjnFj n~Txn'`z-წטJFT;sSM3x%|:|8k !BvB 26b3fVHk#drJolzNաaFWs3mK2i[! %3i3[&c+F 5͑6j]yS!HYaѪ!`O ]t|PS[Q0{Σ1#7o |r w;,mXC/_O&Z_WG|ha0oe.CBqH40F6\$qwWL)h@D1XAdP{%DM2it&H'mILZZ$+]u 5,kGt_.R (Y5˹t[))#v'aF?,kj[<ɖo'Z#6Q$mӥrȷK-^](ߍ|W*_tྦྷ1~(%an`kQpyq~8dOn죎CѸA$n0'NȌMRJbqH 3|DѸgt=W~{q_$rӅM"4ۖ[{]fI?#=֚@ -:"W:JD{Z'b4[gG}{ w +;s7_<&µG xNck񍂫^WWÓOwa(nRpx+lV;ܲ74Q:6Ae 1L8/W돟Df޻XatL4vC;Neo@R>m (#qC{ #@XK`2 d*1/ED 4Ϥ%_:eIdW=Q"m8{u^vک>}jܦq ԡΚ\g`Lhაo i~T8ۙE3u]nFr0{OXmYh{"\c(B}~"=L| $ӰpQtV[NYFta[4k%)%0dHk3@ÏFAyıKo kl ј1!RBJ^Đ!$a,H!YdsC$aOYRR)-{ g.B&SQ[!CmfP]krYM%+ UI&b&H9ğH&,R 5PXBD2nUUW!C*8 t>bpsn5 6E i] Az^_-AvJapW3vlep~92\{"/^.W]oDuαI]͡3.:"<"'nuNƎn(gC/ >赉^m!%<*6T*KGX5o#ou>οD=Mmi ’i'/8_,ޫ0llÒOj1CM뒘)me)iqTTRQ֩[+>m-^ڶmw9gVoh/>HK0CO9"=d|p[6 /5irW7quM)lKf~(5=TxO'7*b?!:ֵ¸z|HSȭ5Yujӈxj;nR "1B:HjI^'Now1BbDtӇaqǀ9ؚUxg Cj+ŋwJ7c3.[98Ցxw[  +'5]BpDž~l&Ř[4뷙L#l !}ϙKoHp9{MQi{csrigyUD7'ݑ͆n[~U:Ha/(%[:ü0ʹ[D\>~s|)aux5+tP ܎h{`8c7~ޯ)ID= wrn):Iن3 '_ gª7”g_S5v}gmS9ZCwv2&qk` Y5W~Q3|ͩᔝZnK= E oz͕;N*R{Ca% /h<;7:77"5'‚ e_=Bh`2xA%qVH$o^dҗצptqƽߴ_a#$d 8u[P7"ij8ȉ3 Q%P|w Vc&Mj㾴[99^ 4^}uۀcS>I?Ab1 2 ۝fOP(0NIRrGc/ ? lZH ]44JAyDaw{X,FU-@'0j*9hs"p81r:BpEp`I57mI[AzpxCy}VyaC6Z +s3:|P_"4UÓtIxv7x,PSwٷ$zbAi^hw[˱ 8*cir OU'wTx5Bd&|DS=~뢏k#6I`ՒW: R :FҒŝD>RPCmknSmuUMZjB`,] )Ec`0yd1ЈkqHC8+֮g9P.+c@d,E(Qg}zҦ~rU#EAņj(%HCS0OL\G_`VD"R >8gX%2iHK$Q5u5z>RZ~qs!sA)d ށy`ƌkjj BH)fƒΒ}oc3W]?m΋;.uqxYl^9`c#,aXWM:ȌO8Oj u!i,t.RRbiⰲYYIwIvBXڻFH$28J}η0Ryy "1(U+lNևy ~?o߾_Hp.t|EmQZJX~:ty*3 73Ľh$u݈:xawF(aȬc~C?C]Gȗ_ԁ{d˃uǤTҧa& IDATj8` ?|Έ7;w2!V1G}-PpT=x9uz׿]#~啩;,gquEO?fh>qbo*b0ieX:xKdr@^$-{rxٿ.ݟGK@C3!MW""GMis'ıՂ=ߦiNn}N{Ȋ 5?vcS2V}=JUꘫ 4=oy55uWĖ+NH);y/##1;x֘rt),j&)m/<.f܎-ızZdjoLpg4{~<@fg$rgZgy{5Wo)ⴚȗ/_Z~a2kknUSm袋¦i>q?]b5::u8(IKK-8:wK=%/6E{+9q %wc6Мd c_`SEc-OBN/uDʹ)\֬_Ӗ-GLF^vl;d2 4(lwpn9GgUȶ0 =pfIfXs:wp;>$up7ڭǡyWiw8SnPׄ{YDpغU|֭[n 3"}<B>L&O M1 N}hhۃid6o,S[Cץrg9ძ!hܺ p;t&Njs~z=9~W*F 5;N}znpt:}>Su,׬i*j5o~c>?D2ih˵d,WF}?}k fkH'TKw%&q핂Gz 1o,|nhsӐB`m|G$ۄ#t;;ǰU;G4ZpGx϶N^Хl(w4n3f3N |CpM7dH˲X,v񲵂S.#XYz4=sqRSN_)Z٩.7}j{HWpl|)an;" [W&/x0) =^t:=XmtT1cb#v K ]w~8,ˢW:O&j o™GHiKRSq5ћv <Էɖ=Ô1R2w$O7_POM~z>l'<\o &NKߑ8Z+ ,Xx)\ DD"lHuS[ .uW͗^w&"0MeLfh&HȺsápӐ i$ I`Ǔ2V_ :<ιHiL C6MV-u nf[#p8/2O|6Zbu-ԃ/kup4W OUD.9ᕽzqn dxd,]eVѷls =裧744jv{ʎ t)agUz]`K!(كlc tCoŭڷ.7#e"<Ü6yƎJW;_9:zLRC&YQ&.1:uju;QEV] H!A430MhLz)؀kH5LVm˧9 0mmo~϶@N-tugk1~bYMMtx"? T#<2;pf*0&Q%?:HՉ384шyhPc&> a966|W}6@(Z-|hĈΞ={ɓ{S(!Dmg{a555o=3viӧO%wSCstOm nl1 ~cmw|O%p^{5*ss BS!߬Ak^} eݺq6Už!'I{vmGk)ShDoM=/$}ciqB^*vK;|s Gnt,6ARisb?Dii׭[h ;/̷ T=zT?;LSَ ֭GHÏ6lظJ"TUU2 s.#VJ3[. };I;|N\um[bm'Nw6DXFK_]v?RB(/,3>}.7mF>+#زEKcB#SWW5 7Ǐ??/7b֑#O̟Ӧu .Z߾^ ҥKtI_pѧLSNj,^,_~i}^[ }kuPN&9ϡPI'e|g55,kl,=zKRJJK/8蠺 t֬|L,Ybnh=g|bTʐRڭ]LGuVGm͗ګ쳢vd2E,ch' &NX[o}7M𥺺iczT*̈́\pW|kp53ɼqAC%ڥT)%H+5 XXWGso}J[;RJ o:ajKSkj੧BVd2CohwB!yGd,_XSS'!N(,ݩS+xq8 3g+?4NvB!NӹsxɅ{JCjkqw;4c' +WSd #\l\6zB}}풻;{wh(xȱcƲK<򈐽zivhATPY)xݻQC;l+Ӂ)%;f~ŻwUX JXOͧ)i"el)%z;C;|X_X2C#m2+DejV×ص#~ [-4.(;ht{ۡkN#6? koۋ%()LCnR 4BDQHFlU;J):NzK>a.hD}dbkʬ 66D{ڡV/`ߛd YV-VL2q\E5 wtjٸ#QO;]'I EAa!>FjlH=W}}䔲u. ڡ6nEsQvDH~ Sa 캓YV$z@v2SLF6.L#՝RJtͅ6kN uSh/T: ">(5^0^Z ڡVڠ.݈1ȬF$?M`dz3$![LFvC!-̙K+cHǑ`@]s=J9~r38{=؋eFPTnDEEQxIԘh$jS_c[Qx˹5gw]zfg? LPӄR1TV*ET#sϣ 9Ndծ2rw5%;*JM%Xѳ{h4tF+( YA0|(J٠$"MI:}#%R& 7Hn%HuDBS_Ly8qo_HϢb7?L#4_MWFTJcdt`%J9R91M*eb,Q|Fax> aJ_ ,#+.#J.QhAh4ax%ESW([l$?(E3rU^00G.NTd䜠J M'aG~͟u:D]ʵ at>FW-PUgiC D ])Rzyb86Q0*X%#bF2ش7pT뼣]8]޿*M]*?*ZbKAQV*1R¬WׇC>_ ND",A² TM_'#`AX/UQrN ]0DžMGESw–vy'yKk/%r7!TaW=C}e xay^QJ!p~WzΛٮGٖQF(gǪ~(@d *$|n^vL/o~\)mF%]JT<֪4{ȳ00ZD9ɲ}ȩGI 1wG?o_)fтh JJlݕ(zBHPNYf7ҩlW4I Aixp*xL|-(FÐRnlOlJ3ăQlJ!Nv}dS6n\00MZ妉gƫ;Rkvk4r}RŀEsE1%fIuJ ǂ- G"%G<˦|4 =ۧlok4BծY0  ~hc(I$CwPispZ6Qlh@/ ^Ivh5j'_a 9.tFI&*Eڦa-u_i!Hz17HKQ &7luq؍6NK|El4dE{IS-jjQ8F]pe\U5"4,o\]mV"%z8eq$6&pZRs+Qk1q%hz mk4J2_3BENFt[b_/b$$\7{A:pdBgvLr]-f!"Yr?f) h84I +aEoŐ{!\'ls -] rh4ۅd"(c"R1^ӨP$MHNq)E49CUw@6ъNoKńתVw.5v!il {1 %D{H!I!9mRS p6@JEٛQa =!99{з@ͮ5k4^'^\䶧䷬ wT"$kfxhTKI<ٗѯ^=Y*p$Llx?'[R1rhvkv k4^G)rlx773ăQb HQ!8N(ͦdџJT 7+kue3+E¥DYuW+h4Jr s?,oV"ށ$ِėcܨLwIβA lddKEʧݙvLA04Ox] F5vDYص򥒀ix(QQ]o4Nta8&SpT?_\TLx )`NJϵݿӴ]I8bÁ>dI+Z ?DKy+) [ IÒ4Lř#ZenDlҩ}}k|0Z5M!@T|,6/2]/V)i ; Qd2W,1~J#QBҼ>&heHT.I &[ӆ,3u+tF+$3G:_e}6'mC(8&,%qu շ!ЭwH&K [*Vi饱R;t5_Ik4mN]EQ{{J$IcBCs4`!KܽG63k lZ56%.) ?N_~߃*'xh)BI]JJavy1nr6*Ͻe!e2>ǾaY4_1k4m*GU;{ݓ=|#" KU6_X}^Axf8pȟ4F)C]`oz&v/=SY)Ǭ>fբ]l3Rv%Uن6m}{0LTB2AҪ{ IDAT$V8RRwKB)H:CnmMRm >H<~lk+]UB FfH) (no𖿷/ z؇1b cėqB$; E>VڇX%؝wǩ}[)<1}J(bOl?vѷIWKh4ۄu([2|O˱>w-}7J|Ysܡi1LMugYyE1c(J(HV߂6*S$JpM3d2` QŽ:~9>3 $тh ajkWDf<剂\;1bD/48ȸDOJSMGxRZXn=ϛǝ K2;K[}lE%{F=~hAh4[M2#?U_FJ̽B 48Ωx)w$IkVHbXwB:ByRd{m̴Q7t΍tFU$JWdOZLp-RD\Q~U3}noCY즯;!iCݱAVWL"*]7躯=eѧU/^ 5uwNtFUH) !?>>|]P7BSVǡMJ©qlkQ߄U'ӶzoXsr3ym#,6L ~ h4Q-d DgONOotjXNtFU(,Tź3]!O,8n+#>đ9|F3:(*_ 3& mk|B/=ߙpF]lR*PB-ދ 2.tIWt+& h=Ǫ!2tD7<} l DKm z,DW1Uetĝ"gʙ3?隝-f賖* x~ڈ'\>aXEtwUx*ё0oƎmѡlqmaKԱ{j^4{\u΀tFH)%eTFښN&jGdS=rZ0ЁV\RJT/*5od<9y33T.#7mFoS*> S:J(U1b@J\AB3ם_2Z)SҼ" VJBD 3+\"▤}+aQEE.n|eq+Җ|?(9tAg3 ENтh65l0N加Ifc}Gv¾(ZGY<5G6rWz^k=_t}WtxK|O:{>wGGkv Z5Mb7jX"Zcˡf tNZ0$oNv~m@I) O Ҹhrܴi+tǵw]ƌ8*ivZ5M qwU!G;HJn#$q~֏ R?>@P^"}LGcB䔪MqößQhAh4=BF%?TkB k]C%Ucr Q3%=eU!:'-"[ J "A, lCbVV}?g^=>]тhzĚ X?11+s}Z؏ 3)[޳ʦO-ߊy7ӻn̓ÄwOa߉}hAh4=@:%œB.| {E}UDvb䴦'9ҷhwU Ck9UVf]E8ٳAǣ|y̗V-)g& $,h9_ tǐيw1@4K6Q0?5VbY^S,ھߒt3tPuM$qPi)qDZڶu7JssGz6MSڶeY;5ttI",Da@гg,FXp~\˱3ͺN)`SCB ST~/b5(Gm3k~sc_/]=т&$ s(GÆq;C@C+V(VPȻ~9(~0UݖRJ׻q$/RObuUSyO+n)+.JӃq1# })xy/4SJ eK"X MqKCN?Z5 -^!ceeep}M cx U+Wb[g--|蕖8w}oTR[H>\ֺ y0NWIbr<=N(X֟ ;䋪0>c@pu"T,k0}DnmN a;(Fg?JHwWV~ڠ)-;h ]]bx<f&)JJq\qPI4lB!Պ+lh𮨫+**zwʔɟ<6 ,z:>B*uCM(ٮk$ZkPwN1u4PJsGϲX;u:}I~@!Tsr!P_?\=6]=ЂaضͱmK3,˹hSV~`K77úuB\QWDz OWZ[[to^t%q48 T,\+su% C%/|zYR( Q/!{X^i:bѱS^~6B4; p5.cEx UK+~=^-ڵ޺ebjj1rO?->$Q|9qܰԝBE?wDQtS %kF)d,Cv $&Yud)g y3>o.+ P.>A%Nxy㔿`z*Z5;-RJ T; j:")S0v2 hW?59V$6!W\u}5̙-l{؉DBH./R*>_k+# !:k;%U6R(Ar[h֓H}ɦ ~P†AZH }2ԕ‘hCg|F;UR??!:~XBXS4Yh4 eYI"HozH)I$$M ۪jNtWwƱ>(ȽnwYCCWWgVrV |/'xG [K>id,J9EطW)Pk:#@K*_+UiOm͟]-w@%Ju{,g9%i$Xx<fq1wS2m!am*lH=0s6 Ǩ\BY܊95KW_uc!zw~D"1^)5,5M4bm, Yo㱥D",-//_>۷x㍖ÇK0R:Z5_YRnyM$~DϾ;2xx@Mp{<ƌQGaƾAѩmN{>ҁR~z^~e~i͛dž `7ޯ.\0vn*R7 q4M<FSR R f>@ `mkYWJUJzR޶v"Az%%%~  ~TVo2l6{--ȕ+1VrFkƍjXy<ւ3GkK_F!N7g{ʽ>"~[*'[ofw(']ߐ!C8s9sJ|bO2;,ロ;+WLg:_'A·pKZ֎Jc7;9s  ǶjG,Zn~P(+{m4Ϳ޴iӦ: sv6jI z<cM Z0 8Nni,Y~ײ^,#i:NkMwa7 B`x,{g{7 W, L#U.a(in9r 4;zBO|]rd k jƚ554xJ׿uM]x%?omz]0ᙑ1<C§iUjr`?oÀusײnƢ[RNJ+ꪫxGi+=]_AKd k/(bmh>x6}%EEEs=x≝B}DGJ){1:t@Ze;oΡ ²t@XՎBu|}.!D4+;?vmR[}ſҰ*7u>q1Xp'2{ c?b2JJ5_mrqhj+ 2|Odnu{{챬YϨt۽ܼ,׋4N~;K; ijjOgIM)ug,CзfM'a?u]_fۉQ--ͳJJ#GW܍_Kz޴`jIHFKm 6Ģ6hkh$^bq 55ه}310(--#8BѦSRۧSN SO=뮻`0H vwvZGɂ RuBz|A߂5=&c&RJ>p1s,YBG d>ܩ6L}nj${*9*;IM"l}F u[!, $86H@rUV ~(+>P]}Kܗ;04|vB_4ur"ʪP =y8|gsw+G=u5u(ȟgRc1vX`'Q}+sJ_wAB<(Cc34o<.WES*q(?"Zgxc'5jTA r[)86mb,^EGŞ{ѣ0`@>:˗3iҤtMqYzWjRxkԔ|>Geee쭶f8Sx0 ca }뽇m(0Mɓ'.]p8|!}1B b)RA4b^bnـʂPJ0U@E)O)CE T/ &pIkR0Yݙj戌ԃ\u>De `]= ƾx+44yL `4.瑇o`kds`s5/ܧ+&OUW]QG>׮ƶJ)8Cx8묳}VRV^?|n-s5k_|1fkoi;C)w͹ a,˚WY{-Nu//{'Ri>oH$2$5"+r0~7mLF CR7IrRfPX \e.g~+ٖu 4fX 6ºM {pF(ƾ/7 Z繳!w_y%v3g駟Lmm!q:)EKK ~:O=T ??0:mَx3x \maOtՎ|xW1cFjaÆgmr-&aYJ)xK.{<}fR#ř\cᠩ0s?=j! B,b :S{Rj\QY9S^C)垰!044"7ZmlVC "^S.e|>Ç'BBOPYk2e֭[!>c2aLyy9ehlld||g$ ~?o6{wqCSN?0 Ye4 6*^/Df?dmsѕ̝;7uO>{l IDAT;İaÆf@j4)ss5^yuuu3^Ǚ(iAU8h ̞M5dksz9ǭ \_[XGwߝ͹u(lpԵS ꛠ]vc ;&3<#. ~_62ιz̟?'v߅+7s{9w_bL4i1w\fϞ]xja#pW2vحnG&2~!SLNe>}piq!G19Ǿ}2yN-R|4߬[-n&1p kN;}&GƆӆv~k@",~icΜ9զihjja+UЧ&Gπc}Kʆ,It XYVfzjޮ#_Zʦʐ\jUj}nOXR:)]Q' IFfBBk;E\|4ᖏ0y2g.-apxkp59m )%sGwrn>}2 wEEEtAy7R;08ꨣ8./]Jɘ1c6lXYulڴޛ 6 ŊD/1xpKsf|.G!հp!v]ƍkkk .2u'5gi=S[Jy:Pۯ]^o} &gъE\:A?}s,:cwZ۱v%\nBmз=ZXZO s 1/azPi#Gv+v"{^)73Y~b-keܸqũ:R嬯H)a锖f%w+V0ydBEbx?p;t+;v,7pC:?p|ڑBJ)曹d0|˲m(* y晑0zVʝE+O>|17l4MY'e ObeLF 9`A"'M70FʳӾ; TES{{#kWq:h!s,.9{T;N |CۣIQnh8;浪=PJ1qD ݖ[ǬYx饗0Ic >X~[ x4,]}Φi2qDo2qļԻeYtA."d֬Yq7~_%_\8x0$L6 !>9ÀѣahT9J(.駂jkaKTeeCoҡCJwCt&lR[[[iӦsM늗Iq-_Ox") \ 73udٖhs)嬫m˖-cʔ)477wC?q+vO,eY=V[܎|u,Zc"dDx.ԖnXSyРAxr{馛+ⷑH =|m1nMMM'uM0g]sU|ᅍb_\L扔,š{%G8^4WWWO>q_ .| 9J-7*2<::QFxA^R5{&u5w=YT.]&sެ8 w1F0˹_E$r nٔfsDsx8G ?>-ٶ`};8|7w[vy,z`&},c>s"'_j*a`_7O} bxWȑkG)9)H'Nܖ[odR>PQQڑ @cccṋ΅$+/4fYo,W_M?uՎB35I] l`f`\x-6$Gaoׯ)-+qQ3he0h9 ^{鵬I;Daif{]]]q}P к `0{br5U>]&W TpTZ։J9|o{]G*g۠=?ngJ;ިJ~#{ Ǡ?26!9(rg(v.(0{2}|.y"HSnfԱdPoy%G0$7`@57~iڎl1֪G虂~; 60mڴ}?c ss]Ņ}>3gΤo߾kkQkrrߪ!bk~WΘ Ks7K_7dƌx<_~|嶷ulu˻ۚX,iFyyŢ6S\дGgj/>? >i;R&X핕ޗ:V)eΎR ۶ { !/}O9V{8|,1?@Y'bb)>\}M:2Q>kGP ;iBnRΧ3ut`9e^YeͲ3A(#rNt|-mOaȐ!֭qʊKcǜE̲p;3X߀@ɎXPiM Ko0yF*pۻ=P)P~LFp(D!&y,1%Ψ#醚9}:.u)PMkxSs+Ov:.p:/r~nT{|܆fwF.~H&#'O <;;9쳳.} =s}!m!!,dC)wM6 bi|-QZZJUU}IgsؖPJ0w\R{ZeH( \k~RݖHUU}xYII)r4"cOkB/Ĝ=$sC  2f|CR_[:KIJ ߰"aIeZ#=A{I<(]Gml ]o[ofq?™ 0P.n]op`kjp˃Ƈ b7.ײ{#?YZm555Z*=ej!K=_vqv:NVWWe{޵fnmN X \~ó3rH|ALն5kְ{ֆ"|k»rKf~ Ø;RFKANȸ_p7t4X^ܹvzІk+C77ҥ?6֭33o.-vIkq7tL'N.d[3Er]?a ~T<"$Շ2-46泌Guxa촠sI Y4>;g(={p邠 h4V,[K5j_b⛢)^FFbD PHn1[f\:(s>gvfyfg23zܲB Lͤ]nr1z!}a_jCGKS6? .<;p#A3.<;4$^UcO?>_r%!F^mim웂q ~~81wuUXQ.do )AapiY7|37x#eqG&ɫM·]=ӒUKO][_;Vl65oYf붡 ig{{ڡ߈3X{TB>Ka Q`5G{•W^~ܸM2ˌ3rC,nR!&! Rӈ+7^kr+TFz(ԕgEWwq2M۝(>QuR&BH];D2 6|8$jxʈ>rBrDP5 ך>=oe˘9>FcwRuיu_>/)lie0[=;vߟApc׸: ]SO=g >090U o! Vx%O ݛ` -:o8aȕ+W,xhc$.yeVohpj}c|~ߖYvAS4𦭠"=zk~Mهǎfkc1:S)9䐤l6KuuuW!'\.7vd Kȸ&h旑28H@ўn?pFᥩ$WY_S促FGkqBJ;Dǀ|*D '{1u%S,hu8fV/ҝ2h^I=i37xF?s!`~: D^I= xgn4/DzBqqL0s=P__[{\ϋu3pq<n,SXJ.رcZvM}T?LݚʊҡVJ00,i LC+{dV]t.ۿC B)dݺo]=ӄ7aUVaIenk<ꨩͣG J%.]XJOE)&|9۷Ec>& G‘f[ M&mcWh  !*Ja0wW}^B:!TF7R}%&AUx q8d؀$<jّuN_5{Ԛ!I Z2YPE:,|XxN>ܢewE>,v\60y. ϭ6Ϳ8%Z`9pE8 |444(//W^tD)ƬTۡSYɔa$Jk2iH$R>ZJ8~ԯY:~ݣ ]fZOQ@b.m hiIkCݖAS8*ڷể^MkyyiFђ}z:"mNj.#D?s/{ zTWh%y{0R$Q|2/3t֞PiWhh9/=;v,W^ye(F.; 8ka8C.qUL-i:B)aP?M-;/. pfCvmo-LYTD 2H W$'S*i Aذi Jҕ6pPP7Lt׫Vm bk-P^7Fn., Rڵĉ*휓U8CIDbizϨe(2y"8Q+>O{yf}>=u}DM: HWŤ{S8젺Ќr+)( T0wJ'WD/T O *l1^XCX(<3Lkjy)NoKU>|.^ǒ%K I{֘T⦰ չR_3`>>~ڦ-Wɻ8tt2@'$$2X=8@Iq0fwСθvO(}lׯږgII2,nW'S& lSׅf'4H?^:90HҲyhTԁzµkEM̸Qxv|oSQx=Nhj657=Z_@}d{ͫ lDYphQ|i|dvtFzGOFzLJ_.^Bv$oAmR;[K0ːn3<  d|u*EXRSzPf)h^_ W`Cj޽;rKiSZ\By 8l淿-|[cOx ˻ٔq8ttbL?x.8N+W.,Ėǎ)Gwÿ}sgnv?*ڥ+!ɔ~ͣYV05"4; J_=eGn /^,W3m (EyC-ᯭU IDAT!_ҙ-=QO}Jy90|4m[7t}XiL6'xpn*} k-zE+9LApHE2UNqmy/[y:EBf.>ro ˨gf EOPR0oBlwn]K c䠶>KeBqL)/F&< 4Sz#BӒei~>c/-u@XjϳJ.N2q 3i*+>SG`t^yX{-,/KX[8R"ΞV!UD6\/_w1~ЫV?]{~Lf4>nW*Čw̏س-h.̨k5FUYhlz->[ %^+׆iRis ?Lyy9y׷h-ǥ֚zz>*++)--{EfWV VWGh@ϫָ6pqi\n̰anܖr8\գ{=;}eU٥a8NsЌЌldmV4Hh)rOH筓^fڹg{Sehp)0L)N%{.]? RsTjƊ1( M8K\rruZh#4ZodM`{w_]nȽ,ZsȪAܐ-6}kª"nje;ط+  鐨M,H=u+'S5-9*⁀g}*Yr[ᢓ3\Fب=`IxtD. Y u(ɋfxkz;tXD^F'olF#_AD+*Rb 'н|:C2!%`oB:AeCe*iD*+"iP=4&b_e'*tTo9Kè)O@_oN/,f(ݻ!Z^LT!;!UvJ8)C lj|Nƞ 1"MÀaΗ*Oj󏃣/*☛oaOUw5%t՟KnW٦YYLOsm۶mbQؔ8k2yd{1^|Et1O[~e yٶWGëY^g\>u0&viG?c)%T< +xfBHGM&ŦaUXI#OP"@+:Ptxi Cu@t$-qlusjI$s׬ZWS޽%`6RdچڃCM9ٳyK0E䍎iB|S`SJ zJ%Ǟe .O]p J/k)SFqT(=0=;oj1/һ' M&tp*TWCc#Cm:8A)T64y.',KS^HЩ=CvP^m+M%'!Y~0jH8 x{⻬j2']Yulz(: a5)[?/p(G= /[Q%-x tlepS: ztVGEܒIx>7UY1l0 !Bر#%%%~h9@CC+V`ѢEL:w}ɓ'aÆ<ˊᤣ'}fsՎ!A4?(C8VYOY0\6m/[CG:Xf-Gisi5 qT:Yvۯ&4!h%ƃq.<~a :$ȐEmP+VyY%x!4YDK:NL4DƧ~l reOLZzϡlN{7)?oiT h:)\4 0s0rA,D>ym޷lS,XO:<l3{@;Ͽaq5Ͱp)JfG~3S^MMPWKpYѡ`*$[QF`!Ѳnaۓ` 5?|Gc:iJ~%Z3᪃p}-HtA"W3?~Cr/'8usq$,Uv ;茂ugO9Fu]^)ޯ^hWTBNн/. 9D:tqԲGղD~ ]'1W O9;0 g\InԲo$4 yܡ->(hP{}K}eP²b 6ÆZ[,R(4tj n\3_Ϣ"5ѣ#AǮ#F]FiªIKr>YULC=ӻ;ͦgrfk L[oa H'V-\qA2ePZ0 '}tϩ:H gX5Og-u;9h %mS89qMMMTVV9 V7$ʊQ.t%rWH^խ3wށ5%?WiG pYt-(ԯS4zY*)8ݼ986Dsoγ@hv8rJ)hnVڵZ[ 5IPV"Yj_7{`Ք*o,6}Ʃ^ upA{׎ sq quj7>2Ù-8̖ 2.AvTR f[&}]GJ6-7{#7 {ۜ[0Hs9q9~j~ْ\蕋HvHdʠBei's]sd[Y>,XJ%ɤANi[HKV"#VVVOhi%02ShW/$SaB"Ue" kRM j'1]{ "8wQBΘ2qH8jP- {[c@@"  φ6mv=^Z Pc+~M"eeYB8%<~;>N#%.= xN!'~@8 w_<>1xZqt }\o)ֶ=^8&ו2uE9)aU#Ǖ"Fң Bpd{@Xnmdma!%]e ,ͪTJ)q\gt\ur}2:gH4' o:TǨD]Rmu8m}/V`Nr w ă@(MetӔ/YgBI"ePQ˗C0y߲z#[B(:/*ca.Cݶߺ󳻤PߚGQ#j5 n ~}J~ Ɲw8v( Ji_x!iQUܓt%Vo^%:<^{n7#4%.MG+5e|^SLMF_ ,Ώt=K1BRҿ\ maHHd#R9jL"Pɼ6F 'z4N=AJXct\ov'q|(x@lj-!S(g7@'R:F𾼭j_&%(a/47]x fM駱>mjj2ѫN$e٨uv=oK7'P3f*g';?<Fmcmt֧4S$N{ykӻ@V % q?sYw uJGa>|f/xAW[7 _, ߣ0{i1)}P},BXipH&VB{c‚b4i` |'fruPuj_]_J60P.R J$)nF!I}M]I5hۦ>p㪶t;Z6N2 Dc C{kR*o5y2tf(FTJ8hf?"l&i4}"LNC,)T`}뚻~}w-kqxzQ\pvCqEe$vNΈTT k;v,'N xZZ7&cK}Wmcil Bt0B $6 u.0m ;=)H`֗89B]< 6ln{ 9H8(Lp0rH@u8d?6mk!: 8sa[Y *Ud"mplo>,֭iLĝlmdFfs񻺶qRAB8*{$`}y RBQ":VȫO #P $cENp]hɇG$a kr8˘JGY޶]zIMxD9np-}M O臌_ۖmidA%=MyS97oӗ ha}9*>ZncP9ִVR O %Cjv~h{~ !"hڮ#J^ej_24v uP&om#x oDU ? *,8@0WG M>}6_*21j/}'z^-ѼNC@u{8`?8[ ۋAJ*,D/퍶b$)ub0/))1>0˰,tÒZϲ#>?Lp}u oeq'eXm$,߻tèZPY~ZQC2HYHXJ1 9^DxBؠнa`cujKll'ɩ{'kQi`"eh–6%Uwl6g 2xhs!<S hF4yꀖ aϞx.ӭT{/\$!-h%qH,(wԀ̜ŗؔ-BUlB-H#8<f2|5 eM `A] 7X%Ep͍2zVct,8:"cPC?; `@}^yx \z"gDM^+i) R5*3"39u*hT홈y bOPo(s|}"^ɘd-e1!399lh#'BJ)iԺ@62w_0Puk:S[2(0k*r(*PZq=qowZ+WDg)JEAyu^}aAJh'\ٜf9p/ v-{ۙ#hlz{ZOjuQ+6:18>oPn^]1 h>?찗lT-w?D-;ds8d4f0z7f̨١aCV[;Wܣsv 9 >⮀`SґTuLJNMC7nvL,+<3|KƎMYT$8[K~[ /]2o/bz[Hi%p#۝ 2aOJɴ+8{$/C~ /y/胡W5%QS|H \mhhG漓j s:Ճ+FbBv IDAT:;SSx=JzhM=#4ĔJ8 02I;H'f`ӻq=HY<]*9ƩaoH±q$̶J(E pOWC*Wh~UBhYJG:AMn[tڇ獷| ASM_uI|oyr6NΦ.+Dl:dF}̀ k28f3wy=[辀w\aѥ M$m;}j,7cmHThX" ]Η__Ц  RSDߓZz Pp Qx$R;C!<_zuG^:&8~8{7 x-x;/߅pp(M M#ڇ+ 8]*n?ʀ(;h]z{b7߹D1B7xSߛ f !OHѮM:NXQ[_~pY]$Nw[:%tgH"QiV@0,N1ʤZ؍ >K03UN%t:o|_Ć5Ylf5n RKoM8 vbg%H$:1L榷!0r8 D68B6iH"=ڜN){EUT*|~gxx0\3Fmx0)<WmKhJGw8_ 6fNÃ5< ˻5A#۠Wa5txF y:BK>Gx 6,B m'k<97֤eOcVbL 4] !i~|9VM fjd5t?=w}=l{V *@yUTI6kXv_޻fzLċL&c#F,W/g1Ie 87‰K'%q HE57C) GWxA>E`A}D-#v,k99(-R zi&W\ 1Vdg{Z ɿ:Oo'7=Rp)0@ a ~=Lพ*:G_b8 óp/C-[l;B\7sD)s$9Hv `^ ~6mZ6P HJK_GjBws4(Y%lwi('XZsᎵM37&Xi{K >7GIBjy,Wnpt)UeUuCY2Evxo@j7ӌGΑcB3яA%4WJ`/Y"ҡ-1a=ڹ ;cF~N@1OA,(#37AeP"~m<ub-0k #|Y ]' #7<}'I++}␪|~v;4r{Q nvF䏂0K82uisOXnֵ݂xǃmjA{[LQ1,X{$W5+b@A8]vpn8mS/C{<:c[Eo̓Q!~,fթ}q4J^c Y_SĻH)],#1Pw֯ʐ:rvzI.򤄊vIV N8fw:w]2{=$P%]t hoY \4| |5N(U]?1: }.Q<8, kJS? bG,1bp.5\u|{"J`/ZF*xnNK '<L{@ 45jFKh}c\"}ZC`Y8xQK 9it\k}eZ7Rw @xS/*\\PWvKEA8S/D\o+ŭGЧ!_`zPHGAX^=/}uup=ihnN%:ңP)p9G##>|uNQKS߄ EEPQx}8tiAJ0Ev@tt%3r.)0(g^z( @Bk1Z: zLmL݅y< h#tDqy ራk7-!jYς t s|_#x貺]"o H)fegΟ{2R{@ 9s2u%0-#ruu^Њ pbS\.gfŜyH'Mښo֑tO6| δiւ+c|m2+͎f۔v9IEpPRS=rE6w!RT_Xkyk")9f93<*-0v$ YAE!:Qe"sSYu$r_TX+oVC/#bR+ő)RY8HIYU5uеm 8`#tq8v_2 YN zwox1X~{x!0aa„ 444M7p1ݷ%{Z7OXK, έ@8ĵ\qpG=_dÅW'Nx9_u*w)@ D90ifO=z뭷ڶmK*?/___Oeee'Ol \媪n< EO Aim-]'t#pH`R>1o}ŜpFGB=> 0y%&ѽYgc^etOlxwx=؍c8|9GU9  }ZU Dp^{>C@= dژ¼#(>4 S5 l1t[J~ֽ Zӧs455{>4h6>FuK@_` q}XjyϞ=4靺:`yg޴/W^{wrT~r!\sIRVtUhxZ5[,ڥ>L_p0Wok3!_ݱ(Tm?)ʯ=q 5.UmXO?9IHn;LJYD^ϖ[7#˩QIt"E;)e1:G:+37gݧ^Φ*F˽ϐ!<ֵ-oG7 @%N5/Z$۷=}6k5Uq.g&m'-sr 폚1/PPc_K~&#(73Y{_Kp~x)Hw+"3HecEȪQMC~N:ҹs/ZhnK|FIII{%tn3}7m`KϟS,IWZZz+}g;Cuuuի~()+Ά+@2³qi.S >KMaBK!)\/d@}s]%#RN/yCh{2'Uë띩3(_`^ݮtƱCpH Wa2LW\\u۸q>o߱8\C?㣁rhɄ qPj>َ7l0<ZJ@'|8\|SxeUp8@ !=?m 1ǭRGH:ZCs#< >~,,**:f͚54aׂֈ1ml550eh32wA}8q7} (`YW_}u} \f:V|i1 ?.:Uib B0[^dC#mpq6.3ұq Ά;[\2/,} o(2 ]ta=mtf'kj`T1CLLzw ؽrqTWW_z߱m Ý`ppwȃGGW;a樃&CC}\93m1`,_)csM΄b`թ[H#M!ݹ~:Ռ#NgrHGk; [ Z  >= *R?~wV:69xE* KKKϯnFF;|vkQF'a4$I_z}ذN26 ˲p^zuXjՉRљLf؛eA#``)~|K<#BӉ.xţ&㐰-#=AjD wk+kq$]G5MtxVJ^yudTN< ^٩غ8 v`V}KaCLtl wv:T*uSnrݰkFO<~p3]9x{4)0}^]7o{,ytڵK]]J)v~ UVx A{Ci fzDž@+1fSql Be"ւ8Aϻ]e`k7!Αc;ONV!=0 8x \<NmJlvP: {shnaH$~r#X]Z;nCmuM3Okk߿ 3flm7l= > dB='HVRR2~ڵvC>lT Ʃj̞=… Rm22`*KCAPRI"tCX nŠ*Q*GԚ_ߦh5سCpoÖt0R{nx~2u?]DAHZХt {N ^ A (MB6 i5t]sT`o%gp _<90οvd2顇;yqmS)S5kׯML&adY,2nFCN:vl)@2N燴YgH0y k@H"B(ʃ?5"NVQJ?* Q(HJ Hԕ"&_a{|λ3coՄVwog7p_ҺLBH俹\nhcom3Ƥ8 ض )% s/>@Ef؎_͛liF6L)mX"J߆b;漽2;OiuK. :t"-q`YD@}ckh״Ll2%{l ` tڷ4gmX@[ m2]]ݏ̚~}K^]4ev~;CR˝s ǎl,fKs۳pݻJMrP@'4ZZ^۶m{qРV57+ߵNdw+'A6 Ӑ$8٬Ŭt>Ζ;s97 G^[\b2=]0_}dg'O$^^ ρ򵵵m}rQ@'M "鮻˗BL-8eSk9art|pH&U&Ys_T)tdپw}l,v>j*s=RJ !WJ)e·fv[nM477 Y愐zWi ~?dYֆ9sTKS ͟pOf! `dD!L$dx" N jY^^qƲ?ԓZ[-J)RJU R}O?1E''^qyy{. UnL!W:vRXfoϞ=yQ2RblEm{F_2 ' !Dss7x#x8#KJJ 87zzxC3H:wSRJJ)ii:vZZZzg$IڵkLJmۆanJ& Ƕk0k?@>tw,;0O=~QuQ@':m 6X,{Ϳn+ |5p(O7zj qr#! \J)wV ˖߭uOLO3?RQS3`4MQ!N5DB=;xB<Lmy\$άnDGGKJllI޽[RJH)QRRrc~BȴAk0gECUե xr9/Ujp4V_M6e_zWTQ2E }pus/TF3Rd  hdf7vy http://ns.adobe.com/xap/1.0/ xPhotoshop 3.08BIM?Z%G?201924>20141002720141002<2019248BIM%Cfͥ} = y" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzC  C = ?!Ƨt.HQLUDP%w~43pŊ`79\/˻iژ)4,p|$KCG@8ݿ E401]p$ [##2FtTtlԮю J@\+p )XPI.xؙ!'jCҀAQzjg Pn9APmXM, ` }G*|źzS*C$p4X)OTRYT/~ lz^})rπP D yb LpHzcx3nr9S'3ST q M'%x;Uf۸F1sք>R# ^ gR#<$*zn N!4H@LO=Gb+9ѐ\vqme`A .K0% F1 ܘ ^Ҥq ҸD<%H#D_$?Kw\|ȏAIBo+,XS[}sOHvFHŕT(^i_  {Tdu1<OJ< >+6(ϿF-GR L}?V@wϽI@vQsԞj`2dn$Jq3sHJރN 08ju P>8 *0V@HOʥt&IrO\WiBq:˕\ޣwzڈ}s(@$nNFAXe(W>~F;R901*d&,w U,z{!~V= LBCHShܫxd=zC$$ @dU{p?25 J&;HU?PihJ~cHP;I OΦ#)sh< l|Ts&UeP1mA#>@ʊ2eLqO@id<֤&V!`8S}q& u=*Gp>)n"W'Zn 0T7QdG~=t`酐Hcf?Z) ))'h|ÓOO0A! 9U6B3 ֬˃=*t* u"`*ӊU'8;'W0rqL;Ks֓ !9O>ȡw48_as4E4AzrF+R:Ḟ$})3*1e tO),|;NHϵLC+I^޵W+?~E/vxb~̀.`XuRpx GT眃ґXc'ҨDc{N$PS9qL6qҢ/aOژ%pĐ>1\ 1:wN}iH{RC?eOLL Dj"ِx#G4Ԫcs@ !TNp9Py48HJܨLO_10qך{ݵNO͆ 9l~u!+)bS#_cJ)IRrqLcјI ӷ(S֥ |ԁM%Hcx۵rǥ!4@#ӽXeUYGjdd QAHks ހ,^>bq*%F,8 c})Ho hMqҦ݌9oN4ᑎ7qP*.ׁr=朅ʾU:B* 4{*p3ޟ02(U!:j7*x9g,GZ~ޝ3MIDL㊏rުX}*T(c*3 \|)S,A%PuقcTP)Qg%sUw/ScDc zƟ0A(Īґd@F'+ک̅QRGݻ>+bp2sN]b1 (99SA"<=K ,$FERFYS94ƍ͊x]e]zWT]2c?Hy ?LHLqKʡW6Ǜʲ<9جic# _=}O Aeb#?[2т)s| s{ z,S,v߭KL9zi IS#׏Օe[Fy=5k&߂9qjd򞌷2?K#C<ŶM*B|/}1]m"sZ):(lgcS+%/Nݭzޮ-IWg\_j|hV0Cr:>\3">a=.PUQp8RgP`R#ʷ +"MZ$YɅCdNP9a֩ I'Vᑋ? ؎Jmzg8 ' IRCFX 0BRLV m稩䯗[Tj\:S 1@֬ H11 v~pd@УSOYI9)ŝPݩ N4*Vؠ`S9(xڲbtj{>\cX`^tWmW/#Ib$=,5ڹ4ӌ~u>YHʿ %K/cZ bO@N1#S#P ,xԢM9BO'P1Cٲ' yn8mn|z.# dfjf`$?/Zw N,YרŀA@Qo{S]ۇsRUA>U&vo}B-ۇqQ73èI|vLj;0\zR4p]{K?"}9h0j{K4(ni9 G4Snн;  RNf]@+#Ҟ 4$lIt1i*';R`R[1DT`t3@ya'itlۀ9LO$5(v~PW S&t>ZzH{w0D#g'hcs)Ȼx`yhI'47瑘6֜PB9 ؞T}>?ɭ pnv5;w j Mpsӈf ?hh֢32lh\Z2,霃ʓƅsI!6!]'"s#־q y'NYA%bI!q4cidvmB#J F%AcF)Dazҩ1!"f^a@4[1 %Cm}w{TO qҘ1qRk)xb yDijI2TqZkT;әEHg0LEE6"f<#SeF 8lm#iO ,Y(랹xTŸ)72I!l#G-A6A$})^a6Bca&ep=hlH ק$ kX˦=s֧8 fT)H1px<jUbPSG2:Us2U=r:(h9;lzqs0!L*;lmfݻҥ dV1sӚn1x\,C/jG;1O=|`#njcDKn(\n0sދX`'z{? Ê"rL㷭" O\p:m +2ێNhR/HR,G^{I#:3$ P) \>cPd;v) ';{H)Nܮ.YL@,Flzr*o1jOzn➊~fn'J"H)TuhWeo֢B@SҮdvh1tR.=(XIjTN+mI-0NA'E-ÍcUfXc; 2O^z¢I2ҸۿB4J-;\TJh&qO5>k2Fq #ҼwPc5,#$\=.|C7'u fZ{׋aO*1U988YAq 99''jo,+o/'f8H`\#ywirGq5V>0Y>w7.]7a_6-Jb $ q\|=7gөŸ5AQKrH:9=kw0 HlWW>6 mV{N9ŷ rE)!i-JIn}sI6p <\5ggY =d1~e%"F˻=ꄚ؜v϶zdGK[Zc,P4jdO_:K-X?>\sd:K$d1)V>6,Tgڡ6; s}+׸)1lT~\#>'Gx$F!|6y9Zpx?݋yIB1cS_.Zjw2m0v#k~FkpӜҰlr 1K >wV6-wHX ?A_Zxk34+ݏJkHܸ Gʞ]r=vu"Vua+vkUP|ի R~N6GzO[HI/ݾ $%_&UpY^854*th܂=Lj _$4g`8ʟnտ:qmi,DE$Đx䓞ǰL+H39!' uEa}zIQv{y5ٟZCI]n 9qdJ'y*8G6Kr$}+lS9x8sz[Gʮ v<vF O2?za.o"܂T\}\rw(%y\n㼩u?tEdebCWb,cB;LU}T Ȁ0ӭ<#*|$dڋ7n)vF~nsj~]Wk(_~ԞhMa!X!Rȹ jU*B/ʘ폭(ˁϧ[rCTl#M|vvCۿҙ$ gs; pbSOjygt|T;C$d'"&I NM PX]1Զ2l;UOF+IqTi"ȥq:y(< uJ0FHOJl@29⛑wR FU-yRG+Q;\{LPKprsUs+z`Oyg^P^ȩWzzL9E\;y46D*HR8(:d*!/[=Ew*sR0fWyM"O$@' RRsSHDHڞctL9lc܃ԃ~0M9H@bPnƭ '] hmry%ߓ1ȨN蕈>0%ĸ,Q1O7$73j5>W ܬs@>2yDmT~(%h s* 5$ʂ9 XwdzBĆnwy@ #}}*_- qʮ[1`dwT7 q'^xj#QJXF9>M>~ 8Q|\=KRZGR P2O׵1"1 P4fey0T J!*Ma(Bp@IJ/Z;!,0AOTM8*T9G1*>Ĭ0*2 pR1y捇~, C-,mrM"ČtT.'c 3NXqq}=.RfHwӵVےyA׬حm)zӊ?DKl9/ t RJֱo'Wj4{y,x$W+0eY+/|Vg:;\Өl)ZO߄t9М9y(2#HADӝF:{|*V P}¹ImLrE8bI$Jk|d,xpn{ ݭUˆ#^O nQGw2Hh9vsW9⋙ &xXm@a`n* BȠkRZLlv$V.zp&gomޕҡYC$,~S=k*MMmq N~渔[I|Dg+G'5]yJSVfb$i0l\>ص䄘k˞6NxNY&ؓU'I Q I!vtSf:K3(HKf})S(s\vR;ACTNzL\\Iֶosk̤>^_3͜.&+ol{z`nQK 6O22D=M-tVI>B2##\DO.eMܲ e\-م,c;~fgxz9TNq;rI!Cr#}p70[+^0QDZ(_QIN#Ң}VUy&"0ԱVygcP}jm;{jv&"L`=p8DIyKUV C'!ܧSneQx q>ֱMΜ;)OsU#՜7HϏVA+EzXP[I0jpȅa1'=G]qv)u4ӭ[8 H9yWtEN=3P?Z&+ŀ=M[pD.PĪ|)gl#'~bx }OJc⭲u$Pz{+5|mo3xVBq!w rȭy2 =@WYDDsKdc8[O;h+w"W!Pr!3]V"33zԷ}}/ė 0?*Ԅ0RF ֶ ƒXKP PDZYxE FrS8m,* 0O=ʐd#CvTջpM46 2qR퉉 Yz $ezR31=i6p;~@G I*#g# )хBEFʒl~\Ӊ06qӥ8Hm雘~\Ѹ^W`r҃ c뚕sepG 9 cGJhpz+ݥ"IV!=3"<ϨG(2vޔ oJv ;SpQ(Wjթ01iwc%$ҥ(1SZA-Rm$Ԉ3rӥH"9vc'\}zc!!A,Fr ZH>\`zbGڻH^pxHpyY\;G|q%g_Zs(SԲGtT\7-+񎇑JQ=1P7O'^"L$ `F7/qPƲaz qX~ H $JadV8> }) W_4*Tr VCd$^V/jaP71KlgsB |gHe_sN}8yn5 3m%1[(-JV>XW?Ξ"3H3s@rp~b˼QǐWU$ʤl TcRL A }c1 >hQ1FXE$t39TI;'JeU,POUn}= q;9>戕Y P{2y``OQcBgf9Ӄ{x>,X_|sQ&YaԱ8*OP IHUN3N:ެ%$)JhXO01㚒Y2_ZI̒Q$oS,8o8n{ x5w| !aHzSG vx\kĂCN sTuƱ8r+`ڼ#Pg,9}zch@-S7SG^Jm\ wyW<[[H|7m鎤Wj>')a5Z6ѸWnuQYSEռ_2,~`Ybr}8knuYp%N)Aa+*ybR{%!I/`8 s9Ҳt˚}u"| oolWjmy @ǭQףCtU'v{Zmv-U]\iy7t)MŎy?a6u4-#p==\]]s 2BH=튥Ο RHdB+;ʦt*ff3JHn  ̒+yWL:]@mь%#F~ikb/, k&tǭVv+h`R8p9CYZCJm]A7!l#b؅⑐K/|z|K/$PFu*0+eʎqŅ$@h2ʠsq?ֲ֚w$ 5ٴgY~',A #ֻ"Ѣ;;&ϴ@χSR1c_~[j |%C#f{[ "(ض>c'=*wH,ndϥEHqTH.n ѳYNI>s\ce9 F6gNkcJs9h82vMdYlRr)??i9z\ ;P& O`qֺ>y@23e4<4e|98ڴ.⸎/!U^GLq5lcC>oix"sh; *Hʖ8b{{օhXz'됊̀#j-^K}r\W=+K `BcUab~LӡkWtbV-2j޵ԥkVP \RCj ѴHTm9WZxwcS_~%H;_8@˃^!f '6F;s+U;Z[k6R $c}ǥhZGaNW#aһ{?[yr ˓N8Z=<[¡RF9R6<5ESq tɂf-szc!$ҢV1::jf<7L !Ԥz&0xžBLޡjS".k{U.(r;HT)>I0ǎ~18Fiҳ1cEG>}?ZqpЊB2 T+n?Zt1gOS7ǥ4 Pwe>N)F2~>Lg1]%8N&cN<3zq( @=)T&cdRaS4?)@:/>&T) ?JP @;U@ɍ2֛.{ŋ2w~p~}LL;oZb0r^n:Rcq)z4/K|OՂTdž7J)֐l2)61~V 6nEJ¹P Z,LPSD\=i 3mĘNG`ecیSD #ڡ©!=;$5$4DOGzTqS*`T)`$~w/nG@R1*pXU,9ޛIHbدB1*/ŞI$AsJ1dl$8*'+l,IqC\OJYKf5$"$~R'ip`P;9s?\U;MX![i3*J8Ɉڝ M A1#<$ulLZ,sN+'܀4HN~`Fdl)lxNO݆hs#,:~5`W>2jC .H$ 8qH _U4DD9Sw/qRnI(!ld qU3gzTNUbCsS"0̠3)'}=1*~_\*iا$.21sQH39Ex6>q؜ɸ1+=R"YW[GH# Pv7󊄬|ܑc%`pI=3U>L9vGi,j9 0U%ܱ2 }󸞕t6eo; ^ Xn,OvK:It-k.B@Ӟi\X޸n6 e~W9%tQI\'|{Ȧ\^[.A nп|z v{dby2y8\WԷt#ʅq9crk.*m3ǦFy'P>uĐ<Ç&lvk`gƭ 0&7z>Ʋip?ɔI8% zU/^އM#V"Hm\,RO,&?:]CHrE$1sѳ$J\I !7[,r?̧͟ԯ)XϗR-RhtB)eHZLA_j˺^ D.:7m'*Ӈl O^qԖMqlCr]A!u* ہ=y]NFА2"=xǝ-xItk5rSL a&b&X'ZՂZ@ҡLA#of$Vn#Apv^qJف7&2{\u'ʍ!m}TSx];|צޕ7u\9?dKs{nH259_~4gz- GJm\EpG 4@$G3e{&I@|ccTd%y )!X:{cH ȶlI%{t{#gp8bOAPH Tk$GL9e} )e;gojRf:Rv>;E =)%0!GB~mdHZSD#XNYS+ ~rlKdhB.J.TZ w0ԕ=&swoSmˁE⹻.7IPw#*'pq_j%%Y;O8sڝ:β[ʲ뚫3Gxˑqzk*HEumk+H.rGBc w^De{#u@v=ӓVc`aY.FLcְ-q{Dj/Iq2w.@-ʉfwjֲ[KV6l^3MshU0zV(upzXE' |C]޴mibH\}}=뗵F$n*7c \ڕw%ʲi)lյXUm`#wX7M3`9$u+`LY]ܩoo_wҮ*]1g2aqN=k\ y+kx:&8`I%z|㚶eiR;BC(H=+h!(-7ܮd s^J7@ҫî1qDlgg'vw`*YfQ(Oל{ո3=J=il̛D`8뚿 h $Pj(nn{ʵm5/n#%O$CJi,}Ն?O? ,|V,p@p9uKty\v>ž.OpH)΍ƒΤIPF8Wi*h7[#^ۢ1PϸGlW^6+͂T>?µK:'7c Pr}}m.sFbGcnTk ¸U$.>^x Ѳ28]8Xw q F{)C>1>3DG!p~P _8)i0:?(Z!]r٩XR>7-oZqA4|rz4FqsQ9 zH$ev9o5> zI%ǥ48%\ zv53H S1%=um:qT7~cیJy rzS0T)b. z WVۅ'E0NzJ$r 4rv鑑dhCzZD0 铞iǓ9y4Nr`;zIg8PIA*ǷzZ"ya9#ڤVā> ' d]iNXsڦ+șejeX=$)N/,`ީ;($|~F53#*3MKeD"-}dзTR:i(!89=*VeDC?ƙ#fvehmǝqMe)3S/kz( c Bxޥnek& "Wۉ#Hxp׽yN,,R\Iwuץ7MifՈv8Vl`<5\[-t?J~Kf/owubȓEY\ ]0ecv{!B * 3X_z@ҲٔN,?Z宼Ud\21WV򮈫tPs F0@@{EΡdRaLRMUP9ZʊS$PfNCezVR=[3mp91TH͑*1Z%X䓓=IXz8tJz?w3Mxoqb^[$v?z_1VRIP#+{qpB63-Ygb$8PsubO,NX;sH?_jti [ܪ3?YIq,Uuw]e2Wz.'߯cXs#nM ַ0\@.T]wcЏCߏSbqp;ǥ$w(nTN!r+yf6 7EڻOvm@ )OS\w ijı.XOLb +rȲ 3F\z ckne} 4"eAyp=*9w[WxH.~c60}nly{gy#$-,؟V)7sA4PLv%,ǁ_=TmqO>PN?Z%ĒBeŒ?eRJfPBOiQdYY\glmbI"VP~u"GnۃIBGrJ]PδŎ%{@< Fz{n=ȃmqҹX/[ r=sZu7c,{?ZԧRc̒=۸w[Yo2%ݖ;;a-< ޙf]F<l, MqHf)?.GNݿZ/IŜ{V5y1? mT:=95bpgC MO':檳K,-n| mڸ6y.+q v]6%f%xsA޴SLpO@(Ŏ:;WGl"36dZ筚A RĩÏcҷaf)EOc\֑$2Gb&d \z֎ Ec0}Ե 4PpqY2JFHsןQ]w{zj*܌1*uRNI8dy LD\޳qzv-v(i٦ r0@azlPzSѷ9֦M0$P` 4~`S?Ɣc7cw" c{UU^Ci˶ӊiLC(p[o8ǶiŎ22H:΄;qU"D;Kz{[)$!;Q^xOߞCc Z-.;4[ 0>A'tj~YHg⛆,KlTzg}W( Ąn=3O 1Hg*FDcΓ_΀?P"vls=)7 :{Sݤ<ϕqiayAJ؞(Vp|Yܸ,C:G8MFf GOҩ=A'7N[˻ 8= ێK?<7o c)*ޚV@IoRF;}k&TIBb+' VF@zVbrz(xVp3"ce#TԚ%-o3R3&EFs!:i9 F|O?H4jTJbvpհqUd#GzUp*ʜd0NՕ}i"!a>J~$Kx7$d㐡|3my-3Z"3 cu@nư32MSĖ;I&6v/ּP՚eRf(R?`{Kj>|QLF#Uéjn>nnU@uy x#5lA;,[#O^k>>FP[o0+0@Sҳ A巒]wpqu'һh3;6[kY-߹lmV2?X֐#H9*~d]Umfw]H0c >՝9yfYyߧ]lf>;)J'~G~i >Pܘ2&1O\< 3} {H[E衖(yjA+c 7tO8^^aIC6)};hR1c@p8'XirJLm1 #-M,7mѐH>n2݀<:|̥}Y Զy?YΝ"LC(l(#g׽YSi EeAXיLq0qzgֹԯlt5y 3mV8r1)eV+˖yZXleEC`vY~ai9R#z85# 2H=ܴ#2[:N-$qe\}ێOĶ֒kx? #hXsst$_/{Y{U2Kq4>ث>U ۹ n sVVr{[$iq'd cgY,(ey5V'MqO8= pϾsWm+J >އmZO 6on0>nCg`c9֗ ?Pp1oAZ.4yHp|!ֻ1iUTJ} By"[@d+?ZB]J%Ih#TaGe¤nx"b~Y2vC dyLAlhٽh)6' @@F'GH[;Kh$I.pw?\ռ؂@$3] oG$o޽1V5-5..E͢yFm$d2H *ŝrG' =kCqtBFX1[FD(z o}}+٫h ;֠m,|@; Sa JLjX7drăaA<**?-Ρm!XB0**9HIwo5f1vdz$im0?sX !`vL{ֺ֭|mq!۱ӁSֱLitwMs'$t` ܟjgYUUօ$eVXᙾcT;4n5KH`#,ѻ=9_Zӵ1,hUPXqELzVF"1c^/Fŷ/'OQ_6izu$p<m&:3ix5a8# /RNQ?"kִ,rs캅7 VIcدt-n62#zAUi4M6ezR6yPK $A09"Bw79];Q=G=)I,cҘ_96$6'IVPIqt2Zщ ҕ_ p9#^jHŒS`#MRDbX<l::T`i˝cTy$(I#*~cQ6޿Cc8֚#\1AZ^>AOtʨmZ ݰoZxK~ƪQ[/z?ƛ3 xǥ>LӸp@ئDUF,A:xs_Ni9%Ƞ#֕ڹ#d'?'ϵIz rJ_6{ !}Ǯ86ߜ¯>③fRZb6$g]&(To|e6s*r܄y^r:6 ۥ=1Ld:{Utyr3*H̱[ϥABӸS|dv\omTHRLLUgO(yюFG4'j|3Z 0՝BISלФ1%$RzS#,^Ohl,62FzzԁHq` 9@t@mI5Q@N0qCFNӍy+2Cs8vv +ƛ{❵ʒ$74[s={ӌT_H})"3H9^>FT+3OƢVg98>֬Wo.O`TKf\3z:Tr.w 3Qn2.l5$3f /c W އ1)<0 Ad;=^?s®$`Pe[w9=ڡNܤ`|'>qŒ\K-({gZsBs֦ Ve`%]9";sךoajƩe"Tc'{aT缷fGqnFE^I=۾}1Xȶ}Kg*G|Z[tLbz'k8̕t .ZFϛMGE/jQ:vk`Z1TqZ%,p#-i v}!f4Ry@jF-jewM(~<j/.Vĉ&%Ҁi<(c8dA Eno/!lD,g&Tӓ& +6a\%` ԁ=y e1W#ni[1,D($Jjĥ썭Â^g$9#²m'}UDb8,ǭnA:ۋ,I `jƩ^]&c, c\Bd+O7OqJG9Ug\J5 aQZOI6yFtyx @®\^kmY2>]̠Ew3=zs]\۵ՙ\wNѸMJ 7LY$V$"5SZr3Felq>˫5Fܓ; MDGv7Fەk`nGqUm2Rm[(mRt-Umfh r8##Uh77W a<z mTÐ?yOBML$tLǽΡ\-Io ifIH@ޡYrK<?δLPjODV49Qq o8tNmqADN~DM9\eqG}-K."PrI Gƌ˖!#xZڼ"m0k5 u+'+jJF8 c׎i0rNN\ΨWȆ$;H 2a߭ip0 4i jc&h^(xv= LaIwR@sɬ4%󃌌&GP]bye`H G/Kc7{)yf e,d`dmWk,N2y+fR6-mI)r:~٩]POb#ޮiZ][(Qy*[vR=.I$ӠECkf!SBP2+k% +Ʊ%ԥ.vK`z3%iP&sċq=Kp$pB&3\:uacNU6-(Hg OP=qҫ}ȁ`H򤖣K @Ԝҵ-d7O*Hʸ\ ~"VViveqV0iFl8̩EI*f7r7ӧh]حԤP90;uJ(zGxv5䌒Lap.66㉦++Y %zwi /r?ZKYUA_uW<4H>i:PgbrE"p;洱H'ӵ(w$ON)̌O)ZRLSɤP@/ ύNU,o5I3$Az]N[&nj`e ~Tl1sL@%>`T&b!R*?0v?m `OdzqL>fgE| SnEu{{TjWe X#uQ+4[_xrfB0zj"0pO(g A^0XV$YҌ^sYL~H]z;R6 CwlA6T*3^,d,`~=™>acDZ8ذ#N8#֗̒2@ <~zzX{Lc$e,9sNHON}z}i[ba;QF?ɧyhRXH$.T WɑwSl=r)RDaIƒNw`pyPInܭFV/{+>F g?ZB3Nh hO@j>`ןojo"<~5ȭ)& ;TXF|Vu$`3Hf'qVI ~FC 6J&݈2pO RC9,F6KB1<6 TR(֗ (}upyrszqY2kDо7uC8\|Aom#% :=Os&ȅ<ޱV:TX9z72) $ n0IЩ-][F63;iW$vn6~񁹌`x Vf4NvhiMr$V(wnw>+F9]ncry~^s:yx" hգݷaG8("%԰I!~8}? %VU -@ ٪FKmf, AۃVkVlH$;v5l3g. CC5mcq~֖B`P?Nͼz׌ .tv7zʬkTc{s%lDl7^}JѺ=EÕs(Xg+FҞ$Lf-w I 1=XfkZnb]KFҬGE$vuivlݡ9a#@=*pdo.1W #O1>ե'frz GPo$1}knu{W3qȍQӎ~o~?Z F|+c<˿jmE㓎sIm2\H"m#o8 OՆ4[ .AluXeRCcӥTՖ;xѷyz͵1%u|Ǒ:t;W YknKf?hG vo B]]c'|KS׆=Iҵ,^YB1>~vxPyr8֦:);{p^"`yb?I=ޗNΕ$R5I"09g={ ({ r{U5$\bt#GTqGZ76Ifگ%PX/zq4LbCTuwZg"ߐdx=R/zX]o6@LocnPVBHVx5x XckӾԗp>nPC}%M ̦H|~\{ֽfw qufabx߀ { dG):"XnYkc^_!/hb?'=~ZDDw<*튋Lk% xVw;w=ANFe7%[Rb AsxZZu`@F\[P[Ke힂. q$n6.5Gkc2L@;V#yp_aS=^K:*T1^̳wm+YJӵ&HŕevxϹ]dpMJǧ3c2o9vO^͛Bn1+ Xu?J.}agjFLq9>r`L}*ie(McζubBcus* aF3k >VPv9vj6!KXn9pG#jSXQm!mtUlW&;r۰A[6CfF9mK{Xw!}s޹ۛsH: J̜7DYwgL)#VV%Q9rYӮIҹHVrQp8TD"ڗ>\7'|Lonꪂ|p*얷ZEJͰeKHS|2x88[VV9a`׿5O\9'oqIFƭAi7cU Ӛ8$-gWF ',uPbRdg;֞ v꣆ YsFpQ dAZ^Hc4Bb=t翥 4Z\QPpXu-4\Zʸ`W5CZ.C:ky%.ݭ75fg[g#GW"@85I|Yl['ұf C(I8 WL.24{B 9 0*kuV519E뻁:zֺU҈oԞ#FYIOp:t<%07VP, r0{vo#n@<۞r &pzۭUx #>8rIHN6ϗ;ҤdrJ,LއjQTߚ\ ?ܦa0}sO ʧn9\==RI`H+|xri 2FN}i$k,yj\nNTU6a=x۸Aҍ]9 >hU(e2q(u|\ >Jf ǭdrrOq2{;?tS2 bsHq`GDd0qښќ B"0"=:敢voƢ$fHHLM?$P$&8=*V(rtUbG#Nݍ#gߑ<SNޟp ۟N0<Q94 a882u9#AT04`8QK/wU)ڊm<r𣑚,1v*qx sҥ 9'8QJ(=:vSM Kt+Rj%»zOS0C2*;n޵aEL3̆|\#r{ƹJKȀ:u5^\ K"ZH溎2 spjRc=I#`J߻!~N&9>2jpdpt>~6v(TŰy힡sȮM>8HHldֳ5%Tza?N{^Z~~||Ā2G5ZI5ƧsmRі~im,Csuk'%OAC4QrnzOҦxfdKB22=zTs5659.$B /=G ޶d|2R>'n*LaRשk9%"#'w'&)F0Kat©KMkY_1d`\T :):5`ʧ09^AdcRb\z(ȵ6ߛKco6q ? wdlK" :*wH>,]uj̷5K*|Ps}M8S*Fj.-dVG޳+~kCfRGr6ڤbLDpC.o$hؿ#.[it1."TdI.чRV@2w?^(=tֵ.:vdڣϹk뻹FA@pUI8_zƼ;j4m6mfY 6`6:n.=Ԗ|I{O,3Շ!T fG#ƱcvѕSOpdFRuۉw^E(46BuR B<]D$3ʡ2[ԣʭx8cǮk$) `>4QkR4$(Fdc+6Q$9?1g:mW>fw@P3zc5 #NRR go0jW$%Eg>LmF(W7LFlrz۟NiVraPUIU DZ!Ӡ ׬R\gP{隲;?t Oί^ hU+)P]]FGQb% n5 q$f~cJޏ46ǹ\HhpJeG{q9 {ZUsH!kk4 cA{qAb<Ƿ[w q$ VMʹ!y#|-kgd5Yba-.f/|CW6qkb#duRZd"pk"m"$$B1(c)MuRIjv]]K :z.{Jg*Bc>vGi8@3 e1HGSGw/}I}pi \qǸ [KKymcp9ңKdh䶚fm)rNkh#).-{-ЀCsRnLfi20Tpj^Lr %Imu<}*WڛI&TJ:K!ap =LlYԶ[.ggg;ÿ[{w{ |ɮvP"l'rX03kZ{!`c$'tlU+%cY4rs\UŕU@ku q]ql@@= ?^Նe$2zvI-n7L{UbO p.qBJzm⽵guRFx H2rDvDF? ֭?tW+"F7FA5Ēi'P/ym~F練fc^AyUbzjI'zqNF \Q2pwpN}2GZ4pMU;1<ҾThbxX6?sI {ROҝJСlcO)'\ZU-|TgrǹOZܠz(n) שҤd"DžR0 E9Uא0m%zPJ`Aޜ~}s)+.(0|B$l< w>8q36KRyϰ@v֞' &@Ws&WHЄ;}}l2VBG\}jڌHd /@\SAJCǔYI=RY_<&TbёRx'vE҂4oC~Yb& FqH*Kt+~C"\$7~)\`b JCn'%a$PFq 3֘lwǵVYwv{4)bP8qUA$櫘e%(ܧgV=p&_Cch՚xeIE^3[8x=2ljwH\z 먳9g#:Tj9-ٚB8#99k1Ĩ#W$xA+( CB}Ex'uDRO.[V2:)-O/"y 6PoP pw"(F' :Fb~fy{m[l,v;ZphR2Ca6㑑{gdYnox8n2 k{ HpW=SBZn&fIGl >p}i!_q RjI\e[zjYPqӥs$H%O,8YcfPT0ӧC AP#*短94M[bYkl `VLZ̐6s)\9=~ qdI zSɴB'UNI- JfK* T'LniSNk;d8W\  `:qoc) 3q ~4ѽ*&|a"a"ܟ1;sڦ{ˋx# l?ݩf rndQi^fKq;}}~N<ɑ'S΅خ9Z.[ܦ2ǎ+;RE8I͂{*BVN w 締5<{cXm7:Ka$PmBNC[#U渵Atr;z+[[d{ɖA>zg>{VR1Ll#!d't>C\i/r$y̪;Z莟m 7qnG!F;׷QDL/ˁ6$wfꒁ޹jx, `6Jg(!. w^xQ 2E$%8'8 ^8>:{Y1f.rNH'>IoZ۶ib?7H ٣G=EkCE*K%v8E>֯]ahHBZn?,M$S v[Feȹ_<$r1IF)C Ld;;wOp2ۃun->af}>h<"2 wW7Yb+(hz @@.%SO,a򎛁8'{KYm̫)$9P}ss"K #le۾^Mp_^UB~Ua6U~`3]zcK1>bd;GZ֔6jaD@ =N}^եcRY=0: 4Hdx; i H aמj5\ $V%aG8QO@\J!E٬l$Lw(o޵Zʲ rx9,V*7HCctuU/]K!HA`s0{k?"%3tip#gnrD_cIŻ;y7j% v/kx$ N :\Wq J;zqןZ$el_1jLC)GVP>\:PsJ+o$7F-0L <ӚoC|0uOwW2Ϛ8V'9TR[U2̥Fp= ou)S gFB|UukK=B'fiv6̒NNFH{VL# c\]z;+Mrգk|utȮ meUe#A.+gF$;6p1Jqq4MX䎙<SHpHb޺6HRBN'q?x\Ȩ\0:ޜ%IʨQ;pc8汒:SH.Q (q)%NS5R([U!O$g9jdst .[hɌZ#@;ʋHxGt(~m$zWJ8$r~޹F}ZT)AݟRDrdːN$/'Ң gAiР7m{})ۉҐ)|2sTHUo$4FK$~TaUoWCNiNsV"Pr<ezu&pAl)0FyғC`FHqc&oҚB'v: 0q΀$(F{)l7RzSf?x7cJ.KB@Tr: d+o#CیJvg* $͇eeF;HjCOʞ1x9jOAP PCn4v O4$#4l^xr'_*!@6GQ1Վ㻃OB$c11xh&q("L;j8_jb1 >.b1 (FcϯZse,p"#-I0,89UݰY)y3mJl6;vEx爼UVF#> 5JλrO<י~,XH 3V#C?ă {{׏jz\IrTPR6TΟR[ٔ8U=s5~!Ֆ8D@.NלZieUFۈP6^_ jP?J')iE aʞHϸ+c5((X){tC<^#+$rn`×P+Zxvf$+>Wsf-ВBGW7G"Ė۞g*Cc:ԚpR >^~^W={ȦY)ʬyy=] ,){yY8f^1K izo޴MFYm-\|y:jt[mx|P|2=5搦uQXE|j󞵟_D9zut{27p\@'N0{na5ftSVosj箬 yh͐#]]lF :Um.GcyI&|YǮ;SNvrAurEHI֓#\{⺙lo>,c<*~RײoZlڑoXq^^0~9j͝?wS*Y]o!~pv%ww6=;{Wksf@8; ƨo#JAf[2tt8瑒({ $.0ijщuNzVz2Hqp q{zT761ciҺhݫ#X_-B|ڛtזG*ɭKmgWdc*vfLSxļF$ ̷NY K'yb[(,mA3޴->g$*ǔ<zg}lW!cqb:hʼnhf,de]ҮAlm[vA>>cR-sqpA?/ֹRk Kn6K<{A&74݌|ܪ5vRP~Ej8 !XmәZ"r.:~'ygh.2d7O8?Zt̻E.b.pKe8,&䋒nkhj:Zv_@==Ry ma p>+Ԧ&~ЇF6_k4gqidi%Ȳ ǞWZݎ%ror=^z+%0p;`vh鷷1A4c6y@;V@]~p]z˴PqYcXc'Nk*/,n$@B;n m^}]-N9Doǀ3G lѾץy6#gN;Ths@HTQxM`.rJC$qmWLhۖ'yDA ?;ICt>:sm1I۸zm p}h'?.`2zzU!B#OozZ8d28qE ȎQP$pcmR+0Mvp*/)ݞZ|VN{jgP8Q\}{fdn:8> @S4ڪ@}M6"W#=G*ԯTr{ %`>ǭ"Lܾ=d<;Ij}ţfe ¼~(- fo3v 9l[e s|BҴo }{ִu}]2]>g21#FRvO\NN7]]=ó(p33sw̍|1ǯjn5Y_sF1' 9 F1>)CN]L_VK7N#Ip01lqҺ[KwuB#)>.W=NF64(wInϧ>s)n?+|*I x> :%w*\PHBFoCqjXܵ9RS;mBnqGEgNdH/I*|]:k)0_ʲ4ŇewbO?֞馯RkwuF{{=.ip/?tz.916YWGkA4$0‘lHõA 0h tPHbl"[m_}8bCmp@- 'QQr?cFGoZI~Tb;ש?}8(dAϧQRY27*ǹW5IFyݎYpz}዇Ϛ6NS+kO2;HW=K/H|3v HQ:RW8tLV_'=kAlx ېX4iKǏ w*hy|Нe"@NN5Bm1cC<U^iY7YCN%Y&ю01OokM44!º ܏QX&oԐl }:`kahˉXeuUri\v`1_L*7GkXfAShS&}G$}m"0@Nx$7j+XysI*}e*M{5#"6y cZK 2/9BEvz 'yP3Y3XysD:l F[h=1)A[C2Jo4l:rt#b#bU+6WHBO7}:ns*5[1۔T@HfB7OZ%63a*M&Hg}W<1dvU%E\n"e@$a^Bi-23zgҺ9mFbH$4ȴg>`*3zzW\q!:/&T&iQI6p[l?s%BM*3ޥ,:/zrq:FTv@z=:o ^ԓ[MepC6@ca];cBs1JbN27qִtǸi<ܬrҧcհYpPozL|r$pȲf~PNp0GLNո+Ʉ *0>o}j۾‡fI}*bfuē6o(M 4̫qqqq v<ӯ g{Ἷ7rc>U, 9}όq֭c 6:lEanMg:qgHfkhTPHɏ Uqfm7&14֍ClͶhX89oJ2!4ygY`c74[Y [1뵉vD8wnl9zvob؟GPNk;Bk]6-b.g䑓c8 k[7#GaliSˈ\Qq=WN{HviܮA/Ȏ8rskEԒ5pc[:Nȿ(9%c[}S5Fs`rOx %b,\W6$ noc[6s490\=}e󞗡IqvyXcמ_$ir#v2r= |\bD@L@skaxpYAQg\SzةKCŢ qOSjѼ̪7cW/!U5&d8+'QApTd 1R*HQyv~b˜EH$xzavnʪJ %k<*2 aqJ.*Ar;4J1nwϯBB`4otUy=M&*xiUx[S;ݸU H+Nqސ4{LhC9)1E\m8H=3zEa$>R1cS`6_$d79"̣k(ev43$:b`$ ,Gzk98U\muaDTl NFO8\&[~$cy;=}Hi`z)ޓ1zS 7jj g(fR6Ϟ$ HmQ_NT[##5)S1 IGCp1 sreWlQh x'+nWi#*Th(*p)Uu۴簢T`F@0Gϥbfݷu&q;XSTd QI})`t4\ê`h¸GˇiNBa#ҐUr<K H V$tۃԦP#9^H:~De8 zs1U ۰N:{`4j dib;d[@V^2G$jPgЕ,szVP1,v*}}?:kL2 ՝{q< w>[Z&Q!$?Į3s\Ż<{?˚m|)y=n/OL˞OrY݁s}U߽bjX+8p6uTXGQ|f 1u_ֱm_q&kq!m rNzgrAnQb({fI-MCS]ei0gF8YJG]e:e*f ʍ}Eh;yg=Y~Aeq ;LQYsܜ4th P7=JT^ *i ?tW--v|s+k&c)bc}JSz{is,Do q֣Ƞ"=?JB,S!IV8>BiN}ǵbvr{u`p%I֖mb 9b\>޵&9dl qIQC$z`n+Jꑞ-I_ҡ#ጔO xY<* gYh/!+3R0y>di2 ِ (Djyp I$qZbcrv 9M0HV.ޢ:.<,Pvp}AAڕaH.wZӎ33_8 cOQm1]1G$ <f^;p^fPlTC%2HF.?=~;. c?7j#Kp"۔ bFG'Eao:Tw=:ܜWWBo.N*8:~);7ܳ-̅;Bk=+HwaF6W_-4ui ep@- tQȬfHZMS-nEyw$P}G"MeqwXYǀP ]b{$aXp={YCa(:67;Vb\U"~lU {Zd50$=on*&҇TKm5 >HMGhs d|^>^[>L>э3p;{Wuȑؤ7q<!Gnt<9;O\WB]Nu^4 bcsWGT#c랕sMӭ92$Qol@`>\`i" fQ+֕-|2s~f +ܩ|pzcԯ[KQ mb~n:VU$Ģk&0T$[ w F$/Lm<~a2d9w⣞ RG6mc|JDd;ȈkR5x.@ lzsPt[i # 7(=GTDskmWs}j2-"B2o8z?A08m [Yٱ$q'ؽ?βRRG9>THH\ ֎)̈H 2zcZKmlm!@aӾ};TVY,b#u'~>r-[JDZʎuFxUFёԞFH5br\WEm FK{܌s]PNHIJn5;([t1N@Pg\MO[4"rs=juE.8O&Jo zU`3yxO5A$x7*68 V9* 8֪I-M/x ?oBGU*7ucU-7OʸI]-Q39ѱ|>#fSizf'0#gϵkI)T!c^גOӥKogR@08 ,4\}Fz0%Y)t7N7Gæ&nr;Iny^SA<>M$Oc=֟W9gi0d vAitAܙ{.M؊|;0E`:cXa*H'ӥe*6-N&[ DU nƲ.m^"ffڲ냎++{!m_V w?a\TbќwLc ۯjϞ]ڒW8q܏λ@K"#>ssV-֝&.Ô8bqg8&qU8zDstyfG2F88{E"t^xq^iw\GsΈqCxzU:V9.#jl' Ўޕojm=Ut&XyZN<]0I۶c#$o&oX1@݁*A~>y|ªg*Y2+ c?u,cB"0j&aur4-1M{Wn.գ.$q/b=yey+XX}}GWnZu?1{7POR=+qԭϾ|x?ؗ@>鉴vy4@`S)W[J N39{fi7(Lg>G61zԅ0ǎ g󭑃L;Ȩb6c銕 )Ŷon4>#  >ivRz}j`qZqo3 sj;z@*lS+~_0&_4 zPpV'JT <=+\:a* RNӴ}~vxiG{crI?ϥ>P$}7@?SB7cS-OҚ@^h ۀ?:BĂgT$aU&J^~s܊L x,Ol~4bJz5F$ >ݣMBI9>)?$01ӽ3iu*'H}Fv3M ͻ,Nz=t8JciW.rqvi Oj Htqc-بusg 11Nb{THҰssDv GїZ@txfObzP CA)n ׎ur qJp!X9JO2L֠b" 1KS<ϧ$d#T:((p=AO"VL|y9'8*' X4eD0z(e?Ug${`p  HY N:TmAg$b\Rɱ$!Rc:M>>drHx'\ԍmpy}kO5A(=FoI_SM~ +ui%v]E[c5旗*\NK+. ޕ4uōսI~uoԮwL@KmT*}E|&X܅1\}λK*)8ǿFՓ6$ɍwǭWDb7B7VuYݍe`;{K}9Hljo[$jpT\=f۲8~ܼYy)nrx#ҹtmAf *}93xA2b@'p-c;bճ .Kg:ZLxI`9+Kt[hmj$ 8ٵ::mF0Ldg;w:v5{cick k/$]ŵ]q{WFQVhg3!qОsMI7 !y5R/aϵi#dOO+Ikd1xǥP%Ď Fl`zc[3Y~UV=IVR6ߞ8_.4*I!R~lc NV.z$ =fbZQӐucRGZ0#jvZI.sչ*[sdS}y1n&>Y+$\{<}QXd3ZW1NĞctco=9RХ9kHSy ݦ^ ǔl.K Uo$2,nװ;Ud݉q'>  $ Rۇ^B=(lfh#4 ?#r?dbbAts -|sӾsԏX+ w4wX{6cSxWN6W (?_ƨd>m] ԭ 2rwpQ1K|C'Nј;\l#(Űi !I3p9l{T7|Ұr88ҺۈbrvpMc5 qx$[w򮸵sʬxs=GZϼ$"52;Wq#"ufN+ 2VWIX!2qWT]1k)sajp}X+1+HhW'qֱ%c_r8l5r4̭cmQPC}˧e0RNt㧥YYlťn1_0}?ZϞ7E“$mo'*' @ۑ׎kJ+a}+%{,fS!(88yϥD\"zYEAV#*(:60{s=sV`O|#=J#3GIt)ak!YxTh>䞝{{ִ%T'8 uHyD^&J1 B$7p>zTsPXԭ:5DSG#''{Cբ3DOqtVIo@SnAXut MVe /e+X)1R7I'OrOo+J4X8UlJr}20*rؔԨjo"+&UWLVY.m_:@<tEtڈOA7JȮ6>$WAjF qqkբpFqE2,3.⧀8کϧ!RA#Èdrp)l*4IS{RȖ4RVH=1YkyPA:MTeA}CcOD5ÆVTJ`:||N#U(P&KcvxHʟuϽe>c'r} dtv:hXt=?+t]rz pVG\zEaj7n,:NJm +cXFr[ڼI]+cȭ It[9xbH,rtz>PʣF̺\,1u\'Q]Ŭacq5N'N'N^j+q=\ oS78=?Oֵ_ۜ R XOz3)ʲc*{x9;WK-Mc2d!:3ҾŚ 'zIHtVRWs_4('$Nkim !UmǶ)ݕati!u9򞝪D"|pcR;[6qha ӕsBd+0;lRǷiLϵxy皃d9,ր$=)0霞0pNz翥 "-Vm iNvov6bJH?I8ۥ2FRllq + R@ w)̿0^HAWp їۓcO(1yf9S!ORcr~ɎdR*M^ @ S$c$zT_4/Ə8v"K ,g99(.NN18}lxiʎǜ3+}SWs9Q$I`L@zP1M~KsJA"6U>R3|Rws@pxZh̎ ##9H$)ʑg*pB֜U:hA32qII]Ažqzqwr֓tC~<w7(ЯS銅'`44j2srOqiH<#RGǷկ/=tq-s.ʐO2V#y$ ҾMniq4(r7ʽ,rF$@A?|⛗? N8 w%EvvҎ9*I*ϭs | z|ܫ=qXwY[`Ȍ}OBGZښ7:Iqt=31ujŋ͑9 0 j i$343l܌bsaǧ]2e-F%3($:f%H/z#ߥlhb+e:ǽrxrD9Q޹͓)=*$@eJc7N~M QUd ;zR[29XӞµtJ5vjr#suF @#ų'gw:}@[z`>?ҨyxmT{p98'錁#!tɴτ?1Qޮ$qI$B-Ўu2EqP)}22({iƐDV9T x練U{߽lBD )ٖ$=J" "'~U~2.t.p"nr*̺}̞WT_$eyRdlsӭᵊLC6xLhS*(q2`dg'[;aąO\=Ac1]Z)+r1{ո,W8ziB4.GO`?SZ"f2*3Y/&מ֛ [ u56.SN͜x' j\=1Slt)L;㎌9O[N )pZ쉜{n s]B6L>N6:A>nX\OZ-%Bkpc]j5Qm2/g.}ƥ|1%nzwǽAB\j)ApG\]jF(ۍo޵\5MB3l[ԎqY׀@HH/^]ى0 0\`<~H˘nRskt})үLdPq'=0.?AӚ[~A=363[jbۃH'^X~RG'^2pE #`ʽ)|M lP {OAR9\e 9\qzfn$.ʸ*o> 1r߳)?['V0,e9P KigcYAxF=HWti#(/nO3p=H)$R=O&h(98:cڸp#t|0vO1w}  &wHE;iG.zcZI6@~uc/v~U%z\Ë0IF_j_jnJ(bæGlW{w,Smb1}|JF3A8;%cX+kL"q_: nAr:Wxqt +'>㷗0pXsWc%Ƹ%0$qړ=ZP-$>H|hų79)fXe@:ԂBfi 7 ?k;bCYǸhR,yې=Nq,NF9,r icTl㚶s*< }{HXLC#=P=ډ1V"40Bx#ށ]䷅LK$$ۧT؈ ,3#f>GAAIô!Wv*9]B/Oۦyڹou@EQ[鐡?9R a*/ vgfc.8Yp㎤zJ)hmy*Kd)XQS21(ʯq*ZE<ɖpwqh2K#hP׎G5‚c&#7g[TH 1ݸV|6ٓ-<=+qh+R8!陥TUvan3ҫMhG9`Zj8Cv#q&%8m#|#_ےf-5y Av=*琢Ֆ9̐ :zʒF:}k4u.Ψ$tNI q,UH 1r}}}Pr;~t"RD8.F8 ׮ie{΋2@!VL[8lZKRk ypJ0{ eXh2bz`jCl$'̉ @\)p/}~:W)$3>OIhz"prĊ #=yZKs$|~\}; qm%x$. V<~8bNzjD|vekt6!5؀0=_#0 {5E1#IӍp\%sBYLQ`FGpd[2s:̚XwXїZГ͍ZN?ƺaQ:4wWwO1jFˀ6! Ɗ\&[ W7Q4D9y(I 0ƿ"@Xvk;N[^1F=랸y<Tl BXy GN;9al :c\H!GL{ qV tZXܿ$=jpS9aIǙ'=*W9tc=hܪNYdgRTOrI>=LmHO v#6+q?tB3T8ֳ/exذ0~#6e4ynuǿּWm"B``zr)n]L\7mUSg%HpZYHn M5<nX3q׷Zf/,hicgv>N5ywUڸ Ǡny؁}KŶX h3v-3r:m)a+]NS2[7 'u޵)ФyYDZ s霎+Ѽ1vPK ac5G$)r9 u*\v{Mٓ%7Z[tvR‘dN3>a$=s>fq]gEz2~FsS_SCr Z$`(u >܊_b(Y#ӕP؃=kTqO v i2@cRv-(@)1RwUw ,8H pE5("nIR:9K(5cB瞔ܐh=q5WU<0~0;zUURI ă[ƄH,@_(xTҾ]rx?F>P'až4KI Z¬QJbɝ=xjK-b[(2@J';Wl~qNHsJguRI*LZ& \Yvtٹb;t)Eh` 7qchĝc'* { i~ Rj H%F}PB5Nё]zuyIܵ<'BM0zT391w#nHpNd]^c/A_z2 }qFM|4˂Ju嵾uke$݇H[N9m݁8}9CHöcBUa|LwC\7dD:u\VZY}hyp whbl~^@>Eo-Fx lM:gauV_Ii$QsGX&LFĄ^;ڬ"h┢aHo?ʑ#++H#PFs pVE_Ŀ!`xUc#| Z1J͗'@^o43].@ P9F3ڥ7-2SŒv,2J%K[mHq%07$\=y4iOM ;U-F;x<j#g%~?)]([V$08ϧ֯K *H3QbGkffa B [IH#2?JT'Gۤ ⳯%Aܠ9OjԄۼ"LpBVm\!V#eNOQd n/p~޸ J T;Cy8C[E6m$Xr0 81kJ+:3ZA9jFǙj1l7뽎26m\@LK}+|I93Y$rh!.}}{WDYTW!U܅l6$d;XY 8#TiQT2\#]1K'̀\kxGfXɶr`^sWgJ$uZEUDUA2?[vb+[uwe3)##H;*q>8B)%f9DO9y=?Eye0lt);5f8'1ݙrsPEny28uPgbĨtheiW+s,L$<y?ZTj\DP=Oπjj '>Nۡ1>Y8=>1R@ *qN*eBt℀i ^:6_ZiyO=84"9L)9nyiQ gJP P1JqR/sZ&CCF})X%[~3\*1G'!Gp*R[n>V pҦJ9`9 Um ~4HHV oZPdsKRnUQ= 1rWI8432BxH%S-}*h$^>L擹2T4u|Ԝ{)e2JyBz:dϗB63xi#4'aۦQmyTriavQ2Oҟ  n)#53 ք$*6cLp2=j`QقmI䀂N0dBhDMWxuTĖ6 6)^6P \RzdIkVehQ",|٬-VH+G ?CZt̋A1Ot7[{yϘ˕##sNH>Fo,r@f~m#J+F5oI91kGS"Fnv*=# u$kL wM+qCӭbJSCѥ_"$3W@ W{ 0d1;Cob{FIe{Wf+!,Mygvz"D4ynqHD֑Fq^=;#FBcyvYHVPΛDRNmi+wx\M5̑G(=H=MS g 6BX=< XIt$jA(ÒmӦю {T͸mUdQ-?٢ehd#bÌc=sT$tesՖo:EbIX2[+xu5N Xqu&y ?:Q FIxaC,8 O&J=}W+mp^yRXd'A,&Y*{@*+gr\䃎r{{5EGs` >Pwv6,(C#ը:02E%eP(q}OƠ]H-ц s\ vdvޝ2 '${s#ok#)a%FHrFsTk'W˻<\>ߗךq$ G{n}ԓ4C(W =V`Q)5[IcH7{pCOU-1+[gڴ`ʵ,N19>"Lt ,@Ifu[H嶑&;yǖN׏_Ɯя2=@F2, 4kZFDf!rTM7 = rH>1ʤ.0²"h'kJF,4mJg8P9T9o8{\SŒ .+zՖGi-}iG{%=r%i\8jWfءQ݀v:d889=8K Ld0<msI\5%xvLEsw"ilrpA &qpvk-e1>~SQ\%1TFж9aTE꣬*rq<ߖ5&ȣcL <ʰ,fOA8m Ceb0сrkFe%H.G',S.+y)ͺir2# M'r.yڱʖ0 ' o)#$:Rhţ<7z#0O'~vB 념אGo|J)C_F?PK paG=Z{b{-, qV?&OڨY9 V(])R u#ugA nM. pbb`q $(.@'zS;>>Bd>M;l+gq#jTx5%TP})QFFš+Gc" ^=B玼ւ@zP?JKqAu vC*$hL,:g&C`zR[hL2dzooMhKa#B ڜ@zև꧷|e1s܁B)?u&=;KY󡙤 HO^l.0iJmwT.qT;U'+p8M{2`uF E8msQyИqLpH$kC$4sJ8 =X .."q U l*gF?SU;{gGKQã+t뚻31%eslN99Yng n1Ƿb2IZҚ͑OfO=z\Ln+L;TnmiIV!,1:OZm\NҙFsSS^\J+8qjӧф`R>އL+{!P吞uz|P<[nxzgul<]A#<+s= KSKh8S0͞.mIbYڣ;: w*MH+p ,0=jRH 1 @#nMkY#1\:7*T9>d( sIw,Q+MQ\=j~Rܘٮ zzt3\IȡH$c X+!f#~5rJ1>UI' -\YcԊXl$|ޥGP,"O@ V"NCm#1w`7"Y,t\aD2pe^ XOCTNTlY%bnc 5 8jqv|Ƃ%Qw0=MD{Ǜb|=I{իyC.J5ŸTVבm˽e(ܜy{VyiI6i]%HۄepI8wΎ+Y;\amSe0zdTg*:ԯm:r;;9tDY`Jg oƉijHc ʳ.JW v1…d R+O2d;FzzJ'[e'P1NA&C#Wm_,X9AKq3%$0;M;J\m?o̡_ƶ-o=1Yg4 bqJ+L>he:֭"̒1͢l@9Ps'9ǵiJVRDhGs뚷mYcJl$¬GqUkc GRѐw >RF>*}%ʴY 3\#U혍CcFsZl͵SWJ! B 1a^:Gkj丅I ZGxCc~yA~+-"|O9L7λ|C^Tȫ")XA>FKb lp3ҷV+1#$6(Y ҝ<(@U,` f ׭kG9}1S+4(\H=lHĺmVŵodRN[-WLHqа?w"LʮAtٱ|ި[6~@`d gµָ"CRw1l#`fnh+W' PG+ RT@pY .`zUFN:4|F#ֵD_lAKv h6>^hr 'RhycޢYTuQN.s;z~UI )~<ӱEhӊSn|088=ۥb8Hgq'JTPstsx(ܣ\Ҥes(𥳟RpU=2'隘 ."VcN޾2Kh0Rڛ>8 n.s#1Fs=M?{` ?ƣ p j~sIC˂=)άTV@>gm℄?#566[8s>\OV#$튠+!<; 47I./3!?ZUziwrcVkSV_(3 % 'W0=Ԍ3q~nbtkSЁ4nsTߦj\/A0㜁fa,Ȭ23Wzbq-&I >Li*s"ZB|>xDXjQ5T \Q'Q8|de0B ڬF9Z198;;Vn:$73˶QFjdxbl$߽gZܓHAbA%q ϱX@P)=h%,q 5[Q,厣ҹ{hЄKߞ]Hxr6LSc`5:zeXn v/VyݡcT)$.2#ӽT8wLHU4w$f&zYЙ=?dS3v-xUSqF㒽Fr<x=qQ{PC sBOX-E&]FQN[TGcu!p $wVm#x囘"7Vd8;`&Oҳ#t,RGzG!!+_̌+@@;sLI#s 1jȆa0_=-vqZjȱ <J, g=,C*|Rh"ÂzsbE&2ڨ{C$B?ʶGrG kEJ/<3oOV\q3Ѐ9D8frE, N<OS)D)NW 3R$L5 w}) -!&Cz-Y[vઌ'oLHYIߌ3 Hzq,Gc)bHxT?ۏ3̐8 wpd0+@[H1ڬl` }'ʮ#ƟPyp+>bňy>y/ʍ/'h$Bn֤[+m1'V/a2H[گlXIkfY^8.#r8jqd (sۚȶahW,_ЖdhԆU^\򱪹t]F l97A\zT^Z^{^㌌kK'oS a\㎂Y#ms<6#9 fѿgҲc̸H88$ GA=kLB_&NxӀ99 XW_#cALdw<=*aK#ޑ#q ցcIJ,ivʨbnvY^jȁeb_FjnI T#viJq mc3ub:| {aUy#}kKa ·%8 ݼ3DL<_uL#$"Y:#s$M}u?v3~߼FP>٢6P>mrI>lRHwUI&F$xC;uzGw ~cDXD|)gQX:sX!uJ4)[|6'$V,i0W$yӥ{5t}z ak2:yz&bNN*I2trGQarG͟nt\Ts1#]K!xzӏT2?c^XU XgHۙt*B7#AP*@<̋zD<+ ~C4I?q:Pϙtkjh݅}'Zbwԁ6C[Ozh04׭)=)}.PGg?AH@<D0Z>qӃn;c @1G(zƐYKp0:r3>iK,noJhb8N{uw|3#*Ǵ*sOrq8Z|FaƟmj<=);˸uPx00SbJ"A7c9)܂Ƿ 2;?9~.gG˂yQVrgCCn1mKX3W(F$f'dpsMP O4H ⢑v{tn#ꦱuPLԖ%Y|Qxbd0>YhY i,q*LB(.x=*_vX)88񯟼zd8ʎZ E5s5|Mə*AOCHx+v3`ds^5*GpLV(WxێXr3鞕WvOvrӒ6D6YJW;bUQ̡w?aOq3}??tQܓ;9:}+F-HidܟOAUspZ3 '6<s;ٳѥ}mճ=3Tط\.ݗngh{VVw1 `O8)"f@Su.tSL%f^Xc" Y?w>@xJqxSB@5lX,0*{qk9Y4ck[xD,F;>;WCj$\ l܎ \Ιcvq ;$" >K;9ןVtx80O\_zGvl p=Y3]]]"A xs؃܌ x0d\`:W7!e46>DbM8'#m+=iKd\r0 >EGu,v֒\Lߺ\nBk)D\;^8oҟe iD0[ܬ#?e'RTb\M3r7UW.8` >eY$0>aG<O\68Dhaa4jYI#җ9Kss/؁=*$~b;YqO)Ko,;r>n>\UM(n|ew`z.)u M)pzI.@ʹeT~pn&/q$*񂠲Gq曏St[DTt]u^fsnK8`w8Ջ˗Lo rFZRl!H@ ݪ[ n4}A?JB%V0ѤxFwvϨ>qHeBI^޴ƺn^F'p@a:䃏/̉ nv\IÒIi-9\(z41_bYqrUCaUjh4,l0'XvsUթLS RϵNfC_\LS̀Bî3Ng@cQH}k9-u!!{Qe$y=\uFd e8m 3Ye!ҩY0#m[@ i~'ֳWW*VW*`;&P\~fQF)rmZNCL0xvY -?298%pӎ N=_wtӾiIK%JSI#F\~Ԏc1sGsPxU<$E8 }ڑxaqZМ:[Y_:0d0CsV07c=i!'!p2=5n9,|ԅ3ڦ2f4{wʏm8P ƙ H-Ȼ6;Բr0G~f#r hrC,; *>3p1jXlw3@:rxuҸ`0@>棎Bҍ Y"Gr+,R)G;}jgDrWU佶ƻKd6'62N ?X1MTGIsHD<9=OzPc՚dsNb-`_ yGԓWq0zvZ(Ƣ_kы2r jY0!Y%O';](vP lk sy0~|cr1ג=8E4d8-1#6pUgU f>*O:VbUr5\&M tZ"#ۀT3 n !H:W8iʼOz4$pt'q3Gtϓ9*$ո9?N:YbE)@M"7Dx8:B$rۛ#h@jqԉM"7쑘Y`qT}A{wsvJҳ1-&X`(=Q(]G8K^Eazs⽏K-&G׆x*W \3÷5q*W"91{ZEc8Y?mxTŰ13U9/p{Rwq4[;('ޚx\sOͻ 9"-T<F}ivf??Poy>犉D=_RĿ Ɣ;8Z\u94; @YNyңzդ)}OBzr1RTd=8bw玔tOjbܰvm9ǭ@U $if(p3P[k) !IwRXaO_JQPtqkPhgi,H[ w$h ǶOOdXE|. 1Z·z+WZztv;$6k+1?J%H12AYl"09=pGMj}4FVR2Kۊ㕏BKEd'r:\sQ`G;[4r?Zʛp l킱,S`\`9?Zܲ|0~]!7[C'q޲m̞tҳYWw;3ҰhƵEY'7P3;"cæjQ vU}2@dFݖH- ֱL+oi UKvu`jdW_.HבQ.& V1 ^S%~Q=dawvnz5d@xtC&[٤F0a<M=H*id1(C#O\b pTu{zBD e˵rAX2ݰo$4Hzp{d$02/_E4] e (%ہ>֤<$~, r˨e2G 7nǐIWX" 2eU֋{60I#T nicH{RP\c'Dj灎rjyz CSf=*x#H18}ieuT ?+aWϖ͂ 6d2OjU@g OLWLЖczu4#f?r@# H1|aIqUY\gտ#֭"L.wm@{x)T<ma 0oJWn B28c?ʥmǙ[Ļnu< 0klj%bʰK0!9 ) Q1 u|\`DA~x(RLhB+iXO <?ҺcB* c~]v1d1$Qc銂2jͺ?=rHBH,1c"̓;ex v!"|k16qLa&t{vv-"9 }L$I%ı̰D }:j-_nB Sl*;$ǿ,2սZm y91u[Ij+d lYNXY#xd!}dEh~xz >1% "-s.b2ӎHgԺNp xK -`t\pvRm:ÉCm%vsy-S+\+85w)#a`;uX+E~Qp8a6tV-zc*`>T|ީim f#v@=O]6(bryWE8ݜ5e`H3,$$qwJ̑ABvFFϖxĴLyLߌ)*Ȓ# |lQzkx-p3(p7sz}ŲCn?#y޲cPDd ~c֮YYNxƐ۠~s;bdO-q=:Ӭ)դ*=Sr-yCgbK8[L^oKpP};ddE 7teY6@Tu~=Im&.O{X.?Ҹ ڙ@W*R=?f$BukʌfT;uFzћbykC)S#׭0F ?*EnH=:f":'C?WFޕ1R,P,?*kbJZ7qޘ ' EHd`gS9##hYn*y2?)ӗ`'T roQ֕H28E3F+ǵJ>QÞ)MУKoƀ9 6 N _ʦg~rGP )?Z S6>sS#ӠT HT[`g\.ՠmU\ ߜǒA:R\zȯg9ÆnD'9?/fCLs&{HQG' ޢr8ޜGR:s5$G?8~z~4-"vU93Õz,89'ޜ@eHlV0UX"29,MX"HlOJRsR1_ F:~=idC<ᓏ\1IEw zzPI!G cHU%$ 4(`#<\]1bNr9Uef$"|Wr[LҦU rb=GLx&K V!|驥Nd.2 z K!3:**3ݳu.8qvSXjci27d}:Um'H.iDyk jյp>1,013UG(w)#v=u"W55&> gxvph=N*HR+eSd+I~;FΨr [kflO&Lv:'XX$˩#ک+4<1@}Mwyt+};~5~d!JrӚN:iICG #Z!1H- 㿭@ōT. S] !yq\1i(`?~N T*۹#ޙ?ڭ`YF2ۈE1C4ipXdb4}Sᔞ\tN‹Ԃ;inb{k>EҤn(~7AՔClѱ(FP=*EtAp?~*'׶}:ͻT{gZYa L\mO+(Zv{QQfx$R8lu桵k7&c#)$6j•_2?,bYp8~Z&/5Y+}xpy҉ci0FA$Z#X°]m~f><<39#htQF.F+|dmIMAw8>[gQPG@;*1,VHG:;Uy6, S4.29I]N GcbԞ,Zq f?ŸJ^ F*0sqTuXTqH{ʤ]9 n;\&Hѓl1Ҁp E>+p$T2\Vdɳr3GCVc DLk! VҡoPNCOoªh\,En'3Z,`Ŵ7˟Nբ6Gkm+ݤ6eb[9Z*-<(qr:Ҕ-|9 eދxk @2<) r%%`8jt͠wy;wLzb=@|?wo{Vȱy&ܞ+U3>aC4Q-p2O>3#(m]G^LiGvzTh'R]ͻ493. ɌcYG׵T}9o0ACk8$gޮX/OR /,}쭑&6jȐI)9Wzes* I>8`s9$X`-y$rݳQ4,͏j&I>sҴ7"ǯUѥ f9'%Bc )5e$ ܹ=646 #hpH=sYb)ǵ\A:SHh"7C\x†UCn,9G#E>oSڰ-h nyՎ+ r|;GR= jҨ"L9Sݲ:]Mٌ(gMwgU\ 1#R`~\z&Ȇ=ݱvzX0XW[*LCwykkr8;XչBGzcn1*!mݱT9X'2>VTs׹1l-hDʹJ|;sm*K'˷p W `7%S<=k/mʫH,%UJA "MmvD b0*7 xvq(22]qG6Z qݞޔ, ;8#֔(Cw{4F 0IRG|H sJ0DB 2I 4jfT،?ƌ'.OЛ F3 (ԛ(cϵ(JYWxde298`u d*z`ޗ@_w$e>3'vǩ79֑1 X,1=G ڦ)V$1`qӰܜdP;}Nirw9-R+FM;-}h].%2 )t'hJ"}w,p1޸_oi*/ȨOz>Wt#QsAP-xv0^G5JVE0(F>緽}ii9L"Vò=+ Zysn?,GAT۲'07ozߊ(e%C rî1\GM #G!KrlOʯ=Goݝ[>Ge`ty8`>fSPyKv;rq9Q-8YdgնL?֠nd˷oi<1odB7᩹ю<¸B@sz#X6xzzrzhPqnA 7}tj7UI\_^+qc(2Ku£hA|,l'8_G1Q1ђp'! }>6݃*2=)|p[u^i]+bARN`ns񨈆>jd$o%䍘E-7LhŬd]H=wX-A8syv],Fȉ'_CS Wx>3 ѣL >RFѬ(vOaV4k g,v tI=W3\M)s:H̦,9oʔAVX.3~N3gQ ~Ҍlg’b@7;"}}A-gavD. DyckhDA%WZ|6x\xL:)ƭ$Jvsӯ|C 'is&G+q֡<,(jK(XJ2D%[ZV&hOItyI$A.?{Tinw1Ӟ;ڵcdu,0Hl{>DTD-njK+OnZr)z!1oO£Adک>n%rk`R,m'=cóUݳ"11F0E67sr=3֔iV_9D+OOF)9YNr3VjG!bfB'ZdYe^H"L%CJ#$-% KoەAL0sS#)1H;qHLwu9@ڵ"+6O'}*l $pI2KlQ#\) Fe$~u Πc*Hr:T"K߮gҀ 0L+!d`ZrJnypFzՋq36B z҉$F`78ȫp[G ܡ'+:¤F*]J F鷠:XزBx5>ED,99VF=jIoƪH_a@Z[&eF>ڴR"G$A<=*mE`2C21::FMvm0o3*@9/c>bӹR!U㑺Y LiX͞FAUmFʜ!ϽXe|oZ9п$]n5hJLq*:q8ۓ8r9uޱ4E6n@ͅ@[UYvAyϩDf2U{9MH* 錑V:݄FYP}%8Ѹ=zl$VPg9.xsJp\3Ni%=`Pv?1ew4341JBq׊ 0++1R4=isbh2zsNt8i(lրCF^dE$n<{Ry*3NTޤS8jI*)64e~5ɞ(!BI$ɦ)~!W!?A$%®Ǔ3TWiv<9JV;aqOR r 1G ˽=)*>e9'8HbjLl 6Goǒ1և({Ԉу_j@>AaI*Ye]ҫ)*VFPΞY ''Q$m~a GDvwo@I#Fy chFzuҺ s}/R7tԹiDk rӧ|b@SbߎkEmXG'i<ꍖD't晥`_xdf ӠJ-nme n qYqEs~mL wQ>kVh ݦybۖ>֮6l܆q:GJh!st.ػy;<Y+^2Hm-Vyd_Zٺ8M#3|ϻiEڼSKk)-ڴ /G9S -Kwdvmېrzr͝)Xp89ɬ*$v񭧈n OT#F6{_oC&qrʱ:4JfG֫Apؒޭ턢79sMCv w:NYIuIEq 1sB=1O  gA3!vaSj@- $\I¹1j[L a2.s|8\N2xIf+"8e`?RKDdƍxRu`sȒXsǵKh`pe2lCʫ*JHi!ҷPT64h"A!E$[fz=߶CTdqךS8B0,'0O{|~FdD=8jEwqHBCzE-0ۑcZ6fؒD:ݗ0G8チs8QfT1 ],b=jki<؛b2FjtGˎ y M<$xM=XZKɍ+c9==}W?vBd8kFYα2Lc;;b@(-؞V{UU$1s#@_ S$*bxHmVٓ\lSn洊dr%f8g>a1Ъx.gyRap9dOZr&RT?FH,y, yt֪r̫#-;zSLmW$H\(=!Ո6a-Y  oJ4j,a. za#f%8l #/ɀ>_nOS[;ñr|nV-) ˰?(x>ޠ{=$onlg Ϸzm[S˲lHEA<*l0.H,{z{B0sޡE!@b GD!FTz{  b29sp2r~by?֟%đ+C3)J(sJo2Avr=Z7EnF!*}A,u3nr>`sSKRrҔ򔘦w= ~4$hYmYӑϭVPf`V!hY{[St0n;n<\ $'?ڪE#;:oXF]7.A݃O/,:ѶqnUv,.Isr?@?죒)f(G^:Z+gS(:F@djO5Ygkf%7r:4lɖ3)l`85Uw{pG59c[:g9Pf \ &"(ccA2mfo`r=+JW ۨQ.EKL8Ň9n)+68b?\&M1>/z"'"y-BO*8#ջp%Ab0F:ٖC@8I-ppr9ȭ9 #nuJQZ鵇3&xیs;8Y~`ӊ DӐܓN{7{!`9^bmB)͞?:6 projijy=NlCҵS8VM='ޭFcԞI`l$dS EQ&ጟֆ%\צ=*IP0c={LH'TC,6n}*Db v!/Ɯߊ;R0 >wg0|Stt?FOQ^ pO)֞s4%/35<)<9n?ʩ!1Θ'\pziW>sCBI I48 uoG&xl'@n On2c{ ~!p~ԠKc g'ߥ-*L/;<`ޙ q*O0C4H tkb{wcLtfC}zJ+^v_LtM W;]Yzc'UB1/S=¦Jp8!rUc#튯l{irqN,2Rm%LRArߥ#1sғ N2A:p>^ԌzS§iTUdL2ѮrwcZIcp2OJl 0:I좛*IqO`;cTPBt=9lZpFw3ukϙEn(qC;UWm)Xs5-' e8ǿ`PṳPݱM#ɍm qϥUbBSz0}ڮEdt=zc;J򰵓aX#&^E4ed+n .9$/S0ؔF|;{S&0; =vfh%؎w *Hc*?A:E1;N#F"A4:LuYO)*8iyKtP$یMXb!JF6zrܸyFλАC.335nE7}1T$X^z{k5g"Gy6i3hlQ%-|c.ziI geY axx$1AH-m?n$X}OJFl׵I-C=Mgjkp1ZX%/sF#p3|ۣP( \۹,o ¤D*C&=x< GSQ*iS:S:%*;|{խN ,ܳc rAVO0dBˎ=}^E FCק cq'(3׎GJzyCb/[]4ťu\m[$!E_.WPuצsWc_fWRHX;2#G_e#~B>z{y&6YPH K P,.BCRfno>095\nl@ar R8QC!TF)i[f^]. rHA`qWYX!eB@$O.W{c2@>DU>fa9j4G2B.D7yYK^f P> Hv{ԭI;X`)VbŹlӱQe_6ItbHYK٘) cfp0}@Q9ݏR#AQ8Z%/JM犨IE>Vؘ *X淿is )=5ibbpSۧVGky sdzT"G, 9Kh|k[)U%uME U!ngcv:;M1 ƮԐJ֦02#ssDbQ"ȫ`gRA$q$NsgjE/AԆ GޑfyP = =HkJJe ̧A;TǽHDž\GAֳou8$5vOTmza[;\\lI̛;,qO¬_dKT%Z5Ν~=>bYwGJxȮՉul P,6*q՛&x2 %9h *Cwix#̊WesGnu.t DV,|q>Tα8 @פH^Zҳ8'kjqGsuēƙOq~Uϓk#4]>KvFĝO}kf-ZD//sL$M6._0Nׁ#2g r#~֗i̥GBs$rv?+hD{E@Pg󀼓AR{UU+V6cҟ-q2qAjHx˟M$őr6?{Q!g})``zVE,pT,H}?$1>׍}Z9Ų"W<'4T F =?ZT9Қ8OJg(*j`;mUT18?ZU;Rk.6Vݜr)ʐ1(6})zRb)!\S7 NL xm]mqfH^IƟȈ8u$`sߓ+='V@N}:SbQ9EJ$CwZXwl}+ $n% mp8+Tz&p\78'*K5^SP~Q.8?&!dp9=p? %ogn0Giʡ)wS6`F_aҵuYl*@zfXɾqce?1< uvv C)9ݝTX̌!YsgR;N>n٩,eѴ$;(_f(7+gus׆GlZ>N叮{ńbEX8\zHVD 1}+gJl(-rG@QxdvO,::ݯ,x]{Ӂ(([.-֎C%[TM^Bg~Ugk-N}N8ie?7Pb~*:V1nJ%ܩy:ul?0<{Yu-$ Aϯ5p g>.j2et;Uc=3RB8lav8lJY_{3*. 7Qzbܺw` @94XǩJFV̓*jZG f.%bjd"+)b8x<ۨ7+HĮ`ybux@=6&TiM&]erzDL"@ YHj|5e*R}Iu"34q INw &Yad Akv; 7HerNzޥibvEW([ݛ.~q;OaS];Zo VdByR8P{q֚/9PPm_QD;ee\vTg(d̊}8ϿW,>}Ho3J$9@c8g8i,C08#>L Nٍcư|#WszՁQ_?uXeF>Z\82;@t:[2F`75Vi!34өcU:N:@:4chB2n)"NxԌS79vntZζ3ƌchZl"P?N,1d$ hWf>%';Su"upORqs uiٷI9=#ڷQd7V,WINK)2£ ٌ^vs3gڞE CTֱд5E̎=}Z҉f|Ԏ,1߽"]3 >M?h3Ip0 z}kG[,Qg_0p9])bFwXY`v+SEwK`cNIX¢H]<)X1ǿ9j$d@ĠfO`1^TĠ8:VIpq3`c~X`HIAX=qMXz`ԓ.B$k Ve*j4b$diQ6'e'ʆH\BC 0W<)5ĞlKwcS*`Cq":qZӧtW6Hobtbs׭]T,$Uے1)2Ȩ`7`2xM61d,%1U ZmfYL`+g XgՈ "cZJs0⠹2>P~c9Le3@MnmJ|w,*)fC<̯-P p~ %U> ==.Qix9Ğ(V@lqazk;|w*T`zkgv' B3!A(%I<`H|²GNG> Y\asְc){qZGI kp9 Wˡ8jȲnʷ[<{cn'c3<=+5g]lDѱ$r:CD:8ml)L|Ďw,ѩ 60 W=/ߐdw'dV8җsPqc1 x4_#9Sh=O.c4ew銅Cw %x|/қE#<XJcNwq`ӸߚjqL֝K>rGOjsd8UN[IR6F稦e=;Sb1)UQ!<Җ@NU9zԾZ?wch忺) iO \+|l(_mRs)HN[|Qh g#?(n?QaBEH cCPcR6 J !f|ޑ9$d t 0$}iw1@nX<8HTHN{TXTu('?^(NÉk6rXh_|E\}@% >>'gm5` ;{Uv:<&DL)۴8B2ӊݑQ ;udy.x :t DEr/|[1`\-Ğię'Ҹ7OBϚ3-{YǥI|2v.O`j7+ 9װ[fvf \$κ19i ˜8<sUc$a䍠] *Xp(dLF 9n:qX$wA#Q#|14Y&d^z {|lt㊗'s2Ǚhs&2z(wcW N:ثH^<U-F)q'tiߝAs5H{Hcxۂ8֥SDNYXmGoRp6RhK8GˎGAPDˈ!w늮!y-[,>w<OLlj-Y^5I \S:Ao.11n6u?Z8!@ Cl_%9zR]DQj)0r5yM}ϘÜ\*!<3o cFx5;fcr0J|妠rRgOݗ?.ጯ_֒yˈ 5 kێ^7f[gs9#ZTΉGU`Gn9ϥTYn*K'0G=EfvnNmQ"m 4Xp`F;n%\\'B{jF/ZF"2  pB۬3mQ nzO'jBVἶv۽r7Znٜ|Vs>wH7m yyA Z\fʠg} jBJ)VW'8YC*F]+j[WP瑜DQ:FeK‚?{=kRNnt>Ն oI)0;R%XF0VÞR;͌٨" fY7smmHݫKu'F3ӷeDIRxr!ߐp}Q]J4՜K2ZD󏻷=AO( Ŵjv؊iآ.Ibw8)n"<2r[%&1.WPCVŬ~rM0t…6'UEdX0F<7.T$zӽR_9Tcrŗ-Ӏ:֤fٮArG<iOn&*p@h>g%I4۹cݢhyR9\U+qJH :9늾R+~%s)F{Im'zKyvc9+9uJQ@[ڣfA$S&\C%\D@>*6؊q`>Kixl'Tuw:^13dGm>R?wX彝3ʼnQHwnfcE4m!2kE4QLt8,% тe 3ըJL`MBP8u9H'Ε(L5iD UݽyvU" ʱ=G}}e'#{ 1n\zuhn^+(ar3=yQ,o'^Vz-EdL凿k!(P?˥C-LorzA]Lv:KdF2,xa1mg^p8kQ6zs˴1iKwm )"1*-ip6_Nv"5克9<;G(Ǖ?225n'"E#aYvsȐFK5m )0AP9&u:L\+Wu`ʑzl1AOS]=ȼJ<:vSY\nV}*,@pŲ#z;WrVGq*}xLjn#v6 ֺ59o.3+M$2(<<(g8><$7e]7N< ж1:t3vIG#\ 3d79[@lF m亷O Pyqmdž޼n׳;0J'U!RJZGizb}  M/Ăpr`!^,zc(ULήAmXRveHzЁ'kG+'#N.vd2,0]o})M{|TCz)D@Yw9P {iw|cޜQMP #$ ZrR/_Mcִ!jA2c\ҕ,IRS@zNrGZ '9ƣTz `i>nhP0wrT GcH1Mї$҆m8TLc$lĒsM5h2irse\ہQΘiť9<&xc™\7j{@Tc3O`6@,{pGb}ӎ@+ۯ.FHlR>픎PY=+@ i&r&E= fV!ǒ{u*"s}+<{`ntZF,(҃Em3Ԝcq ?f=і]^8zA\1 >l` =K^9dʑ)F8/<nkKĭ$#82$: 2 09kfˋG+2:wl RsMiX2Gp왈` pÜxf:=b,E0[wB9u*х+Hd]<,Une>Hd>Y3G*h8L]%l*Ү\+5yXm8j 3c9X#eVG;TpOA4*a NIaҘa!U/,H#`}jY0dy?_𩺹ܬvd2X(uY$',NF:}ieߺrۉpj+!*s׊ =ʉhWŎyj6O@?1i>|W';U!NLd9ӣa}nQBd~\oR{vWGgtL(?}J㡴dtn$[;v!󬻊ۏqjyQp;LIj-bB Y,Z)8r9&-<8W;SP68w5,7&LB*G ԙ`q=ZvۂV}N#}8u:9+VX1[f`,$rn R݉鶖<78q5O{٤g&)fBZS$ vq}1=xV#:ahZd%̉& c0:u}sH"Q'=Ai9$0}\̷2W s땮,KD~%O=8 xɼaUbN$69 qӾ*豒ZǓ>oJI39.'Hg ,}QqSmľzt ^XW:36ۛKSf\SO>H(U-%SBuÞGn*őGWa gDc$pN2RmBt,0C }rpl_%uqVޛ~v0x^=3\b-@+'E]/P?ƽ HI#yr_ˎW'ctyz{iŌ6^X+qgyn4ں;7/+3\FD$" dvF_c[DXfT*Ԯ}]:v\K PasZmA)ઁֺi4#%c^9;Bl~PR>r0$vx^:O l.ptRdޕұMA`]p ov޺M^)IHy!~*ǒzpiŤky<7QwRCoAޥ8R؏s_>G|>e[#=Ggz}XZc$~=*qoٛ]C/gsh3z:E4gOƒ+nx.U>`BHpy [}Hhᇕ(xRYǩ+o<`23ہsIޢJttκ[KU#6tuny"[]3W됅dv7.3vUV jZd IJ7*vБҧ+ܘYXMnr'v:V%nInJ(5fyeePfnuj 􈏘H^;М[w1fo mޕ~T*DQ3^aıJ( ˷ϯ#?tG1I>kkxD]!rrz8M*Ts\,r)dGZްC$H8Q:v6Lx%X'[}&gPzq\m3DOOr v6nd|\2|-HH$Rm)YUTҜQF9砤[B&7rVlc(  (v~ s+i+qiHޤpOu(.:c%=z¢g<0]l1Bih3H 8Bp6w_νitZiH2cU6aÓ}3)IXE,a8̞f1/aתkOd*N@;zX7ڱ$췋+t:z(Ť{8*bCjЇ@F;J$ g+uV.>9گA6G'$#c#>*6`a,oQ-!F1&paWW8]Һimbȍ*H8#AYy*voA85LË;|×e Ol7J \Uz m[bKQaw 8ZYC!687M̊ǧ-BH=?Jbkd`7#!UH8je#L?EUʅOh-%DK'u n-$O,`)qM tG$d't7*ev0Mt RyܭAsӵh8u I?(p:c[" /|1`5g15re\m=zqf·"ǿ;+p%RSv{tZhGk\&a0W+z=ĖJlÀ0>=x f;JS +F72@c"F2 $z]FJqG>kcxĊqo nUyUq[%?l&W8F$fzr1+|KcJbw*wG918 q*ܓ$^y{8u)&! _Ua`D֗317~t޾F'P@q0ևLLҝ0N6?"=k/Zvm g.f|{MB7=89|7tі(jp;bD|4¸SD%@,9" )Jf,nэM`_@*lP@<U /=)w)j ҟ"0t@+I%G4vlr6֣9:S3 ^O9u$O|/=W0sJ71;)0R28W( 8f q _?>iʠ~sJ6;?„VdXc=`Aj0=MLt}() # &Hwjs%K HHP܌_8=y*vbh )+sJw6~ZU]sw/ T8n LD#)Q7f9>:tlr܀v֠Ht[@ {iztJ庎Ի ){X9 f + F=M˩ˑQׯ֐.6|۰38mvWN9?5Ds99Fd1,{C'hOa_6((yǣgW_߶dd{On06$(c\XS&Ck,9\_qlr:cc3'5`H0+sEHb`[ 'IX xCr,wmUc?ҥY&A'#gڰl4bFesۥSWګ)ߒO[9 'p'Vi278k=qҪG]!%P}+.uDp%9'=yQ杁 ccJI2`g:3ZDl4.ҘY72ª<-gm #Z`ˉ|ѱ(yE9CMIȚK|dT:=ε;7㪝h9Z$(܊06?ZgyRFkIWa&zgځCUxfv2<p#רT/ͺ m ^jic^U/-d|d]p3ըj2)-LL-d7OlNI rNz՛՝ƸtW\U-h"# MMs-,Dr Iq^ǬkKu.Y3=\mfA{J/gU<C4FM{DJ0^6s֥(LI$+o^t3@8&zd:WCi[C!Vn@>J4хVI\oBѧC5QzZO2B@. m`}=+oelM奅>##s7ՃN&+2Z/rIU9E|rVZr#ūRY m=CgmrѻB[xx=~K۸au4L8R)`T{(]# [L6AW?30қ'`lϗuNrGu \4F B|2j%YGݒG5𰓻Gm7(k G,q~@ 0[طHgl9oJbԠiV)՜?Yp$&5 <{V~-rІ Sj`W۷A,C/#7^ޭFf*KDjsLTkonqi ;Hq޹j1O1=͡*?uyGJK{ȕ|Z11J9E=D.ш\15Уz|ƂB܃ު[IDQݴsCL 2KsqG*Nw9=ɩͮ|$ $jN39DI2ı!_~IcmjbC֠SijP?? zbpjK1ywsׯ҆ݶ:H!"ho xZ޸be%QU ߞ1T D rI̱1?eOk~ h!.78prxNH!cgDz)/Z\'_X}&ZPn@ָr4AyrrS%>TLZCv#CnGR;Ԝ+z/ Z̥6pOm?˥x,:$ܣ.r31 ܑb6pz(.=vK$1 @u^.|@ wuiimRY|’)RY=I] /}8kG XKmrg*~oszWAkZ$u$׊Jռp@yk:C!fRO=ғ8`+g8u+f;:P8 ryƓܼJv;R:5A˺+LxS^OsҲm:o&F 9=j-QY_'3ӸO98`ܓ˰F?ARiOcK@q:u5ŒѕA ЏbUD'h\HZ5 \DŽ*vTDO&?gkϨ\[/cJOQD?@`?*7D7m=F=R$1B69_;nXjp =-n$Idf;zfur;J脌g4wz+wBb:_J*2##V=1]:ȉ۲Kz#̫/01\Wx]̤=>Y.Yԫz;>WxC d`)hg^E??P&1yLShki$i==(  . 3{izJ{qFpznwz֠?8vrR0>'9qJcǧA A 4 GSK?Z  ^"y|1B?&?ݿlZX^$$J%HS*jcHA!$+fUjmF؏_'=¥,mU{Йq(lJiXRۛ;čHpG0&z4$0VPsu] X^I;@OOcRVGn3W\O.= -=@.k`KnceO͞7Jі;"vٵ(s NZP>ҷD@dHWfTWZ1fU#=$槹*yL!$uSF%ǙqO`3X(#Ur6=rġY.3e8ZѷUL\dvס< f0*r'ӽi\v!#+ܜ\ Jwe\dz{ɃLo#M:vY!ݼq }ֲnt6 APz(nS(ӧ:1EPpH>Vq}}O?}*"UVfyg<ܻsYң' % ٖ<=kHy |!`m+:;HY&p=+gpud?19'Ot; lvu%]߅9޳LV'ڧ#kczkݨAw+?ֹ-F_8`(Al=XzRRdwc?=ysGI.{N! ̽#^0U ִڽͭCʵFd 5kmsaop3Ou?`5'KmpݳaƏis=$(ǜ*v]W&ZGRX57r#(@o=#ɨ$=kXdnb#YI;SHIBXFaP8 nJHdOn B?{t]$\Aǭk) 9"m4ᘴM=3ZzS '0_- F mnXAau#;͒1YNR3oƲq4L(vܙZ%"dv*{fWfPsLted<6=Ys f ,wc<2FطrUW\眜T|T=xBz=*[+礜Bx댬0[&LJCz1ן­M{ -*0r6*;4_.De̗w 5*md J7D];C {Wn֜vq-dぅiǧJmo,,}TOtmq'9{kXKS ͺ@6nZb[7$`=qV_"ym@dߐfoX= Us2[ '+U8`&@8KkhEEĄnA* bXx矀0P Mc)NELa>ֳ+쭌w -^*kJyM!R ,8Rg'˹&3ΐ68Qc[>&ȫo0 =Ju^!kiYlR,9u˻V іP FMyZֱ0$"W:<|ֺ)ԱJ%]].km|N[i n%( LrA0*im ]ffC Uu)gK@FWg5jF)R,m s#tR"@noTm*.@~}OLCwzڏ*;Gq[#U\ ܾP \`~5K4(7g#n9.2ppr81T?B=Qʑ wpCqe נvpyIwlSypʸ%GOε-%=:F8@8#>R=.7{0XZ++߶<$ŹN߱{Ks">)@uO^4gyy8N?u74fM2nAwu5m{sw$tA#^#*3zTW)-Kn88UmE=-R2: :8 E${]n۫f>cm`ЏjݢH ͒@WW]^# qOQ,GD1sp<&ò%V=9!OZ$vvn\gl_Tt\]cc/!YvIZH"$Kr _AY6b#n֕-D@68 ,q`yHNT23?\~߾O)Auhř`‚\ Y-*YbstCGUM4yYC|N _ֽOOXQ$ $r{׊ >v jR3#5In%Ru c޵,XŘ7Wre" H;t0:Ҫ $0Flc=(!Vܽ\sT.*R>\/^\Tes yzT'&q"8'QF8?.jIlN/~x#Jpq@ ݷʗ(8ip;co#eQ"3Ԓ6SvpE|bcҢH|dc߽;y8y9SG|IN8OcPo{pHe}Csdr(x$̞P(6y9 wGc󩈅$ΞW;H9Q1ji%I֒0&CvMUЂ$O!;rI5Dܖ=jv͸GzZa% q5>=$ 1^r7/˞\(0+`gcY{k#?Jvϧy6qǜWONP IX/BG!+Tv~0f_:&$zW*bEnyd $0VS1똻)&I7F]mL޳/!}O +#Gm~}jφy$NY{┨1EVb6G9+`ʲnqI# ۃT`w1L! Q_d lf5$u;7.|it?.[XJF {:z寤q6O]Mɼ$)I8N=}뛓{+pDШ{fmƸSˌMqұogHwج|tͺ+.ۿ' (==)6#&y#x Fэuǰk>P̡``J6XQ-Jbs;;cӁYD%/+j)˷0MrPSgڲ~ fSZE™,кǽ`_[=0\+r׃ךyŁUH B1.3"@5 ;ڔ+$pH z?eKlI7![`ޙ?zL!egTdZ⮵ ,6Q>iI*Ee!] 1ʸB)eb ]]ޮ{|f񵘟CW--6-,;g@u"Q8[i0bkHq>^9'UmK颾!E8clf3De$Fp@=F=}V<ڴg|Q0 6_}nծ9tUn.`ma۩J,,QΠad m?09tRJ2ȶ_be[&h n$f܉-f2rDJ^GN+")5)" "W=fZA 3jr'{ו^3v=:?R_^3nJZ3fC]5n#f #>2G ~#X{x"3s׭hA5曧a<F'aOa%W$iʚ;Gzwl}i,H%F~~JKK۵]?Uq^-ylT'Wqm\Cy dmXpN s؊қr#ځI{=+BHc(#^i%r2Elpy98!],nO*dݹUI`9#s5ю-w?0z I<ǹ\<jKx&xgHQSvA_sUM̒[nFr*Z.2Fp )q5 38 z߭Vk5@%³Z*[4I#<*cct\:uAePNprzHÀ'gyʡ#>\ ҆28\/ W]iݦ tz '|e]u,dK1R5;>1"l"t;'u*Y9&t~n4䕗xldsߎyq[fEI(^(>WS_u #'֍4F cϥrzvf""129P25b$.H]1WZY4!yĺ[+m JE_P fl6zO¹-l$\M-mkml*ɞ0|î0X[af*qOozƺe+0gvpswF5%E T f)]j䷉ F>5y%͙񃃍סUZGxbx?lyVz0 z61{m&;q&I jD"Hd#$#zӦ1.FCY'Vl9 ߡKIpX{vG$Ie@[GԚޠj1Y3#V}|3sv5(G+YQ#L_RMEXI= E^i*H }s:uqgǧ?ι-J "3'Pt $[v_F8v)MvzVE ]Iǡ!B x>ٻ2JtP7aUٸ +c&$=8,ISAa '.$ֻbla;G ԅI8j! A 9֤!I*{S@߅6MJ'f̊UqM [n8:RuM+N@ iЀa y.H#):5"aA>ncP{Ӹ##5_.g*si4I5(PWRtwA|݆|ǜQW FJg:;"|XG<՗Z?0.>0]jƝl>G4U!dH#ڛ ¢GV؝A;=$|pI$ TDGJ}9ԲOJx 2G!7%*d7uv$rsUQ 7R0|H<G'e`z-ԎBy})TrUIQ$ ?+G-X1S &vLc+QA#QpF͍F'`=B4F;[h繤y4raG7a]j7:FGJ'-vvI'cmim$3g0}it& G<wY|XUvb=ÓY x 覌A񃓓ߞFG덞KTFTd޻{&ao_3zK\zяtI0mβAiNY!yLxeeOROsR[^.CYiwakzR*}bå(1Qƶm2'()zrjAgP'9sҖ dԊs2,cqkJM\to5X9;[i26Ú)t c~@#%t6F T1cLBZmϚ 'PpP>`$8'N6"PboRUn-3ysw+4i 2:zچբ|C-&:W{ZZ=վL 'nXVw*9`\`8n++NvyUduqSvp8bwkHJst9AjIo/8)cc 9 ܜ*m>PedHGs^ii4m i2OR})#ue.9cwoW E_.&,:9.JGymhŻ8ݷȭN (cN9?fZDY>e ԷqGw иFsM[ݣ_: [TMj r7E %X՚bt{M$IHnbW8 8W=m#(\Ttlm$j vi kh=Zs` }=0ϩ-fJ:`$S]v2/ 3M4L" ،;ZuԂ8C#}}E-̋~~z{W&;śhd y&u,l13>½+RXY^ gy,)h2^2s|/S5FkvnӐG+pq_Jma fFs{oZJe,O9?Tis)DZ~][OzKKǹ'<{Vtn1!dsyoN=)s 1]'wЊ8Ege0 xc+h_đ<ovZt;6luü-\Q+ӃH*[>!!V-eι?h[r3b: ֻ&w`.ь+ұMnI(td7\Jh8%I3MiIdS}sҩhQrvFx>Q]uׇ#)=A}$wd#kg(nW;["$fy/2:Z7ׁ'v9+5&fu$0qYp;@c)Q{[uK+FHcJ] [. c%Fxɬmo Tt Gמ:Vi$c_\zxl;n6$W2G8HnLygibC&yФgZm#**dy` }ꠉ/A8rDdv[ fHJ#",c_zЀ۳)9$Vz%ckLAUעiUR9q6ruR1vRg#S0 Q'Ķ{Jy>&?v:qZԻnN *spkngHb,$<#52؝`>5b!%䓍8?x|\o!PF u> OC@|JՆIew.;=MygeF2]Ճ78Jlۨ#W wzc85mO[i0[8ڶ^nʇ @\W/p [v3yxk%u_*8%Q#n/UEMXeN:נ{ HA*t=;֑F]: 8xz0Oϳ*lsM'8Ƿ^ ֟w`v]G֛66=UbTɒFAɴ 5{;]IH5)YcvjyN*Gyc_hS&#G\QٗV(Qyj\ұZVdy 3Tn%ţ2!< e +M;F;206'!X8'!eYJo py֡$h6g ؏£NMya{+xZFڎN{ֽ[h㍜.v xwGNEٓn}=+C䂋d tO#g3Ḓ>:(< P#a$`K0I mFN2q'YҤqKLsx- b'FX ۛ5o%~\;}NkeY? ((Ua2;͢Ll"vɀO}*T+!NI4lV@ *A'v>\pI FRT * *~cYN}!$3+fl 3Ibu>ýhy>fV )yVbYT ɐ确mgV6bCGk-B-(?_F30Usbpa^1ֻt $s( H+$x'ˌHkF~sK${YG+1gRSןYK{QkHD&U7jzg[hZa.ܑ08:כJKݲ)l0P26u2sz]\d1Yq%.\u#~ #KS;2[ yR=;Wj:C-٥IS#iV^XK ^s1؏qH.$!<ۯ[&y |n #\X -aCޅAtiW p8>Hh,c<*r;F) 啙3߮p>+M2&PI9%Q@n9l}+Rv8 NG-kNn} V4O*9`b _ʸLe1sQW$ҹ+Ŀf|2'>*\PaBcv=+R쨊Ҵ?=IwnBŒ6s*0;Z!dzfgD&䉲|p9>*QEٰN=jX~<խ:ɝQV4bPw2__Akk&Vz*`8^>Փ=\/؎ac$ğQ]T&vga]aڄ դqJR=D RQzd6)A 769+sn;U\c%GTG^A mr| .j[\"cqԣl1.}IR}I +( uXDf'(DZ_[z4 Hsc7sYiPePa.A*tm68(ӿ+s}[S_HY-̍H O1HvJNà#J ۮ6.v~=xkv(aA*8a,AO :5@%Հ;A=GQEJײ40An=x*6: z+tW̓#Hgzb[k\mAֻ+ 1V UlGW/u!؎{J= "yzueTc9>J `;f&M̘lXwokY Pv0RH98zJ"'ʮꊃ?Jݶ83CqOs[:VH &'gV ;rs*wmR6 {5^LUWRy:г o:#[y`0ā+F(>ұy_3wVDޫl+i&ٴ pZE(tJp~_rsvNHC(嗨n:kLk_BGlw]̜88W}&p׍W|#)f@ 0$PG!ut o<^3ɑ>X'ʗ0 s_/^\Gf'2¾EI* ?xu;Wױgg5sN"+81̿(4 3,-8)ĂVkq4.n@폭0F/~PeyFN)@#`)d#qP  B<8E+B%㯷 $$cQQA9q#ţ* VGT>Q(s(\1ן^"I ˍq 0-{ oq("7$ 1z_]Nn|@9R8yu}R;\zr+%D#숑9=99+J>'[%ƫJcAOåX_-,wn=qS0]xY{z1EM/ `.GmղrÁ>VlbW ?k*y \; u,=>=I9-I u !YDHq \"O6PIlR~'ާXҞu# %< *k:y$H.T`jǥ]F##vq՛-y`?&wӂZ"ohF2GP֠4\pAovxm(꣹lc8\LW,ں;,Icp|Wk]en.gC= uL7I) jV(iJT=+Sq{+Xl5;p3)=@`r=ZeBa1SBL4'gXȐѻ'8+thYZ$f;| P@k)Rh\/͇#3y-Z4w *rٵ=G1# G] @:SZ2&by$:VSscszZY%Bw;>YTҢO=JQ(l+X+A(4WzGWHm'ǂk t#jtD`SGKi g\AV0IW_pk*$W !|֦0*Lr=:֑Fr+.D$@Sh  {Si$Ds 4YD3zՑ&rQ*$#q󜃃~qW[ς,ĊSH#C;+O+|mF唟OS̜;1mKwֹ y(ېF>V,PAZ'V"=N~H#Yr@@7=1Kkjnzl/ȭ[+&cϽJ%t: pzMMN"#r`]UY"\r*=sڵ!,$a# 3c ~JrLQC-6EȒBW=0y-ZqhQE:HIԃmI7+`nRJٍdc!*H"Tr w1_AY,QDr8jEhjJTy#_)r1 3Er#ڬ(s0TC7! NxڮENCJŜ##ChGH?#g;53maX*nH {Vasߌ`7OM8@L߀Xq: "vnv: 5X;F$'#,%Tb{M#vvHZWX{gu0E+'cysMyL`Euq/ 9]ԏ"$C>Ǻp (j$S쵙^i|FpZ\3bew<+*W8ʕ(F%Gkxĩ >a=x`zr=+Mrww9t %e߷n<= xqbʀyg97 2OA>e3!'};(`p}4Oݎ!@Fӏ`(\;yVӵz 'ɒ`0:S8QFb%'Jsg#iF2r?:1=iOTeTg1c;"sQ8ޛ“x1اpb p?1{B8#Up I40'?1>Sɧcڢ0MLHM)piS[UaSV`g'=quI!ԬeGھq9u> vKv)"Z 19wFd`pJ*CqMfeszu*Ge1@سDUF t* $+b7^x"xy+֝Ư3Ȧ09beQq~ьɌ47W\+(@# sPNJU\9xh<Gޫ ,R U1c `o٢|&9˜q9jSbDQ @E]5o vO|q8{nUbϮ+Xfxlcw}]X=kZ:R@Qn͵IX7 nJM]E_K!%A<0=:QNf$?-Ky$&Q>{UfiSTԨhAna:$D9P:+"(^X ñF2X7ck4RvઠvP1=pk's궱,s*<= $DPA#ǯaVpƑ yϭEp1nm"c#5p|"I(=A֦>X6|k>uaoMp֤mb ^92i8t7̍<7NJ1q׭Iz@Ć~qWVjtF- *pI*w PѲe#*{~uVBB*'ASV2XbcA!537?=ya}^1U?2EA#Tgc,Ap025JWVyXې0p2:QfjM34r†@`sxd,1y{5[_wdg+gU!S >E#jh[JZb ,V@$zWك)9)2p7# wUt47d1[3/byJn00:wޢ;V+ dwZxIltyY_b/$B;Qnq>L 0.NX䐼t~UX#^;+XhYB(FG_LK.4t݆p :tu2 'mHg,;+LķI|`oOBk:ՍbE@aID#@'o9Um%e @w5{ $C|)<Nu_GL[ drN:zVgP-pd Ҩ],m]e™72=%vS9.*$wa1Xla#9Ui1xz609LZ$HB1H֬ ;\zcޭ\/p$+x9BΆ3IHp՝zۥrHsqC]E WyҪj6p* 3ׯtz9Z+@Zpfc`?}mɶ0ۨ +oD!2 eaX Yc:Gٛc*jz߯4+\Z*qb:Ws! #==KO5#R2M\nh3ޣҴ#IfNci=RG%hLjm\ Uv1ۏ\Z{sm}I&[dPyb(#Đ'+뤳mH~^*kv}4u#+3tKJ7>V {"1hPHU=Mo cH$XϒpGOLjh%!?uGpH:Q,?2|zpqIQJaX&s#Hzm\F*)_qP2ͱQ'cj,3m0>LcNd6ye0>˴ ִ"IղǦeZApa^+@4A"^?ZDX"cJϔwbXƄ = JװaŽsqH^^o,F'f1v?ҧw]ҩpb;Uo)YrsUVi - NJW.UI01Re$]vZcG<#]%~al8?Z#ʨ82lpF1_k2\yPd遏Nz0<:s_:i˷ jOg.KS ]Oֻ Nf[tlaO^x:a >2F޸]7D]`.sYJ,﯋\wMK6С1LtvD8אC[xC2(x9w c{Tڀ08C Jr-s*`?4 E3*k9"0G8w1g9!wzӣڸ B ޠ_rr2;WX~bzP1Fz,XzsIvuڤFrc)3>w8lgI!pqi;ӭH z C?Zn¬:)*{j \^OePY<;bDc֦y~^|r;w:;ق*N{棖4 oVB7F⑎_a݃Hi2`}iXxyim¸Qs+#_|gZW2-`TWُL|-"]J#Z+*ZhBHC30`OJu9m[yGC» v(G)pAƼUi$w;Jcc0ӔIk 2 >`OB[9eFA4e(y, GP MiNy$݂p{֜ga\;b~yߺ&D5hVP;7_N^&`frHnF:V:zVMǛ2 jZ2şƶ䱴]ق3QHBĜ}ֲExÝ5Js02gH%m\BN@g'It:ծdEpG#P Քn6g`"p[Z֖⺞ =&}wT㱹Msӏe6%wl֪$2Jw(~0Ib3&s ڴ9u+[[yes79Q*« FH#vhBii<(o}jFϔb A˃&GC' 0%A {z~ @H$q*TrfC#QWcpJr8;Te(7vT csy2K1f]Ē$w1Y7f2R6HʭEc#<⣽!Q|=kx**E8 qOzXZW̷?tFie-򥹍~L`- nB}l`mB$u*r*A?v8$^:{2I e0=R7Ebc^,vqRMԎJnZ&9G\d(mԈSZq &'Ң>&bIPH>u,ϑ"A((#'OCGF}[1FHnܑ򜃒0A5kc$F?n GKA<.R9];09Ӱ,D-އ=*#4l!0Hm}OƦ@BH|Q("sEBwt!8 zdh3489I HDq.\."gf;`YӇ+2|3ǡΝ&y<$֤@# <j5!|Ԋ- 02r&YĂ uTQ[֬.~nǵJhE!SsZ*@ҒͦGj XVFz#8 Km }ރGZu<#9W69*P s*,Uit~;TY#~~l{}A5jJ;>KFql?-TR? +f_.xB8? 8jDOG.OSWOl`>QG#sF~Q3wl?]翥{^ks>*U@I1XTZ3Ga7sDJL|s{גbM xs%1r^_oeo+Kn'!\ =kOSr3$˨00R 26 >,F{%|A*_;Lvs=)R.!Ws^HPQc?y>((!ϳxWsp07SZǝWsftB\d֠DN ?ȫ$~@w'cQK eNW):fr3N皯,3|vGם:z ^=6O) ##i_ԦmD+`=ktnr>xn@oqGo- Y0:Ҝ\G@ t0\V߱wyKNh; XqVH$,erv{q굍$e@\S ˧3qǀP^ZGkQ]EȐ)bO PP~CN~jՒ&d{`Ub۾R؎W$%Mf#'֦0AۅGLϧqldjJGU{T"mT㯩$f]q¤q$ O=}YaI& $rH֬*0`7L 5ijBG@s>Kw)Xf9'r` #gC+du$z$lESӱ8HNnT6skOhk<%sԞHNk2[k vvT:TЅqڳ$u qOMҴ*\Z pB㝿S$ZS9'l[ ֛v8-anpcLcTٲƜ'^%Bw}xfK]A A9wphj!U_n##GN{4L6ςĜi{V7w 6%EЫNw۞?)6Лt$Q,vZhnu'HbpGͅ5R+xS͎ٶ峻9=2.(v-Ai?wn\q8tQݴ~}vVL8iLOf#+V fA3շҳOb ؙm+G4u]<5 ɼ3ӂ{j,I.<8ۮ*۵;U3 -]6fԢ۷&Lwr;sߥh|i˂#=OEq\J*F/gkb6\M OMǸ7rp$}aqz[>t>11x枱]$g.0ۇ$殹BTڢcHϴ[*Pr! mG8_)3x:[dX)Q\es9f8?Z66i1oJ'9=9UYycUӚBoFϑՁǿx#`>Y2èi dbWz61Ji#ƾa EOcd"’O*S%»@`q3٭[cKlN1=MZFSd+hp˙sگbmnjnϦk.-} Rĝùϥmy.2xfY/mF {U9n+$ [B :uI;  9B*0&m WQ)a{}y"-q[lq2oO}M y΅)~jX$$:9}}Gc6@)f(k !UYFkѥ I>iR% o0եx e`ͽ 33 㓸d{֤ɿ AUh,8uV)w gluST Td''ڙmk3J q=AҵEͱsq=sV!W?E9$qҶnV@<ހz@Wp}+|*)NT/s+Tr?u6AlWI}:~5YRG^pUSGUY^ 8>5uy\ߟjmy-PG@3ҹ;8v'w=>ҢpԸ;pk(/r^XQ$}zxP>WREǍZpH6ZDFJ ֏7BW/)X FΜB2f1{T찐]w+ 10H9b~atZ4A a=J!ޅrâr0FV;B{h<eŋ @QU[H]6} QFvg*Y|%}Wϗto3G? 7_ŽG V#|}[dDܲI+sskɫ3׊Fczb'N7>k) Z2GsUtG5>P_]$<'?Һe%&rp8[Q,c!9W'~ܕ,6tԷ垧g啇{j܂/ǖ `U2?2o/q*K sT`UӖ%Qh#gJf/) HҪWA57"icW8Ҷ G" w;2LQdx砦"=y=8tfmJs;5Z'0 8>[ R\@zR0d>OG.3[]!cIYmm1;S\D pBqA$w0ń+#n>).< jvQe?{ҫ[_<@]g.7('.=- $%FA֭2.0:XO4M(toSRl)@2BoAr9#D:L|s 2 r zO:I,LX-p$!zVsIbM+J lQZ7ʡي@qUŊ[$uY8=+:qs ħzcO5MH%S`RO4fGmCU nUlC A'qV-E#ۅ9'Ld֔ro-9sncS%yrg J}w]}<2ۊ υd|q}?_~O[" p<Z";]Ƀ3s}Y&6z dzs֥)@ݎv*x31㥳nrJ*2O^ºarcIlzV A,p` 0:{涭d+#*ÎFU(lv۳e.I!Iܹ]m,pc_s\ޞ$6Ѷo0suTXʻF_vi'Ţ%B|rr8>~0˸9oJґ๵ZM%ԕ=z.EU %rXIM<{VVpP R+4gn9:5mAoI3HV9&(HCn01,Ri';JqGJi#m9~rIJ=ܞo_25Q%I %xs+Z9P ca1&Atkۼr[HힵmM;'S$Wrp9-L"5 9+Dߺ{*pOuJFs~yb?`ߟJ0@<?:[ sǿ$o^: |U+#=)$mn8Rn{R [M;82s 03zBSj-s:~}PM3#ܻSt@g,`UK,sQqN_B>a3Tx`'# #1fq08ԑܞSD:,hpZI CFzG#0bGV|;2r T1 Sӥ2;*) sբya~g #~"yI(@ϱv5K(meY#;^2+GT}C*p1z,neyMP20 #v bTzK~]IpQXqD!ں[{gG 9'7KBQ ~zWQKG#~=j}0FG&X ts.C'ݨm6p?}rjSccUEeqlt+xХl?1i_A{ >J`cV=eeR[vsڹY񁏼}\qW!P8m =@#V8ӡ\rFf D.*-N'.H>bWGe;2x^P~ZNr?ZtA"l_82ڏ/ao{ՆiuTC{##'h%}؁#5=UOCqg*Z% x0ʸp{eu)5 Cdmlcp?ʩ*C3yսg -"AnRP~3sEm 3K|r/) NU/^g xە=N!Tp6)nhqO!#˗ixsSמշ[|n*p91UU,@H?3qG>H 2 9iA4D = yFߟN^yeUF8z,-rjO#qI(sW-UR+R-a٦݌v:'FjFrǚZ;~c=FzsZEDZ$dI:)}88;Hwu2Ew`9ɬ&cxOLոfN3UidƦ5*X}i([$.g9Ͳ%I;; Dwθ\SH(NGlMxm]r5qǩ$ULo$͆e\8 չU.FǨY:ROl7 XWHQ>̛u$se_\'dؼ7 y񎕱,Dd'lc뀱Yݜ8zv\]ϲfU1$~9w I<0 i~P1qUS*x*2pRCj$8:[DꜶ[pAS@݊Iu܈P֨ tMN00{ףxWBku/"}6ވF8q5|K^S ssZ<7?J$P~pp/5Eh|ij4`|qJp7Cҕ8Nc?5g3cI8zL+rLZ\Zhd{rM2> =@I#Ԍ>U$& GEK/JnFW朼sȪ%PqERs{Q҃'+3~\Rv0O={b@hR)FA9bn ?*pԤ0:0 KJP έ^7RA)t=(=QOj F}sNV?^pwBjG=ң]zٰeocip3HW# <jp.%,'P8bfl S^T,$єg)X"Hw]!1}CyG9Hnh4wd`Ƃ8 y3266sҘC8cAu7p;H|{w$bY۷͎ުHu.9i>c8ޤ0N0F@ǽ)3A,<pk m9qYlW1ȥ7 G*bhK}1ҭƖv$sYD"scs^Ys uquk-߱O9h1 }~LK k,ŷQtY81CVQ2`6h,X9W'"ԸN؟ҵKQ;"[K0Ƨs1%~=idBH2'=y2y*3LK{bFr9xrd4W͖tI Xy$P8WV֖ nB~UdUj,ar:hU,O(YX 刻EqWUF7G9+AVZHDSAT<}kL[E+#nܒswqv{!D+O(S1f sMY]ػU銲W#D*6!Z80,.=?XR0HS@ݜ E"aCe> `HHsO#~{"Mqr L@ QYCAo#+HS8ku?iU 5XNOk"Eiؐn%9=[s&ϵsۣli;p[0r+*&+M-0o«ܮ;zjssT72La :ːq"HZ2}ͼ6Xퟮ:Un7vWZr" EIM g#YHV3O0TB'=ywcVeq֯Ig;aor vȈ`8Q;3y=AF:;{@# ֪Nsd A۾y66 VV84k") vۃp})3;;pilFI ʞZFa(d"vUWwe!u#1 !AW''c5J?{c'٪ ?΢-y;p!8o\֐0V\@5 ީh +Bo18ןW-6\#۶T#sk[ m"r@ֵ+sƸ$('Ik(ˆ8F:cֺ  p=NkXY)by:WK0yN*³B|X$qֻ"y<=;FU81U,U|9p}@6 j6Wڵk+;s(hZx8N߭7RWatECyz?i}7}=)H۞=تN{S,8l`݊Mj'~-.a4890qPɑ "Ni ӗvNzPnȥ=Oz W0#ЊwN3nsڜNp@C=䜌s@lxv6\J2}*.cmA,JJx(\sڡɯ=JҸ7Q0:rYIV(!劑mR{v+SduS>pGj>Tb^1UH$ C}>GV<Ҥک[$ʘɱ̲ =(hBITnG$JYp6I9t>퀆uDǜǥKE:@"l A/A$S$I#i pN:_10N@I?@,cS'W.wpx@Fq8wl",`z"fM0.9ieaz%!Aj'#9:˸*mOƓ6>s4,*$?7 x5ghEd/־`v #΃lk c"l;OM֯3#2vm@Y- @G ?Zk w>c)ж`s+{WFSWl1+Rxd眞zh[FEpW5vEw+AzUj防dY#^9l{VO8F~TSӷ>z "R,l%E dG-0Q8a{==MoOkj&.q zƱ'#=YJ&e)h%Dqv6j;x-J˂=Hj$FQpN>]j_+I$&tbx+.MM"G'kA|P )v;w ݛ3sJ''ީ$#\DĂd7g4m(gҳvʉFq]{GS3py ͹"hپ׭g+B#gȱ%YA\T8K"p01iol7;97qҤ L=H8=Emtbܥcy9<\mZ)WDJÒ=;vXX&6PC}{2Y̰Y^JcJE,MTZ!e + 81WV@제P Qv˲Y@]N9u9A:k,PyV+ek.fi$BO-ց deC`HIV3(k2TJ6!WH wusymW9taxϵXE~vL2·[<1ѐI4(k$=J%/8h=yIY5l̇nܼe76g*&Gۤr0XбלC )1~)cO(C0䐣2jWު% ']ttӈKcwh9#ZӒ1nv̘Hv萙 #DF28bh1l;VmKnG2.y͸)o $MD[@6N݉E\bCm(U>P9-=kT< k?\9lg$ZXbu(ܠO=G8eqЎUbYIO^gV,r/}+G;fǜٓQi)1q=GNjԄѵo>V`PC`Ҵ 7̲VUᣌSn8+T@MλbA<}9%[d8$m80*y;V58OCT9rIJ&݄l<}*S1-A\e 1X̒@=rnlpjȬXcx0.ZۇhJ R:o[VY0lt8'֩X`؟w53I$ 10?N3[# cڶF Ǟ31]F+1l.ǡ9(D@װFɣ$$Ҷ-ORv=A6vЎOQ\%ۆ+6"䞹'Ozb@<`b;ƣ S6 uZS w@TG9dRw)X)5"J3H0 WFUGNO5 .`Sv#7(`[qKpqN*0 v"׹#V-@ێ1Τ¸}i0H?*(ȧOOZA+ʪ 9N~AK$PIJCߵ$K.H8 Q9ipi3AT@\sN9GNG#4Nj0H[H9n M?h$/jyV-)8;ڥd#iozs;1Ju ҇fOe=hU©8`0 N?b1}V}/.jc k)n Nހ*iHHcQ櫒Xɞz:<,R:mEJH`Jqp8u>ؤ+ $hW#E8B>QAЊ= JY=7vP4Nr>n b8攪n8#)Tn 9*)i$} L@$C6qOHu;qmi1#H rႃP$ezgw\K6%s9ׯo=\#9{09>t)3^ )Bi ҹҺ帮Wf|IzI#ۂ3)iBN%qs]v˘.%aᗏ@I\hI63ߚu>{$yK&2q3ӯ[,ܶ0MbX3 9߭tV<Lu?Z2 Oαo^E~I98'qM~ܟ=Ef\|y`;~569{%`TYQJсg$k^~a:YoGsܪ)#m S{`t ⪴o'ﱹݸ|GʧΖ`FcjeyFyrcG+5KBs2ϙ72jHUvNO]-F.sqU#M~T83A:e%4H/;yrnZy8VO%Ts˔HǷkcw=ܬN%% [<Ӥ'-nCg{~UXf\ SkN:jtŕɅeC@87Sxf+4NO\H%)2<<=i)(d II/[XԪ]Sv68,w$ddP:VٸYKu1,d* D#vO*E x#LkO=_۶pAsjXBA{h72( yl}犬-ྈ #618ӭfTR!}*@e֕[q 蒐n ǽ1iXppXMN(`YcaRKFr[)|qWGZзeo*9#9$Va'ϜN;E:HŢKCO]i(=.VE*.w#s5G|?t⣹dsA=ª%,[rvwV7, !sБ5UΣMIgL @ө7xZ(unYz +f~|Hr3sbQ H{˓XFOoz"(O<}kƹ:VZCv}i9^ѿ->0=0G]m*XX3l[ACG\.+2F ݌6kMjsN7:d rѪ 'aY$QcrO|v9#TN9R;*G+^GN̝LB  `ԗfHK Cm=:U|:)/B?Jv8#JHw8I#I.GPxDmҺ^]BH7O1\,v3j0W\Qr~c9WnGC 9e3Wzpv'׏\Rٳ3ENC'40뀭 o&I#~,h%yqޡ\ũ1 8(YV8H$q돡YA蓐ny=ZD 9TQ_- `@z}==sޫL6oҖT%t^O.rjfl.(1" t=isL1]ʄdQy.ѳM#y`nʅǥHwr^dV 4^bq:g,ؒ2u\[o9a&W0m󌎸aΒ;; g%x8\zgֵ !էz(50c17g+9c $hו`3kv,~J*1kS4 ʬB 9!Y 6*nQpp9wR@Wi8mG\깵9*yD:1`vmq\0<~_J˶ <_~A֭|Dh[\WDZطB 2(:6?q]9|;W*9luϵcE26ǧzGf 8%n >)$+)oz oiz^]3Q}zBq ]a(H'1AUL\tzTOvfNP2 !#;mBq4G/w{!d#sLrӷHpT>Gv !M h ;T銉8'xT\Cz Rd; P4GE$~RhE/o&wjё@@ y5`03AA*XxBBEC)H= +ή~#n>ӚRUWjsVCPU>+tUV`SwI- p: :~<$%@>v9_!|֚Y0s}}:W^+=.+\•X븡^xɕd_& $8ڐĢq$tiq2Z{s!AA倡}^>uj szV0y9'9Q-W4rvy"H;=GCԮ'Q)|z՘|ń 9>^eEN# rYg-4*7.>]g⬡,H n?.jf{o69jɏ|8Ѻz`zԦe)\yDP@ 0֪h_%_="w1"[=X`q~22n[H8 6+>U]ȹ$qJa$}0Xҳ.c.]|˷ @ =_@+%K櫳apqG$: F"6۽Xc5+o@ǯֻm5oLlFʐɞ=)B7)G$"7R[*!@ֺ1j񠵎v" %N>P_j_2ahW\ 6y gּIi-e/;v Zjj0_H?M4ՖJRr ޟq2ٟ[ 㷭\Q ^e-6=*^U2;01OJL@cMm* m>kU^=x:['l t8= g:"'^,lG="B-Mo9,fIb.-IjՆto~jZIbm>Xump+,FV#7QDi'gr];zᅲ$x_ +2(G^:jįm=enRGK9Mgr9\wZnI6m3z^( r ,9'=1Ey͑d Y^MēI+*89A0N޿9&Ջ}`ckXeXdp\2FqwԺ=drS4US }0?:oI% cקLUdXe$u6{y>V {kԌI%8gs5r[2%Ts;[QFݍf7 "uUry函h"8cj, 0'o2FJeJz a? cx鞙XXWazϊxs cV!˶0vo v$5AR,WBt# @X;0YK(zEl ߱/@: tŞf"Z?z݌A!^Myvf0}@qgڽjbT5һcet 1CrG*e A$WdO&LhV r[AҞJMwT@_‘z81L*XNH79w ' wzU=>n.R}`Ԝ㎴CLN9@psVEB2{*Cx8J1ȫ!aqsN qNi4":<*\dcSSЃiH\sSץ4cю8ROZQҬ-UAES3֕Uϖۂy@BN J$rOS p8??*@p{@ f)Om 4s۷J̠ s@h\EO(1?@~$sHÐsM8 "d!$'8럯;ty E 4/6p7tZb~v<jF(86Dj ,2ԍ1%. z w9#y<0['JT(GDjWz)@3LaAZ2Y w^=?V=Z_!(Z٤#ݱ־A .MS889c\]o.1NKp3U䶀Dg$?/']xvǷ97 %rA@>q^kϨ1FN>e9ɼ@m;}1Z$e 8zkt;Udyf ;fO@oƚ"( hjte-6 ~*J$I@@9ߞ뎕c%k.qRDNٌ{chUٕpEa+%Rн@#ny3U8ҳZaRܤp} Ar&>\**885Z)RH<( Vwe;ILK'}V{^q3`1CdWv!Obr?ζ2G`=r}G_ʩZ%vg>R.9.Xryp!OҼyy^l[w$1N*Lc|9c1yO8v^W>? ./dv#? q1,77|{U6O#g^BFN֖Y7)WkJDd=ujdNYUX `K Uvy<zmu5zڻ-BPʖ?/k5I <3=(hihm.t֪75j#VodI9Dn̯Jp7=Zfr$;M4żܸ҃>gs}= ߹oN߭a) mBZ؛i+NuǿHFΌC~ i%!߀2+Bs׭_;G210cϥU2"/w9?J҄NAP߆?*FZ888'>c}1Opv `à#'ޚ .apBp{rztAf{zù1EY)sށI*ҷ~\A3v}?ziur7PXnŒ78:R 2l!cs&r<ǵ6]j\ PI;YyS0Qۚ̀c(0m?J uVɪCETusN`mq Ϯ1֡J=5daNG0[nw?ٹIR,.Hr=gbq迆E@\:S3A<iaʏΘ pI횓~RaYG*O|4]p~>cuH<(^K#NYQ 봆$ g$sδ/JGtʁqGg}S627qV 1J‰g5Ȍ .FI>ڼ= {M(0ϩb,KX'5ѱ7m㩬L\z0)HJ.\T[{<8ƲKSh$E<$Eϟs%*A6# qҹ"k.s*Ms4ʊ1x_BdL"i81C)}G%:Bx,88X59QI6VR,O^J+}Vwkf@[9c!{zᦈ[p/ݑzՍ2iZt,s s}UjG#WcU+}V$M!H;l#~YkѯPFSZ8X/ۥֲ# ܠ3}Ƶ5K)%~kO$qu9AxA3;WWO+^eGb(Vyw0#ԂJ;y4m'FGGVgK9y2Iv^Hu^E8c(Ygr:㚷2/M#) 1('qDqqf)\~`J?j$FT| `ci[ҕ)KB7DMf`H Aka.;= 7l<@  s-@ ^ӊĶmE7#\$uK{]ҨŪɮ^[5aHak]Jީ{-̉2d Gߡ*Ԍc;B~QIupd z?Z%Umr>tRtAw$B7AR~px㞆ojơ[$x{9fy,m1?/玵Y[) 1QMvsrJˌ*4?8rI8`ֱR8b_5cm`qڭ)d0;^wcS屓/Hgpn7#PHm!]݈ϡLkU"7`Fs ߵME#Ee{N 1quDٸQ;Ż=T $Lp _*I0G˕<)VVd^L x,}U%B.vYgǑ0l ] $F0~_jj; \E*d׭^N=:Nݚ>ql{Vf9C0 @]%l4 g$r ,H,<(MTmpɏ 0wqzӎObgo\w=i>S C׎ZD%*%y85>R,FƞTmZH9={\ee09it F w,p0@9z8@ +>d^JBTm9z&sFMGB2+J# y]bFnw!} oZ29w *1]p9#eA,cP\QҶV,N'nz~Ʋ:bOU:$!}90}Ľ_l) Mvqc`']Z#rĀZ~ݿwR =o pJhczFu7qPcnBB$\JRF8`'J@ZndQ3Қ į'4W%qޔ=i*~jp9@8*x3xiāuژҎ1I:QUPI8!\ uD6*y 78iMsȥ́ޓ pID^i6Ө"HhQ@Q@ 7 3ҚGLL/Zf1!! $V\>ڔFTH>cx*DHe'MVwMx&+cIgCA3S<|ih,Ȼ{IHČ(sF|=03Kgz S31ǯ?B˸'wn}Vץ"oeSSw>1% Rn M 3299 xukHSWq K 4:p8cS¢Ŀ(<֣ ʲJi?kr[=VuIqnWnNϸ98%Fvgߊ i\#]snW#*o 8[eݽk>#IWp^Ha0x*fܳ+fPF{cUdhG9$9n\s3mÖ>qV<$(9Y=OVEm E I!Q1[2OiʨdڹPcȑs`; sgLF's:Hv7 3? C՛YbG% G![nY#&ck;ιRC!qxƙ\\Ӻ;`}3)*yj$8`AA Mqe!åiUL3!@3=*H .9ӊHY ;B18PPs"NϾ;Rk&2KoN_ˏj,k"@bdqM&YWVy!I |Ī\20?¯G rL\ǽXtui# 봞N{c آ6.%J_<9ǧ"dӨQVnI#twɼW@^JX\&Yt=s˸murpq֮ܙ#GSF>!nH@\=/ZWk+AE88?X6# 1wNi(Vy6Pk=n<[d59`OBՌb\{\Om6AX#)0=yjx M&v!A#')Ek*\K@D~Tn1:c=I2E펵$X? pyeTG $rl*S*[l!N9&odCa?5mː#=y`MbG ,s=+odỉ-tcdͪc ?98F#1YJ]I"݉  I弑T(3zؤC!L J7N:]u/vu \] Bmv׽ynFl-~Գզ _8㊅JGj66sg޺;oNO瞵PG Tmґ&F8#=N{+nV]ܓ7n39;V2 8N7"H@z`}r=AUa\vgU[VbpK@,-@l%;xe9+hA ] ȁ1VH9T 3ѩUZP[yj]X{ c)(Fg<0A&Л:|YRrYfH rHqkN8S|GR3|yQI_AmfǺF,~uC#FOjpBnjW@r-$W+)krhC!xXmg$u$wbyA4{wcȲ$[}Ӄ=iVQ'HfQ4mVRg&\{{qZ o#_s޲k(ݻgAVY Ab{1I+ ;I .c~l R  >^'9NLq/'ޫ{S nm`7SO&I{ BRqzMm*'4>^cz~*lDZ=?ڠ3,i$>cBǵ|,s36 0P;~_}'J:8.VDMv񮫲bv5bcyuKciui wtFm`zmKK*o'x8C粭%d?Z{!Wp#׷ҳ@G0>\$QMzu?Ds'Q(>:U}FT{$`=#dP 6='xgPxpEf6Ld^4aS=N}s³/6 -sZ&Yd`j[$XN08`=}sUtybx83ՄTe]y8.RTw|’{Umfv  ):؛[RqŸqj!,O*9)cFz㿵>00 vhLm).[`t'ޕ\DVI<jf WpAO֩53\qűAg7PB{VXxA.Daǵ9=LŒvG,@FHnV$hd+sSB#62u++wrݛc+mU#Hj} O2$;B}0:rj̒][7ҒwaJҊ=9+c$N^*ȳsZ3Κ41<*]D G~\kM P4/f(n?x zcOҺn2a,6"vq*XdDK:kF7)m@i]m cvG^kf}>Wavgbī&/XX5?%IR1)O6g =.cqǠ5XKl.GvBi-r\NVU(LB1ںfɂx]׎f>CpZO=3Qt8Q{A̷Mr~#R%8aNzd:ÓQµŢopϠ}˹y2eVr/+RRyǵ001h!uPuneQ[fpӏj4WfH%\&*>T:sj#6[Yc$[1Ea{8ZKO'>iwSA!7]ßzuyW bn9V?]0d G$mq¯X̷1DfVRX[|QP?R<Tm((5zst Idt1zi$wI@͒Tj y'IS4M+8#{V f7k?Ulԫ2 M?w?Ҡn]c28-Ooˑ#;W6_1f܈Y>_zt) yIǧTy]b,9#=j0U ۘ g9N(Ϙo2e aOJѵϕLuQ5e{0$sRѲ%{ px3UtA<)? q+2i27c<ۚ fw NΨ$-V^r?)ֶ$Pu*asyW扝Á0ǥds$anV)$.G[[fS)%z4Z\ƔiG10){ ?,XB:LT"T Uܞ I Ro~ޤqҒ8ƿ8- p=8rbF}E*zzԆL@%>g\nJjMj4D 3N}%85G1hFzu3$ueU] 8Lv6*u_Jf|SÓWGpĩ<*P@D6r={  XVzpzGOO4ƇҔsKx'/j\b9RzԀJNG"siҎ=*j_#)2ORD($NQ@Q@Q@Q@CJ WY褍ǩt1Vl| `>A8<̓6_ ~QWe8?;1rv19Gojbffƒ4S'NHb@ī iažÃHQ!OSwp8F5B6QvT? ̕K c05;IlnATV1Aa\gڀ2$=MϏqޚ&CV5!@ =UUq ܇|Y6vݸ'*ɈI.@AK(g@#V/0'>n0"e 9Pvf;pO^3O$9?*kT$dqPo 黉LHB'LTc2pO }SAQ9OC>%˔0'N0Ao^v&rc` FK`k6U͑%M7^ӭ]w~~ ο,3NЮ pxn8^uEnTX[Ϝ8)K*%d{<+Z ;2H ?ɬ,U9-+LNyymOΥ6ۺu2\YKu<3H'+'-MS&$R-СN׽gެg@9<󊸳"9 Rj$C8p>9;H<(XQhY r=jG%ĝe/=?1ZVuUYP`<4Qw y$S$)%"G7m=K%7BweeͿ4%,?7arq@>UI;P~_^=*[Hmxۅy8ڳha2 =FAr2Ok=*2ʾ\@?{kFXHrJ>U?+ 5u$M9fO5\bJ摞9e-c}jߗ/nH_ЏQUl{tH2 4vk0 1fiŖ.wܨxOQ9ۥgHY/Wv;ߑ0OiuلVyVB8=1Y$iWxU&&W"ElyqL]t1q} FHrA JG/hFսaf,,džrÝz抻)D<V-TEZϮ{ u'>n8$Ӄ9?/q,d(IP0R&sӨX:~TMXm[F ekL#̎YdsYʸddc8}OZٕg^)Í[zUţ ӱxYTfŒV:J"b.z %wge\/;1Sk#dI2V U4hِ`Wy|D)ÿ*Դ#*hT,m veB0L89>ޕ4dQ0z9ku mAbm9sP\y ?ֱeFC-gIrS~?.Oo](_5bvPvdt׽Lz`dW dQ*>Z[ieR#r)&2"t&ڛ{bi[-lH9=H 8Һ yGۜϵr 2/>kh1bGN}s:r4P ,X ZEI1rN8g0i hV@ sR<{E I9Oޖ 8A"N٘9#>5Å!ٛewr-in7($))v>T:Sg% O=ݭ|8=9rf˵+2ejVamJdž}ߺ }+bUXLϨU8;#퐒 m>lzWJ̾q֨px=CC15, QS1U'&*;Sy]4c r=(’NN} (q;`=ɭ 3rzӊgL ;ilH͞3I}EԊ6zւ֜IP8'8zS%Si~nj hv{T^i ȦMIɧc04u5bM;G5v Z(Q@Q@Q@Q@ج̤v>o\v 22ϞG+sSyvFW MD#Mw6 稠{cGI''jўI')<5D Pn1"dm׃U`KsC@F!G̣ki̡)iBÂyk@=7/2)ձn"rE`Np{PfH\'OwWj"P4aF 8@X"1s 9 wmm|T U3?ݯHvT^;gc\7t_8={ta*ZH셬ؑ2b{ڱSq#?.3]nG+kڍ>g1S̈z{6@SZY#"7ArILv,4{C)^63;2Ti TIP 3%jTʎ;ؿgb JșJ"h@ hBem#}Рs=Xd]8Ldi#vw98.bXBx.]CAˑ4(f5O!&Hu1#cO@<3lJ@-Z+}w0 \Gzl/_Oc\4t+r3} f_Y+Z\[`]{Ux>:z{V}ūEy7g ~)|$E[𨭕]H5t)]l;dl I GoڙU}s#oH T?CUK#qyXwk)&5ls3ugUi0[gsu2y7NNspjEڔpaikdhїpAxz,i$K0W;;py~:Hc"y7Yl~,_C*A7ul]Q7Yc1o189?橱3qn,I-ݟ}W B"6׎3hDuŴE19!)'G+$we/nO'SOM2418קNkq{_Fy$QfRF俖9Apڠ^ZMt8-V-Ζ혺(h: 7%sӓN:j|V~lOj0I=*XbxA .20ht?uPOl>޵w9esvQBq^b3} 9(|SAF9C2OE1ՓΔ`qSٶwNµcI PoV&G$B#V#(\36r/i\Ք?vPbxێsɭĪ\*cO7wauՑ69u91 74ikxa㓏zHYe8ϸ Ȫs9L] *9v׭j,Ӵ|6x@ ̞^JF:ZfwyN:Vo; 'SӭoEyIt&C,qߊˎՌ vxXJt J慴9uc(i6FR-GlªBٙc1jن; CYS! I tyV $lgiH#l1xIUd11 c\4& J6 o¶Q'' Y+$s3qG֜o!pz̚j*z`w~kuϓ:QxI#8Un8'J09幡lHԬxjE j!/ (ZK3o歨)_np9q>+,Uw7$=kUyaU~^8'תxf̐RJ0Ў0q=붍GOaDV#<Ǯ+coq޽J D< r)An8Ku8ɘ!x48M7-~gޥ )}Q29?__8 UJn=sJ ?'qJU#d/Qy*ݝBw1B6wRgk?{y e8AlvjmV g:B( 9sR0ܣy7?h9F8}N9l~"ຒ9'J 1;c< (9e=2jf7zP~l劕{{ #7QL>~1;Sy 7I#JR@|ACi33?J_0l~l,IcϦ8apqQI+39+;;{c꣏3 jqF\[ۜ,jIaP1#sӊ@.nr9PF zR) ml~uڀCý9(rYH=̑-'<7\]  {6+sOqi3-!)( ^ 1#ݐVԗ(N`2 } %آNAWnȤn|9VAXS#9 5z*$'o^URHFG:LWw T%eWcp_<9ѣr~ebB2C*S9W,婪Ta-ʺpTw8]nҥb@靽Tc'@`;橋He+`{T\3%2T6f #1"fC3lFDzz^U$n0+3s*/2y!?P11p0FJRZFPR}? ;DwK< ?p*"GRF4}h+p>4O)Enuv2Ž9ݟSx2ȷ.tf$)/f6Gօݳ),e8סTgM2`|Kxaֱ,m.E1^e.cm i0{)dW a)+F9Q;_caIff+%TTKSP z5tq#o<U4Ѹwb[-05k! i6p89'4I# A V׏n[$##jQ38<`o_)ɡV۞:ad1}urhڌ9eQ5a+Bm@`ʀ$8?+v8A#"Z|s!tW0Dqs\Ԛ=ڐl\,\;U.Bg۷\wPjrUJвgm(+ -* zp{d1YVBI۸߀kVNSәRKY7G& izaU=k%*8'8#Hky"#-Է=[2i@(pIJOS3 GCb('9 d;a<z XA&BD>exb7Z&R=sTjJwVTIUp uB$sG{h pC2}@MzTU$TEZD(R眊Qޠ`gnz8(G}(4 K}1Fp@" ((((((Iꧭ+aTp)Qq |(}9?Xb#c!@>ӥ|qKmiz2 |SWϞ#hR=})>C&csZ8>-׷4(<yMMJZ ) Ftj{K0;b|O>C4, ;g5*,Z9K $##U?>3#}޹z9Wq?^k9 1H?0>Z8YH #X&07n9j$1 SznFsÞ*eFYbr\0O[j>*2`:bf\=gxP ѦzYSHv {?*ڸ ST#%\J{l%GGb 9:/࢒$D0^y ۴R|< =AVbw89SPG\-|I`qT+Ho=:,H-o7_0 cbR2m81zSDzt=aeY-Н iSHL#WKlQ>T#ҵMP hh ؀7? ք'/X+[/Mв7 =csc61cgWxR.[4萲LvclG}-j>`@WTbcנD_g@L ;Ն.bTA9|מC\pѲv]a]WnC 7z!Rh흁pB"FF?⻕!8H_=4m#?)I#zQ92H?ʱn5+ (\69>jND߻8*=Շ]fiT1\'ki =Y۷ 7Ky).C0;k5ct sӯk};0YOMÞ? X$#<= $S\_3˅ r}8V>"u%T7l-?GBxՓ-@>iC'F ?c(qqp<4q~oj {4S#809N;1 $҃O[W FrqU%Qt8(#±؄N溵rU9 ih೰*ǃ]ݥAv1XHU-_gn$~gJ֓ґ1m'Һh3e\eGR:ʹiyar֑>MmNGIǾ*}l{uIC̤ F_p=cYA#䑳OZFm[t-꣰?ZӸ_<(Zl?2L@=hݳ_.8[]T݆ Gq8ŝno$wA 2qebeQ.1U-?1'C<ÀG+bRA2{6_#Es&9z\*F+_*^:vGbjW8VϾ*4biN Zqx9ARy ?ɩ̧FLhPO4ғkcZwC@94 K8DQIޮ(EPEPEPEPEPW!{cКr!Ǯ>HB"}:DꃞMDY҇V7JFZhq%2|:I=QXQRު;?p.F،~(qQV=j/9I=9qTE>aҤ.#!G"sќ{S6gh۴5E ,KHuN1= >h*#ݮxsCb$j7Ѐ[4A]\c#3LAzSQ 0={fB IFo{qӧ~Fí!{j:?,X攀叕<QRKІp&i V>r~aW9N:fFfRA<*Tц=@様37╔8 /ґqU 'pkǾ$h&O{ V2B9Qd! 1Rt9U4xUY.0c ;XrcT][9=* v2U @U"x`4 }b`:ţXȨyq p@?AV~ T0Ak:aU'bZF\`Ђ9Ls~.&a,jȲ`>Pqpj@[p|@T"+̤>+ Ӕ.n\`x ™;=|d`.>Lemѡ-1$ۮiyMNpqk7q(`ߴG9vH!)j 5Ų3Vm,w1KWE(*\a`< #@+RR2VϯJmmDPbHb˃s{dVX#kT>a|vTg Og5rĝ6x;w ˖=i jh07c*rInõ`z EZbL>|ͤà5kso} ?x@;w+7tW#@V"qprE,>_ҷab(L}㑻+:Uʱ[*yQC c5)\ Q*fR#UZKFpGJVQe~Y#G9m9I;9;@{Yia&G',woDcQ5#x=n ZgÈC0=?u_ـg,<%q}=jK,wH޺)lsNXd,K5Y$W{ua9BGyIBO8mO:)iȍF}kI؉?2z5Cdtۚ4"eWvYnb3ynI` ά] d ߟuBPq~꽜g̚H9 T *gܫISҶd*D e dB(>,eϥf֦ř\UT~9㨬f1-EG8A>l-8wˏDȼȭۆʅp'kJڀQR6p'қ相$VNݫM! |l@!l0r85F2viH(7[`nZ릮r֨64 .'0屵GA⾇偷3(sҸh[~vQ"8`#P>WUQA54y\ExF'9 6zQw/-Rǐ3ߵ8Xה Haȧǵ1F2[D2CIנ8_R:fXM PHޜaI(ZظӀ`b.*c/'9=HoaNĎqJt>(ܖȥZ *((((((yD(d,Yp$bz:R*!_>{\ar1ґ2PSFq"Wp@͞x4D+#+@. Jm%G֚(cO?O.viw<M)q<Up L=S\*Fv#g<v4y'|ygv3ryO2|d[FB)&P `AjVf> q+2, i` ӊ.M*oNJ Dw$owO0e7ziH6ӣz7z /Cgp:maG9UhoSHʩoKbCyܪ:u'g'鞢壹s0Gl9:T#vmfZnN5esH d{\.89 K}Ua#ק\D  svaڬ oVZגp8g^T}%=QpL.` T%@ J큱wr*u^FNULcw !"%FQCv%? JG#r~=i< dbT z1ӹsk"F:htDf7?G=}${P2pFP|wϡUP3 [*SNZ* D27t=ZÜr<"@7yT򳠐 07KeUk+4;B 6zVIt3]̐Yn;z`,d\19''6ECJ$`;~kǁ[CA} ՛z*XL~u>[(0F}߾:Vn[[4{H$\Ig nT: u4Cl-(g$Vd1C-Ԫw\c֬6B7]p2\cts@,^bA9<*ɒ3,nT *Vg'9Fx89OI yonq}sV#Ke:\5{%;4K er)#VcX#BP-?ta' Re`BnJr\T:TszhӑKfAczc5al@oJ0K-]\0 tvj|TBH`F zdWjqܥߘTFQI2I,吒rqdƺE&q@ O|DoJHÎ:zu5N#ηgRS~ԜuOm\4Z4&8T{g+O a܂8Y$D>m`"I zR-A@bmSwwʞaugޜԫdP79فkn #`Ujŵe|ߘ `W-qG9ʹT[fwK F*va+pr8>4ɵ(887iUYdM‘l=ڱ92±0 'H)lxb?n;ULD2:c=uIT0$rzE(4BVQ0W+݇~;U]%\psjHG&LqO;z׳GׁE V3ty'PMJ]?ֶ*B:1kA)r\=+h +q3-h]t෦= c4y,o$=kD\7Qq"zݹths $ϧҩAvqoenY9A_- UdY`t6w`4ܸ+#pQ({B.6tnۇ+F[|)IQU [.'ݔAδd ٝ>V gڔs @h{{5Y '#6YAG9Te ߚ R^'j;X˝,ӭPdaGִ& #~ f5]cfH`޽#úDR>߼Aѓ\ z0Wo0<,|L#G5R|;dJ[4XTnDUE%*(r~USu_Q07zR)Rk'3b*p$v > ̗vzSF%TsZK8㠣nG^R)W9&$J3R&JrFiw4 )@h3 u8)җ"!0:M(KNR{j@(`QEQEQEQEQEQEHrH (vÒ>|:@LnR 7S-F@5\3ޘ׌jyr0/J'rμ7CS ^TTPXòjEh_9탊ABΙֳ]>\p;oi X A}rGu9ʐna\{/z^Mx%soZfzN㶈pY$!sX'Tq䙳#Y}+m\uݜG'|qGSeVE<INn~ \@쳂rQ5{}^¥@Wl4~57Q;w/|Wi4>PmѮ@8`ǃ^n%` HcrQ^HVz2#RkS鏽׷J&iNʤAӎGJ˞59#iȢNlRdCOY7Ag=KkfgV8cߏ֦M3eǏOCE hU@syK aob:sdt[tĘrAtBkMF,Cl/QmBGI<+8b8ݷ8Z+fd;eTg}inM ߓ Ee̎)MddƒO|nT`s3ScDZɩ+PP#t"52Sn5EK,3Om؏j׎wlα(6_¡m~fA'[FB<)$vְr @N:JtP+9ێzզpPB|7?<楏/9%-+=Z\gId0U98֮GneYEP >T1x0s-Âsp:`dݵˡR!TcSgJ^HTQEV "vH9I$ɹAT>Ƹӱa&h,e` 0=HGi"i^GXFv28Z?,FY2#I= \^ff+oU e>`q:oÚ3*pr?>jliB=WZFgugv9 e>giɺ](Ͻ#޺#cqw2FS Vz)8Haye<Wo3_*Rv yhO$*6Iפ{ve\tR8Qr-8AaՎ;Uu6S-yw7|zUcYLzqj꿳\y=~_ACmdƄzN/hqS>#BK TGr3ҵvPw>h%cέ"Ld l@@w(n=vgp1Jla10"Qgౌ\@H#8%=@\LfeR.0K/+w1\;#Hm`O==kkyڿw!OCḊ((,JU*.4o១=c37Gnzl;dVN"(=2jꬒ' v##Fe%,>cVjX1hSFOA yZkuD+gh ~tuRs.5'H ?x+6dc|wkʒ/._ ۹<=_j.@=sһ)qY#] [a*+x&! $^N$L ף =8$#Î;t999tǽ4)nV@W99OL+NQ#p R)4nGx4P:tC ӚRSH$S30:эÎ>})c5quqNn)# oN;S%֖LqZ(@QEQEQEQEQEQEQEg^7qLPǜPF>n?z{uœ0U=䆄', lqL<ޔ(@c5؞b[4weA5&lC mθ ǯA @ǡ8)FO#F3#v8}j7VxwۻkHʨl}?ƭ"$1|v}9'i^.7Kf%S0;\RڸoCUC͐T$uPL1( 2q Y"89I>OK.p2(]GAt*f8}מeY;I9*Dg~=ϐd`c9*@}$)zםk.H*WK<27I@=ּG_vѻN4ChCSsW4O/f$/=r>Tt!A?ʼW~5L}~$b9'q 'ךw=Yk2I=9ל>76= N2:g|&.]/?QZ%ϝpT$(2xjfxZ@bTQxn+uV6w>_r:|BL7t@ `J5gԎ=…iB֪t6MR妣+U;sg5/5{Ho*Ac}Ht4qHyڿS󯣼 X(3Bzח$\繅hJc }>S5Nvk3!Æڇq&2(W-A;s^ƘJb +@=G5)pUe=6/ase;ΥcRX<Z#q| * n>Dq39}ūEw?+5ݸcDvDYOQ]/:iW8H2zH3#HAc8yGj9QjEkbXmb*w\}.ǏsA,1H-ԁ6}OWt.п8~<16A;R1V0`*= 9A`H*eV!C9hZu@~_zox2T/µ 7[F^5k`4"8y{!+0s@ 7rCD6cR5JA2}?s:6m|7mp2ϖ (s0U7w9d,0,I.Acvb?MZe orM`<8CI\4GP:<`kBdt3@>>(0ysǔsq}(x ?A*Lj\`O$h\ o3+˴b6mۊ,_+ 7_'<M3Dcy%n/Ӝf)b,Qs#[Xrp=Pы5s$'{sb<ļ!H]Ÿ@'nH$ #)I+){y]T Nz=地X/=sZgj1 < `}\NHa i3Fg&G)WP;:wX2!AZ%f8Q2-X~Vʽg9O 6gG/fI8KBY:t Irg7i 7ޜЅI'#i4dh$`+=L˓q^"A^?+d*#r^;ef6?L?ZcŷiV%U`sdWBV8Jڲx5q=&`N ^vZ]|!#}ӧභd<5.z+ѬgrN>b޻H3X SrRdcץ}jC1$Q_:# y8.sYJc^2)!mT'=zFDžZ vr*3VK7^h>ng.۹Z/$O}(wlʝi===ÁN !ZhzSס6'NM8I@Pþ)CJHZhN)yN{u7 %:REZB (Q@Q@Q@Q@Q@Q@Q@ϖFm#801'_֕9֗Kt|`yC׎2y8idgOԄpA.P6grOlTw/%yF _;\bPI޻G9udqڋDe&3P:05;q3K `J MN"R 7V+\fbRv݌wsA=tl{gkBԬr{35F9.1+ӯ?o_w..Y{5gMISu,{];I0@Y~02ߟQɋmK[1Ӧk.UhͨjYXuO {OL+T0 ޼ByaD*s'1v|_fEXb9\gp G_cҼ,ne+ڂ1HѼ(p~bGVx" uğ6nu۸ͷ(o1-gSKy1^,^+ƚhI$ok'wk|h+vI5bm;`wcsϯC>,ӆHma?攊:&17{c$ؓpJʲ1vz}ϵ_U(]GS@R̦Cp9*<#䂿RMY 9'ɍuÄ,) aZ(%T)^DU~f;c9s-#8}`{ U;5!hA:j]ܕ',3LGM"RH"6їNJ~aIy;T$'@P9Ȋ[J{v`z᳉Ufi E$('_Zpv/cVKTCp NO]eB*ZҤ% 0޸]K$L =vͩfXYE.# G=OԊ{S~QHl:0Survf1'ul.㹑#dm^4K 6uީZu<1 "@(׌v5-KD;!iw85~٬ KilXI3IEZ ˈpvϨJ2E1޽o庐Ёj6ij,l2RW}+>V[(xRz@ǽg%KciZ^4q g\! gn3z}keg`Yv;j#ٽlzp'٥&D%~e5xi] 鍽Fk^ 8VX0l 謖rw YHλS1ֺ8A4[h@3zDsxyb=T_+&eGQ)ǮyS2Hd(g*q?zrasN[dU, ֭lf%0Ojϖ(tfGg9{ ۂTF$?'~15b )$ɪ݆a{c?}se3pA |)㖖Ps'pN8<|i7HIhHvE`G {Z:FoC.8e_Z;K) V@A'~DqCş0O'랿w^+隋 ̮~brr93^dKs7<fF_zlTn0vj/ e!v2p?O\zU-O>Q>w"%N勨RǀNk[ ѐXwA*ُp/t_cGY{zGV<K.~Ld_18rg8;TT'ɧs)xjKs i@֞ DN(1(ti(4(((((((((VmX( +ÓZ àٞ&jgU}t *S*d>oP*Igzz 3fSMT~f ϙLӣYENInNzgP eԀH 1Q^ uXa!1Bmҫ)%6yr{b $Vڣ,.=?/zh'?* ̼P-+/NRK|SUc֑s玙0vTx֢H6&#Y\R]K2@JIl@ *xy?Z&pI+;mVrH; j o5 ^SJy5ě@h_8SrT[8 ZOAw݁kɾXmUھ9Ʃ~hrٻc+*%Vwy2 PLUT*KiPaPëUuwmǹ⢒)%؄MÑćxfX$60r7A Ց4*"GϷ\ϘXTmBJg>kJErrXCl ep䒇[DR7n*~}A$X|+m$H/ZXXH<-ی|z2v cUdH>s?›5=(QOS6>;dL)c$v ϭh[!/qPK8ٸǭ^h-NXUk} ;ό)} SnxU.#1Jӟ7y?Nn[rO6#܎߅8Rv%%e9-}= ĵ#)CjJtipGS2={с9nV)7.FC՗ 1yPn0r{1&dnS[aVBYC&(hge,@穨xUpzeI$njI%1ǶjW`tO֪P6mN/8'>Z^ER\+{8xޠNw")~-O>{~hW'fO`9k5db<sZks5]#W>ַ0S!XV@}~_AӚ漩70V s־ .Ek`7g-œ`UΒԚ{P:|ԃw~2 UFOJ`3֟rM4dNinjO֛>hn[x` wEu:Ν!)#SԷK3}p|U &zTlvl tr"H1>{s5[B$Χ`? uf+[YeF wzکO}yn ?u:UH"&$1Y: K2))?N*͆&f8p8<9\Y"Hs=%E\>Bd>ƳMV:F#Dب[$w?J#XNWbg SI3+:K"(ar}XxHRvHg$9u0,U63y$(1l\/50P}OAQG}w6w Aݳ[ mψHªhc)[E >Zjp )${VD׫ R ~mQ߯NjHr܏])РyϥMu|؎8HlNz}*v+>x`>*Io)O@mK)PnRzg{J%&`B?L,D(<"sycYcn8S3F4Q&8;8<ֽF?(+^3ڨAŴ%#Tf[\T ըI pw'2k:I`}ǒr8$"%F#z@S }MO#l KClbتg1Ҳ-##v},,jHOQ޺-<<ŸyR'+^ϛVXaPķ 2éDP(`16K1#$n>0X] t*s7RX2F  =+'nw|*F+tVIyeݜX.:UQɹS8QQ?Bx2O2@w}ev=1ڿ3+ JHd w{ƾYcnj| tnz^&瞵22CaJ@1Z;h̀9N9?j@`?iCFr28&ۚБ?'4ғP1KEh)QEQEQEQEQEQEQEQEyX)1`c" c?ZU&%;u󦀪2;IC)e'8n֓ ~/*Wp 3?Icڠ dg-L>lJ۱q@p9O0BCL{spJ&֥ 6c Y,;GLpF}fNS8@C v$`mUzU6n9.WH~PL1X ),&:h+GzA.qHNH#AJ"B-QYGk]HHR̪`GoʸIn^QK6I /؎9xi7Ry^[2:Io3es^Dnr \g޺ɮb6q} li@% ]`Tc1YyJM  |1bb|V cy1G|h`'ƅwdgTu%Ix-S*6 d⠑L0ʟ +Mm-IʰNc\[Ɉr>1YTKeῆ[rG.H\&%N>E+x@8#QߏJвY0h8^4(e,t֤3y4T;^_j.#{m EHypw$6j(L'md>ǏζqAx"g!#T_vdsבWFd1֮BB2ajմk-Էp1k#' q~B($6rx##Ҡvr b~*d$@D#:N;b8&}fÁϭlʎ%\Ne Ĥbm?LW[ymW=)Tr܎ǁ֪iu#G#V2-e1,cyiRakq)G;Qt6ou#7F<#[9ܥ-k"@F`uֺ,IQRFB[;ؒ sҨ JԥdeAzvb8Ff;dnîÊm\iC4 BPOO9PcWwO=09 YP"tl+uTqǩ #S$n Y |n7`ڴ'd(:?_P%S"8 \s} i], AI^Q#N>xjMAdI-㉕|\<֤O(l>1ֳRgL"xާj,12X7Rq%ayNԍu̚'Pwj;% ml) psY'qozGVIQTR0ps{:TFuE"r3,f=ǷmTwC4`ߢ?bh& ,6?F(YeĪ͂ϡdI0OVG)D%|3K`?g,)}T&EU%xs)b9O0O7ʸP]9$榷2" nzdz)dGR>WsZI ԬgOj腷9*RiE4V1J)n Y3 W8Zp."RW?x(7wb}rOOӥ_5gOh`~U$ U,c'qҮP m8OU{Im"'TffX%0:>^&_!@$m'#8Z;Y󽔜OL)ڲw4Lc?O:{չ-`hZi 9T@DŸڬI[5䂪`NFЃzsRL$Gf1]ǩJܱ/9ݡޡIrC_gO4V-Y%M_[Ē޴0P7l/営?)T(WiwrPP'+&{ T6Pzzgֱy g~O}ӵ&iF ̓8?kC2{5NkYeN 0osЇ#zw"X&3QC?:3yx| / H7UKyI+|7*Bt|r2(#9nF8/Cr}*L{pğj$&B8z/@vn8M@WaR9U#sEj5?ʑ끸C5n.L@^1,3ɭKv㻖MGoOi=G} 6vA4I<ǐsZq[THAz}ꍺ\\[R9}̲@v IVg:2pG%;Nz}+N-d<λƲy|+8sKN?.YH6Xާ>\i) jg3\=8d# w8T܃j|y5[2S vF8?td,LF0(3-ak Ebff=z_(&x¨lp>nee F-N: -PJW8$kĒ= *Gm,P8;yOJTL)E`Yp)b\aU~Ʉpc#WHތx3J$ZC'Y[γyl,D<|NqsKg#IncV|ńg9UFfoUU(@=kl?Yp5mnQ%W֯Tz@=Vbyn\/: -!a8ćidw߰ݞv_ZNH Xə ]b};jm_`7q+!>) F<ibO^[=*1vE{f{`t xg/eG{0߅ 8cMvQ81٬2MI^ܱTă~#+[^s̻Kv~#c+܅;Ly5xug/ MnbSôκ XQ""B@^ָUL8F8eܤ'>{WBz\uhXLҼHo3=Gegww p=j[Lrw=7pHl$8Ĺ {nsֽC "*VN 8Sz׊Yܹm%Rdf *Avtz es-_º_m\C p8k->.`Y3Z׉/7/@*w'~&xӐ[p9zqU}n Zv@p:G<9\{;:w8_S柑 ךv#!TpsJ8$1߽:t!0+AQ@Q@Q@Q@Q@Q@Q@Q@Q@.s*Wb6 79|܀;(a0A>8Oœ0H==);`LPrH31x9!˸|:VIx=(r9ϭ=$÷TW(PW&UGĿ ㊰c9X;C9~"! v9Givna&3VrGj k$o<⶝(bw`'wZG;㨯1G.nFq?Lі:7$ƫcw!`2~+gfS|}8@kLFr:U@q1c|IOze9#r⵹15n0@ sŀz=cNuq]ʓ>V$}Fj㪬ʌd]8VTTt91QM )9zW]%Va5r@|-Gϩ)X꧹#<Зg]xZ}䶏j Pۆ7^^D)`ozoMg%)qooR}+=L4"ko {zl/RTy$ZmGiq#}aHU={zbޟqm13o~T[GFZ:KA'Bhw]WG,]:cЎy<.絹I\=TFJ {n_[]3p  =zNKH1`>S:lAHaYwո*?rvVGzͼ?#'nyJTΞUsV9-ʂNL_ mr6 Itc}I$+vJҏ2 gPI[9ۀ0{=k&:T"lC:Jn:cCwoq(Es:O³,$o>BpIWc cZdI'p+aTHvDx^RFYz9U_4KXm3ӘGpIrG9\{݋2~H֬=HE8oETqK!W*X}<-Eg7;u,4_{V$X`Ӟ{yndڍI%tU=@\pˎM!fIʷPqzT{Mw0$V4e__jK#uW8Hr>bQ ʀqO7ױ]Ge\=hI2uq2\6~K^@AI퐎<Y1+D[iIFH-ӎSn`Uݜ~g),[T:Ӕ.>wcN+$T}_Ԍu\y0F SĴk~=8WR^0 Dc@VN67R{$`| 3:{)pInR[W2GdmS𫎄9֒Jgd &$/#$T$ $d#3nqqXzZ;N"6EVIZuռ%PƴHNFTA$&H;\`V--Ø`}'Jl+,`{$g*Գ8fB2OVC[y2#ڧwGJǷ,#V *{xVt+܂FHǹ|ᒠ3P4j$LJs~OOQ5Ͳm@9+35KALјp_e |.sZ"-ۙf-gd'j[p@NIgn~N㷑dEᢑCݻwA:U.H3vX9JD$2@X7I>Z0$a+VT=f2=} 䫌uDT;6&,DU9QI#!mĝIs}e#cHpƻק<>-ZsG0?Ѷ@' W$duiO1Y+4R81Uw 7C2KGZϟBI^IX|(ϡ<~jFO#qL8.yo'0uVz|n $H,;2ߡ((ݷI+Y*39"eA޸ښcEnUD27ڴDy+('I[y^8OylN @10X dmS8j>AAP$P#8HIs}: ιx+00rt+JO;#'[HԱMVljٮdSo~!ٹZXыd\eNW@OA]fGUo(;sڹ w=dpO\W &xoXmbU?Oν>͵#h AR- [C" 7N:Cy;c=GCSapDKbXU^g @'rR\1.,`޶s)ñy`GOOOlU{x|L?&&o3}}+<--Tv%B(QcUuI'pԃ;+}I|JbWn;~^#JbKo2ExQ?$`H?[["#$H/#{SW<)&WWyC5o!*I2/s_&Ee,Out\5ׂHxc t2qxL㢺nR'jC=H f`26wr1Z{&/jZ0&ץ4`ZL斬AEPEPEPEPEPEPEPEPEPs,0Wsޥ W*̓)$4LUǂ+=nzS+#m{SeS@Pd6HH3gڥD%J9nP[8d]n}i2Y %?pP> (|V|t{ZCpAB 6AG{Q"X*y* \G895!G :LDy*V}褀J\oٟI*m.>cڃBg!}sڪOqQ| ګV יk>!in$bvqZZ<ц}k[B vGS[z֬Bۤ3suntLX4;=t>}XuA8us(Y-3=rso-mt vw,It @gKZsrBKmytF9,ߵuQ]kˆJ}.pphGuZ]rVY .g3NMtb]2`O=1Zvw; #wQOT~ -FRz5Dw+)@K/=? RVw[0{u4wm/w9 PcBp'/IFKdc2q4|s9o)s-y~F3UdFbROI&8Of,p?ZSd,Z[?9V4O-ݲB |# wR7jsgEUk(6L[ ..bRYK2'=2N:jeP7!H.䑙~SΜ"+HrN0qROPvb#=:C [F61=qLY"dHQX\EP+68z}t4ӹ&tgE &HY)27մK D8d6?j[Q;F̿,1[<`(o]N*nHpr1uD0^܍r=:V|%‹2$Jp0x >j%2۩$'cy}tP]|iHO?hqU}OjA["v ԟ+bFXNא$º QL3R[G0QUB `g95k<$[rYrLw5m TXUU}̳I #>yU%TIe8 ֋pjX(ӜErkyRYDGmxn?i%ݸ1DK'-=Y7nIkxL#P=GQfۘa ցgcn0j$ƐXI8f+NYO8Q:sYFy3jͤhb6޳:cK4WQWO,ez'FVF$֜g bR(6Mɤqy5"aEt$`ncT≑@vY. HdG*[*&LF9 Ub`˶Y'VnD1r3 1 ܞ0ҭNº4..BG2w7'QQq, w yx+M!_jYc^?auyjҺ V ȍ%5j\FVL}?^^%&(`=y+4[ ^jSNӑM!4}x[ 'LƮū|czG5%H è~as#J.  N^i"}'ɰ)2)hQEQEQEQEQEvr<*9 >b |Te¾{,y~Vo\~z.@V `QdG0lTB^zմTݍsjbm9>^Ր Rz05,|+j6 c,=Sry\ڧh6fQNDÃ~x!&a } 2&vך0îq\Hq:Gf1I؎HmT$lmf-=yr4N^2yǞy+=K gaW8Wz2!bx Lf[KaÝ,q^qa#Rl03)iֲT& O/<*y?CIq%KeII3[UFD)Y< ƒ3#8bcQUGbERK9Zɒcc.LNje-MlZ{"6󟧥`_[Mnd9PIH<5q$BB坈< H}q\3Z[K*U;QB #UUQ?aܱn#n쁎s:sq"6xnWJwLWr ,}?`wQ;_U!ϱqWޥΏb_33>澎gyj TS<Tp{^6ərr{q͈AI)ri\A쒹mn23;ⷒG#u$+:.e%||Ww]eͽΑ%KLJDFƼ[MORkZk)}pL",R@'\Η$aߌpk]@ֺaĤ}{WUZ6]83}Y«org= Lz֚BU3 lt5Au9#(¦FIN:{[mBQPEVܬHqȮ=vlH}J/_5Z3- VL(.oAr*;{d}?ZsI3e9"б,h3Шr}k+"PIO@@^=}k6C,sjijI<8ةu$tW5͵5Z=r$gמ#T9., Xu$hO5q!~tW*C9:k]t-+I, *Ĭۦ)nIҫ2$Iڢ/2I-Ipg^PKROklH1RJl|)n@pK۶1R N#iVt1[e$|(p1:<*?bxͻp@N|u"\͈g~y\m?cKC,2 ) 5U%X(6 ,Etb[}Ȓ8ǽ\Q*(GKp$r7E63Hx̀?6;xS rG^v5+Yc'֩yR7m Fa ҐPTXH5 QPry>}.,R0ީ7cVhƅۍ<rӟάZ_ʳ4Wx\խ$8=:޴,{- -˩ӛv $U%jmi-Q2??> n^4S, mW=YBe2XZ;05w(DO޳`I0• 'wI3m2f*ddeHé$°l_&y\A#]Haa#nQ6$GF§qonyI^{-K lE`OOUHl[0c2yӽ_9ګryYpēcNϜ\S9BrXHf*ŭuF ;GXUI-!r:KcOK)U%KJ9ۯK#Ω' ~^'"ϻ88)Y;P:}8b_r|RS{b ~UHWkdLRb\|OE#T} b:#>*pFz`<mJ֕t5< k,bF|)N$^ =Tp4N3ƒzoin;[:Ȟcm"GP`G?3I+,q_dJ I[ѣA%zS"N0ɠͽIL+vBѬYyn< sUf9" c}Gַ$d3ʜsxF x; ӝHC2t}VVVaaTu%wQ$bA27 t<䞕嗑Į"?xTiQ]~8&DB* ej󫆁7 #6pqt+]J%wl!ZHIGM6BeXU8jqG<l?Zu;4CcP #߅z<#w<-^"INW8'3Ӭo]s:uz}Dl.* yw"d {j5'Кu&A!a*/`r+tPDQ-sס[O+ѝ!ː9?jKH\ALv?Ҷ- (ʂz^_i !O+5L[3w{V'"pC NMv6OˏЎzּ\O*|@?LVޝ{H 8Hzo|'pLfNڸ/R!ϵjEz )<{JN"H݊}1zըuF3\Ϟj ߭KuCQ;bԕ;z^b /?),WMtZwiF܌qVEl 8޵r;84nc'd9=덆ubFORUlTj3ϸP;RGšdXu=(+TI8 I!EAARdO((O|#qVU䓊j,IL`ymw|*(3I8H'Ң2|sίkjUF0{v&Eu2G?_©]I09>aWqZ'%K8%5-w># ,;H*5/HDH \]b̸ \ $~:=k96hڤ#DV6@=yZW*:nx KP_4R =⣖qlmw'ԳyTw8Sj>?TwL 95լor`2uW.]qf] d_9=>zbyL9th~E5&W꧿u6Ve'F{VAE[2I=ҹ͹^\{#/9jݬ]5$A!*JNJ殣h.7pLK^S(C1oOJW.G['dΊ6ڒM?--"8,^] 2'ұd7#g~+Nuc*e O[P xv\y+pʝϱ=-E.7?=노V1||sM#R ON +" ul]H<)ӌB?Zyl^KȸW +*J-3;;&Ij-#ڻe39*޵Xٲ9892d?Zʂ,.00 5QAsn}jghwUz$W1'rqA~ZVťխ͎;b?ǭp&iUbd78:Zlyo0hm' ̐ɂ8*;ƩF[=L Rvv&$h~2L@C̐)yTz~5%xgiP:.=MHK ת~r6^}9.8w5.,Zo9 `uHk-b,:n!@^[qvR{{fhBKzgU &sJ65Kј.[i+.8iU'*Tz Ǒ̹輶|qmdh$ovF{S+Bi--}L⦆KEgEbG_*8Em*+=@7Ȳ9[RTas"#\fO2 vH' гYM+`ߞجKFYnvpzcr?![I ̛kwz:e¬{?0sSo4k!&s=LIr CV'۔cX3Z1l#"7{=OPmUO_fbGr{չW,#@\#pQ܁ϥWWx~d\x}qe"J.>~ak+ڋ)0HӠg9=me@72m瞿ziM$vyS+Vڣ{nK}}8֪yqB#oLw')Dً06ȎqÏJ|[U<}2+>8aB g2 Sdfh P~i qPF…?֧?.v> q`"df_${VZlcb`޿PeY'WGȸ>V]͍ZH^BHi˱R؞+ye-!le=mEgt#Q2:u*[Qǒ#\sݎy497y|c{Qk8nYwrvq@{ԓIIF==j).wCNxҘ`UG9xI{|eV_6,!`U0zR4LpyeRI"0[EhL8\'+֑vzF6ědI3ӎ+6@K8sZ(mpBHC+1^=ZjF.j\r2z;es4!D9c$uמ?-FI+qm9@>^{zH\2C+ucZ\ X:)#sp#ֽX#4ZY!kNr;ҽ'OFd >ft͙J'?ƽ mV).`$A'Y IDӕ1VmnV{X!V~ YsзZyQ5IʢoC >V<ʰ):λl a ҹ""<i8~3V<ԽszZxa0 dϧN+kOҕ;C\]ۆfb0`4DVFʑ8 &SV3+IIz#.db6(=9yUTa+I_*ٌWmnMF+7"&ynL8TP=}ADArYIj,eA?0N1_= Z @t"c/gy}V?S핸z̼cX:ceRo|id!sIl}bvc>[cyʀy9>.̿R@á# 1[W1L+B0ˎ fMn$e8;}+'KSsvʦc9$[/|3',rFH'" (H°"9ehpzǭvV Jׯg>:6A!j36L52:gk.^+eoݨsпb"BNUpAvQ p&7 6g?Z冷)S8 %1 P7*:\_Ad%Cda={v <#yI ,R2*Zv8ҧX {xq}ޢ/)x,&Sx[dӵIv,>j;0:c\ulg> wԋ d\q=}+ίkèZ2хdfyvl6R2Θdz5ֿad r7Lq^c0S捯×rh"G VíuomH6W b-Ou ϔ^BէKZTBD6G@ IZ(Tqihu&%_ e,vq9jƚ% '\c=Voao ְyT1u9sqshaP3cߵusKVө$nF ms袍ZѣVrA!z{[Y$P\cZԇTB;&Ge[#h5p[ݛ;hAeCuOֵE,eK3}3Y#luo#P9#n8HcBѿeP+R)* "9 3kضܟ~VX8[ijpF:Zwn|yG^0a眗QFLTum Q H>/SUѲ0R0--`xK{ݛ=}Xrki1821;R]4iVAOJdRD#O3לt/g ludYHTueM'䞃5^d  UY]\!Qq=!`fy|w'ڡ8q{`-YFLQ,sS @9?ły{zQ6) n2/pkhT!j8.YX rWҪ>o$3̻ TzM1"g/LAVFXueQO~+UȆcnmFxv2$m'w\kleopH1OKedMo603[BzYK?:6m =ԶL:oӮA9u*qTfHInj2R$]MD4qbc֨ o20젒si}Vr~V|f)Ԑ!ظ#c'U #J1 *4 $[/o2|r>PGlҪ%ù$5̻ |)ͯɝq G$@8~u dXoܞէ:E]gADeBu;ʥVܣgy93T"KW#Fy*S$HddP#$}=? L9K+wU$,3яM Em&D&<(ri+<ѷt֯lIU)b LmO|,F&fPO"p^I> Qi俖|ؘ Ƣ8\'߭Mj3UV I2B(lʆ^ܒ#9k* {FhY{c̏Jն($jFKR5,Hqq⢖dnY RG z UkomG2׌P,Ӡe`2r;jevބD-'T&eO_Ư96egQ Xb$RP}YVvI +8)&{~r㒡r~}67SԉuQ!漗Uٴ9 ?xOLsX[?y;C$pw ,ao?Cdcz!@Cj{s^wjeۻqOֺIWT[Z4 4 p{^ϴ\+F0WLs7B-j$g)=k+{UDXqRz~dt Č^8_XsPlLrCIi7*S6ɱ9G׭ H9ydeknf @?r0'yl jj 6Sg˟^_+}Av]Y- ^7v 9#8WK#[g8RIwnIӸAOOJV"i;L,{`ކX{c?Z1VMENV|F:Rj3QҘn6 z[!HM2/1G}V|]ybM~׆ik$G9#+rXYn0BZQzBҋBf ͹ZdYF )9x,rH30i9?aYуhP|;䚾b.\ٌVѐ1Gce݌J|%9J_-L3cyқ[~a&T(RS2VP&v :1F$w9\:054|NdVw'3, X6pA՚IoL 󌌚'3eY/>^8*Ϳ) =F2: I%2@\b}D˵5 RI&k4y.C`6Hcd,N1ޤh)F mιy"59\WLbc>lS=nn^0@ִn--’ ;’0ҩ%C%x$dKzduF9Cp5Ŵ_0BT~};K).F?xv{GblUP2!v\}~dR)x; 3W*M<Ko4y!A$5?)jmc$wSzn1ۧOoox\nUfl xH$w ¤ks5֚@Qa=Mxot;[))r){ʹO4FCcWlc8i2rv\UTͧvv}0@I! A$O\Vthpm eٰOOcz#( ntu]֩yncSA#RD!!^Qys>1u'64:w@=xUr7Xz{}uW3tb@͐7QִmaEf Ǫ|ҪiZ] i̡q02yy$K$76zzwD%h) dgcGHn, ;3?V}$]܁3 j؂o8ı,1JHk2^%$$zVm3xm %p? ʒ)nz qZX+e5TG8G%~'1pb s{~Un+4Ң'!ً;nIdY\s <簭Y?Vm&\/I,p@B|Yl 6<9-tn=M`*.s_喸fhFUOY8S/"de`ES?)Oq׊ڴ #D-wvm';y-{U\ݻmhiPqsMXhг㴪9Bw<+0|Tt!J1.^أO1A!F8`6AoZ8 Cmleݻ=!iSv"H *UWՀVL,w|F8+n{!ru[Gb7(m Ǻᚺv|w@8xYH$FQ:cѽŌ zoB';;L`7FzJuՌf2Ιۺp8I]O$|cg+?<琧eI̳Lٕ}}ԒE*-9>ϓ 9y7I5DHn%o6 :MWK;%|'Pjxm^ 9f?t}?5z7͸rIGJ2{T8>Wv2H'DFI{Ҡ6Ӭl՗ԁi$ط-ѹ;ty`@`9b=qV忿O(2A+ Mr|8p*mhpr]KF݆*ڠ$ysOEo aO8˹TD34p3W54אЁ)\]F|{ь1˅ pAGg[5Q2iY-7#5R[OJW̑d`QcV`2qҷd(zL&v )Ǖ:ʈ=hMtD:#p'=P1m@5zciO1^yjB8#&i(s x O|[o)DϔTvdA5WPxʌ3efvvg\d*A ҐugKIsH7a5cP %<v[)`6O$twזиkv#=T W#;_\*d]=qA+H&0mc+W6OyS=BvfhbvE!w[Iy9`IxB9DգkrJ4a Uiʯ>jbvZ52sp6(Wy`$y=? S9vKkVg2*7l֖ 7hJMHܹ 'jMs:j޳nZQYڪ2x?2q-Co 7%}IХ%7C W\Lҳ7p>󩡚9R{V$9&AoQs>؈$ 9@ q y8+9SV䈂19J3ΖD0!K8%:/R9QNN u67[5 0zsiF, udf\ |͸5HdUg-۲; X޲%2sz4GH[nd53q>W-緶 ,gw ojDFYYw=Gzا[E,dxBdΙu8q>Sy,8?rqyNs G.Ъ꽻=q׿u]H%ź~y~3cgKC,mTM i޵k[6޻åx,lFx!ԑ^!1؏?ߦEa7GC<ǔmr[ف܅8  -~c8;AUc;WF:ƽWB̥i X;6[vmT=Rs!uT7!޵`ypq/v Ja{ Z\pױ[ r3ڜ V ?Cϥ[eѣ-8ȫ01aPAsVb2(qQydVeǸU46, /-WDw]4)*D`kpZ2JxBiA8Ps`*>CTE {c95WW>Ȇcܰ!G*siܴ006܏\V{HLC`:+u B׽q/HfB(gØ~9⥺ "2>Y}@&AFlWnL|,0q~u h'<*Q]&dW`#X.x$ et6ýrds\.ф'Zn^'9j!wp2#U4cr̉1@%yCP,.X {ՅX3*=zg9UI+F>Zh3jy @<^H~!=+>v?Q\sv;XyRCHTAOcR'׽IF}Z/Y& 9#Yoz[#x<J{4qCFAW{kxL:PU!բNk꼞;dߍyԑJ8".}TWW69BFA×shIoH,08Sڟۂt>Xw4I4L9u`çJ@٣ѕ{RmcM ]1{oֹnZݲ R']&Oƾ[q8>rI :<3 XD w*u =;Tu D#r79qWm淞&اS[ޢ0,bXٚGh$ nY#P3!<vs~^[&&v\e-j9$%񓟻֪g EWg$y{@rCڶtFf(9ݹn@>X77 Ÿ98 jWn%(@`=?ҹ8lϡ%ʟsc%[m@&88Ob?].#/^;K$RI>tYL6NG^qUF h*T>jbc)GCJQV:df6qddLT7vtFiqWpr:*B%7O I `=j -i&1Mg*OyN=zfubiy1fIB SSVKH#|ۉNW9KxyyЬP;qYz%P̒#Ճ-J&O7v a upZG >mߗNk76).nQKGߦ8T׷RDѤ`V b¹. ӐUî}H{['܋rG[_h3BB(@O of$8qŰ4tc{+Icd̕mkqƗ:er!H6\ҒKO*5`Y N*.i`Ԩ!xԱ#8vo~) FrF,r Aa*]+.7:\dnFӜOo$%!uS7 {q"P,Ap#Y\gc{iK2I=GYm6Z;pOX0WS#92-L.fȹw$S;2V,9䯧p+V{UIb=KgyCQ,&>YB@fHjݯFljFU. YHZRAsnD6S6Fn/@TW^U<kZ FjO,[wp=3Tqu΍q9:bs jN+($J%%Szұa+D1`$xb l91EBDD+ F9;V@O#yY bNGWn"hbU#neJJ9sU}uE[x!q'SzԳu/&Aw>~^^[/Iu\|#OsUX^#~w9}O<ux6tS'iV:r%`ۊ5 fI-+M%Ix⮬,7K0L֫a'n |=}Ћ9Fݧ*Y6H=+n$y@@F1:{u`$`Wh;c|Gw#`n}i$rrܾQuS[9*[aPw "g2\˼-ؐz}*AjчUsIyc'j"Rf*_FGB;~5NdI$1r9ZB θ TWuhXco~Ff7[)`1q\υFdlmƵX=DJ{zV.wv1y9ÀG~M58Q,K+o-9*Glʔؒ-?PHK*U*FzjլI$%M_\g53pup*me6x?c*Bp9ʼ5Z\+HL>k^6xl`v5Y [=C0G_|mk> `xזiuAp1kӌFDK}+ŒzͣK,QN?J 2?v=cx:($3ӚҵXDTpOќ0O6lu4BKv(ЁHKʃ?1'kDB$ҵiD(pAܸ&Lg] 7Ww8VIzcޤ0Z<61J3{jJ$v*,gt$ڳڐXNJYmЙ6]gR9O錂#GwTNO?Au?d{:Nѣq0hƾ\rH$98V=rn%BÜ{Aj$27Il&. Aԉ:3~dn#fOJ2՗{ִ_5K 5֩#)|2&z|c%қERs/r*z?UF0R l `7!랟c^UҵZRտ>]t#dr7 '=ȬJ0鄴cxoohmfǼUJI/xWS2Ac}0-:{tE[tEM >A-)kUBzѿ^qOK#.g>yzc\lV{XY3 4hLw8'N2} nkP QyҿR.okzi^v;dt|3 ,rnzR}]nb'⧰[}WROhMR[ds }" $$x&[wwdw?*Ʒ[B*FjŲOfU9Gl{1dk@d+aNsVtOUmCWMFDְ)LrcGj #Hm犝?ַYhy/_%aFq'=ϧҟ*ŶcgF z:UZ?ͪx/J]׌Vv2qTQ^ǖ_OVff;v4Isq2QRQK {[BB 8#g!O^j'y *QY?Qߵgh?'i?vkFs]q'jY(. xQEo }*Hsd)nhmo$\F* 0UO$E3?U8+I-$p!$8aFPG]uwŢ\1 V>2Vosyi-ic9iak0YgbB|8=zմW-~_܆Q$t}00zqS UOkk?#qpW$uk$a)2R=foRQ0 `n+qCڧtѥ8t x׍QVngi;w'q})PxHMGOu!*(9We"86߇_ƥ???RQ%H,yy޸%qyb)w߸k,?QՍ[ye\ G^…{y5^d=%ޛDVoΝ 7NO VŌ$&6Q̇pJKWVУN#t%b 9'u&G*cYd1cE$v̢gYh@ ܫrOWJ⹻q+zHK D1#=m+rjo'JWGfRA֟FuqJVGX$2JȒE$ʴRre>NrqVu/ux\)幫b'WOYH. Y24~'8j~ tT7? ?73{$(ٕ@S9-VP^Hf>L0{9l}Ae#7@ N@AUKo!I̊8 󎵸M3>%&%݊ԎVq$K3 n3PZVB:&rF T͹d=A;w2  })hGcc:ompѳRn 4Fy=>o4R}QF8pk$`X Ҹ/tOo6e]Esn$W}i I9ѿǴ_4ж~&ao  (?9Ww'H qPI8WoHxJ% jBk`8}=j߂-?~ue%J3*XUXqսyk>?]g;C,/E FMo/-q֛m.V?4ȉFLՠ$Pu- l; OCJHHPMտ )CKoi4ysphinx-design-0.5.0/docs/images/particle_background.jpg000066400000000000000000001145101446046271500232100ustar00rootroot00000000000000JFIF//C       C L32Q!1Aaq"2B#Rb(!1QA"2aq ?ح2@LmeuEL-Z-Z* Ah TPZ~= `U}US*-օQ@Z AS 'je-gi֙V6_pZgTS(" ZE2@*q ZxB:PբZ(d P)9v-2QiƂ EBZ T=Z*էe=EРAjq(-N1hyӥϸEeZ"()dе2Ph zJoqV*q-i-(LTΨg-6 Z‚LzQhPZ` OZgBQjjT Ah S(AiZh]pLUjʾCTPT ƋPZ(Eg ZxkLj`SUաTȢqZX-S Ǡ6b LTZ-Z-PQ2 N= S(LO0)˱iAբTzQj(-T=ZxVzZ!kB-AiƋPPh3N/jTʴEZ A@-N"(d*j2Ah(-8je]pZ-Zբ+Z8UZ-Z*8-LPj8*em/ZgBZQjT A@N0ZE(@8Sl /UuVe_jЪ( Ah*dE-SZz.hopKꝭ2Ūm/) *jj8-LPh-L~=O-3PBЪ(Ze '<.ŦKTZZZ 8S(PZ S=ZxVe:ҡZh-'-LPh-@3-6_dZz*UAh(~= APh-2-SW8 Z A@Ai~= S(&jZgTZ-V4LPZZZ ǡjePjd27it* EEh'jeסg/>|}o~O}wY&QM*զuJ}EB-Z AjqD}R2Ūr LEEY('je Ajd߱iQPBBQD-N4Z AiqSl l/S(jjAh-LSBԲh/~_~ |wrܘern\\N]LjV{*hUZq-uV}Njq誙VZd-A@2-3-\T&Qh-2 S2hUеҸ]2mŧШhh)2A@Zz,ž/ZehUUS %-LO?' t=7Z`&X)_j:UkB- ()Ah-N0*eZ Ajqha֔}-2}R2Ūob LJ-Z*8-Ah(@LЦ߸*hh(BЪ(ƋPPh-2 zl-6_aLBPբzw&Y|Mwo*S҅Z Z-Ajq˰KjPPBZ -SlNǢe  Ah ZhZ ?VJ*q-&Ai Zh-L߸-<_*-w~/~+}xZfJ-Z dE-S@ySEEZ-ZE ǡjeZ S26W-)-T:աZh2PPh-2 VjeJb7iQiEES '-Ah( z~™E@ (ƋPPh-2 zl-6_bӏ@@VTB*Y(T-L Aiz˱iZ&U(ETPS 'jePh-LzT=-9}W{ʜx+_??O~o/Oۓ#*e AS">Ζ'i.EZ @S ZB@Z Z1pEiPh-N1hVE((*yM>*EEZq S Ɓ M2hh-&ASPPiZz<] LZ2-օPZ AS '((Bhg-<_:*b}iAբN0ZEAjd8-6_pZfPբ ZX2@rZxӈ&QhUբPQjA\_\g jn̫~~ɖ~ps}eN=-T{CA@Z AL-@TȴOh @AZ܍#T-LUE gBi Aj qhVEZ-N= `}iP2Ah(VV@KZEAjqX-<_iQS0(hhZ-N4T LUjʾCTPT ǡj @ȵS,PkLT/дΨPEZ-ZL'Z AS@mŧШZZPZhdzQj-S rZd8Ahh@Z T=ZxVzZD"hPUPT-8j -t/>_.3LoLt-LEX-@8L/.ŧjqZS؄ZhPU`2A@Ζ:ZlɫSETʴh-k4U“:ZjZZdRO0Uŧ-K(?2}QiPh-LT2Z*Ajd qT=O-3@AhjЫES 'Z -LX*-<_΅Ahh@е2PPh-LE6V*Ue @N4ZAh-N1haֆ}R2Ūm/Zg@-Z-Z-S %-LPh-L~E@ Z Bd8)6}LЯo/{<̳<|?.\L EEVJ8-Lh-3E.™*թƭT="Ъ-h-8je AjdZ5?p`& y*opZ(hi"Z VKS(Et AjdZiS(UZ pZxiTZ @Z ƋPZ -L`ETUVAT ALzQj - `.iΖքZhPUPZ `T-AhN+Di)SZ-<_(բZ S &YS{ eZ?[?k~~_ɶ|gǗ 3۪.Y3"(ULE(N={/LhhB-PV?G~|???Ǜw괟+sÇ{dg??/)͍_~9ɐK.ŦKhjB"Ъ-h-2qQh(8Zyh| L@O=7jLKPB2 S<'P6O: @2-TAS,߸-<_*-J-Z dE-Ajq0S{%BEEZ-Z-Ph2ǡje 8`.i3քZB 2PPh-2QSKDiZf1j/ش(hdZ S= opZd'?'~e(83\s?'O|W潸qe8EAAh- '-LZ L_6be-8 E_?_?'3f~><,ML@Z AiT'-]b%LUPhUA8-L S 8SũZe )Wة-)"Ъ-ZYƊ`U}iP4ZxРZdZƭ**Ph-N0T=iLZ(hh 4ZPjdhZ*5Z' Z֔"ЫE-L*zص0SL EEh 3V7QhjY֧UEh dTO-2 -(hdE- zBE@Ъ(ƋPPh-2QS@mŦ)TZZwªeV@DBS!UEh-O!M(,j-֋@ZTtZP2 { opZN1hN2 S< LP4Zx @2-T⴩-hT= O-2 AhҋV8j A@Zz~™EEZ-ZEh ǡjeZEL JgKUkB- AVAPS E(N=-:զiRM OZeZZQT ƋPZ -e7-2_TZejjPZ dQj -AS/giz G d8B- -N0je*`iT&Qh-\'hvZ-N4TwiZ)BSZ&SETZ -N4Tϸ-2_TT4ZxРZdZƭ* EPh-LY OZeEELq S 8 opZdhh@Z L*eشVj"Ъh-2 BE( ǥyZ}õuJbi( բբ (PZӌKLEEAB- '-LZ LY Zo lN4* E-Q!CZEZaUEh-΅ϗ7ߋ?7~LW+>S'E@EEPQhPZN4 ZlΨEEPh-2 h LZEO0{%VL@CTPT ǡje2S/kLmSeuE2 EEfEZ(AS@yeuEL EE(- 5P- *qUPh-Lyش)e j֭-E{)SETUE(-Ψ)PQjZPBP) S(igbtjȴN=S)TZ /ǡjeBЩ ZxEjU LЩ M(hhd-L@8S(`}iQS( VVZdQj @ 8S /jYbZ @N"-Z S!U2KCo"2Sl lΨPEZhL%-L@2 zl/дΨZZPZִNAAhE2jq*YbZob2PZ-VQhiN=S)U_-?Zx8j BЪ*QShUдΨ?T΂EZ2j2*-LUŧ q-Vb7iPAELhֻ+I\- 3,>Ⱦgy?oϖoOϿ?$/Կy_>7~l;{9_t"ЫB2PPh-2 VjeΩCZ-2hh-&AS PPidЩbZ2-օPZ AS 'X-ԲRǥmɋOvΊ^_k]⴮SPZ2jqjʵ@jl('*AjSU-=M Ob@LPZ-QzբE-B-N%ZJ:z@N!S(T:҄ZEN0ZEO0{شS"iDU2*AV-LSl (Ψ ZxETjR Aj_B-6}O-2Ah-*jT(((ASl/-3*ejjTZ @L-@ 8`.KZVkBB-Z S!TM:;Zi)2TZn{E(PZ Ahd*qZ2 Ah)yϱi*UTZjeTZ AS-7-<7q_q2u@*Z-Z*8-L@8S,l(ΨZZUZq-AhPZd*mWg*'Z2"hU2q_4S((ՠEMZ(ǠLZ(-BN5iQT Ah*gAO"`&Qj AhUad8-L-"EJ)( Z ֭- "ԲSTRSشE2YE- :҇kBS -LBQjgbuBiZīLZ)L8-LUŧPS~;o=&ֺr_U2>ΨPPh-LU8RUEZ-Z~=O-3Ph-jjS 'je S 8X)<_**ЫE@N"-A@8LSl /զuVfjЋB 5gplũS( dTjiET΀?-2QSP(-jeZ d2P0Z(2j A@բaZhPT΂EiTT-χOÞrVY2.T[@S!J--4ZxLZEEh S /ǡS(.O-LO?T)jEqKPCҋAj 8`U}Qjeh-3hPZ S%ZiS(UZ pZxiTZ|>>>%ώrZ ƋPZ -LZzž(**jЪ(@N= R(*emZS:Zkqpx:?e8)Z A@2 SB*hiDΨgеvQih Ah(-8ūS*@O=7-2QN=e EE)LREh-&tS_7s2ԲmxLZ-Z--ZE@S;ZJ-)B-2 z- @CAjq=W*dTū⊜b2-B- Z -N4T LTZ@-< LZ-EzZTZL~שw__+o3s|>O?><֠ -Z-()Z~= opZdS(EE-@8-LZdS,hVpʙ g縫OZgTS(8 eAh( dӈ2-Z-ZdQ3){WeK( L A@LӊթjZ `'J)(PZ-Z-P*Yi AkK_g~|^B~?>K+g5PZ E- TS*T>W>Wx;-OY'>_>x{q߶;*dΪ=ūMZd?MpZdLZ ZETiEET΀?{J*q-PZ @dZ2ZP S e EE"N(2 ZlN=ejР5hhUCƕ@E(-2ZobةeЪ--EZǡS(-_LTOSo*dZ't;զAjqw-<_jelS:Ph-K%*jV Ajdz=O-3Ph-jjRA8S(+[p*B-2'LSlELZ ZеZPS!TΪ=ūMZgBg) LBPAh--N= S(բҊEZd-PZ -N1jʵPh2P߸-̿Wxy2毷G+|ouffLvZxiTZ @Zi\*P 8j -Qz(EDZmh)Ah( ZhQh"ȗT=UM*%TP*q(-zJoqV(uE6pZx&Q@-8S0Tjj"QM (8LZ &Ajqj*@iLT E-P*q)UE߸E2 hTU?3S|M"8UL*hUN0Z`)t*yob@r/~KgÔg-ٰ{_wg|~糇w9z+l LkG  Aij=- dZl-8ULAVS E(@hjdZgMqV/S( d EQ@Zh*gE3i%=PJ-N4Z AhT-LZPES"z{El?~ |͛c/<|Y}_wV?~߭o_|m%<_/,p|*eP *qZEtP?VieS{%*qZ -N0*YEAE2(%+|/}ǏFO/Ϗ>_|_+קxq7Ǐ/7o&urEo,Ŕ-K軁ƭTRP 8S(((UZdOJZ-)KT-ƋP B2LUiMqjeЧ/ǡLZ ZzQPES:-2QSP(-jeZdTE8 ejjZS 8Z Ah3-4Zd8LjhhqhUjd;ZR( Ah@$||~W&Qj A@ZZAjqZZ @L<-6 LB- -N0je*`iT&Qh-\'hvZֿ>%?|g%'/;⻟gǖVel8x|~9ny{ )jLKPBik\8P-Z S bVN=- Z'-LZ @r_/>nfoߗkz[\x6V>-2_E*-N4Z Ah(jdbgiZd@ Z 2 S(22UiM*Ψ MZz(jeZZȢgTSl-N0S( Ah( ZզU Ah)Uũq E-QJ`ʕQ@Z AP~Se*qPZ-Qnj Ъ/ZZaUEh-΅<4Zd2AhC- Z-N4T O)y|UT &SEu[ 3Tе2-ZL~ūZzZ&SڊQh'jeZ(ȵjqmf6_i>h)Ah( ZhQh-2LZ2_BSQ@Z AS!CZE3){2&AjqTjjTLN0TPZ2jqj ZoaLT@E-P*q2@2b{ ƅAhE$ZEhjq*UE(-д-62 T-Z-jd*z{ũT ZhTN0\ 2N"( AjqY]WZ8)E(ES 'Z Ah2Mʴ}Zq誙V`2PPh-"P>֭7LЩZ @-LZ gj{UYmLZAjq)EEL&YMpZ(8LAh-!VLTZ AL-6}LhZ-on~ )+Yżg3k}6?>ynѕ@h-LyZopZ{2AhEVxZ/ǢLTRZ O= M '-QjSQS2_BPAh- EQ@Z AS(yիMV(Y7-2QjqZ @AjqZPEL&YM W8e AAAh-2R8ZU@2|I ڹ?2<9gێ]vkϸȦOS( djeZQjU3<-\T -PZ -N1jʵPhΨT)ǠL EEhdP@37>Lx/ƾTQJ A@LE(@ҦYZm2QjqAh-ƋPZ Ajd(eқU)QO3Zl&X((-L VV*QM (*eP(-2 N+V-TZ ALE8e EEN1VR( Ah*Qi砦)TBZ;šT^8õֿi-26jB:EVTQ2 SZ 8O0ZlEP@աV@ǡje Ah(AS,䟓<ӗYqv|fO8gLs:xS)E(EPzQj -^?~'|Y~?%%|_|o7y8xzx\zl+6k3V/LETʴ-N4Z Ah($Z YZoqV/S AA@ LBi)gTSl-N=e A@LEբզE,E6pZ(TK(Z &BN=-ZeZjoaLT@E-PN0ZU@2ON4* E-Q!CZ-PZaֹpZ S26W LT(hE ,Z A@*q L-Z@ZEPh-N0T=˱jV8S(AiiSESl5iIU2Z8jeZ - }ZoqV/R-SQEh-L3i,E6pZx PZAjq)EEL&_-6pZ(8LAh-PPJ8jeZZ dȵ6}LPZ E@ S*T<-7-=TZ$ZBZW բ 8`/*-<_΅@ ZQj'-LZ A@*q/-3) EE)*qZ A@8S,.ūZVVJ d z PP(-ZdZ2- /N=S*UQj -:Z$Z*gUKT-RzQEh-L3i%=P OZh Zh*j"z{E(PZ AhN+VUPh-0ȵv}S '*UTZU-y( e jqZ -Z-Q@iSBX O-L-Zh*`T-A@ LT&-<_iQLjh d hP(-Ai `SbVN5h*C Tе2PP(-ZYe߲-6Tz*UAh)LZ BH2-3i LBPAh-8S("TΊgjb2QL opZdA*q* -(h)D=Qij2@ TEPh-L"e`&QPZY-4T*C"8-LPh-LyشE8N4+^8e8je*jLЩb R(բՠ"*eZ AS@git(-@ƋPPh--8`Sb}-TVAhEET A@ȵS,49viӏETh-2 q `Ъ--ΖZ}N= A 8,Q@Zj gE3iV(Y7-2_B-QPQiEAK" MZ(ǠLZ(-BN5iQT Ah)O"`4?|kTo?x|OfƷo>ELZ A@,ZE2 gUhmզ-2 yЦϸ-2} A 8S,ZQjU3<A2Ah(jqVUPjx&Qj A@բaZE D8ŢeTSN֙*Uh-2N= S(ZZd ]/-LEEE 8-LYT/Ze*jTZ(?~>S/k\8V\y]lN={ /Zd*Uh- Zh A@h8S^.-2SZqU-N"(~ϏoܿN[ÖrvO?|-~$ɟ <xǛc?'r[*B-2T3MZSz2 Ah(AjqZ-P(EeCl6Qi yЦZ>2 Ah(AjqZE@UL3-]%8Ah-PjqVU @AS/ q-VT=Nk\8XS,ZHS'kL誊Z d zQj -Z-Z- h&v_pZdP(hE 8S((((-d= op)LZ-Z*8R((-TgUǥe(E8je((-N=-S^i˴2_ESZ&AjqZCZdOJgMZSELZ ZhU!S!TV=Zx:?e8)eZ dе2-Z-Zf-2QSP(-jeZ`簦J)ǠLAhZh-AijX6ZxòU,Zq EAEEE*YA6jS72@բLE( AjqgM L eZ-Z*Z-Z S صv_jT2U-@N0ZE( 2jqjbMi/UPZ d-A@ZEȞ2UMU-N4-S 8jAh-L ZS{EuE<ϡiS@eP -L VVLmUEASP(-2 N+VU Ah)y (/Ϗ;w7<,["Vi\.BZ -L2E;ZeZ Z ǡh(hh)l-3 P(hE 8j -PZ Sϸ-2_TZe -Zhd zQhh-K zoصvUSKD{QJ A@N0ZE( 2-Zz*bMEOeZ PZ d-A@ZE2%S,V7LZh PZ N0Ze22Uj{SΨ OZz(j -Z-ZdQ3){We)Z A@EǥLUS E_Low;|Yo=?'}^>JX4Ah*q- A@SKToi/ihAh*d-բբZ`/ZgBEE(ƋPPh- 8yg/)eEE Y(T-L Ah(AS,.ūZzZ&Xuh)2j -"ҧfje-8ULAJ A@N0ZE(@hBDeզi8Ah `2( Ah*d(yVڭ?O˛/'f~~L'/O|7,zf,oASQj -N= `.-<_*hUQ8jeZ AS@`}iQLjh d hP(-Ai `SbVN5hV(Tе2PP(-ZdZ2KCo*wN=R 2PPh-"ȴ2} A T-LQ@Zh*gE3i*%=PJ-N4Z AhTTZPES"z{EN EPPPZ @L*qZ2[¨-N0TiUeU8-Lh-Ajd*V/-S\o?'>?o~of߇yk+:`2PP(hE@AjqTwiPE@ESAS(P(-2 z=OZgBjjd hP(-LiTJjqDJ@~= S(( AijYm i)-8ULAV Z AhUjgKCZlŦOS( d zQE-3ZثLS,B/SPjqS((ՠEص|QS@X-Z kH(-N0T-<_զt@EZ ALSB-ZBqTMH}Re@Z A@N0ZE( ZS 8*y/ص2hh T,Z Ah(AN=mŧШVVTP(*d8)9v-\N5hZ*P A@Z SZYnhr";ŧ@UEN= LPP(-TZPDt<զZqTAh-Eǡjeh AjfgUhyZlE<KT-QiEAL'صrQS@E Z֑)ZEL -ZgKU8S(Z -ER,)U2h-2qQj )EB(-2N" i(ZZQ2 SB(T Ah(-AL@~Ӎ*jj`2@PZ S '}Qje -Z-Z(ǡjeYT/Ze*jTZ(Z8)]ڭ2}S*hEd-A@Ph-Kjb9viӍZ-N= S(Ah(UZdOJZ-)N= A 8PP(EgUhmզ-3O3OS( dе2-(hgZAZ抸U8jeZ -2 S@`VV( Ah)*qZ A@-8ŪbS'kL誊Z dSB-AEEEƂmWg/*Y`Qjj&AjqQ@PPPZ S &YS{OZe*jT ZEAh(-TgUeZ"T S(A@AjqZjӗi dQJ A@L-L @T^i=*gUjg-8A 8jAhBB)-Zl:?e8)Z A@2 SB*hhqh\.РҋV)ǠZ Ah(-N=y xkVV( Ah)*qZ A@-8T:*-LբբZd8MZ/ΨP(hE /ǡj -Z`&YS{%BE@ ZU2N= S(Z @AS/gjԩǥe=E8jeZUǥy֭6}ZdV)Ah( Zh""zTV6ūO*_BPZ A@AjqjZ S!C,V-2}S*RP-N4Z Ah(jdKeզiS* Ah(,(22UiM*Ψ OZz(赮i(2MbZULдZ Zh`}iVV8je-Uǥy7OvʴA@2 SVV AjqX-_ZgBEE(ƋPPh-ZAh)Ah( ZE(@heզi8Ah `2( Ah*d(yVR(uE6pZx&Q@i*Ph-N0Tŧi-(hJ-N= S((-PZN4 ZlV/LhPZ `2@Pjd**eP SB(3Zk\8P-X6HQTsA@2 f <fAsW4U2 \F@ AAE\Y8@e Abd*i >bY@Y(\Bq(ﱖid-\TQ2 `(,PsAS '\2qhYA@fXK0 *"ȹ "+'gǟϟǔٲ؜gZˏ-??7~.3&xgp\-ۧ#4EA@ ,&]MYT2 ePX {(Y` fyJ5r f.h2 6` Ac,ъsphinx-design-0.5.0/docs/index.md000066400000000000000000000053661446046271500167000ustar00rootroot00000000000000--- sd_hide_title: true --- # sphinx-design ::::::{div} landing-title :style: "padding: 0.1rem 0.5rem 0.6rem 0; background-image: linear-gradient(315deg, #438ff9 0%, #1572f4 74%); clip-path: polygon(0px 0px, 100% 0%, 100% 100%, 0% calc(100% - 1.5rem)); -webkit-clip-path: polygon(0px 0px, 100% 0%, 100% 100%, 0% calc(100% - 1.5rem));" ::::{grid} :reverse: :gutter: 2 3 3 3 :margin: 4 4 1 2 :::{grid-item} :columns: 12 4 4 4 ```{image} ./_static/logo_square.svg :width: 200px :class: sd-m-auto sd-animate-grow50-rot20 ``` ::: :::{grid-item} :columns: 12 8 8 8 :child-align: justify :class: sd-text-white sd-fs-3 A sphinx extension for designing beautiful, screen-size responsive web-components. ```{button-ref} get_started :ref-type: doc :outline: :color: white :class: sd-px-4 sd-fs-5 Get Started ``` ::: :::: :::::: Conflict free CSS : All CSS classes are prefixed, to avoid conflicts with other frameworks. Works without JavaScript : JavaScript is not required for any "essential" functionality. Configurable : All colors can be configured using CSS variables. Supports non-HTML output formats : Components degrade gracefully for non-HTML formats. ```{toctree} :hidden: get_started ``` ```{toctree} :caption: Components :hidden: grids cards dropdowns tabs badges_buttons additional ``` ```{toctree} :caption: Styling :hidden: css_variables css_classes ``` ```{toctree} :caption: Themes :hidden: alabaster sphinx-book-theme pydata-sphinx-theme sphinx-rtd-theme furo ``` ::::{grid} 1 2 2 3 :margin: 4 4 0 0 :gutter: 1 :::{grid-item-card} {octicon}`table` Grids :link: grids :link-type: doc Screen size adaptable grid layouts. ::: :::{grid-item-card} {octicon}`note` Cards :link: cards :link-type: doc Flexible and extensible content containers. ::: :::{grid-item-card} {octicon}`chevron-down` Dropdowns :link: dropdowns :link-type: doc Hide content in expandable containers. ::: :::{grid-item-card} {octicon}`duplicate` Tabs :link: tabs :link-type: doc Synchronisable, tabbed content sets. ::: :::{grid-item-card} {octicon}`plus-circle` Badges, Buttons & Icons :link: badges_buttons :link-type: doc Roles and directives for {bdg-primary}`badges` and other components. ::: :::{grid-item-card} {octicon}`image` CSS Styling :link: css_variables :link-type: doc Change the default colors and other CSS. ::: :::: ----------- Created with inspiration from [Bootstrap](https://getbootstrap.com/) (v5), [Material Design](https://material.io) and [Material-UI](https://material-ui.com/) design frameworks. sphinx-design-0.5.0/docs/snippets/000077500000000000000000000000001446046271500171025ustar00rootroot00000000000000sphinx-design-0.5.0/docs/snippets/myst/000077500000000000000000000000001446046271500200765ustar00rootroot00000000000000sphinx-design-0.5.0/docs/snippets/myst/article-info.txt000066400000000000000000000003611446046271500232130ustar00rootroot00000000000000```{article-info} :avatar: images/ebp-logo.png :avatar-link: https://executablebooks.org/ :avatar-outline: muted :author: Executable Books :date: Jul 24, 2021 :read-time: 5 min read :class-container: sd-p-2 sd-outline-muted sd-rounded-1 ``` sphinx-design-0.5.0/docs/snippets/myst/badge-basic.txt000066400000000000000000000007071446046271500227640ustar00rootroot00000000000000{bdg}`plain badge` {bdg-primary}`primary`, {bdg-primary-line}`primary-line` {bdg-secondary}`secondary`, {bdg-secondary-line}`secondary-line` {bdg-success}`success`, {bdg-success-line}`success-line` {bdg-info}`info`, {bdg-info-line}`info-line` {bdg-warning}`warning`, {bdg-warning-line}`warning-line` {bdg-danger}`danger`, {bdg-danger-line}`danger-line` {bdg-light}`light`, {bdg-light-line}`light-line` {bdg-dark}`dark`, {bdg-dark-line}`dark-line` sphinx-design-0.5.0/docs/snippets/myst/badge-link.txt000066400000000000000000000001471446046271500226360ustar00rootroot00000000000000{bdg-link-primary}`https://example.com` {bdg-link-primary-line}`explicit title ` sphinx-design-0.5.0/docs/snippets/myst/button-link.txt000066400000000000000000000004531446046271500231070ustar00rootroot00000000000000```{button-link} https://example.com ``` ```{button-link} https://example.com Button text ``` ```{button-link} https://example.com :color: primary :shadow: ``` ```{button-link} https://example.com :color: primary :outline: ``` ```{button-link} https://example.com :color: secondary :expand: ``` sphinx-design-0.5.0/docs/snippets/myst/card-basic.txt000066400000000000000000000000471446046271500226300ustar00rootroot00000000000000:::{card} Card Title Card content ::: sphinx-design-0.5.0/docs/snippets/myst/card-carousel.txt000066400000000000000000000002621446046271500233630ustar00rootroot00000000000000::::{card-carousel} 2 :::{card} card 1 content ::: :::{card} card 2 Longer content ::: :::{card} card 3 ::: :::{card} card 4 ::: :::{card} card 5 ::: :::{card} card 6 ::: :::: sphinx-design-0.5.0/docs/snippets/myst/card-head-foot.txt000066400000000000000000000000741446046271500234150ustar00rootroot00000000000000:::{card} Card Title Header ^^^ Card content +++ Footer ::: sphinx-design-0.5.0/docs/snippets/myst/card-images.txt000066400000000000000000000006111446046271500230110ustar00rootroot00000000000000:::::{grid} 2 3 3 4 ::::{grid-item} :::{card} Title :img-background: images/particle_background.jpg :class-card: sd-text-black :img-alt: my text Text ::: :::: ::::{grid-item-card} Title :img-top: images/particle_background.jpg :img-alt: Header ^^^ Content +++ Footer :::: ::::{grid-item-card} Title :img-bottom: images/particle_background.jpg Header ^^^ Content +++ Footer :::: ::::: sphinx-design-0.5.0/docs/snippets/myst/card-link.txt000066400000000000000000000005151446046271500225040ustar00rootroot00000000000000(cards-clickable)= ## Cards Clickable :::{card} Clickable Card (external) :link: https://example.com The entire card can be clicked to navigate to . ::: :::{card} Clickable Card (internal) :link: cards-clickable :link-type: ref The entire card can be clicked to navigate to the `cards` reference target. ::: sphinx-design-0.5.0/docs/snippets/myst/card-title-link.txt000066400000000000000000000001341446046271500236200ustar00rootroot00000000000000(target)= :::{card} Card Title {ref}`link ` Card content ::: sphinx-design-0.5.0/docs/snippets/myst/div-basic.txt000066400000000000000000000001201446046271500224710ustar00rootroot00000000000000:::{div} sd-text-center sd-font-italic sd-text-primary Some CSS styled text ::: sphinx-design-0.5.0/docs/snippets/myst/dropdown-basic.txt000066400000000000000000000002201446046271500235440ustar00rootroot00000000000000:::{dropdown} Dropdown content ::: :::{dropdown} Dropdown title Dropdown content ::: :::{dropdown} Open dropdown :open: Dropdown content ::: sphinx-design-0.5.0/docs/snippets/myst/dropdown-options.txt000066400000000000000000000003261446046271500241650ustar00rootroot00000000000000:::{dropdown} Title :name: target :color: info :icon: alert :margin: 1 :class-container: class-container :class-title: class-title :class-body: class-body Dropdown content ::: {ref}`target`, {ref}`text ` sphinx-design-0.5.0/docs/snippets/myst/grid-basic.txt000066400000000000000000000001671446046271500226470ustar00rootroot00000000000000::::{grid} 1 2 3 4 :outline: :::{grid-item} A ::: :::{grid-item} B ::: :::{grid-item} C ::: :::{grid-item} D ::: :::: sphinx-design-0.5.0/docs/snippets/myst/grid-card-columns.txt000066400000000000000000000002221446046271500241450ustar00rootroot00000000000000::::{grid} 2 :::{grid-item-card} :columns: auto A ::: :::{grid-item-card} :columns: 12 6 6 6 B ::: :::{grid-item-card} :columns: 12 C ::: :::: sphinx-design-0.5.0/docs/snippets/myst/grid-card.txt000066400000000000000000000001301446046271500224650ustar00rootroot00000000000000::::{grid} 2 :::{grid-item-card} Title 1 A ::: :::{grid-item-card} Title 2 B ::: :::: sphinx-design-0.5.0/docs/snippets/myst/grid-gutter.txt000066400000000000000000000002531446046271500230740ustar00rootroot00000000000000::::{grid} 2 :gutter: 1 :::{grid-item-card} A ::: :::{grid-item-card} B ::: :::: ::::{grid} 2 :gutter: 3 3 4 5 :::{grid-item-card} A ::: :::{grid-item-card} B ::: :::: sphinx-design-0.5.0/docs/snippets/myst/grid-nested.txt000066400000000000000000000006141446046271500230450ustar00rootroot00000000000000::::::{grid} 1 1 2 2 :gutter: 1 :::::{grid-item} ::::{grid} 1 1 1 1 :gutter: 1 :::{grid-item-card} Item 1.1 Multi-line content ::: :::{grid-item-card} Item 1.2 Content ::: :::: ::::: :::::{grid-item} ::::{grid} 1 1 1 1 :gutter: 1 :::{grid-item-card} Item 2.1 Content ::: :::{grid-item-card} Item 2.2 Content ::: :::{grid-item-card} Item 2.3 Content ::: :::: ::::: :::::: sphinx-design-0.5.0/docs/snippets/myst/icon-fontawesome.txt000066400000000000000000000001111446046271500241050ustar00rootroot00000000000000An icon {fas}`spinner;sd-bg-primary sd-bg-text-primary`, some more text. sphinx-design-0.5.0/docs/snippets/myst/icon-material-design.txt000066400000000000000000000011461446046271500246340ustar00rootroot00000000000000- A regular icon: {material-regular}`data_exploration;2em`, some more text - A coloured regular icon: {material-regular}`settings;3em;sd-text-success`, some more text. - A coloured outline icon: {material-outlined}`settings;3em;sd-text-success`, some more text. - A coloured sharp icon: {material-sharp}`settings;3em;sd-text-success`, some more text. - A coloured round icon: {material-round}`settings;3em;sd-text-success`, some more text. - A coloured two-tone icon: {material-twotone}`settings;3em;sd-text-success`, some more text. - A fixed size icon: {material-regular}`data_exploration;24px`, some more text. sphinx-design-0.5.0/docs/snippets/myst/icon-octicon.txt000066400000000000000000000001051446046271500232170ustar00rootroot00000000000000A coloured icon: {octicon}`report;1em;sd-text-info`, some more text. sphinx-design-0.5.0/docs/snippets/myst/tab-basic.txt000066400000000000000000000001341446046271500224620ustar00rootroot00000000000000::::{tab-set} :::{tab-item} Label1 Content 1 ::: :::{tab-item} Label2 Content 2 ::: :::: sphinx-design-0.5.0/docs/snippets/myst/tab-code-set.txt000066400000000000000000000001701446046271500231040ustar00rootroot00000000000000````{tab-set-code} ```{literalinclude} ./snippet.py :language: python ``` ```{code-block} javascript a = 1; ``` ```` sphinx-design-0.5.0/docs/snippets/myst/tab-options.txt000066400000000000000000000003401446046271500230730ustar00rootroot00000000000000::::{tab-set} :class: class-set :::{tab-item} Label :name: target :selected: :class-container: class-container :class-label: class-label :class-content: class-content Content ::: :::: {ref}`target`, {ref}`text ` sphinx-design-0.5.0/docs/snippets/myst/tab-sync.txt000066400000000000000000000003551446046271500223620ustar00rootroot00000000000000::::{tab-set} :::{tab-item} Label1 :sync: key1 Content 1 ::: :::{tab-item} Label2 :sync: key2 Content 2 ::: :::: ::::{tab-set} :::{tab-item} Label1 :sync: key1 Content 1 ::: :::{tab-item} Label2 :sync: key2 Content 2 ::: :::: sphinx-design-0.5.0/docs/snippets/rst/000077500000000000000000000000001446046271500177125ustar00rootroot00000000000000sphinx-design-0.5.0/docs/snippets/rst/article-info.txt000066400000000000000000000004111446046271500230230ustar00rootroot00000000000000.. article-info:: :avatar: images/ebp-logo.png :avatar-link: https://executablebooks.org/ :avatar-outline: muted :author: Executable Books :date: Jul 24, 2021 :read-time: 5 min read :class-container: sd-p-2 sd-outline-muted sd-rounded-1 sphinx-design-0.5.0/docs/snippets/rst/badge-basic.txt000066400000000000000000000007071446046271500226000ustar00rootroot00000000000000:bdg:`plain badge` :bdg-primary:`primary`, :bdg-primary-line:`primary-line` :bdg-secondary:`secondary`, :bdg-secondary-line:`secondary-line` :bdg-success:`success`, :bdg-success-line:`success-line` :bdg-info:`info`, :bdg-info-line:`info-line` :bdg-warning:`warning`, :bdg-warning-line:`warning-line` :bdg-danger:`danger`, :bdg-danger-line:`danger-line` :bdg-light:`light`, :bdg-light-line:`light-line` :bdg-dark:`dark`, :bdg-dark-line:`dark-line` sphinx-design-0.5.0/docs/snippets/rst/badge-link.txt000066400000000000000000000001471446046271500224520ustar00rootroot00000000000000:bdg-link-primary:`https://example.com` :bdg-link-primary-line:`explicit title ` sphinx-design-0.5.0/docs/snippets/rst/button-link.txt000066400000000000000000000004641446046271500227250ustar00rootroot00000000000000.. button-link:: https://example.com .. button-link:: https://example.com Button text .. button-link:: https://example.com :color: primary :shadow: .. button-link:: https://example.com :color: primary :outline: .. button-link:: https://example.com :color: secondary :expand: sphinx-design-0.5.0/docs/snippets/rst/card-basic.txt000066400000000000000000000000471446046271500224440ustar00rootroot00000000000000.. card:: Card Title Card content sphinx-design-0.5.0/docs/snippets/rst/card-carousel.txt000066400000000000000000000003131446046271500231740ustar00rootroot00000000000000.. card-carousel:: 2 .. card:: card 1 content .. card:: card 2 Longer content .. card:: card 3 .. card:: card 4 .. card:: card 5 .. card:: card 6 sphinx-design-0.5.0/docs/snippets/rst/card-head-foot.txt000066400000000000000000000001151446046271500232250ustar00rootroot00000000000000.. card:: Card Title Header ^^^ Card content +++ Footer sphinx-design-0.5.0/docs/snippets/rst/card-images.txt000066400000000000000000000010251446046271500226250ustar00rootroot00000000000000.. grid:: 2 3 3 4 .. grid-item:: .. card:: Title :img-background: images/particle_background.jpg :class-card: sd-text-black :img-alt: my text Text .. grid-item-card:: Title :img-top: images/particle_background.jpg :img-alt: Header ^^^ Content +++ Footer .. grid-item-card:: Title :img-bottom: images/particle_background.jpg Header ^^^ Content +++ Footer sphinx-design-0.5.0/docs/snippets/rst/card-link.txt000066400000000000000000000005511446046271500223200ustar00rootroot00000000000000.. _cards-clickable: Cards Clickable ............... .. card:: Clickable Card (external) :link: https://example.com The entire card can be clicked to navigate to https://example.com. .. card:: Clickable Card (internal) :link: cards-clickable :link-type: ref The entire card can be clicked to navigate to the ``cards`` reference target. sphinx-design-0.5.0/docs/snippets/rst/card-title-link.txt000066400000000000000000000001341446046271500234340ustar00rootroot00000000000000.. _target: .. card:: Card Title https://example.com :ref:`link ` Card content sphinx-design-0.5.0/docs/snippets/rst/div-basic.txt000066400000000000000000000001211446046271500223060ustar00rootroot00000000000000.. div:: sd-text-center sd-font-italic sd-text-primary Some CSS styled text sphinx-design-0.5.0/docs/snippets/rst/dropdown-basic.txt000066400000000000000000000002261446046271500233660ustar00rootroot00000000000000.. dropdown:: Dropdown content .. dropdown:: Dropdown title Dropdown content .. dropdown:: Open dropdown :open: Dropdown content sphinx-design-0.5.0/docs/snippets/rst/dropdown-options.txt000066400000000000000000000003621446046271500240010ustar00rootroot00000000000000.. dropdown:: Title :name: target :color: info :icon: alert :margin: 1 :class-container: class-container :class-title: class-title :class-body: class-body Dropdown content :ref:`target`, :ref:`text ` sphinx-design-0.5.0/docs/snippets/rst/grid-basic.txt000066400000000000000000000002341446046271500224560ustar00rootroot00000000000000.. grid:: 1 2 3 4 :outline: .. grid-item:: A .. grid-item:: B .. grid-item:: C .. grid-item:: D sphinx-design-0.5.0/docs/snippets/rst/grid-card-columns.txt000066400000000000000000000002771446046271500237730ustar00rootroot00000000000000.. grid:: 2 .. grid-item-card:: :columns: auto A .. grid-item-card:: :columns: 12 6 6 6 B .. grid-item-card:: :columns: 12 C sphinx-design-0.5.0/docs/snippets/rst/grid-card.txt000066400000000000000000000001461446046271500223100ustar00rootroot00000000000000.. grid:: 2 .. grid-item-card:: Title 1 A .. grid-item-card:: Title 2 B sphinx-design-0.5.0/docs/snippets/rst/grid-gutter.txt000066400000000000000000000003151446046271500227070ustar00rootroot00000000000000.. grid:: 2 :gutter: 1 .. grid-item-card:: A .. grid-item-card:: B .. grid:: 2 :gutter: 3 3 4 5 .. grid-item-card:: A .. grid-item-card:: B sphinx-design-0.5.0/docs/snippets/rst/grid-nested.txt000066400000000000000000000010301446046271500226520ustar00rootroot00000000000000.. grid:: 1 1 2 2 :gutter: 1 .. grid-item:: .. grid:: 1 1 1 1 :gutter: 1 .. grid-item-card:: Item 1.1 Multi-line content .. grid-item-card:: Item 1.2 Content .. grid-item:: .. grid:: 1 1 1 1 :gutter: 1 .. grid-item-card:: Item 2.1 Content .. grid-item-card:: Item 2.2 Content .. grid-item-card:: Item 2.3 Content sphinx-design-0.5.0/docs/snippets/rst/icon-fontawesome.txt000066400000000000000000000001111446046271500237210ustar00rootroot00000000000000An icon :fas:`spinner;sd-bg-primary sd-bg-text-primary`, some more text. sphinx-design-0.5.0/docs/snippets/rst/icon-material-design.txt000066400000000000000000000011461446046271500244500ustar00rootroot00000000000000- A regular icon: :material-regular:`data_exploration;2em`, some more text - A coloured regular icon: :material-regular:`settings;3em;sd-text-success`, some more text. - A coloured outline icon: :material-outlined:`settings;3em;sd-text-success`, some more text. - A coloured sharp icon: :material-sharp:`settings;3em;sd-text-success`, some more text. - A coloured round icon: :material-round:`settings;3em;sd-text-success`, some more text. - A coloured two-tone icon: :material-twotone:`settings;3em;sd-text-success`, some more text. - A fixed size icon: :material-regular:`data_exploration;24px`, some more text. sphinx-design-0.5.0/docs/snippets/rst/icon-octicon.txt000066400000000000000000000001051446046271500230330ustar00rootroot00000000000000A coloured icon: :octicon:`report;1em;sd-text-info`, some more text. sphinx-design-0.5.0/docs/snippets/rst/tab-basic.txt000066400000000000000000000001471446046271500223020ustar00rootroot00000000000000.. tab-set:: .. tab-item:: Label1 Content 1 .. tab-item:: Label2 Content 2 sphinx-design-0.5.0/docs/snippets/rst/tab-code-set.txt000066400000000000000000000002021446046271500227140ustar00rootroot00000000000000.. tab-set-code:: .. literalinclude:: ./snippet.py :language: python .. code-block:: javascript a = 1; sphinx-design-0.5.0/docs/snippets/rst/tab-options.txt000066400000000000000000000004151446046271500227120ustar00rootroot00000000000000.. tab-set:: :class: class-set .. tab-item:: Label :name: target :selected: :class-container: class-container :class-label: class-label :class-content: class-content Content :ref:`target`, :ref:`text ` sphinx-design-0.5.0/docs/snippets/rst/tab-sync.txt000066400000000000000000000004371446046271500221770ustar00rootroot00000000000000.. tab-set:: .. tab-item:: Label1 :sync: key1 Content 1 .. tab-item:: Label2 :sync: key2 Content 2 .. tab-set:: .. tab-item:: Label1 :sync: key1 Content 1 .. tab-item:: Label2 :sync: key2 Content 2 sphinx-design-0.5.0/docs/tabs.md000066400000000000000000000064011446046271500165110ustar00rootroot00000000000000(sd-tabs)= # Tabs Tabs organize and allow navigation between groups of content that are related and at the same level of hierarchy. Each tab should contain content that is distinct from other tabs in a set. ::::{tab-set} :::{tab-item} Label1 Content 1 ::: :::{tab-item} Label2 Content 2 ::: :::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/tab-basic.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/tab-basic.txt :language: rst ``` ```` ````` See the [Material Design](https://material.io/components/tabs) description for further details. ## Synchronised Tabs Use the `sync` option to synchronise the selected tab items across multiple tab-sets. Note, synchronisation requires that JavaScript is enabled. ::::{tab-set} :::{tab-item} Label1 :sync: key1 Content 1 ::: :::{tab-item} Label2 :sync: key2 Content 2 ::: :::: ::::{tab-set} :::{tab-item} Label1 :sync: key1 Content 1 ::: :::{tab-item} Label2 :sync: key2 Content 2 ::: :::: `````{dropdown} Syntax :icon: code :color: light ````{tab-set-code} ```{literalinclude} ./snippets/myst/tab-sync.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/tab-sync.txt :language: rst ``` ```` ````` ## Tabbed code examples The `tab-set-code` directive provides a shorthand for synced code examples. You can place any directives in a `tab-set-code` that produce a `literal_block` node with a `language` attribute, for example `code`, `code-block` and `literalinclude`. Tabs will be labelled and synchronised by the `language` attribute (in upper-case). ```````{tab-set} ``````{tab-item} Markdown :sync: markdown ````{literalinclude} ./snippets/myst/tab-code-set.txt :language: markdown ```` `````` ``````{tab-item} RST :sync: rst ````{literalinclude} ./snippets/rst/tab-code-set.txt :language: rst ```` `````` ``````` ## Tabs in other components Tabs can be nested inside other components, such as inside [dropdowns](./dropdowns.md) or within [grid items](./grids.md). :::::{dropdown} Tabs in dropdown :open: Paragraph ::::{tab-set} :::{tab-item} Label1 :sync: label-1 Content 1 ::: :::{tab-item} Label2 :sync: label-2 Content 2 ::: :::: ::::: ::::::{grid} 1 1 2 2 :::::{grid-item} :outline: Initial paragraph ::::{tab-set} :::{tab-item} Label1 :sync: label-1 Content 1 ::: :::{tab-item} Label2 :sync: label-2 Content 2 ::: :::: ::::: :::::{grid-item} :outline: ::::{tab-set} :::{tab-item} Label1 :sync: label-1 Content 1 ::: :::{tab-item} Label2 :sync: label-2 Content 2 ::: :::: Ending paragraph ::::: :::::: Tab set, within tab set: ::::::{tab-set} :::::{tab-item} Label 1 ::::{tab-set} :::{tab-item} Label 1a Content 1a ::: :::{tab-item} Label 1b Content 1b ::: :::: ::::: :::::{tab-item} Label 2 Content 2 ::::: :::::: ## `tab-set` options class : Additional CSS classes for the container element. ## `tab-item` options selected : a flag indicating whether the tab should be selected by default. sync : A key that is used to sync the selected tab across multiple tab-sets. name : Set a reference-able name for the dropdown container. class-container : Additional CSS classes for the container element. class-label : Additional CSS classes for the label element. class-content : Additional CSS classes for the content element. sphinx-design-0.5.0/git_rebase_theme_branches.sh000077500000000000000000000003261446046271500220000ustar00rootroot00000000000000#!/bin/sh set -e fmt=' git checkout %(refname) git rebase main git push origin HEAD:%(refname:strip=3) --force ' eval "$(git for-each-ref --shell --format="$fmt" refs/remotes/origin/*-theme)" git checkout main sphinx-design-0.5.0/package-lock.json000066400000000000000000000261431446046271500175270ustar00rootroot00000000000000{ "name": "sphinx-design-compiler", "version": "0.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sphinx-design-compiler", "version": "0.0.1", "dependencies": { "sass": "^1.35.2" } }, "node_modules/anymatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" }, "engines": { "node": ">= 8" } }, "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "engines": { "node": ">=8" } }, "node_modules/braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dependencies": { "fill-range": "^7.0.1" }, "engines": { "node": ">=8" } }, "node_modules/chokidar": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "engines": { "node": ">= 8.10.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dependencies": { "to-regex-range": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/fsevents": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "hasInstallScript": true, "optional": true, "os": [ "darwin" ], "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, "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==", "dependencies": { "is-glob": "^4.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dependencies": { "binary-extensions": "^2.0.0" }, "engines": { "node": ">=8" } }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "engines": { "node": ">=0.10.0" } }, "node_modules/is-glob": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", "dependencies": { "is-extglob": "^2.1.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "engines": { "node": ">=0.12.0" } }, "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==", "engines": { "node": ">=0.10.0" } }, "node_modules/picomatch": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", "engines": { "node": ">=8.6" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" } }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dependencies": { "picomatch": "^2.2.1" }, "engines": { "node": ">=8.10.0" } }, "node_modules/sass": { "version": "1.35.2", "resolved": "https://registry.npmjs.org/sass/-/sass-1.35.2.tgz", "integrity": "sha512-jhO5KAR+AMxCEwIH3v+4zbB2WB0z67V1X0jbapfVwQQdjHZUGUyukpnoM6+iCMfsIUC016w9OPKQ5jrNOS9uXw==", "dependencies": { "chokidar": ">=3.0.0 <4.0.0" }, "bin": { "sass": "sass.js" }, "engines": { "node": ">=8.9.0" } }, "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==", "dependencies": { "is-number": "^7.0.0" }, "engines": { "node": ">=8.0" } } }, "dependencies": { "anymatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "requires": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, "binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" }, "braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "requires": { "fill-range": "^7.0.1" } }, "chokidar": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", "requires": { "anymatch": "~3.1.2", "braces": "~3.0.2", "fsevents": "~2.3.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" } }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "requires": { "to-regex-range": "^5.0.1" } }, "fsevents": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "optional": true }, "glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "requires": { "is-glob": "^4.0.1" } }, "is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "requires": { "binary-extensions": "^2.0.0" } }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" }, "is-glob": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", "requires": { "is-extglob": "^2.1.1" } }, "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" }, "picomatch": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==" }, "readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "requires": { "picomatch": "^2.2.1" } }, "sass": { "version": "1.35.2", "resolved": "https://registry.npmjs.org/sass/-/sass-1.35.2.tgz", "integrity": "sha512-jhO5KAR+AMxCEwIH3v+4zbB2WB0z67V1X0jbapfVwQQdjHZUGUyukpnoM6+iCMfsIUC016w9OPKQ5jrNOS9uXw==", "requires": { "chokidar": ">=3.0.0 <4.0.0" } }, "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==", "requires": { "is-number": "^7.0.0" } } } } sphinx-design-0.5.0/package.json000066400000000000000000000004561446046271500166000ustar00rootroot00000000000000{ "name": "sphinx-design-compiler", "version": "0.0.1", "description": "Scripts for compiling the sphinx-design assets", "scripts": { "css": "sass --style=compressed --no-source-map style/index.scss sphinx_design/compiled/style.min.css" }, "dependencies": { "sass": "^1.35.2" } } sphinx-design-0.5.0/pyproject.toml000066400000000000000000000040361446046271500172240ustar00rootroot00000000000000[build-system] requires = ["flit_core >=3.4,<4"] build-backend = "flit_core.buildapi" [project] name = "sphinx_design" dynamic = ["version"] description = "A sphinx extension for designing beautiful, view size responsive web components." authors = [{name = "Chris Sewell", email = "chrisj_sewell@hotmail.com"}] readme = "README.md" license = {file = "LICENSE"} classifiers = [ "Development Status :: 4 - Beta", "Framework :: Sphinx :: Extension", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Markup", "Topic :: Text Processing :: Markup :: Markdown", "Topic :: Text Processing :: Markup :: reStructuredText", ] keywords = ["sphinx", "extension", "material design", "web components"] requires-python = ">=3.8" dependencies = ["sphinx>=5,<8"] [project.urls] Homepage = "https://github.com/executablebooks/sphinx-design" Documentation = "https://sphinx-design.readthedocs.io" [project.optional-dependencies] code_style = ["pre-commit>=3,<4"] rtd = ["myst-parser>=1,<3"] testing = [ "myst-parser>=1,<3", "pytest~=7.1", "pytest-cov", "pytest-regressions", ] theme_furo = ["furo~=2023.7.0"] theme_pydata = ["pydata-sphinx-theme~=0.13.0"] theme_rtd = ["sphinx-rtd-theme~=1.0"] theme_sbt = ["sphinx-book-theme~=1.0"] [tool.flit.sdist] exclude = [ "docs/", "style/", "tests/", ] [tool.mypy] show_error_codes = true warn_unused_ignores = true warn_redundant_casts = true no_implicit_optional = true strict_equality = true [[tool.mypy.overrides]] module = ["docutils.*"] ignore_missing_imports = true [tool.isort] profile = "black" src_paths = ["sphinx_design", "tests"] force_sort_within_sections = true sphinx-design-0.5.0/sphinx_design/000077500000000000000000000000001446046271500171475ustar00rootroot00000000000000sphinx-design-0.5.0/sphinx_design/__init__.py000066400000000000000000000006611446046271500212630ustar00rootroot00000000000000"""A sphinx extension for designing beautiful, view size responsive web components.""" from typing import TYPE_CHECKING __version__ = "0.5.0" if TYPE_CHECKING: from sphinx.application import Sphinx def setup(app: "Sphinx") -> dict: from .extension import setup_extension setup_extension(app) return { "version": __version__, "parallel_read_safe": True, "parallel_write_safe": True, } sphinx-design-0.5.0/sphinx_design/_compat.py000066400000000000000000000013221446046271500211410ustar00rootroot00000000000000"""Helpers for cross compatibility across dependency versions.""" from importlib import resources from typing import Callable, Iterable from docutils.nodes import Element def findall(node: Element) -> Callable[..., Iterable[Element]]: """Iterate through""" # findall replaces traverse in docutils v0.18 # note a difference is that findall is an iterator return getattr(node, "findall", node.traverse) # TODO: >= Python 3.9, only use `resources.files` and drop `resources.read_text` def read_text(module: resources.Package, filename: str) -> str: if hasattr(resources, "files"): return resources.files(module).joinpath(filename).read_text() return resources.read_text(module, filename) sphinx-design-0.5.0/sphinx_design/article_info.py000066400000000000000000000144121446046271500221610ustar00rootroot00000000000000from typing import List, Optional from docutils import nodes from docutils.parsers.rst import directives from sphinx.application import Sphinx from sphinx.util.docutils import SphinxDirective from .icons import get_octicon from .shared import SEMANTIC_COLORS, create_component, make_choice def setup_article_info(app: Sphinx): """Setup the article information components.""" app.add_directive("article-info", ArticleInfoDirective) class ArticleInfoDirective(SphinxDirective): """ """ has_content = False required_arguments = 0 optional_arguments = 0 option_spec = { "avatar": directives.uri, "avatar-alt": directives.unchanged, "avatar-link": directives.uri, "avatar-outline": make_choice(SEMANTIC_COLORS), "author": directives.unchanged_required, "date": directives.unchanged_required, "read-time": directives.unchanged_required, "class-container": directives.class_option, "class-avatar": directives.class_option, } def _parse_text( self, text: str, icon: Optional[nodes.Node] = None, parse: bool = False ) -> nodes.Node: """Parse the text.""" if not parse: output = ([icon] if icon else []) + [nodes.Text(text)] else: text_nodes, _ = self.state.inline_text(text, self.lineno) text_nodes = ([icon] if icon else []) + text_nodes # note certain nodes (like references) need to be nested in a TextElement node # (e.g. a pargraph) para = nodes.paragraph("", "", *text_nodes, classes=["sd-p-0", "sd-m-0"]) self.set_source_info(para) output = [para] return output def run(self) -> List[nodes.Node]: """Run the directive.""" parse_fields = True # parse field text top_grid = create_component( "grid-container", [ "sd-container-fluid", "sd-sphinx-override", "sd-p-0", "sd-mt-2", "sd-mb-4", ] + self.options.get("class-container", []), ) self.set_source_info(top_grid) top_row = create_component( "grid-row", ["sd-row", "sd-row-cols-2", "sd-gx-2", "sd-gy-1"], ) self.set_source_info(top_row) top_grid += top_row avatar_uri = self.options.get("avatar") if avatar_uri: # TODO only in html (hide in latex) avatar_column = create_component( "grid-item", ["sd-col", "sd-col-auto", "sd-d-flex-row", "sd-align-minor-center"], ) self.set_source_info(avatar_column) avatar_classes = ["sd-avatar-sm"] if "avatar-outline" in self.options: avatar_classes.append(f"sd-outline-{self.options['avatar-outline']}") if "class-avatar" in self.options: avatar_classes += self.options["class-avatar"] avatar_image = nodes.image( "", uri=avatar_uri, alt=self.options.get("avatar-alt", ""), classes=avatar_classes, ) self.set_source_info(avatar_image) if self.options.get("avatar-link"): avatar_link = nodes.reference( "", "", refuri=self.options.get("avatar-link") ) avatar_link += avatar_image avatar_image = avatar_link avatar_column += avatar_image top_row += avatar_column info_column = create_component( "grid-item", ["sd-col", "sd-d-flex-row", "sd-align-minor-center"], ) self.set_source_info(info_column) top_row += info_column info_grid = create_component( "grid-container", [ "sd-container-fluid", "sd-sphinx-override", ], ) self.set_source_info(info_grid) info_column += info_grid info_row = create_component( "grid-row", [ "sd-row", "sd-row-cols-2", "sd-row-cols-xs-2", "sd-row-cols-sm-3", "sd-row-cols-md-3", "sd-row-cols-lg-3", "sd-gx-3", "sd-gy-1", ], ) self.set_source_info(info_row) info_grid += info_row author_text = self.options.get("author") if author_text: author_column = create_component( "grid-item", ["sd-col", "sd-col-auto", "sd-d-flex-row", "sd-align-minor-center"], ) self.set_source_info(author_column) author_nodes = self._parse_text(author_text, parse=parse_fields) author_column.extend(author_nodes) info_row += author_column date_text = self.options.get("date") if date_text: date_column = create_component( "grid-item", ["sd-col", "sd-col-auto", "sd-d-flex-row", "sd-align-minor-center"], ) self.set_source_info(date_column) date_icon = nodes.raw( "", nodes.Text(get_octicon("calendar", height="16px")), classes=["sd-pr-2"], format="html", ) date_nodes = self._parse_text(date_text, icon=date_icon, parse=parse_fields) date_column.extend(date_nodes) info_row += date_column read_time_text = self.options.get("read-time") if read_time_text: read_time_column = create_component( "grid-item", ["sd-col", "sd-col-auto", "sd-d-flex-row", "sd-align-minor-center"], ) self.set_source_info(read_time_column) read_time_icon = nodes.raw( "", nodes.Text(get_octicon("clock", height="16px")), classes=["sd-pr-2"], format="html", ) read_time_nodes = self._parse_text( read_time_text, icon=read_time_icon, parse=parse_fields ) read_time_column.extend(read_time_nodes) info_row += read_time_column return [top_grid] sphinx-design-0.5.0/sphinx_design/badges_buttons.py000066400000000000000000000200741446046271500225270ustar00rootroot00000000000000from typing import List, Optional, Tuple from docutils import nodes from docutils.parsers.rst import directives from sphinx import addnodes from sphinx.application import Sphinx from sphinx.util.docutils import ReferenceRole, SphinxDirective, SphinxRole from sphinx_design.shared import SEMANTIC_COLORS, make_choice, text_align ROLE_NAME_BADGE_PREFIX = "bdg" ROLE_NAME_LINK_PREFIX = "bdg-link" ROLE_NAME_REF_PREFIX = "bdg-ref" DIRECTIVE_NAME_BUTTON_LINK = "button-link" DIRECTIVE_NAME_BUTTON_REF = "button-ref" # TODO defining arbitrary classes for badges # (maybe split text right of last `;`, then split that by comma) # in particular for rounded-pill class etc def setup_badges_and_buttons(app: Sphinx) -> None: """Setup the badge components.""" app.add_role(ROLE_NAME_BADGE_PREFIX, BadgeRole()) app.add_role(ROLE_NAME_LINK_PREFIX, LinkBadgeRole()) app.add_role(ROLE_NAME_REF_PREFIX, XRefBadgeRole()) for color in SEMANTIC_COLORS: app.add_role("-".join((ROLE_NAME_BADGE_PREFIX, color)), BadgeRole(color)) app.add_role( "-".join((ROLE_NAME_BADGE_PREFIX, color, "line")), BadgeRole(color, outline=True), ) app.add_role("-".join((ROLE_NAME_LINK_PREFIX, color)), LinkBadgeRole(color)) app.add_role( "-".join((ROLE_NAME_LINK_PREFIX, color, "line")), LinkBadgeRole(color, outline=True), ) app.add_role("-".join((ROLE_NAME_REF_PREFIX, color)), XRefBadgeRole(color)) app.add_role( "-".join((ROLE_NAME_REF_PREFIX, color, "line")), XRefBadgeRole(color, outline=True), ) app.add_directive(DIRECTIVE_NAME_BUTTON_LINK, ButtonLinkDirective) app.add_directive(DIRECTIVE_NAME_BUTTON_REF, ButtonRefDirective) def create_bdg_classes(color: Optional[str], outline: bool) -> List[str]: """Create the badge classes.""" classes = [ "sd-sphinx-override", "sd-badge", ] if color is None: return classes if outline: classes.extend([f"sd-outline-{color}", f"sd-text-{color}"]) else: classes.extend([f"sd-bg-{color}", f"sd-bg-text-{color}"]) return classes class BadgeRole(SphinxRole): """Role to display a badge.""" def __init__(self, color: Optional[str] = None, *, outline: bool = False) -> None: super().__init__() self.color = color self.outline = outline def run(self) -> Tuple[List[nodes.Node], List[nodes.system_message]]: """Run the role.""" node = nodes.inline( self.rawtext, self.text, classes=create_bdg_classes(self.color, self.outline), ) self.set_source_info(node) return [node], [] class LinkBadgeRole(ReferenceRole): """Role to display a badge with an external link.""" def __init__(self, color: Optional[str] = None, *, outline: bool = False) -> None: super().__init__() self.color = color self.outline = outline def run(self) -> Tuple[List[nodes.Node], List[nodes.system_message]]: """Run the role.""" node = nodes.reference( self.rawtext, refuri=self.target, classes=create_bdg_classes(self.color, self.outline), ) # TODO open in new tab self.set_source_info(node) # if self.target != self.title: # node["reftitle"] = self.target node += nodes.inline(self.title, self.title) return [node], [] class XRefBadgeRole(ReferenceRole): """Role to display a badge with an internal link.""" def __init__(self, color: Optional[str] = None, *, outline: bool = False) -> None: super().__init__() self.color = color self.outline = outline def run(self) -> Tuple[List[nodes.Node], List[nodes.system_message]]: """Run the role.""" options = { "classes": create_bdg_classes(self.color, self.outline), "reftarget": self.target, "refdoc": self.env.docname, "refdomain": "", "reftype": "any", "refexplicit": self.has_explicit_title, "refwarn": True, } node = addnodes.pending_xref(self.rawtext, **options) self.set_source_info(node) node += nodes.inline(self.title, self.title, classes=["xref", "any"]) return [node], [] class _ButtonDirective(SphinxDirective): """A base button directive.""" required_arguments = 1 optional_arguments = 0 final_argument_whitespace = True has_content = True option_spec = { "color": make_choice(SEMANTIC_COLORS), "outline": directives.flag, "align": text_align, # expand to fit parent width "expand": directives.flag, # make parent also clickable "click-parent": directives.flag, "tooltip": directives.unchanged_required, "shadow": directives.flag, # ref button only "ref-type": make_choice(["any", "ref", "doc", "myst"]), "class": directives.class_option, } def create_ref_node( self, rawtext: str, target: str, explicit_title: bool, classes: List[str] ) -> nodes.Node: """Create the reference node.""" raise NotImplementedError def run(self) -> List[nodes.Node]: """Run the directive.""" rawtext = self.arguments[0] target = directives.uri(rawtext) classes = ["sd-sphinx-override", "sd-btn", "sd-text-wrap"] if "color" in self.options: if "outline" in self.options: classes.append(f"sd-btn-outline-{self.options['color']}") else: classes.append(f"sd-btn-{self.options['color']}") if "click-parent" in self.options: classes.append("sd-stretched-link") if "shadow" in self.options: classes.append("sd-shadow-sm") if "class" in self.options: classes.extend(self.options["class"]) node = self.create_ref_node(rawtext, target, bool(self.content), classes) # TODO open in new tab self.set_source_info(node) if "tooltip" in self.options: node["reftitle"] = self.options["tooltip"] # TODO escape HTML if self.content: textnodes, _ = self.state.inline_text( "\n".join(self.content), self.lineno + self.content_offset ) content = nodes.inline("", "") content.extend(textnodes) else: content = nodes.inline(target, target) node.append(content) if "expand" in self.options: grid_container = nodes.inline(classes=["sd-d-grid"]) self.set_source_info(grid_container) grid_container += node node = grid_container # `visit_reference` requires that a reference be inside a `TextElement` parent container = nodes.paragraph(classes=self.options.get("align", [])) self.set_source_info(container) container += node return [container] class ButtonLinkDirective(_ButtonDirective): """A button directive with an external link.""" def create_ref_node( self, rawtext: str, target: str, explicit_title: bool, classes: List[str] ) -> nodes.Node: """Create the reference node.""" return nodes.reference( rawtext, refuri=target, classes=classes, ) class ButtonRefDirective(_ButtonDirective): """A button directive with an internal link.""" def create_ref_node( self, rawtext: str, target: str, explicit_title: bool, classes: List[str] ) -> nodes.Node: """Create the reference node.""" ref_type = self.options.get("ref-type", "any") options = { # TODO the presence of classes raises an error if the link cannot be found "classes": classes, "reftarget": target, "refdoc": self.env.docname, "refdomain": "std" if ref_type in {"ref", "doc"} else "", "reftype": ref_type, "refexplicit": explicit_title, "refwarn": True, } return addnodes.pending_xref(rawtext, **options) sphinx-design-0.5.0/sphinx_design/cards.py000066400000000000000000000242111446046271500206150ustar00rootroot00000000000000import re from typing import List, NamedTuple, Optional, Tuple from docutils import nodes from docutils.parsers.rst import directives from docutils.statemachine import StringList from sphinx import addnodes from sphinx.application import Sphinx from sphinx.util.docutils import SphinxDirective from sphinx.util.logging import getLogger from ._compat import findall from .shared import ( WARNING_TYPE, PassthroughTextElement, create_component, is_component, make_choice, margin_option, text_align, ) LOGGER = getLogger(__name__) DIRECTIVE_NAME_CARD = "card" DIRECTIVE_NAME_CAROUSEL = "card-carousel" REGEX_HEADER = re.compile(r"^\^{3,}\s*$") REGEX_FOOTER = re.compile(r"^\+{3,}\s*$") def setup_cards(app: Sphinx) -> None: """Setup the card components.""" app.add_directive(DIRECTIVE_NAME_CARD, CardDirective) app.add_directive(DIRECTIVE_NAME_CAROUSEL, CardCarouselDirective) class CardContent(NamedTuple): """Split card into header (optional), body, footer (optional). (offset, content) """ body: Tuple[int, StringList] header: Optional[Tuple[int, StringList]] = None footer: Optional[Tuple[int, StringList]] = None class CardDirective(SphinxDirective): """A card component.""" has_content = True required_arguments = 0 optional_arguments = 1 # card title final_argument_whitespace = True option_spec = { "width": make_choice(["auto", "25%", "50%", "75%", "100%"]), "margin": margin_option, "text-align": text_align, "img-top": directives.uri, "img-bottom": directives.uri, "img-background": directives.uri, "img-alt": directives.unchanged, "link": directives.uri, "link-type": make_choice(["url", "any", "ref", "doc"]), "link-alt": directives.unchanged, "shadow": make_choice(["none", "sm", "md", "lg"]), "class-card": directives.class_option, "class-header": directives.class_option, "class-body": directives.class_option, "class-title": directives.class_option, "class-footer": directives.class_option, "class-img-top": directives.class_option, "class-img-bottom": directives.class_option, } def run(self) -> List[nodes.Node]: return [self.create_card(self, self.arguments, self.options)] @classmethod def create_card( cls, inst: SphinxDirective, arguments: Optional[list], options: dict ) -> nodes.Node: """Run the directive.""" # TODO better degradation for latex card_classes = ["sd-card", "sd-sphinx-override"] if "width" in options: card_classes += [f'sd-w-{options["width"].rstrip("%")}'] card_classes += options.get("margin", ["sd-mb-3"]) card_classes += [f"sd-shadow-{options.get('shadow', 'sm')}"] if "link" in options: card_classes += ["sd-card-hover"] card = create_component( "card", card_classes + options.get("text-align", []) + options.get("class-card", []), ) inst.set_source_info(card) img_alt = options.get("img-alt") or "" container = card if "img-background" in options: card.append( nodes.image( uri=options["img-background"], classes=["sd-card-img"], alt=img_alt, ) ) overlay = create_component("card-overlay", ["sd-card-img-overlay"]) inst.set_source_info(overlay) card += overlay container = overlay if "img-top" in options: image_top = nodes.image( "", uri=options["img-top"], alt=img_alt, classes=["sd-card-img-top"] + options.get("class-img-top", []), ) container.append(image_top) components = cls.split_content(inst.content, inst.content_offset) if components.header: container.append( cls._create_component( inst, "header", options, components.header[0], components.header[1] ) ) body = cls._create_component( inst, "body", options, components.body[0], components.body[1] ) if arguments: title = create_component( "card-title", ["sd-card-title", "sd-font-weight-bold"] + options.get("class-title", []), ) textnodes, _ = inst.state.inline_text(arguments[0], inst.lineno) title_container = PassthroughTextElement() title_container.extend(textnodes) inst.set_source_info(title_container) title.append(title_container) body.insert(0, title) container.append(body) if components.footer: container.append( cls._create_component( inst, "footer", options, components.footer[0], components.footer[1] ) ) if "img-bottom" in options: image_bottom = nodes.image( "", uri=options["img-bottom"], alt=img_alt, classes=["sd-card-img-bottom"] + options.get("class-img-bottom", []), ) container.append(image_bottom) if "link" in options: link_container = PassthroughTextElement() _classes = ["sd-stretched-link"] _rawtext = options.get("link-alt") or "" if options.get("link-alt"): _classes.append("sd-hide-link-text") if options.get("link-type", "url") == "url": link = nodes.reference( _rawtext, "", refuri=options["link"], classes=_classes, ) if options.get("link-alt"): link.append(nodes.inline(_rawtext, _rawtext)) else: options = { # TODO the presence of classes raises an error if the link cannot be found "classes": _classes, "reftarget": options["link"], "refdoc": inst.env.docname, "refdomain": "" if options["link-type"] == "any" else "std", "reftype": options["link-type"], "refexplicit": True, "refwarn": True, } link = addnodes.pending_xref( _rawtext, nodes.inline(_rawtext, _rawtext), **options ) inst.set_source_info(link) link_container += link container.append(link_container) return card @staticmethod def split_content(content: StringList, offset: int) -> CardContent: """Split the content into header, body and footer.""" header_index, footer_index, header, footer = None, None, None, None body_offset = offset for index, line in enumerate(content): # match the first occurrence of a header regex if (header_index is None) and REGEX_HEADER.match(line): header_index = index # match the final occurrence of a footer regex if REGEX_FOOTER.match(line): footer_index = index if header_index is not None: header = (offset, content[:header_index]) body_offset += header_index + 1 if footer_index is not None: footer = (offset + footer_index + 1, content[footer_index + 1 :]) body = ( body_offset, content[ (header_index + 1 if header_index is not None else None) : footer_index ], ) return CardContent(body, header, footer) @classmethod def _create_component( cls, inst: SphinxDirective, name: str, options: dict, offset: int, content: StringList, ) -> nodes.container: """Create the header, body, or footer.""" component = create_component( f"card-{name}", [f"sd-card-{name}"] + options.get(f"class-{name}", []) ) inst.set_source_info(component) # TODO set proper lines inst.state.nested_parse(content, offset, component) cls.add_card_child_classes(component) return component @staticmethod def add_card_child_classes(node): """Add classes to specific child nodes.""" for para in findall(node)(nodes.paragraph): para["classes"] = ([] if "classes" not in para else para["classes"]) + [ "sd-card-text" ] # for title in findall(node)(nodes.title): # title["classes"] = ([] if "classes" not in title else title["classes"]) + [ # "sd-card-title" # ] class CardCarouselDirective(SphinxDirective): """A component, which is a container for cards in a single scrollable row.""" has_content = True required_arguments = 1 # columns optional_arguments = 0 option_spec = { "class": directives.class_option, } def run(self) -> List[nodes.Node]: """Run the directive.""" self.assert_has_content() try: cols = make_choice([str(i) for i in range(1, 13)])( self.arguments[0].strip() ) except ValueError as exc: raise self.error(f"Invalid directive argument: {exc}") container = create_component( "card-carousel", ["sd-sphinx-override", "sd-cards-carousel", f"sd-card-cols-{cols}"] + self.options.get("class", []), ) self.set_source_info(container) self.state.nested_parse(self.content, self.content_offset, container) for item in container.children: if not is_component(item, "card"): LOGGER.warning( "All children of a 'card-carousel' " f"should be 'card' [{WARNING_TYPE}.card]", location=item, type=WARNING_TYPE, subtype="card", ) break return [container] sphinx-design-0.5.0/sphinx_design/compiled/000077500000000000000000000000001446046271500207435ustar00rootroot00000000000000sphinx-design-0.5.0/sphinx_design/compiled/__init__.py000066400000000000000000000000001446046271500230420ustar00rootroot00000000000000sphinx-design-0.5.0/sphinx_design/compiled/material-icons_LICENSE000066400000000000000000000011011446046271500247300ustar00rootroot00000000000000 Copyright 2022 Google Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. sphinx-design-0.5.0/sphinx_design/compiled/material-icons_VERSION.txt000066400000000000000000000001521446046271500256160ustar00rootroot00000000000000using github.com/google/material-design-icons v4.0.0-46-gc9e5528 c9e552847da3445dec2e384e9e2e7230efaca468 sphinx-design-0.5.0/sphinx_design/compiled/material_outlined.json000066400000000000000000061175161446046271500253600ustar00rootroot00000000000000{ "no_encryption_gmailerrorred": { "name": "no_encryption_gmailerrorred", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_available": { "name": "event_available", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vpn_lock": { "name": "vpn_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_extra": { "name": "airline_seat_recline_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv_off": { "name": "tv_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_off": { "name": "power_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_encryption": { "name": "no_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "more": { "name": "more", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_paused": { "name": "phone_paused", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_audio": { "name": "bluetooth_audio", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync": { "name": "sync", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power": { "name": "power", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_alt": { "name": "do_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card": { "name": "sd_card", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "imagesearch_roller": { "name": "imagesearch_roller", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms": { "name": "sms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_eta": { "name": "drive_eta", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb": { "name": "do_not_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "priority_high": { "name": "priority_high", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "enhanced_encryption": { "name": "enhanced_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "mms": { "name": "mms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_normal": { "name": "airline_seat_legroom_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms_failed": { "name": "sms_failed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "adb": { "name": "adb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_lock": { "name": "sync_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "live_tv": { "name": "live_tv", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "confirmation_number": { "name": "confirmation_number", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi": { "name": "wifi", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card_alert": { "name": "sd_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "running_with_errors": { "name": "running_with_errors", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_flat_angled": { "name": "airline_seat_flat_angled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_off": { "name": "do_not_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_note": { "name": "event_note", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update": { "name": "system_update", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_chat": { "name": "video_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_locked": { "name": "network_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_reduced": { "name": "airline_seat_legroom_reduced", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_problem": { "name": "sync_problem", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_on": { "name": "do_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_in_talk": { "name": "phone_in_talk", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wc": { "name": "wc", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_forwarded": { "name": "phone_forwarded", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_disabled": { "name": "sync_disabled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_chat": { "name": "voice_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_bluetooth_speaker": { "name": "phone_bluetooth_speaker", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tap_and_play": { "name": "tap_and_play", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_special": { "name": "folder_special", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_on": { "name": "do_not_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_check": { "name": "network_check", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_busy": { "name": "event_busy", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "ondemand_video": { "name": "ondemand_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_locked": { "name": "phone_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_legroom_extra": { "name": "airline_seat_legroom_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "time_to_leave": { "name": "time_to_leave", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb": { "name": "do_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_off": { "name": "directions_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_normal": { "name": "airline_seat_recline_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_missed": { "name": "phone_missed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "personal_video": { "name": "personal_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_tree": { "name": "account_tree", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "support_agent": { "name": "support_agent", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_individual_suite": { "name": "airline_seat_individual_suite", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vibration": { "name": "vibration", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_alt": { "name": "do_not_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "disc_full": { "name": "disc_full", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_alert": { "name": "sim_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_off": { "name": "wifi_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_flat": { "name": "airline_seat_flat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_callback": { "name": "phone_callback", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_off": { "name": "do_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "doorbell": { "name": "doorbell", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "blender": { "name": "blender", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_baby": { "name": "bedroom_baby", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee": { "name": "coffee", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathroom": { "name": "bathroom", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "light": { "name": "light", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_sliding": { "name": "door_sliding", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_indoor": { "name": "camera_indoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_child": { "name": "bedroom_child", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "feed": { "name": "feed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "podcasts": { "name": "podcasts", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "garage": { "name": "garage", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "dining": { "name": "dining", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_back": { "name": "door_back", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair_alt": { "name": "chair_alt", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "living": { "name": "living", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "yard": { "name": "yard", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee_maker": { "name": "coffee_maker", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "shower": { "name": "shower", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "window": { "name": "window", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_front": { "name": "door_front", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair": { "name": "chair", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bed": { "name": "bed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_bar": { "name": "table_bar", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flatware": { "name": "flatware", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_search": { "name": "manage_search", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_outdoor": { "name": "camera_outdoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_restaurant": { "name": "table_restaurant", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bedroom_parent": { "name": "bedroom_parent", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "note": { "name": "note", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k": { "name": "7k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay": { "name": "replay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_queue": { "name": "add_to_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add": { "name": "library_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue_play_next": { "name": "queue_play_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k": { "name": "2k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check_circle": { "name": "playlist_add_check_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "repeat_on": { "name": "repeat_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "1k_plus": { "name": "1k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_10": { "name": "forward_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_remove": { "name": "playlist_remove", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mic": { "name": "mic", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_label": { "name": "video_label", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort_by_alpha": { "name": "sort_by_alpha", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_none": { "name": "mic_none", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_to_action": { "name": "call_to_action", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "3k_plus": { "name": "3k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle": { "name": "play_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "8k_plus": { "name": "8k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "interpreter_mode": { "name": "interpreter_mode", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "play_disabled": { "name": "play_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check": { "name": "playlist_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause": { "name": "pause", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "album": { "name": "album", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k_plus": { "name": "7k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_10": { "name": "replay_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_books": { "name": "library_books", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_previous": { "name": "skip_previous", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_circle_filled": { "name": "replay_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_arrow": { "name": "play_arrow", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "speed": { "name": "speed", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k_plus": { "name": "4k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie": { "name": "movie", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat": { "name": "repeat", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_30": { "name": "forward_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "9k": { "name": "9k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_forward": { "name": "fast_forward", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "lyrics": { "name": "lyrics", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "1k": { "name": "1k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subtitles": { "name": "subtitles", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "recent_actors": { "name": "recent_actors", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_settings": { "name": "video_settings", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "3k": { "name": "3k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_5": { "name": "forward_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_off": { "name": "volume_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "loop": { "name": "loop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_filled": { "name": "play_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle_on": { "name": "shuffle_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k_plus": { "name": "2k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k_plus": { "name": "6k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "explicit": { "name": "explicit", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5g": { "name": "5g", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "audio_file": { "name": "audio_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_from_queue": { "name": "remove_from_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue": { "name": "queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_video": { "name": "music_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_play": { "name": "playlist_play", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stop_circle": { "name": "stop_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "av_timer": { "name": "av_timer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web": { "name": "web", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam_off": { "name": "videocam_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_filled": { "name": "pause_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption": { "name": "closed_caption", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hd": { "name": "hd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio": { "name": "radio", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_5": { "name": "replay_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_manual_record": { "name": "fiber_manual_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_rewind": { "name": "fast_rewind", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_music": { "name": "library_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "equalizer": { "name": "equalizer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset": { "name": "web_asset", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam": { "name": "videocam", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "surround_sound": { "name": "surround_sound", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_library": { "name": "video_library", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "missed_video_call": { "name": "missed_video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "8k": { "name": "8k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5k_plus": { "name": "5k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing": { "name": "hearing", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k": { "name": "6k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "games": { "name": "games", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "slow_motion_video": { "name": "slow_motion_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "branding_watermark": { "name": "branding_watermark", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle": { "name": "shuffle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_off": { "name": "mic_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add_check": { "name": "library_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "featured_play_list": { "name": "featured_play_list", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "snooze": { "name": "snooze", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_outline": { "name": "pause_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "featured_video": { "name": "featured_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "10k": { "name": "10k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_call": { "name": "video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "art_track": { "name": "art_track", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_new": { "name": "fiber_new", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd": { "name": "sd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_smart_record": { "name": "fiber_smart_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_next": { "name": "skip_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_up": { "name": "volume_up", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset_off": { "name": "web_asset_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplay": { "name": "airplay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing_disabled": { "name": "hearing_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add_circle": { "name": "playlist_add_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "queue_music": { "name": "queue_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add": { "name": "playlist_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "5k": { "name": "5k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_interested": { "name": "not_interested", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one_on": { "name": "repeat_one_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_file": { "name": "video_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "9k_plus": { "name": "9k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subscriptions": { "name": "subscriptions", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle": { "name": "pause_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "control_camera": { "name": "control_camera", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_mute": { "name": "volume_mute", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_pin": { "name": "fiber_pin", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "high_quality": { "name": "high_quality", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_down": { "name": "volume_down", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k": { "name": "4k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_30": { "name": "replay_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_off": { "name": "closed_caption_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_outline": { "name": "play_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one": { "name": "repeat_one", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop": { "name": "stop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_disabled": { "name": "closed_caption_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "new_releases": { "name": "new_releases", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_dvr": { "name": "fiber_dvr", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_unchecked": { "name": "radio_button_unchecked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_outline": { "name": "star_outline", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "indeterminate_check_box": { "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_on": { "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_purple500": { "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box_outline_blank": { "name": "check_box_outline_blank", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border_purple500": { "name": "star_border_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box": { "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star": { "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border": { "name": "star_border", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_off": { "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_half": { "name": "star_half", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_checked": { "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point_duplicate": { "name": "control_point_duplicate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_off": { "name": "hdr_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_auto": { "name": "motion_photos_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timelapse": { "name": "timelapse", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_front": { "name": "photo_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_small": { "name": "photo_size_select_small", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "8mp": { "name": "8mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_on": { "name": "raw_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_off": { "name": "motion_photos_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "euro": { "name": "euro", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iso": { "name": "iso", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_back": { "name": "photo_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "19mp": { "name": "19mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "linked_camera": { "name": "linked_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_4": { "name": "filter_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "6mp": { "name": "6mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_auto": { "name": "flash_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_rear": { "name": "camera_rear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_android": { "name": "flip_camera_android", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vignette": { "name": "vignette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_zero": { "name": "exposure_zero", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_2": { "name": "filter_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip": { "name": "flip", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_plus": { "name": "hdr_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_roll": { "name": "camera_roll", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_off": { "name": "face_retouching_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_search": { "name": "image_search", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_ccw": { "name": "rotate_90_degrees_ccw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_album": { "name": "photo_album", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_9": { "name": "filter_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_auto": { "name": "wb_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "monochrome_photos": { "name": "monochrome_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_original": { "name": "crop_original", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime": { "name": "bedtime", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "20mp": { "name": "20mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure": { "name": "exposure", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_creation": { "name": "movie_creation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image": { "name": "image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_franc": { "name": "currency_franc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vrpano": { "name": "vrpano", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections_bookmark": { "name": "collections_bookmark", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_none": { "name": "filter_none", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_off": { "name": "blur_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_pound": { "name": "currency_pound", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "timer": { "name": "timer", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "style": { "name": "style", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_2": { "name": "brightness_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy": { "name": "view_comfy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_fix_off": { "name": "auto_fix_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal": { "name": "panorama_horizontal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama": { "name": "panorama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_cloudy": { "name": "wb_cloudy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_red_eye": { "name": "remove_red_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_natural": { "name": "face_retouching_natural", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_cw": { "name": "rotate_90_degrees_cw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "photo_camera": { "name": "photo_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3": { "name": "timer_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "16mp": { "name": "16mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_motion": { "name": "auto_awesome_motion", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_2": { "name": "exposure_plus_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere": { "name": "panorama_photosphere", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_pause": { "name": "motion_photos_pause", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "adjust": { "name": "adjust", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "straighten": { "name": "straighten", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hevc": { "name": "hevc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_portrait": { "name": "crop_portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_off": { "name": "mic_external_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "2mp": { "name": "2mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere_select": { "name": "panorama_photosphere_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_9_plus": { "name": "filter_9_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_strong": { "name": "hdr_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_aspect_ratio": { "name": "image_aspect_ratio", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo": { "name": "photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_front": { "name": "camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_rotate": { "name": "crop_rotate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_incandescent": { "name": "wb_incandescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_not_supported": { "name": "image_not_supported", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "17mp": { "name": "17mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "12mp": { "name": "12mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop": { "name": "crop", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "22mp": { "name": "22mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dirty_lens": { "name": "dirty_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt_long": { "name": "receipt_long", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "4mp": { "name": "4mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_before": { "name": "navigate_before", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_landscape": { "name": "crop_landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "9mp": { "name": "9mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_on": { "name": "mic_external_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat_auto": { "name": "thermostat_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_6": { "name": "brightness_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera": { "name": "camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps_select": { "name": "60fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome": { "name": "auto_awesome", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flare": { "name": "flare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_back": { "name": "video_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_sunny": { "name": "wb_sunny", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_7": { "name": "brightness_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_library": { "name": "photo_library", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_16_9": { "name": "crop_16_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_on": { "name": "blur_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_a_photo": { "name": "add_a_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_fish_eye": { "name": "panorama_fish_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_4": { "name": "looks_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_off": { "name": "raw_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical": { "name": "panorama_vertical", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_3": { "name": "looks_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks": { "name": "looks", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_off": { "name": "music_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_filter": { "name": "movie_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tonality": { "name": "tonality", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "10mp": { "name": "10mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_5": { "name": "filter_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "23mp": { "name": "23mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_off": { "name": "flash_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yen": { "name": "currency_yen", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "14mp": { "name": "14mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_image": { "name": "hide_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_iridescent": { "name": "wb_iridescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "burst_mode": { "name": "burst_mode", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "slideshow": { "name": "slideshow", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_twilight": { "name": "wb_twilight", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blur_circular": { "name": "blur_circular", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_7_5": { "name": "crop_7_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "5mp": { "name": "5mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_large": { "name": "photo_size_select_large", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_alt": { "name": "camera_alt", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_vintage": { "name": "filter_vintage", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "audiotrack": { "name": "audiotrack", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_on": { "name": "flash_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_3": { "name": "brightness_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_actual": { "name": "photo_size_select_actual", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_ios": { "name": "flip_camera_ios", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_drama": { "name": "filter_drama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag_faces": { "name": "tag_faces", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "leak_add": { "name": "leak_add", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "11mp": { "name": "11mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_1": { "name": "exposure_neg_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_rupee": { "name": "currency_rupee", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "healing": { "name": "healing", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_off": { "name": "timer_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transform": { "name": "transform", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens": { "name": "lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_5": { "name": "looks_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "cases": { "name": "cases", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "18mp": { "name": "18mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_filter": { "name": "photo_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter": { "name": "filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_6": { "name": "filter_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_free": { "name": "crop_free", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_1": { "name": "exposure_plus_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact": { "name": "view_compact", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10": { "name": "timer_10", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_mosaic": { "name": "auto_awesome_mosaic", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "21mp": { "name": "21mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_ruble": { "name": "currency_ruble", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "crop_din": { "name": "crop_din", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on": { "name": "hdr_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_square": { "name": "crop_square", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_on": { "name": "grid_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_bitcoin": { "name": "currency_bitcoin", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autofps_select": { "name": "autofps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit": { "name": "edit", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps_select": { "name": "30fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "colorize": { "name": "colorize", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brush": { "name": "brush", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_video": { "name": "switch_video", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_8": { "name": "filter_8", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_1": { "name": "filter_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "contrast": { "name": "contrast", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "brightness_1": { "name": "brightness_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_two": { "name": "looks_two", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "15mp": { "name": "15mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_paused": { "name": "motion_photos_paused", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "loupe": { "name": "loupe", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature": { "name": "nature", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_shade": { "name": "wb_shade", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "circle": { "name": "circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "landscape": { "name": "landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_5": { "name": "brightness_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mp": { "name": "mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_one": { "name": "looks_one", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_as_pdf": { "name": "picture_as_pdf", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "3mp": { "name": "3mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical_select": { "name": "panorama_vertical_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_b_and_w": { "name": "filter_b_and_w", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_note": { "name": "music_note", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "details": { "name": "details", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_photo_alternate": { "name": "add_photo_alternate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_7": { "name": "filter_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_right": { "name": "rotate_right", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_strong": { "name": "center_focus_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dehaze": { "name": "dehaze", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal_select": { "name": "panorama_horizontal_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime_off": { "name": "bedtime_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "motion_photos_on": { "name": "motion_photos_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compare": { "name": "compare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_3_2": { "name": "crop_3_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature_people": { "name": "nature_people", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tune": { "name": "tune", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_3": { "name": "filter_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "deblur": { "name": "deblur", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "texture": { "name": "texture", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_6": { "name": "looks_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "broken_image": { "name": "broken_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_hdr": { "name": "filter_hdr", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_4": { "name": "brightness_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "incomplete_circle": { "name": "incomplete_circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assistant_photo": { "name": "assistant_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_weak": { "name": "hdr_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_weak": { "name": "center_focus_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_normal": { "name": "auto_fix_normal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_enhanced_select": { "name": "hdr_enhanced_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_center_focus": { "name": "filter_center_focus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_off": { "name": "grid_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle": { "name": "panorama_wide_angle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant": { "name": "assistant", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections": { "name": "collections", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_next": { "name": "navigate_next", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_5_4": { "name": "crop_5_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grain": { "name": "grain", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_linear": { "name": "blur_linear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_lira": { "name": "currency_lira", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "24mp": { "name": "24mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_stories": { "name": "auto_stories", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "palette": { "name": "palette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "color_lens": { "name": "color_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_2": { "name": "exposure_neg_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "13mp": { "name": "13mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "7mp": { "name": "7mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_front": { "name": "video_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yuan": { "name": "currency_yuan", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "portrait": { "name": "portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_photos": { "name": "add_to_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point": { "name": "control_point", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_frames": { "name": "filter_frames", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "shutter_speed": { "name": "shutter_speed", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_tilt_shift": { "name": "filter_tilt_shift", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "logo_dev": { "name": "logo_dev", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leak_remove": { "name": "leak_remove", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle_select": { "name": "panorama_wide_angle_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_left": { "name": "rotate_left", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "gradient": { "name": "gradient", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_camera": { "name": "switch_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "animation": { "name": "animation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_high": { "name": "auto_fix_high", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_stable": { "name": "video_stable", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_left": { "name": "arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu": { "name": "menu", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_left": { "name": "switch_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "legend_toggle": { "name": "legend_toggle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_west": { "name": "south_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_upward": { "name": "arrow_upward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "waterfall_chart": { "name": "waterfall_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_circle_down": { "name": "expand_circle_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_drop_up": { "name": "arrow_drop_up", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "first_page": { "name": "first_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen": { "name": "fullscreen", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_left": { "name": "subdirectory_arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_right": { "name": "chevron_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home_work": { "name": "add_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps_outage": { "name": "apps_outage", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps": { "name": "apps", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "west": { "name": "west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_share": { "name": "offline_share", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right": { "name": "arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_right": { "name": "subdirectory_arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_downward": { "name": "arrow_downward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down_circle": { "name": "arrow_drop_down_circle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more": { "name": "unfold_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "cancel": { "name": "cancel", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "payments": { "name": "payments", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south_east": { "name": "south_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_work": { "name": "home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand_more": { "name": "expand_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "double_arrow": { "name": "double_arrow", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "north_west": { "name": "north_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_settings_alt": { "name": "app_settings_alt", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_less": { "name": "expand_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios": { "name": "arrow_back_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_open": { "name": "menu_open", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "campaign": { "name": "campaign", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "check": { "name": "check", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "refresh": { "name": "refresh", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south": { "name": "south", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_right": { "name": "switch_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_vert": { "name": "more_vert", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_less": { "name": "unfold_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "close": { "name": "close", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant_direction": { "name": "assistant_direction", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_left": { "name": "chevron_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back": { "name": "arrow_back", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "east": { "name": "east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north_east": { "name": "north_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "maps_home_work": { "name": "maps_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "pivot_table_chart": { "name": "pivot_table_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen_exit": { "name": "fullscreen_exit", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_horiz": { "name": "more_horiz", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_forward_ios": { "name": "arrow_forward_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "last_page": { "name": "last_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down": { "name": "arrow_drop_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios_new": { "name": "arrow_back_ios_new", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_forward": { "name": "arrow_forward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north": { "name": "north", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_movies": { "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "festival": { "name": "festival", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "traffic": { "name": "traffic", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "kebab_dining": { "name": "kebab_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrong_location": { "name": "wrong_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "my_location": { "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_scooter": { "name": "electric_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_railway_filled": { "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "crisis_alert": { "name": "crisis_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sailing": { "name": "sailing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "warehouse": { "name": "warehouse", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_share": { "name": "emergency_share", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_stops": { "name": "airline_stops", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nightlife": { "name": "nightlife", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diamond": { "name": "diamond", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant": { "name": "restaurant", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "attractions": { "name": "attractions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway": { "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "breakfast_dining": { "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_see": { "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "store_mall_directory": { "name": "store_mall_directory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_police": { "name": "local_police", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fort": { "name": "fort", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_right": { "name": "u_turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_atm": { "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_road": { "name": "edit_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_check": { "name": "safety_check", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transfer_within_a_station": { "name": "transfer_within_a_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ev_station": { "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hospital": { "name": "local_hospital", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "soup_kitchen": { "name": "soup_kitchen", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_meals": { "name": "no_meals", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "sos": { "name": "sos", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel": { "name": "hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_class": { "name": "flight_class", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "liquor": { "name": "liquor", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_information": { "name": "medical_information", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "plumbing": { "name": "plumbing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "place": { "name": "place", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "lunch_dining": { "name": "lunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_grocery_store": { "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_mall": { "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_right": { "name": "turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_attributes": { "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigation": { "name": "navigation", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_railway": { "name": "directions_railway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "layers_clear": { "name": "layers_clear", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moped": { "name": "moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "beenhere": { "name": "beenhere", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "trip_origin": { "name": "trip_origin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_shipping": { "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "minor_crash": { "name": "minor_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin": { "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "departure_board": { "name": "departure_board", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "agriculture": { "name": "agriculture", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "two_wheeler": { "name": "two_wheeler", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat": { "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_walk": { "name": "directions_walk", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_cafe": { "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "tram": { "name": "tram", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "celebration": { "name": "celebration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_left": { "name": "turn_sharp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_rickshaw": { "name": "electric_rickshaw", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "miscellaneous_services": { "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_listed_location": { "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_bike": { "name": "electric_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tire_repair": { "name": "tire_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry_cleaning": { "name": "dry_cleaning", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electrical_services": { "name": "electrical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_transfer": { "name": "no_transfer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "synagogue": { "name": "synagogue", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway_filled": { "name": "directions_subway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_book": { "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pest_control": { "name": "pest_control", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fork_left": { "name": "fork_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowmobile": { "name": "snowmobile", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_repair": { "name": "car_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "park": { "name": "park", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "church": { "name": "church", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hardware": { "name": "hardware", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bike_scooter": { "name": "bike_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compass_calibration": { "name": "compass_calibration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "dinner_dining": { "name": "dinner_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_taxi": { "name": "local_taxi", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_pizza": { "name": "local_pizza", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_parking": { "name": "local_parking", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me": { "name": "near_me", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in_map": { "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_phone": { "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_drink": { "name": "local_drink", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_right": { "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "maps_ugc": { "name": "maps_ugc", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car": { "name": "directions_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hotel": { "name": "local_hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fire_hydrant_alt": { "name": "fire_hydrant_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_printshop": { "name": "local_printshop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_business": { "name": "add_business", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_car": { "name": "electric_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin_circle": { "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation_alt": { "name": "screen_rotation_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_bar": { "name": "local_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "forest": { "name": "forest", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite": { "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_airport": { "name": "local_airport", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volunteer_activism": { "name": "volunteer_activism", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_fire_department": { "name": "local_fire_department", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "set_meal": { "name": "set_meal", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge": { "name": "merge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_car_wash": { "name": "local_car_wash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "atm": { "name": "atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_play": { "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moving": { "name": "moving", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "360": { "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight": { "name": "flight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "castle": { "name": "castle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "layers": { "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pedal_bike": { "name": "pedal_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_hindu": { "name": "temple_hindu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location_alt": { "name": "edit_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_services": { "name": "medical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_post_office": { "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "map": { "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hail": { "name": "hail", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "signpost": { "name": "signpost", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bakery_dining": { "name": "bakery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "zoom_out_map": { "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_repair_service": { "name": "home_repair_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wine_bar": { "name": "wine_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_left": { "name": "turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant_menu": { "name": "restaurant_menu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_left": { "name": "turn_slight_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "theater_comedy": { "name": "theater_comedy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramen_dining": { "name": "ramen_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_drop": { "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "transit_enterexit": { "name": "transit_enterexit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_crash": { "name": "no_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "egg_alt": { "name": "egg_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location": { "name": "edit_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_laundry_service": { "name": "local_laundry_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_dining": { "name": "local_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit_filled": { "name": "directions_transit_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "brunch_dining": { "name": "brunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "design_services": { "name": "design_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "run_circle": { "name": "run_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency": { "name": "emergency", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_road": { "name": "remove_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_run": { "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bus": { "name": "directions_bus", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_location_alt": { "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "streetview": { "name": "streetview", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "badge": { "name": "badge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_pharmacy": { "name": "local_pharmacy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fork_right": { "name": "fork_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_buddhist": { "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "factory": { "name": "factory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_location": { "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me_disabled": { "name": "near_me_disabled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "car_rental": { "name": "car_rental", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_right": { "name": "turn_sharp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "category": { "name": "category", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "taxi_alert": { "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "bus_alert": { "name": "bus_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "straight": { "name": "straight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rate_review": { "name": "rate_review", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "money": { "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ramp_left": { "name": "ramp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_left": { "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "railway_alert": { "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "cleaning_services": { "name": "cleaning_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "icecream": { "name": "icecream", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "multiple_stop": { "name": "multiple_stop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "handyman": { "name": "handyman", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_of_travel": { "name": "mode_of_travel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramp_right": { "name": "ramp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_right": { "name": "roundabout_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_truck": { "name": "fire_truck", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_bus_filled": { "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_offer": { "name": "local_offer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_moped": { "name": "electric_moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_recording": { "name": "emergency_recording", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_left": { "name": "u_turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_road": { "name": "add_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_gas_station": { "name": "local_gas_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "terrain": { "name": "terrain", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hvac": { "name": "hvac", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_library": { "name": "local_library", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car_filled": { "name": "directions_car_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "museum": { "name": "museum", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_convenience_store": { "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "airlines": { "name": "airlines", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fastfood": { "name": "fastfood", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "stadium": { "name": "stadium", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pest_control_rodent": { "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "route": { "name": "route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delivery_dining": { "name": "delivery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alt_route": { "name": "alt_route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subway": { "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "train": { "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_activity": { "name": "local_activity", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit": { "name": "directions_transit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "egg": { "name": "egg", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_crash": { "name": "car_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mosque": { "name": "mosque", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "takeout_dining": { "name": "takeout_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat_filled": { "name": "directions_boat_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bike": { "name": "directions_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "connecting_airports": { "name": "connecting_airports", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_florist": { "name": "local_florist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions": { "name": "directions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "savings": { "name": "savings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_circle_left": { "name": "arrow_circle_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_bluetooth": { "name": "settings_bluetooth", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "alarm_off": { "name": "alarm_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_all": { "name": "done_all", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbox": { "name": "outbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "polymer": { "name": "polymer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "online_prediction": { "name": "online_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outlet": { "name": "outlet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pending": { "name": "pending", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quickreply": { "name": "quickreply", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "density_large": { "name": "density_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_week": { "name": "view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_exploration": { "name": "data_exploration", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report_problem": { "name": "report_problem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_accessibility": { "name": "settings_accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_scan_wifi": { "name": "perm_scan_wifi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "find_in_page": { "name": "find_in_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "3d_rotation": { "name": "3d_rotation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "production_quantity_limits": { "name": "production_quantity_limits", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_flat": { "name": "trending_flat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_for_work": { "name": "play_for_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_full": { "name": "hourglass_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio": { "name": "spatial_audio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "token": { "name": "token", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flight_takeoff": { "name": "flight_takeoff", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label": { "name": "label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search": { "name": "search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio_off": { "name": "spatial_audio_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_add": { "name": "alarm_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_full": { "name": "join_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle": { "name": "check_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "get_app": { "name": "get_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension_off": { "name": "extension_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "find_replace": { "name": "find_replace", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_basket": { "name": "shopping_basket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "terminal": { "name": "terminal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bookmark_add": { "name": "bookmark_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "javascript": { "name": "javascript", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_schedule_send": { "name": "cancel_schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm": { "name": "alarm", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "plagiarism": { "name": "plagiarism", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compress": { "name": "compress", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_out": { "name": "zoom_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy_alt": { "name": "view_comfy_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_applications": { "name": "settings_applications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_ethernet": { "name": "settings_ethernet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angleup": { "name": "text_rotation_angleup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore_from_trash": { "name": "restore_from_trash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flaky": { "name": "flaky", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_form": { "name": "dynamic_form", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors_off": { "name": "sensors_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update_disabled": { "name": "update_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new_off": { "name": "open_in_new_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copyright": { "name": "copyright", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "room": { "name": "room", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "opacity": { "name": "opacity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "schedule_send": { "name": "schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_travel": { "name": "card_travel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lightbulb_circle": { "name": "lightbulb_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_return": { "name": "assignment_return", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_card": { "name": "add_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_full": { "name": "open_in_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home": { "name": "add_home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "browse_gallery": { "name": "browse_gallery", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unpublished": { "name": "unpublished", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_backup_restore": { "name": "settings_backup_restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab_unselected": { "name": "tab_unselected", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code_off": { "name": "code_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_vertical": { "name": "swipe_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility": { "name": "accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "addchart": { "name": "addchart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_exchange": { "name": "currency_exchange", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "css": { "name": "css", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_sidebar": { "name": "view_sidebar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pending_actions": { "name": "pending_actions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tour": { "name": "tour", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight_round": { "name": "nightlight_round", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_important": { "name": "label_important", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "theaters": { "name": "theaters", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "backup_table": { "name": "backup_table", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "youtube_searched_for": { "name": "youtube_searched_for", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_off": { "name": "edit_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_outline": { "name": "done_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_plan": { "name": "next_plan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rule": { "name": "rule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "paid": { "name": "paid", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark": { "name": "bookmark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_source": { "name": "hide_source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "loyalty": { "name": "loyalty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fingerprint": { "name": "fingerprint", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "store": { "name": "store", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down_off_alt": { "name": "thumb_down_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_left_alt": { "name": "swipe_left_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leaderboard": { "name": "leaderboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_contact_calendar": { "name": "perm_contact_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "api": { "name": "api", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assured_workload": { "name": "assured_workload", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contactless": { "name": "contactless", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pan_tool": { "name": "pan_tool", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread_mailbox": { "name": "markunread_mailbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "preview": { "name": "preview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_alt_off": { "name": "filter_alt_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_input_component": { "name": "settings_input_component", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbond": { "name": "outbond", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work": { "name": "work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down_alt": { "name": "swipe_down_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "saved_search": { "name": "saved_search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_month": { "name": "calendar_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "article": { "name": "article", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "display_settings": { "name": "display_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe": { "name": "swipe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pinch": { "name": "pinch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "balance": { "name": "balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help": { "name": "help", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_page": { "name": "request_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop_2": { "name": "shop_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "watch_later": { "name": "watch_later", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock": { "name": "lock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmarks": { "name": "bookmarks", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_kanban": { "name": "view_kanban", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "history": { "name": "history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "generating_tokens": { "name": "generating_tokens", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_day": { "name": "view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible": { "name": "accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_carousel": { "name": "view_carousel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "percent": { "name": "percent", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "private_connectivity": { "name": "private_connectivity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "table_view": { "name": "table_view", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "favorite": { "name": "favorite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fit_screen": { "name": "fit_screen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_down": { "name": "text_rotation_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "dashboard": { "name": "dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_support": { "name": "contact_support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_border": { "name": "bookmark_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_right": { "name": "arrow_circle_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "track_changes": { "name": "track_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible_forward": { "name": "accessible_forward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_left": { "name": "join_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified": { "name": "verified", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "android": { "name": "android", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "note_add": { "name": "note_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore": { "name": "restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_blocking": { "name": "app_blocking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gif_box": { "name": "gif_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility_new": { "name": "accessibility_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "reorder": { "name": "reorder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_turned_in": { "name": "assignment_turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_seat": { "name": "event_seat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_today": { "name": "calendar_today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart": { "name": "shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_button": { "name": "smart_button", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_composite": { "name": "settings_input_composite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up": { "name": "thumb_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "ads_click": { "name": "ads_click", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified_user": { "name": "verified_user", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_membership": { "name": "card_membership", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_overscan": { "name": "settings_overscan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in": { "name": "zoom_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code": { "name": "code", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_right": { "name": "join_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_task": { "name": "add_task", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_in_ar": { "name": "view_in_ar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_identity": { "name": "perm_identity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "install_mobile": { "name": "install_mobile", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turned_in": { "name": "turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_medium": { "name": "density_medium", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rocket": { "name": "rocket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_end": { "name": "pin_end", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle_outline": { "name": "check_circle_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_data_setting": { "name": "perm_data_setting", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_phone_msg": { "name": "perm_phone_msg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "http": { "name": "http", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_right_alt": { "name": "swipe_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_out": { "name": "all_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "exit_to_app": { "name": "exit_to_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "repartition": { "name": "repartition", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "euro_symbol": { "name": "euro_symbol", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "maximize": { "name": "maximize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_land": { "name": "flight_land", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "record_voice_over": { "name": "record_voice_over", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "login": { "name": "login", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_reset": { "name": "lock_reset", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "source": { "name": "source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tips_and_updates": { "name": "tips_and_updates", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_center": { "name": "help_center", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "eject": { "name": "eject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_column": { "name": "view_column", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_box": { "name": "account_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fax": { "name": "fax", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schedule": { "name": "schedule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab": { "name": "tab", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_ind": { "name": "assignment_ind", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "important_devices": { "name": "important_devices", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "face": { "name": "face", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors": { "name": "sensors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "commit": { "name": "commit", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "list": { "name": "list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_stream": { "name": "view_stream", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_left": { "name": "swipe_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_right": { "name": "swipe_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_full": { "name": "width_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_invoke": { "name": "pin_invoke", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand": { "name": "expand", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors": { "name": "invert_colors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "batch_prediction": { "name": "batch_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_aware": { "name": "noise_aware", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "eco": { "name": "eco", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_open": { "name": "lock_open", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_remove": { "name": "bookmark_remove", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_late": { "name": "assignment_late", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "upgrade": { "name": "upgrade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rowing": { "name": "rowing", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbound": { "name": "outbound", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_cell": { "name": "settings_cell", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_device_information": { "name": "perm_device_information", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_alt": { "name": "sync_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_browser": { "name": "open_in_browser", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "feedback": { "name": "feedback", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop": { "name": "shop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_shopping_cart": { "name": "add_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_tracking": { "name": "spatial_tracking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_outline": { "name": "help_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book": { "name": "book", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "launch": { "name": "launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_quilt": { "name": "view_quilt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "support": { "name": "support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_accounts": { "name": "no_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_day": { "name": "calendar_view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture_alt": { "name": "picture_in_picture_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_off": { "name": "work_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "https": { "name": "https", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility_off": { "name": "visibility_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_timeline": { "name": "view_timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_done": { "name": "remove_done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pageview": { "name": "pageview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_access_shortcut_add": { "name": "switch_access_shortcut_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel_class": { "name": "hotel_class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hourglass_disabled": { "name": "hourglass_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_split": { "name": "horizontal_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture": { "name": "picture_in_picture", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grade": { "name": "grade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right_alt": { "name": "arrow_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "webhook": { "name": "webhook", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb": { "name": "lightbulb", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_history": { "name": "work_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "close_fullscreen": { "name": "close_fullscreen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_translate": { "name": "g_translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_work": { "name": "group_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book_online": { "name": "book_online", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "published_with_changes": { "name": "published_with_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pets": { "name": "pets", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_pin": { "name": "offline_pin", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_toggle_off": { "name": "history_toggle_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_normal": { "name": "width_normal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "new_label": { "name": "new_label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_headline": { "name": "view_headline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "send_and_archive": { "name": "send_and_archive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_unlock": { "name": "face_unlock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flutter_dash": { "name": "flutter_dash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "speaker_notes_off": { "name": "speaker_notes_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_forever": { "name": "delete_forever", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart_checkout": { "name": "shopping_cart_checkout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "integration_instructions": { "name": "integration_instructions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "transcribe": { "name": "transcribe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "power_settings_new": { "name": "power_settings_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_empty": { "name": "hourglass_empty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "translate": { "name": "translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down": { "name": "thumb_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_off": { "name": "label_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_rate": { "name": "star_rate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "18": { "width": 18, "path": "" } } }, "view_module": { "name": "view_module", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "free_cancellation": { "name": "free_cancellation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_alt": { "name": "filter_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card_off": { "name": "credit_card_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "on_device_training": { "name": "on_device_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "date_range": { "name": "date_range", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_up": { "name": "arrow_circle_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "space_dashboard": { "name": "space_dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subtitles_off": { "name": "subtitles_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gif": { "name": "gif", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horizontal_circle": { "name": "swap_horizontal_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_hdmi": { "name": "settings_input_hdmi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_by_default": { "name": "disabled_by_default", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_page": { "name": "contact_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_large": { "name": "donut_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_list": { "name": "view_list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update": { "name": "update", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down": { "name": "swipe_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_access_shortcut": { "name": "switch_access_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "aspect_ratio": { "name": "aspect_ratio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_notes": { "name": "speaker_notes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_giftcard": { "name": "card_giftcard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_alt": { "name": "highlight_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_up": { "name": "swipe_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_back": { "name": "flip_to_back", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spellcheck": { "name": "spellcheck", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_repeat": { "name": "event_repeat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swap_vertical_circle": { "name": "swap_vertical_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "troubleshoot": { "name": "troubleshoot", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_protected_setup": { "name": "wifi_protected_setup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_cozy": { "name": "view_cozy", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "build_circle": { "name": "build_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unfold_less_double": { "name": "unfold_less_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shop_two": { "name": "shop_two", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension": { "name": "extension", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horiz": { "name": "swap_horiz", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervised_user_circle": { "name": "supervised_user_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore_off": { "name": "explore_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_down": { "name": "trending_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "segment": { "name": "segment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toc": { "name": "toc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_inner": { "name": "join_inner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_clock": { "name": "lock_clock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "analytics": { "name": "analytics", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "task_alt": { "name": "task_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_up": { "name": "text_rotate_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_bolt": { "name": "offline_bolt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "output": { "name": "output", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_inbox": { "name": "all_inbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "home": { "name": "home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_small": { "name": "density_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "abc": { "name": "abc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "install_desktop": { "name": "install_desktop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_on": { "name": "alarm_on", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete": { "name": "delete", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_agenda": { "name": "view_agenda", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autorenew": { "name": "autorenew", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angledown": { "name": "text_rotation_angledown", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_shortcut": { "name": "app_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "circle_notifications": { "name": "circle_notifications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gavel": { "name": "gavel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "minimize": { "name": "minimize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_array": { "name": "view_array", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dangerous": { "name": "dangerous", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_calendar": { "name": "edit_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "event": { "name": "event", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_accessible": { "name": "not_accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wysiwyg": { "name": "wysiwyg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grading": { "name": "grading", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "model_training": { "name": "model_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite_alt": { "name": "satellite_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cached": { "name": "cached", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore": { "name": "explore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info": { "name": "info", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fact_check": { "name": "fact_check", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_with": { "name": "open_with", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_split": { "name": "vertical_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "anchor": { "name": "anchor", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls_off": { "name": "hls_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_started": { "name": "not_started", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "favorite_border": { "name": "favorite_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "build": { "name": "build", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls": { "name": "hls", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "print": { "name": "print", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_camera_mic": { "name": "perm_camera_mic", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bug_report": { "name": "bug_report", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_added": { "name": "bookmark_added", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumbs_up_down": { "name": "thumbs_up_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more_double": { "name": "unfold_more_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "logout": { "name": "logout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_accounts": { "name": "manage_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "payment": { "name": "payment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rocket_launch": { "name": "rocket_launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_weight": { "name": "line_weight", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_over_off": { "name": "voice_over_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_off": { "name": "highlight_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_thresholding": { "name": "data_thresholding", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_front": { "name": "flip_to_front", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "today": { "name": "today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility": { "name": "visibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_as_unread": { "name": "mark_as_unread", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restore_page": { "name": "restore_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_mark": { "name": "question_mark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comment_bank": { "name": "comment_bank", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "input": { "name": "input", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_remote": { "name": "settings_remote", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_visible": { "name": "disabled_visible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delete_outline": { "name": "delete_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_vertical": { "name": "text_rotate_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_bag": { "name": "shopping_bag", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt": { "name": "receipt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_answer": { "name": "question_answer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toll": { "name": "toll", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_antenna": { "name": "settings_input_antenna", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "try": { "name": "try", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rounded_corner": { "name": "rounded_corner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "touch_app": { "name": "touch_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_drive": { "name": "add_to_drive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dashboard_customize": { "name": "dashboard_customize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done": { "name": "done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "php": { "name": "php", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_rotation_none": { "name": "text_rotation_none", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "admin_panel_settings": { "name": "admin_panel_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "backup": { "name": "backup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_outward": { "name": "arrow_outward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_control_off": { "name": "noise_control_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "query_builder": { "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_power": { "name": "settings_power", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_outline": { "name": "work_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_week": { "name": "calendar_view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_brightness": { "name": "settings_brightness", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance_wallet": { "name": "account_balance_wallet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "commute": { "name": "commute", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings": { "name": "settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "subject": { "name": "subject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "compare_arrows": { "name": "compare_arrows", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assessment": { "name": "assessment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "language": { "name": "language", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pregnant_woman": { "name": "pregnant_woman", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card": { "name": "credit_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_voice": { "name": "settings_voice", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_vert": { "name": "swap_vert", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "html": { "name": "html", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_style": { "name": "line_style", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pan_tool_alt": { "name": "pan_tool_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "description": { "name": "description", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_present": { "name": "file_present", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "stars": { "name": "stars", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment": { "name": "assignment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_enhance": { "name": "camera_enhance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up_off_alt": { "name": "thumb_up_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sticky_note_2": { "name": "sticky_note_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_history": { "name": "manage_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "announcement": { "name": "announcement", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_month": { "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_shopping_cart": { "name": "remove_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_history": { "name": "change_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "drag_indicator": { "name": "drag_indicator", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "privacy_tip": { "name": "privacy_tip", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_circle": { "name": "account_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chrome_reader_mode": { "name": "chrome_reader_mode", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_ping": { "name": "network_ping", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "perm_media": { "name": "perm_media", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "timeline": { "name": "timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search_off": { "name": "search_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_up_alt": { "name": "swipe_up_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "123": { "name": "123", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new": { "name": "open_in_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_returned": { "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_phone": { "name": "settings_phone", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance": { "name": "account_balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact_alt": { "name": "view_compact_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dns": { "name": "dns", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mediation": { "name": "mediation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_small": { "name": "donut_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "redeem": { "name": "redeem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "turned_in_not": { "name": "turned_in_not", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update_alt": { "name": "system_update_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "class": { "name": "class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_up": { "name": "trending_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_svideo": { "name": "settings_input_svideo", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervisor_account": { "name": "supervisor_account", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_person": { "name": "lock_person", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_circle_down": { "name": "arrow_circle_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_wide": { "name": "width_wide", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "desktop_mac": { "name": "desktop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_chromebook": { "name": "laptop_chromebook", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_down": { "name": "keyboard_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "mouse": { "name": "mouse", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_command_key": { "name": "keyboard_command_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_left": { "name": "keyboard_double_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_option_key": { "name": "keyboard_option_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_return": { "name": "keyboard_return", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_alt": { "name": "keyboard_alt", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "cast_for_education": { "name": "cast_for_education", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink": { "name": "phonelink", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_updated": { "name": "browser_updated", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "earbuds_battery": { "name": "earbuds_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board_off": { "name": "developer_board_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "start": { "name": "start", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "headset": { "name": "headset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset": { "name": "videogame_asset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor": { "name": "monitor", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_right": { "name": "keyboard_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "scanner": { "name": "scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch": { "name": "watch", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board": { "name": "developer_board", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_iphone": { "name": "phone_iphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_android": { "name": "tablet_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_mac": { "name": "tablet_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "router": { "name": "router", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones_battery": { "name": "headphones_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_backspace": { "name": "keyboard_backspace", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_toy": { "name": "smart_toy", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "gamepad": { "name": "gamepad", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "adf_scanner": { "name": "adf_scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "laptop_mac": { "name": "laptop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_not_supported": { "name": "browser_not_supported", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast_connected": { "name": "cast_connected", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv": { "name": "tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_windows": { "name": "laptop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_control_key": { "name": "keyboard_control_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "smart_display": { "name": "smart_display", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones": { "name": "headphones", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_android": { "name": "phone_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_up": { "name": "keyboard_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_max": { "name": "home_max", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smartphone": { "name": "smartphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_tab": { "name": "keyboard_tab", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch_off": { "name": "watch_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast": { "name": "cast", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "point_of_sale": { "name": "point_of_sale", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "computer": { "name": "computer", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "device_unknown": { "name": "device_unknown", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "memory": { "name": "memory", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_voice": { "name": "keyboard_voice", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard": { "name": "keyboard", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "earbuds": { "name": "earbuds", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "security": { "name": "security", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_hide": { "name": "keyboard_hide", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_input": { "name": "power_input", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_mini": { "name": "home_mini", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_other": { "name": "devices_other", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_mic": { "name": "headset_mic", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset_off": { "name": "videogame_asset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dock": { "name": "dock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_capslock": { "name": "keyboard_capslock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_off": { "name": "headset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_right": { "name": "keyboard_double_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_off": { "name": "phonelink_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card": { "name": "sim_card", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_left": { "name": "keyboard_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_up": { "name": "keyboard_double_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "toys": { "name": "toys", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_down": { "name": "keyboard_double_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_hub": { "name": "device_hub", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_group": { "name": "speaker_group", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_windows": { "name": "desktop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "connected_tv": { "name": "connected_tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet": { "name": "tablet", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop": { "name": "laptop", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker": { "name": "speaker", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_screen": { "name": "smart_screen", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "portable_wifi_off": { "name": "portable_wifi_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "textsms": { "name": "textsms", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_split": { "name": "call_split", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_export": { "name": "import_export", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone": { "name": "phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "3p": { "name": "3p", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "clear_all": { "name": "clear_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "dialpad": { "name": "dialpad", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat": { "name": "chat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_search": { "name": "person_search", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comments_disabled": { "name": "comments_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key": { "name": "vpn_key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "unsubscribe": { "name": "unsubscribe", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_setup": { "name": "phonelink_setup", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "live_help": { "name": "live_help", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "present_to_all": { "name": "present_to_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call": { "name": "call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "domain_disabled": { "name": "domain_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_portrait": { "name": "stay_current_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_access_disabled": { "name": "desktop_access_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_share": { "name": "screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_phone": { "name": "speaker_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_unread": { "name": "mark_email_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nat": { "name": "nat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_ring": { "name": "phonelink_ring", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_read": { "name": "mark_email_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "email": { "name": "email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "print_disabled": { "name": "print_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_chat_read": { "name": "mark_chat_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_made": { "name": "call_made", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_landscape": { "name": "stay_primary_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code": { "name": "qr_code", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_unread_chat_alt": { "name": "mark_unread_chat_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "spoke": { "name": "spoke", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chat_bubble": { "name": "chat_bubble", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "cell_tower": { "name": "cell_tower", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "document_scanner": { "name": "document_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key_off": { "name": "vpn_key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contacts": { "name": "contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "list_alt": { "name": "list_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_lock": { "name": "phonelink_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_enabled": { "name": "phone_enabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "co_present": { "name": "co_present", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_verification": { "name": "domain_verification", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied_alt": { "name": "sentiment_satisfied_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_disabled": { "name": "phone_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_ic_call": { "name": "add_ic_call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_on": { "name": "location_on", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_disabled": { "name": "person_add_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "business": { "name": "business", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_end": { "name": "call_end", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code_scanner": { "name": "qr_code_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_erase": { "name": "phonelink_erase", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed": { "name": "call_missed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_registration": { "name": "app_registration", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hub": { "name": "hub", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause_presentation": { "name": "pause_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop_screen_share": { "name": "stop_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "sip": { "name": "sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_lock": { "name": "mail_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_merge": { "name": "call_merge", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_bottom": { "name": "hourglass_bottom", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dialer_sip": { "name": "dialer_sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "comment": { "name": "comment", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_received": { "name": "call_received", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling": { "name": "wifi_calling", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forum": { "name": "forum", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "rtt": { "name": "rtt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_to_inbox": { "name": "forward_to_inbox", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_time_extension": { "name": "send_time_extension", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_presentation": { "name": "cancel_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_mail": { "name": "contact_mail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat_bubble_outline": { "name": "chat_bubble_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_phone": { "name": "contact_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_off": { "name": "location_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed_outgoing": { "name": "call_missed_outgoing", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_emergency": { "name": "contact_emergency", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "duo": { "name": "duo", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_portrait": { "name": "stay_primary_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_sim": { "name": "no_sim", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "message": { "name": "message", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "read_more": { "name": "read_more", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rss_feed": { "name": "rss_feed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_calls": { "name": "swap_calls", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_top": { "name": "hourglass_top", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "voicemail": { "name": "voicemail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_landscape": { "name": "stay_current_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_outline": { "name": "mail_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "ring_volume": { "name": "ring_volume", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors_off": { "name": "invert_colors_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cell_wifi": { "name": "cell_wifi", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_screen_share": { "name": "mobile_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_contacts": { "name": "import_contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "alternate_email": { "name": "alternate_email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "key_off": { "name": "key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_chat_unread": { "name": "mark_chat_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "key": { "name": "key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "qr_code_2": { "name": "qr_code_2", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_time": { "name": "more_time", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grass": { "name": "grass", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bento": { "name": "bento", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "backpack": { "name": "backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "other_houses": { "name": "other_houses", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iron": { "name": "iron", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "escalator_warning": { "name": "escalator_warning", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cottage": { "name": "cottage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "golf_course": { "name": "golf_course", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_touch": { "name": "do_not_touch", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cabin": { "name": "cabin", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_photography": { "name": "no_photography", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vaping_rooms": { "name": "vaping_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "room_preferences": { "name": "room_preferences", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "fitness_center": { "name": "fitness_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_drinks": { "name": "no_drinks", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathtub": { "name": "bathtub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hot_tub": { "name": "hot_tub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "night_shelter": { "name": "night_shelter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "desk": { "name": "desk", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wash": { "name": "wash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_friendly": { "name": "child_friendly", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "soap": { "name": "soap", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoke_free": { "name": "smoke_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "kitchen": { "name": "kitchen", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stroller": { "name": "stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "crib": { "name": "crib", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "umbrella": { "name": "umbrella", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "beach_access": { "name": "beach_access", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "pool": { "name": "pool", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "gite": { "name": "gite", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_extinguisher": { "name": "fire_extinguisher", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoking_rooms": { "name": "smoking_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rv_hookup": { "name": "rv_hookup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "all_inclusive": { "name": "all_inclusive", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "family_restroom": { "name": "family_restroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stairs": { "name": "stairs", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tty": { "name": "tty", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "escalator": { "name": "escalator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_meeting_room": { "name": "no_meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_step": { "name": "do_not_step", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "water_damage": { "name": "water_damage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "carpenter": { "name": "carpenter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "checkroom": { "name": "checkroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_flash": { "name": "no_flash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "meeting_room": { "name": "meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "food_bank": { "name": "food_bank", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tapas": { "name": "tapas", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "roofing": { "name": "roofing", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "storefront": { "name": "storefront", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "room_service": { "name": "room_service", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "balcony": { "name": "balcony", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "countertops": { "name": "countertops", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "foundation": { "name": "foundation", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "holiday_village": { "name": "holiday_village", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "charging_station": { "name": "charging_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "airport_shuttle": { "name": "airport_shuttle", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_food": { "name": "no_food", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "houseboat": { "name": "houseboat", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "elevator": { "name": "elevator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "ac_unit": { "name": "ac_unit", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "house_siding": { "name": "house_siding", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_care": { "name": "child_care", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "business_center": { "name": "business_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rice_bowl": { "name": "rice_bowl", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_backpack": { "name": "no_backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vape_free": { "name": "vape_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "house": { "name": "house", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "baby_changing_station": { "name": "baby_changing_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_stroller": { "name": "no_stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "microwave": { "name": "microwave", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_cell": { "name": "no_cell", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "wheelchair_pickup": { "name": "wheelchair_pickup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "casino": { "name": "casino", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bungalow": { "name": "bungalow", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chalet": { "name": "chalet", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry": { "name": "dry", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_bar": { "name": "sports_bar", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "villa": { "name": "villa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apartment": { "name": "apartment", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fence": { "name": "fence", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "corporate_fare": { "name": "corporate_fare", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "free_breakfast": { "name": "free_breakfast", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "spa": { "name": "spa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_done": { "name": "cloud_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "downloading": { "name": "downloading", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_quote": { "name": "request_quote", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_rename_outline": { "name": "drive_file_rename_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_zip": { "name": "folder_zip", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_circle": { "name": "cloud_circle", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "rule_folder": { "name": "rule_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder": { "name": "folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload_file": { "name": "upload_file", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_overline": { "name": "format_overline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_delete": { "name": "folder_delete", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drive_file_move": { "name": "drive_file_move", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_move_rtl": { "name": "drive_file_move_rtl", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_download": { "name": "cloud_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_upload": { "name": "cloud_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attachment": { "name": "attachment", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "newspaper": { "name": "newspaper", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "create_new_folder": { "name": "create_new_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud": { "name": "cloud", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_snippet": { "name": "text_snippet", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download": { "name": "file_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_copy": { "name": "folder_copy", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "difference": { "name": "difference", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_off": { "name": "cloud_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_sync": { "name": "cloud_sync", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_off": { "name": "folder_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_download_done": { "name": "file_download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_queue": { "name": "cloud_queue", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload": { "name": "upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_view": { "name": "grid_view", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_shared": { "name": "folder_shared", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download_done": { "name": "download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "topic": { "name": "topic", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_folder_upload": { "name": "drive_folder_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces": { "name": "workspaces", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "download_for_offline": { "name": "download_for_offline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_email": { "name": "attach_email", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_open": { "name": "folder_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download_off": { "name": "file_download_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "approval": { "name": "approval", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download": { "name": "download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_open": { "name": "file_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_upload": { "name": "file_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "snippet_folder": { "name": "snippet_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_full": { "name": "battery_charging_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "note_alt": { "name": "note_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_wifi": { "name": "network_wifi", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_medium": { "name": "brightness_medium", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_low": { "name": "brightness_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_usage": { "name": "data_usage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_off": { "name": "data_saver_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "share_location": { "name": "share_location", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_not_fixed": { "name": "gps_not_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_high": { "name": "edgesensor_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth": { "name": "bluetooth", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "shortcut": { "name": "shortcut", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_std": { "name": "battery_std", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_score": { "name": "sports_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarm": { "name": "access_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_4": { "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_0_bar": { "name": "signal_cellular_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "restart_alt": { "name": "restart_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_2_bar": { "name": "wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grid_goldenratio": { "name": "grid_goldenratio", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error_rounded": { "name": "wifi_tethering_error_rounded", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "price_change": { "name": "price_change", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_portrait": { "name": "screen_lock_portrait", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_4_bar": { "name": "signal_cellular_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_active": { "name": "airplanemode_active", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "price_check": { "name": "price_check", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt": { "name": "signal_cellular_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor_weight": { "name": "monitor_weight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "tungsten": { "name": "tungsten", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto": { "name": "hdr_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dvr": { "name": "dvr", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_fold": { "name": "devices_fold", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_night": { "name": "mode_night", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cameraswitch": { "name": "cameraswitch", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_2_bar": { "name": "battery_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_alt_1_bar": { "name": "signal_cellular_alt_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "punch_clock": { "name": "punch_clock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "e_mobiledata": { "name": "e_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storage": { "name": "storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "pin": { "name": "pin", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar_lock": { "name": "signal_wifi_4_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_standby": { "name": "mode_standby", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_cell": { "name": "network_cell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps": { "name": "60fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_3x3": { "name": "grid_3x3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication_liquid": { "name": "medication_liquid", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_thermostat": { "name": "device_thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation": { "name": "screen_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_rotation": { "name": "screen_lock_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_searching": { "name": "location_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_off": { "name": "flashlight_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_mobiledata": { "name": "g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_4_bar": { "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pattern": { "name": "pattern", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_searching": { "name": "bluetooth_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot_monitor": { "name": "screenshot_monitor", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quiz": { "name": "quiz", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "air": { "name": "air", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "phishing": { "name": "phishing", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "summarize": { "name": "summarize", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "password": { "name": "password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_4": { "name": "signal_wifi_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nfc": { "name": "nfc", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_1_bar": { "name": "battery_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reviews": { "name": "reviews", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_good": { "name": "gpp_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_low": { "name": "edgesensor_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "macro_off": { "name": "macro_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hdr_off_select": { "name": "hdr_off_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot": { "name": "screenshot", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_suggest": { "name": "settings_suggest", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_error": { "name": "nearby_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "light_mode": { "name": "light_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_2_bar": { "name": "network_wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_alarm": { "name": "add_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sell": { "name": "sell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_score": { "name": "credit_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_plus_mobiledata": { "name": "lte_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_off": { "name": "gps_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_fixed": { "name": "gps_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_landscape": { "name": "screen_lock_landscape", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_mobiledata": { "name": "h_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering": { "name": "wifi_tethering", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_friendly": { "name": "mobile_friendly", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_off": { "name": "mobile_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarms": { "name": "access_alarms", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "3g_mobiledata": { "name": "3g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto_select": { "name": "hdr_auto_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_4_bar": { "name": "signal_wifi_statusbar_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_system_daydream": { "name": "settings_system_daydream", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_bad": { "name": "gpp_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_off": { "name": "media_bluetooth_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_disabled": { "name": "bluetooth_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_4_bar": { "name": "battery_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_3_bar": { "name": "network_wifi_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_1_bar": { "name": "network_wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ad_units": { "name": "ad_units", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps": { "name": "30fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "task": { "name": "task", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_warning": { "name": "security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication": { "name": "medication", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat": { "name": "thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dark_mode": { "name": "dark_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_1_bar": { "name": "wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fluorescent": { "name": "fluorescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10_select": { "name": "timer_10_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_null": { "name": "signal_cellular_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_saver": { "name": "battery_saver", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on_select": { "name": "hdr_on_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_bad": { "name": "signal_wifi_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bloodtype": { "name": "bloodtype", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_on": { "name": "data_saver_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_good": { "name": "security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_off": { "name": "signal_cellular_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_mode": { "name": "developer_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices": { "name": "devices", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update": { "name": "security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flourescent": { "name": "flourescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_inactive": { "name": "airplanemode_inactive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "4g_plus_mobiledata": { "name": "4g_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "rsvp": { "name": "rsvp", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_mobiledata": { "name": "lte_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cable": { "name": "cable", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wallpaper": { "name": "wallpaper", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_high": { "name": "brightness_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "remember_me": { "name": "remember_me", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "splitscreen": { "name": "splitscreen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_lesson": { "name": "play_lesson", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_3": { "name": "wifi_calling_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb_off": { "name": "usb_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_0_bar": { "name": "signal_wifi_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lan": { "name": "lan", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "monitor_heart": { "name": "monitor_heart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "do_not_disturb_on_total_silence": { "name": "do_not_disturb_on_total_silence", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_alert": { "name": "battery_alert", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "1x_mobiledata": { "name": "1x_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "aod": { "name": "aod", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_0_bar": { "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_disabled": { "name": "location_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_on": { "name": "flashlight_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_on": { "name": "media_bluetooth_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_storage": { "name": "sd_storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_6_bar": { "name": "battery_6_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_full": { "name": "battery_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_nodata": { "name": "signal_cellular_nodata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_password": { "name": "wifi_password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "access_time_filled": { "name": "access_time_filled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_maybe": { "name": "gpp_maybe", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "ssid_chart": { "name": "ssid_chart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "widgets": { "name": "widgets", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_off": { "name": "nearby_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error": { "name": "wifi_tethering_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_channel": { "name": "wifi_channel", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reset_tv": { "name": "reset_tv", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_time": { "name": "access_time", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight": { "name": "nightlight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt_2_bar": { "name": "signal_cellular_alt_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_0_bar": { "name": "battery_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_lock": { "name": "wifi_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_null": { "name": "signal_wifi_statusbar_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_off": { "name": "wifi_tethering_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb": { "name": "usb", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3_select": { "name": "timer_3_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "water": { "name": "water", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_download": { "name": "sim_card_download", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_no_sim": { "name": "signal_cellular_no_sim", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_bad": { "name": "fmd_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update_warning": { "name": "system_security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dataset": { "name": "dataset", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_5_bar": { "name": "battery_5_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dataset_linked": { "name": "dataset_linked", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_to_mobile": { "name": "send_to_mobile", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobiledata_off": { "name": "mobiledata_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_unknown": { "name": "battery_unknown", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storm": { "name": "storm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_plus_mobiledata": { "name": "h_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update": { "name": "system_security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens_blur": { "name": "lens_blur", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_connected": { "name": "bluetooth_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_drive": { "name": "bluetooth_drive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_auto": { "name": "brightness_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_good": { "name": "fmd_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "4g_mobiledata": { "name": "4g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_find": { "name": "wifi_find", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_3_bar": { "name": "battery_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplane_ticket": { "name": "airplane_ticket", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar": { "name": "signal_wifi_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_home_screen": { "name": "add_to_home_screen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_search_desktop": { "name": "screen_search_desktop", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "discount": { "name": "discount", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "system_security_update_good": { "name": "system_security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_4x4": { "name": "grid_4x4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "r_mobiledata": { "name": "r_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "graphic_eq": { "name": "graphic_eq", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "radar": { "name": "radar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_off": { "name": "signal_wifi_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_delete": { "name": "auto_delete", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "error_outline": { "name": "error_outline", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "notification_important": { "name": "notification_important", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_alert": { "name": "add_alert", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning": { "name": "warning", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "error": { "name": "error", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning_amber": { "name": "warning_amber", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "broadcast_on_home": { "name": "broadcast_on_home", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wind_power": { "name": "wind_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heat_pump": { "name": "heat_pump", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains_closed": { "name": "curtains_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane_tank": { "name": "propane_tank", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades_closed": { "name": "vertical_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades": { "name": "vertical_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield_moon": { "name": "shield_moon", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "broadcast_on_personal": { "name": "broadcast_on_personal", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nest_cam_wired_stand": { "name": "nest_cam_wired_stand", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_window": { "name": "sensor_window", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds": { "name": "blinds", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gas_meter": { "name": "gas_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "solar_power": { "name": "solar_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains": { "name": "curtains", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_occupied": { "name": "sensor_occupied", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades_closed": { "name": "roller_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "oil_barrel": { "name": "oil_barrel", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "energy_savings_leaf": { "name": "energy_savings_leaf", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_bolt": { "name": "electric_bolt", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane": { "name": "propane", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_meter": { "name": "electric_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds_closed": { "name": "blinds_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades": { "name": "roller_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_fan_off": { "name": "mode_fan_off", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_mode": { "name": "auto_mode", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_door": { "name": "sensor_door", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hiking": { "name": "hiking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "single_bed": { "name": "single_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_outline": { "name": "person_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "man": { "name": "man", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "male": { "name": "male", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "psychology_alt": { "name": "psychology_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tsunami": { "name": "tsunami", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pages": { "name": "pages", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "roller_skating": { "name": "roller_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano": { "name": "piano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scale": { "name": "scale", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "masks": { "name": "masks", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_symbols": { "name": "emoji_symbols", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_outline": { "name": "people_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "back_hand": { "name": "back_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatshot": { "name": "whatshot", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "diversity_3": { "name": "diversity_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hive": { "name": "hive", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_esports": { "name": "sports_esports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "precision_manufacturing": { "name": "precision_manufacturing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "real_estate_agent": { "name": "real_estate_agent", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cruelty_free": { "name": "cruelty_free", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_flags": { "name": "emoji_flags", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "follow_the_signs": { "name": "follow_the_signs", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly_woman": { "name": "elderly_woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_divider": { "name": "safety_divider", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt": { "name": "person_add_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_alt": { "name": "people_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "kitesurfing": { "name": "kitesurfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "waving_hand": { "name": "waving_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "woman": { "name": "woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scuba_diving": { "name": "scuba_diving", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person": { "name": "person", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "fireplace": { "name": "fireplace", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "deck": { "name": "deck", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "boy": { "name": "boy", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_account": { "name": "switch_account", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "woman_2": { "name": "woman_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_3": { "name": "man_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notification_add": { "name": "notification_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "luggage": { "name": "luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_golf": { "name": "sports_golf", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied": { "name": "sentiment_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "transgender": { "name": "transgender", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heart_broken": { "name": "heart_broken", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "landslide": { "name": "landslide", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_active": { "name": "notifications_active", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "skateboarding": { "name": "skateboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "handshake": { "name": "handshake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain": { "name": "domain", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_martial_arts": { "name": "sports_martial_arts", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_2": { "name": "person_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "co2": { "name": "co2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_hockey": { "name": "sports_hockey", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tornado": { "name": "tornado", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fitbit": { "name": "fitbit", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_rugby": { "name": "sports_rugby", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "female": { "name": "female", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_basketball": { "name": "sports_basketball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove": { "name": "person_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "military_tech": { "name": "military_tech", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recycling": { "name": "recycling", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "king_bed": { "name": "king_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group": { "name": "group", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly": { "name": "elderly", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_2": { "name": "face_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assist_walker": { "name": "assist_walker", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_reaction": { "name": "add_reaction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "travel_explore": { "name": "travel_explore", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_off": { "name": "notifications_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_gymnastics": { "name": "sports_gymnastics", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "6_ft_apart": { "name": "6_ft_apart", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "plus_one": { "name": "plus_one", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_remove": { "name": "group_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "construction": { "name": "construction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood_bad": { "name": "mood_bad", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ice_skating": { "name": "ice_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_5": { "name": "face_5", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wallet": { "name": "wallet", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "paragliding": { "name": "paragliding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_adult_content": { "name": "no_adult_content", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flood": { "name": "flood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people": { "name": "people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_6": { "name": "face_6", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "party_mode": { "name": "party_mode", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspace_premium": { "name": "workspace_premium", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_moderator": { "name": "add_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_events": { "name": "emoji_events", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pix": { "name": "pix", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowshoeing": { "name": "snowshoeing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outdoor_grill": { "name": "outdoor_grill", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_4": { "name": "man_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_moderator": { "name": "remove_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "reduce_capacity": { "name": "reduce_capacity", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nordic_walking": { "name": "nordic_walking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "interests": { "name": "interests", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_add": { "name": "group_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sanitizer": { "name": "sanitizer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_dissatisfied": { "name": "sentiment_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "cyclone": { "name": "cyclone", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "health_and_safety": { "name": "health_and_safety", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nights_stay": { "name": "nights_stay", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowboarding": { "name": "snowboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatsapp": { "name": "whatsapp", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_food_beverage": { "name": "emoji_food_beverage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_3": { "name": "person_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano_off": { "name": "piano_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_luggage": { "name": "no_luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_edu": { "name": "history_edu", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_mma": { "name": "sports_mma", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "social_distance": { "name": "social_distance", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_tennis": { "name": "sports_tennis", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_kabaddi": { "name": "sports_kabaddi", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_off": { "name": "group_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volcano": { "name": "volcano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sick": { "name": "sick", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "engineering": { "name": "engineering", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_emotions": { "name": "emoji_emotions", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_3": { "name": "face_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports": { "name": "sports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "downhill_skiing": { "name": "downhill_skiing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood": { "name": "mood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "thunderstorm": { "name": "thunderstorm", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cake": { "name": "cake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_satisfied": { "name": "sentiment_very_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_nature": { "name": "emoji_nature", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_paused": { "name": "notifications_paused", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_motorsports": { "name": "sports_motorsports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_soccer": { "name": "sports_soccer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "water_drop": { "name": "water_drop", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "architecture": { "name": "architecture", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_off": { "name": "person_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups_3": { "name": "groups_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_down_alt": { "name": "thumb_down_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sign_language": { "name": "sign_language", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "self_improvement": { "name": "self_improvement", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_2": { "name": "diversity_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_4": { "name": "face_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_1": { "name": "diversity_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "public": { "name": "public", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "blind": { "name": "blind", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "facebook": { "name": "facebook", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_dissatisfied": { "name": "sentiment_very_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_neutral": { "name": "sentiment_neutral", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "psychology": { "name": "psychology", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "catching_pokemon": { "name": "catching_pokemon", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_none": { "name": "notifications_none", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_volleyball": { "name": "sports_volleyball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sledding": { "name": "sledding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vaccines": { "name": "vaccines", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "poll": { "name": "poll", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "kayaking": { "name": "kayaking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "front_hand": { "name": "front_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_add": { "name": "person_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "notifications": { "name": "notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_notifications": { "name": "edit_notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clean_hands": { "name": "clean_hands", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "groups_2": { "name": "groups_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_city": { "name": "location_city", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ios_share": { "name": "ios_share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_cricket": { "name": "sports_cricket", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "girl": { "name": "girl", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_objects": { "name": "emoji_objects", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_4": { "name": "person_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scoreboard": { "name": "scoreboard", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_add": { "name": "domain_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_up_alt": { "name": "thumb_up_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "coronavirus": { "name": "coronavirus", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt_1": { "name": "person_add_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove_alt_1": { "name": "person_remove_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "share": { "name": "share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "surfing": { "name": "surfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "connect_without_contact": { "name": "connect_without_contact", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "public_off": { "name": "public_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_people": { "name": "emoji_people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups": { "name": "groups", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "severe_cold": { "name": "severe_cold", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_2": { "name": "man_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recommend": { "name": "recommend", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_transportation": { "name": "emoji_transportation", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_baseball": { "name": "sports_baseball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "school": { "name": "school", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_handball": { "name": "sports_handball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "18_up_rating": { "name": "18_up_rating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "personal_injury": { "name": "personal_injury", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compost": { "name": "compost", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_america": { "name": "south_america", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "science": { "name": "science", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cookie": { "name": "cookie", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_football": { "name": "sports_football", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_strikethrough": { "name": "format_strikethrough", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "horizontal_distribute": { "name": "horizontal_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "space_bar": { "name": "space_bar", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_left": { "name": "format_align_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_bottom": { "name": "vertical_align_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "height": { "name": "height", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_right": { "name": "align_horizontal_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_quote": { "name": "format_quote", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "show_chart": { "name": "show_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "numbers": { "name": "numbers", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_bold": { "name": "format_bold", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_distribute": { "name": "vertical_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_size": { "name": "format_size", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_chart": { "name": "insert_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_list_numbered_rtl": { "name": "format_list_numbered_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_bottom": { "name": "border_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_emoticon": { "name": "insert_emoticon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "hexagon": { "name": "hexagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "type_specimen": { "name": "type_specimen", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_justify": { "name": "format_align_justify", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "padding": { "name": "padding", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_bottom": { "name": "align_vertical_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_top": { "name": "vertical_align_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_outer": { "name": "border_outer", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off": { "name": "money_off", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge_type": { "name": "merge_type", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_chart": { "name": "table_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pentagon": { "name": "pentagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schema": { "name": "schema", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_edit_outline": { "name": "mode_edit_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_center": { "name": "align_horizontal_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_top": { "name": "border_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_comment": { "name": "mode_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_style": { "name": "border_style", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "polyline": { "name": "polyline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "highlight": { "name": "highlight", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "short_text": { "name": "short_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_clear": { "name": "format_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_decrease": { "name": "text_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "post_add": { "name": "post_add", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_numbered": { "name": "format_list_numbered", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_line_spacing": { "name": "format_line_spacing", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_fields": { "name": "text_fields", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "title": { "name": "title", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "square": { "name": "square", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bubble_chart": { "name": "bubble_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_left": { "name": "border_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist": { "name": "checklist", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_color": { "name": "border_color", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist_rtl": { "name": "checklist_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_array": { "name": "data_array", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_page_break": { "name": "insert_page_break", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_comment": { "name": "add_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "scatter_plot": { "name": "scatter_plot", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_down": { "name": "move_down", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrap_text": { "name": "wrap_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_money": { "name": "attach_money", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_up": { "name": "move_up", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_shapes": { "name": "format_shapes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart": { "name": "pie_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "publish": { "name": "publish", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_italic": { "name": "format_italic", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_reset": { "name": "format_color_reset", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_horizontal_left": { "name": "align_horizontal_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_drive_file": { "name": "insert_drive_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_all": { "name": "border_all", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "strikethrough_s": { "name": "strikethrough_s", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_center": { "name": "format_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_underlined": { "name": "format_underlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_edit": { "name": "mode_edit", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "multiline_chart": { "name": "multiline_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "line_axis": { "name": "line_axis", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drag_handle": { "name": "drag_handle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "superscript": { "name": "superscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_comment": { "name": "insert_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "bar_chart": { "name": "bar_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_photo": { "name": "insert_photo", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_clear": { "name": "border_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_r_to_l": { "name": "format_textdirection_r_to_l", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_horizontal": { "name": "border_horizontal", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_line_chart": { "name": "stacked_line_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_invitation": { "name": "insert_invitation", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "rectangle": { "name": "rectangle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subscript": { "name": "subscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_rule": { "name": "horizontal_rule", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_increase": { "name": "text_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_align_center": { "name": "vertical_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "margin": { "name": "margin", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_link": { "name": "insert_link", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_graph": { "name": "auto_graph", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_chart_outlined": { "name": "insert_chart_outlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart_outline": { "name": "pie_chart_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off_csred": { "name": "money_off_csred", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_note": { "name": "edit_note", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_vertical_top": { "name": "align_vertical_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode": { "name": "mode", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_fill": { "name": "format_color_fill", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_bulleted": { "name": "format_list_bulleted", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "linear_scale": { "name": "linear_scale", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_vertical": { "name": "border_vertical", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "functions": { "name": "functions", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "notes": { "name": "notes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_rows": { "name": "table_rows", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "area_chart": { "name": "area_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_inner": { "name": "border_inner", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_l_to_r": { "name": "format_textdirection_l_to_r", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_chart": { "name": "add_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_right": { "name": "border_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_center": { "name": "align_vertical_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "candlestick_chart": { "name": "candlestick_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_paint": { "name": "format_paint", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "monetization_on": { "name": "monetization_on", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_increase": { "name": "format_indent_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_text": { "name": "format_color_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "attach_file": { "name": "attach_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "score": { "name": "score", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_decrease": { "name": "format_indent_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_object": { "name": "data_object", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_right": { "name": "format_align_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "query_stats": { "name": "query_stats", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shape_line": { "name": "shape_line", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "draw": { "name": "draw", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report": { "name": "report", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "calculate": { "name": "calculate", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mail": { "name": "mail", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add": { "name": "add", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_to_inbox": { "name": "move_to_inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste": { "name": "content_paste", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_search": { "name": "content_paste_search", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_circle_outline": { "name": "add_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_bar_chart": { "name": "stacked_bar_chart", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_link": { "name": "add_link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "create": { "name": "create", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag": { "name": "flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "ballot": { "name": "ballot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag": { "name": "tag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "reply": { "name": "reply", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_week": { "name": "next_week", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_circle": { "name": "change_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_vote": { "name": "how_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_sweep": { "name": "delete_sweep", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "archive": { "name": "archive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link_off": { "name": "link_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_gmailerrorred": { "name": "report_gmailerrorred", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "redo": { "name": "redo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_off": { "name": "report_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "insights": { "name": "insights", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save_alt": { "name": "save_alt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_off": { "name": "content_paste_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "square_foot": { "name": "square_foot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "content_cut": { "name": "content_cut", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "amp_stories": { "name": "amp_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clear": { "name": "clear", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "deselect": { "name": "deselect", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_circle_outline": { "name": "remove_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "gesture": { "name": "gesture", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "outlined_flag": { "name": "outlined_flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_stories": { "name": "web_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_reg": { "name": "how_to_reg", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list": { "name": "filter_list", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "upcoming": { "name": "upcoming", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_format": { "name": "text_format", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "push_pin": { "name": "push_pin", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_feed": { "name": "dynamic_feed", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "inbox": { "name": "inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "font_download": { "name": "font_download", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list_off": { "name": "filter_list_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "block": { "name": "block", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "biotech": { "name": "biotech", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reply_all": { "name": "reply_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory": { "name": "inventory", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag_circle": { "name": "flag_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save": { "name": "save", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_circle": { "name": "remove_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "send": { "name": "send", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "weekend": { "name": "weekend", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "attribution": { "name": "attribution", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_copy": { "name": "file_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link": { "name": "link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "drafts": { "name": "drafts", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "select_all": { "name": "select_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort": { "name": "sort", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_copy": { "name": "content_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "bolt": { "name": "bolt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_box": { "name": "add_box", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory_2": { "name": "inventory_2", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "font_download_off": { "name": "font_download_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copy_all": { "name": "copy_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield": { "name": "shield", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "low_priority": { "name": "low_priority", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "undo": { "name": "undo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "backspace": { "name": "backspace", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread": { "name": "markunread", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "waves": { "name": "waves", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "where_to_vote": { "name": "where_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "save_as": { "name": "save_as", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stream": { "name": "stream", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_go": { "name": "content_paste_go", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unarchive": { "name": "unarchive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_circle": { "name": "add_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "policy": { "name": "policy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forward": { "name": "forward", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove": { "name": "remove", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } } } sphinx-design-0.5.0/sphinx_design/compiled/material_regular.json000066400000000000000000055721031446046271500251720ustar00rootroot00000000000000{ "no_encryption_gmailerrorred": { "name": "no_encryption_gmailerrorred", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_available": { "name": "event_available", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vpn_lock": { "name": "vpn_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_extra": { "name": "airline_seat_recline_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv_off": { "name": "tv_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_off": { "name": "power_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_encryption": { "name": "no_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "more": { "name": "more", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_paused": { "name": "phone_paused", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_audio": { "name": "bluetooth_audio", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync": { "name": "sync", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power": { "name": "power", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_alt": { "name": "do_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card": { "name": "sd_card", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "imagesearch_roller": { "name": "imagesearch_roller", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms": { "name": "sms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_eta": { "name": "drive_eta", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb": { "name": "do_not_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_call": { "name": "add_call", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "priority_high": { "name": "priority_high", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "enhanced_encryption": { "name": "enhanced_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "mms": { "name": "mms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_normal": { "name": "airline_seat_legroom_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms_failed": { "name": "sms_failed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "adb": { "name": "adb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_lock": { "name": "sync_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "live_tv": { "name": "live_tv", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "confirmation_number": { "name": "confirmation_number", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi": { "name": "wifi", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card_alert": { "name": "sd_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "running_with_errors": { "name": "running_with_errors", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_flat_angled": { "name": "airline_seat_flat_angled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_off": { "name": "do_not_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_note": { "name": "event_note", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update": { "name": "system_update", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_chat": { "name": "video_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_locked": { "name": "network_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_reduced": { "name": "airline_seat_legroom_reduced", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_problem": { "name": "sync_problem", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_on": { "name": "do_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_in_talk": { "name": "phone_in_talk", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wc": { "name": "wc", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_forwarded": { "name": "phone_forwarded", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_disabled": { "name": "sync_disabled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_chat": { "name": "voice_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_bluetooth_speaker": { "name": "phone_bluetooth_speaker", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tap_and_play": { "name": "tap_and_play", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_special": { "name": "folder_special", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_on": { "name": "do_not_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_check": { "name": "network_check", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_busy": { "name": "event_busy", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "ondemand_video": { "name": "ondemand_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_locked": { "name": "phone_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_legroom_extra": { "name": "airline_seat_legroom_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "time_to_leave": { "name": "time_to_leave", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb": { "name": "do_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_off": { "name": "directions_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_normal": { "name": "airline_seat_recline_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_missed": { "name": "phone_missed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "personal_video": { "name": "personal_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_tree": { "name": "account_tree", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "support_agent": { "name": "support_agent", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_individual_suite": { "name": "airline_seat_individual_suite", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vibration": { "name": "vibration", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_alt": { "name": "do_not_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "disc_full": { "name": "disc_full", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_alert": { "name": "sim_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_off": { "name": "wifi_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_flat": { "name": "airline_seat_flat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_callback": { "name": "phone_callback", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_off": { "name": "do_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "doorbell": { "name": "doorbell", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "blender": { "name": "blender", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_baby": { "name": "bedroom_baby", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee": { "name": "coffee", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathroom": { "name": "bathroom", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "light": { "name": "light", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_sliding": { "name": "door_sliding", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_indoor": { "name": "camera_indoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_child": { "name": "bedroom_child", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "feed": { "name": "feed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "podcasts": { "name": "podcasts", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "garage": { "name": "garage", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "dining": { "name": "dining", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_back": { "name": "door_back", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair_alt": { "name": "chair_alt", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "living": { "name": "living", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "yard": { "name": "yard", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee_maker": { "name": "coffee_maker", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "shower": { "name": "shower", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "window": { "name": "window", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_front": { "name": "door_front", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair": { "name": "chair", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bed": { "name": "bed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_bar": { "name": "table_bar", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flatware": { "name": "flatware", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_search": { "name": "manage_search", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_outdoor": { "name": "camera_outdoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_restaurant": { "name": "table_restaurant", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bedroom_parent": { "name": "bedroom_parent", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "note": { "name": "note", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k": { "name": "7k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay": { "name": "replay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_queue": { "name": "add_to_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add": { "name": "library_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue_play_next": { "name": "queue_play_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k": { "name": "2k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check_circle": { "name": "playlist_add_check_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "repeat_on": { "name": "repeat_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "1k_plus": { "name": "1k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_10": { "name": "forward_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_remove": { "name": "playlist_remove", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mic": { "name": "mic", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_label": { "name": "video_label", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort_by_alpha": { "name": "sort_by_alpha", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_none": { "name": "mic_none", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_to_action": { "name": "call_to_action", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "3k_plus": { "name": "3k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle": { "name": "play_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "8k_plus": { "name": "8k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "interpreter_mode": { "name": "interpreter_mode", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "play_disabled": { "name": "play_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check": { "name": "playlist_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause": { "name": "pause", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "album": { "name": "album", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k_plus": { "name": "7k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_10": { "name": "replay_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_books": { "name": "library_books", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_previous": { "name": "skip_previous", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_circle_filled": { "name": "replay_circle_filled", "keywords": [ "av" ], "heights": { "36": { "width": 36, "path": "" }, "24": { "width": 24, "path": "" } } }, "play_arrow": { "name": "play_arrow", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "speed": { "name": "speed", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k_plus": { "name": "4k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie": { "name": "movie", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat": { "name": "repeat", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_30": { "name": "forward_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "9k": { "name": "9k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_forward": { "name": "fast_forward", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "lyrics": { "name": "lyrics", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "1k": { "name": "1k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subtitles": { "name": "subtitles", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "recent_actors": { "name": "recent_actors", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_settings": { "name": "video_settings", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "3k": { "name": "3k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_5": { "name": "forward_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_off": { "name": "volume_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "loop": { "name": "loop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_filled": { "name": "play_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle_on": { "name": "shuffle_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k_plus": { "name": "2k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k_plus": { "name": "6k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "explicit": { "name": "explicit", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5g": { "name": "5g", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "audio_file": { "name": "audio_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_from_queue": { "name": "remove_from_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue": { "name": "queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_video": { "name": "music_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_play": { "name": "playlist_play", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stop_circle": { "name": "stop_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "av_timer": { "name": "av_timer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web": { "name": "web", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam_off": { "name": "videocam_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_filled": { "name": "pause_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption": { "name": "closed_caption", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hd": { "name": "hd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio": { "name": "radio", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_5": { "name": "replay_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_manual_record": { "name": "fiber_manual_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_rewind": { "name": "fast_rewind", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_music": { "name": "library_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "equalizer": { "name": "equalizer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset": { "name": "web_asset", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam": { "name": "videocam", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "surround_sound": { "name": "surround_sound", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_library": { "name": "video_library", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "missed_video_call": { "name": "missed_video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_down_alt": { "name": "volume_down_alt", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "8k": { "name": "8k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5k_plus": { "name": "5k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing": { "name": "hearing", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k": { "name": "6k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "games": { "name": "games", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "slow_motion_video": { "name": "slow_motion_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "branding_watermark": { "name": "branding_watermark", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle": { "name": "shuffle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_off": { "name": "mic_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add_check": { "name": "library_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "featured_play_list": { "name": "featured_play_list", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "snooze": { "name": "snooze", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_outline": { "name": "pause_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "featured_video": { "name": "featured_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "10k": { "name": "10k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_call": { "name": "video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "art_track": { "name": "art_track", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_new": { "name": "fiber_new", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd": { "name": "sd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_smart_record": { "name": "fiber_smart_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_next": { "name": "skip_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_up": { "name": "volume_up", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset_off": { "name": "web_asset_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplay": { "name": "airplay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing_disabled": { "name": "hearing_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add_circle": { "name": "playlist_add_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "queue_music": { "name": "queue_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add": { "name": "playlist_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "5k": { "name": "5k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_interested": { "name": "not_interested", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one_on": { "name": "repeat_one_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_file": { "name": "video_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "9k_plus": { "name": "9k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subscriptions": { "name": "subscriptions", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle": { "name": "pause_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "control_camera": { "name": "control_camera", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_mute": { "name": "volume_mute", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_pin": { "name": "fiber_pin", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "high_quality": { "name": "high_quality", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_down": { "name": "volume_down", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k": { "name": "4k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_30": { "name": "replay_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_off": { "name": "closed_caption_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_outline": { "name": "play_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one": { "name": "repeat_one", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop": { "name": "stop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_disabled": { "name": "closed_caption_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "new_releases": { "name": "new_releases", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_dvr": { "name": "fiber_dvr", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_unchecked": { "name": "radio_button_unchecked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_outline": { "name": "star_outline", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "indeterminate_check_box": { "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_on": { "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_purple500": { "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box_outline_blank": { "name": "check_box_outline_blank", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border_purple500": { "name": "star_border_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box": { "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star": { "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border": { "name": "star_border", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_off": { "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_half": { "name": "star_half", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_checked": { "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point_duplicate": { "name": "control_point_duplicate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_off": { "name": "hdr_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_auto": { "name": "motion_photos_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timelapse": { "name": "timelapse", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_front": { "name": "photo_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_small": { "name": "photo_size_select_small", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "8mp": { "name": "8mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_on": { "name": "raw_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_off": { "name": "motion_photos_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "euro": { "name": "euro", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iso": { "name": "iso", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_back": { "name": "photo_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "19mp": { "name": "19mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "linked_camera": { "name": "linked_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_4": { "name": "filter_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "6mp": { "name": "6mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_auto": { "name": "flash_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_rear": { "name": "camera_rear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_android": { "name": "flip_camera_android", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vignette": { "name": "vignette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_zero": { "name": "exposure_zero", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_2": { "name": "filter_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip": { "name": "flip", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_plus": { "name": "hdr_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_roll": { "name": "camera_roll", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_off": { "name": "face_retouching_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_search": { "name": "image_search", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_ccw": { "name": "rotate_90_degrees_ccw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_album": { "name": "photo_album", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_9": { "name": "filter_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_auto": { "name": "wb_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "monochrome_photos": { "name": "monochrome_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_original": { "name": "crop_original", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime": { "name": "bedtime", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "20mp": { "name": "20mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure": { "name": "exposure", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_creation": { "name": "movie_creation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image": { "name": "image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_franc": { "name": "currency_franc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vrpano": { "name": "vrpano", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections_bookmark": { "name": "collections_bookmark", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_none": { "name": "filter_none", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_off": { "name": "blur_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_pound": { "name": "currency_pound", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "timer": { "name": "timer", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "style": { "name": "style", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_2": { "name": "brightness_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy": { "name": "view_comfy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_fix_off": { "name": "auto_fix_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal": { "name": "panorama_horizontal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama": { "name": "panorama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_cloudy": { "name": "wb_cloudy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_red_eye": { "name": "remove_red_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_natural": { "name": "face_retouching_natural", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_cw": { "name": "rotate_90_degrees_cw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "photo_camera": { "name": "photo_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3": { "name": "timer_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "16mp": { "name": "16mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_motion": { "name": "auto_awesome_motion", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_2": { "name": "exposure_plus_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere": { "name": "panorama_photosphere", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_pause": { "name": "motion_photos_pause", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "adjust": { "name": "adjust", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "straighten": { "name": "straighten", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hevc": { "name": "hevc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_portrait": { "name": "crop_portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_off": { "name": "mic_external_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "2mp": { "name": "2mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere_select": { "name": "panorama_photosphere_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_9_plus": { "name": "filter_9_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_strong": { "name": "hdr_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_aspect_ratio": { "name": "image_aspect_ratio", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo": { "name": "photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_front": { "name": "camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_rotate": { "name": "crop_rotate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_incandescent": { "name": "wb_incandescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_not_supported": { "name": "image_not_supported", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "17mp": { "name": "17mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "12mp": { "name": "12mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop": { "name": "crop", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "22mp": { "name": "22mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dirty_lens": { "name": "dirty_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt_long": { "name": "receipt_long", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "4mp": { "name": "4mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_before": { "name": "navigate_before", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_landscape": { "name": "crop_landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "9mp": { "name": "9mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_on": { "name": "mic_external_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat_auto": { "name": "thermostat_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_6": { "name": "brightness_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera": { "name": "camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps_select": { "name": "60fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome": { "name": "auto_awesome", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flare": { "name": "flare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_back": { "name": "video_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_sunny": { "name": "wb_sunny", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_7": { "name": "brightness_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_library": { "name": "photo_library", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_16_9": { "name": "crop_16_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_on": { "name": "blur_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_a_photo": { "name": "add_a_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_fish_eye": { "name": "panorama_fish_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_4": { "name": "looks_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_twighlight": { "name": "wb_twighlight", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_off": { "name": "raw_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical": { "name": "panorama_vertical", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_3": { "name": "looks_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks": { "name": "looks", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_off": { "name": "music_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_filter": { "name": "movie_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tonality": { "name": "tonality", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "10mp": { "name": "10mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_5": { "name": "filter_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "23mp": { "name": "23mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_off": { "name": "flash_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yen": { "name": "currency_yen", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "14mp": { "name": "14mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_image": { "name": "hide_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_iridescent": { "name": "wb_iridescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "burst_mode": { "name": "burst_mode", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "slideshow": { "name": "slideshow", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_twilight": { "name": "wb_twilight", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blur_circular": { "name": "blur_circular", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_7_5": { "name": "crop_7_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "5mp": { "name": "5mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_large": { "name": "photo_size_select_large", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_alt": { "name": "camera_alt", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_vintage": { "name": "filter_vintage", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "audiotrack": { "name": "audiotrack", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_on": { "name": "flash_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_3": { "name": "brightness_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_actual": { "name": "photo_size_select_actual", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_ios": { "name": "flip_camera_ios", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_drama": { "name": "filter_drama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag_faces": { "name": "tag_faces", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "leak_add": { "name": "leak_add", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "11mp": { "name": "11mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_1": { "name": "exposure_neg_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_rupee": { "name": "currency_rupee", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "healing": { "name": "healing", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_off": { "name": "timer_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transform": { "name": "transform", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens": { "name": "lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_5": { "name": "looks_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "cases": { "name": "cases", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "18mp": { "name": "18mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_filter": { "name": "photo_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter": { "name": "filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_6": { "name": "filter_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_free": { "name": "crop_free", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_1": { "name": "exposure_plus_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact": { "name": "view_compact", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10": { "name": "timer_10", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_mosaic": { "name": "auto_awesome_mosaic", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "21mp": { "name": "21mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_ruble": { "name": "currency_ruble", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "crop_din": { "name": "crop_din", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on": { "name": "hdr_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_square": { "name": "crop_square", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_on": { "name": "grid_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_bitcoin": { "name": "currency_bitcoin", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autofps_select": { "name": "autofps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit": { "name": "edit", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps_select": { "name": "30fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "colorize": { "name": "colorize", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brush": { "name": "brush", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_video": { "name": "switch_video", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_8": { "name": "filter_8", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_1": { "name": "filter_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "contrast": { "name": "contrast", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "brightness_1": { "name": "brightness_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_two": { "name": "looks_two", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "15mp": { "name": "15mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_paused": { "name": "motion_photos_paused", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "loupe": { "name": "loupe", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature": { "name": "nature", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_shade": { "name": "wb_shade", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "circle": { "name": "circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "landscape": { "name": "landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_5": { "name": "brightness_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mp": { "name": "mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_one": { "name": "looks_one", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_as_pdf": { "name": "picture_as_pdf", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "3mp": { "name": "3mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical_select": { "name": "panorama_vertical_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_b_and_w": { "name": "filter_b_and_w", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_note": { "name": "music_note", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "details": { "name": "details", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_photo_alternate": { "name": "add_photo_alternate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_7": { "name": "filter_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_right": { "name": "rotate_right", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_strong": { "name": "center_focus_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dehaze": { "name": "dehaze", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal_select": { "name": "panorama_horizontal_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime_off": { "name": "bedtime_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "motion_photos_on": { "name": "motion_photos_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compare": { "name": "compare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_3_2": { "name": "crop_3_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature_people": { "name": "nature_people", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tune": { "name": "tune", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_3": { "name": "filter_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "deblur": { "name": "deblur", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "texture": { "name": "texture", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_6": { "name": "looks_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "broken_image": { "name": "broken_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_hdr": { "name": "filter_hdr", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_4": { "name": "brightness_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "incomplete_circle": { "name": "incomplete_circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assistant_photo": { "name": "assistant_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_weak": { "name": "hdr_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_weak": { "name": "center_focus_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_normal": { "name": "auto_fix_normal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_enhanced_select": { "name": "hdr_enhanced_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_center_focus": { "name": "filter_center_focus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_off": { "name": "grid_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle": { "name": "panorama_wide_angle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant": { "name": "assistant", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections": { "name": "collections", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_next": { "name": "navigate_next", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_5_4": { "name": "crop_5_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grain": { "name": "grain", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_linear": { "name": "blur_linear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_lira": { "name": "currency_lira", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "24mp": { "name": "24mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_stories": { "name": "auto_stories", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "palette": { "name": "palette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "color_lens": { "name": "color_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_2": { "name": "exposure_neg_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "13mp": { "name": "13mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "7mp": { "name": "7mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_front": { "name": "video_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yuan": { "name": "currency_yuan", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "portrait": { "name": "portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_photos": { "name": "add_to_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point": { "name": "control_point", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_frames": { "name": "filter_frames", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "shutter_speed": { "name": "shutter_speed", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_tilt_shift": { "name": "filter_tilt_shift", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "logo_dev": { "name": "logo_dev", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leak_remove": { "name": "leak_remove", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle_select": { "name": "panorama_wide_angle_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_left": { "name": "rotate_left", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "gradient": { "name": "gradient", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_camera": { "name": "switch_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "animation": { "name": "animation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_high": { "name": "auto_fix_high", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_stable": { "name": "video_stable", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_left": { "name": "arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu": { "name": "menu", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_left": { "name": "switch_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "legend_toggle": { "name": "legend_toggle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_west": { "name": "south_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_upward": { "name": "arrow_upward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "waterfall_chart": { "name": "waterfall_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_circle_down": { "name": "expand_circle_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_drop_up": { "name": "arrow_drop_up", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant_navigation": { "name": "assistant_navigation", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "first_page": { "name": "first_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen": { "name": "fullscreen", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_left": { "name": "subdirectory_arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_right": { "name": "chevron_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home_work": { "name": "add_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps_outage": { "name": "apps_outage", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps": { "name": "apps", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "west": { "name": "west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_share": { "name": "offline_share", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right": { "name": "arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_right": { "name": "subdirectory_arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_downward": { "name": "arrow_downward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down_circle": { "name": "arrow_drop_down_circle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more": { "name": "unfold_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "cancel": { "name": "cancel", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "payments": { "name": "payments", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south_east": { "name": "south_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_work": { "name": "home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand_more": { "name": "expand_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "double_arrow": { "name": "double_arrow", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "north_west": { "name": "north_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_settings_alt": { "name": "app_settings_alt", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_less": { "name": "expand_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios": { "name": "arrow_back_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_open": { "name": "menu_open", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "campaign": { "name": "campaign", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "check": { "name": "check", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "refresh": { "name": "refresh", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south": { "name": "south", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_right": { "name": "switch_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_vert": { "name": "more_vert", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_less": { "name": "unfold_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "close": { "name": "close", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant_direction": { "name": "assistant_direction", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "Asset 1" } } }, "chevron_left": { "name": "chevron_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back": { "name": "arrow_back", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "east": { "name": "east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north_east": { "name": "north_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "maps_home_work": { "name": "maps_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "pivot_table_chart": { "name": "pivot_table_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen_exit": { "name": "fullscreen_exit", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_horiz": { "name": "more_horiz", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_forward_ios": { "name": "arrow_forward_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "last_page": { "name": "last_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down": { "name": "arrow_drop_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios_new": { "name": "arrow_back_ios_new", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_forward": { "name": "arrow_forward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north": { "name": "north", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_movies": { "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "festival": { "name": "festival", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "traffic": { "name": "traffic", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "kebab_dining": { "name": "kebab_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrong_location": { "name": "wrong_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "my_location": { "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_scooter": { "name": "electric_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_railway_filled": { "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "crisis_alert": { "name": "crisis_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sailing": { "name": "sailing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "warehouse": { "name": "warehouse", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_share": { "name": "emergency_share", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_stops": { "name": "airline_stops", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nightlife": { "name": "nightlife", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diamond": { "name": "diamond", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant": { "name": "restaurant", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "attractions": { "name": "attractions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway": { "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "breakfast_dining": { "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_see": { "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "store_mall_directory": { "name": "store_mall_directory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_police": { "name": "local_police", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fort": { "name": "fort", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_right": { "name": "u_turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_atm": { "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_road": { "name": "edit_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_check": { "name": "safety_check", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transfer_within_a_station": { "name": "transfer_within_a_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ev_station": { "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hospital": { "name": "local_hospital", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "soup_kitchen": { "name": "soup_kitchen", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_meals": { "name": "no_meals", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "sos": { "name": "sos", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel": { "name": "hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_class": { "name": "flight_class", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "liquor": { "name": "liquor", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_information": { "name": "medical_information", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "plumbing": { "name": "plumbing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "place": { "name": "place", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "lunch_dining": { "name": "lunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_grocery_store": { "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_meals_ouline": { "name": "no_meals_ouline", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_mall": { "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_right": { "name": "turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_attributes": { "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigation": { "name": "navigation", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_railway": { "name": "directions_railway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "layers_clear": { "name": "layers_clear", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moped": { "name": "moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "beenhere": { "name": "beenhere", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "trip_origin": { "name": "trip_origin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_shipping": { "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "minor_crash": { "name": "minor_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin": { "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "departure_board": { "name": "departure_board", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "agriculture": { "name": "agriculture", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "two_wheeler": { "name": "two_wheeler", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat": { "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_walk": { "name": "directions_walk", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_cafe": { "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "tram": { "name": "tram", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "celebration": { "name": "celebration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_left": { "name": "turn_sharp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_rickshaw": { "name": "electric_rickshaw", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "miscellaneous_services": { "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_listed_location": { "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_bike": { "name": "electric_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tire_repair": { "name": "tire_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry_cleaning": { "name": "dry_cleaning", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electrical_services": { "name": "electrical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_transfer": { "name": "no_transfer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "synagogue": { "name": "synagogue", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway_filled": { "name": "directions_subway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_book": { "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pest_control": { "name": "pest_control", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fork_left": { "name": "fork_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowmobile": { "name": "snowmobile", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_repair": { "name": "car_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "park": { "name": "park", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "church": { "name": "church", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hardware": { "name": "hardware", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bike_scooter": { "name": "bike_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compass_calibration": { "name": "compass_calibration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "dinner_dining": { "name": "dinner_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_taxi": { "name": "local_taxi", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_pizza": { "name": "local_pizza", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_parking": { "name": "local_parking", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me": { "name": "near_me", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in_map": { "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_phone": { "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_drink": { "name": "local_drink", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_right": { "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "maps_ugc": { "name": "maps_ugc", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car": { "name": "directions_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hotel": { "name": "local_hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fire_hydrant_alt": { "name": "fire_hydrant_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_printshop": { "name": "local_printshop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_business": { "name": "add_business", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_car": { "name": "electric_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin_circle": { "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation_alt": { "name": "screen_rotation_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_bar": { "name": "local_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "forest": { "name": "forest", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite": { "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_airport": { "name": "local_airport", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_pin": { "name": "location_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "volunteer_activism": { "name": "volunteer_activism", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_fire_department": { "name": "local_fire_department", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "set_meal": { "name": "set_meal", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge": { "name": "merge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_car_wash": { "name": "local_car_wash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "atm": { "name": "atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_play": { "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moving": { "name": "moving", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "360": { "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight": { "name": "flight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "castle": { "name": "castle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "layers": { "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pedal_bike": { "name": "pedal_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_hindu": { "name": "temple_hindu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location_alt": { "name": "edit_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_services": { "name": "medical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_post_office": { "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "map": { "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hail": { "name": "hail", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "signpost": { "name": "signpost", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bakery_dining": { "name": "bakery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "zoom_out_map": { "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_repair_service": { "name": "home_repair_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wine_bar": { "name": "wine_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_left": { "name": "turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant_menu": { "name": "restaurant_menu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_left": { "name": "turn_slight_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "theater_comedy": { "name": "theater_comedy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramen_dining": { "name": "ramen_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_drop": { "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "transit_enterexit": { "name": "transit_enterexit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_crash": { "name": "no_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "egg_alt": { "name": "egg_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location": { "name": "edit_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_laundry_service": { "name": "local_laundry_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_dining": { "name": "local_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit_filled": { "name": "directions_transit_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "brunch_dining": { "name": "brunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "design_services": { "name": "design_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "run_circle": { "name": "run_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency": { "name": "emergency", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_road": { "name": "remove_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_run": { "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bus": { "name": "directions_bus", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_location_alt": { "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "streetview": { "name": "streetview", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "badge": { "name": "badge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_pharmacy": { "name": "local_pharmacy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fork_right": { "name": "fork_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_buddhist": { "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "factory": { "name": "factory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_location": { "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me_disabled": { "name": "near_me_disabled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "car_rental": { "name": "car_rental", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_right": { "name": "turn_sharp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "category": { "name": "category", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "taxi_alert": { "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "bus_alert": { "name": "bus_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "straight": { "name": "straight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rate_review": { "name": "rate_review", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "money": { "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ramp_left": { "name": "ramp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_left": { "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "railway_alert": { "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "cleaning_services": { "name": "cleaning_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "icecream": { "name": "icecream", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "multiple_stop": { "name": "multiple_stop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "handyman": { "name": "handyman", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_of_travel": { "name": "mode_of_travel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramp_right": { "name": "ramp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_right": { "name": "roundabout_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_truck": { "name": "fire_truck", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_bus_filled": { "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_offer": { "name": "local_offer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_moped": { "name": "electric_moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_recording": { "name": "emergency_recording", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_left": { "name": "u_turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_road": { "name": "add_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_gas_station": { "name": "local_gas_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "terrain": { "name": "terrain", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hvac": { "name": "hvac", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_library": { "name": "local_library", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car_filled": { "name": "directions_car_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "museum": { "name": "museum", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_convenience_store": { "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "airlines": { "name": "airlines", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fastfood": { "name": "fastfood", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "stadium": { "name": "stadium", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pest_control_rodent": { "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "route": { "name": "route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delivery_dining": { "name": "delivery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alt_route": { "name": "alt_route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subway": { "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "train": { "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_activity": { "name": "local_activity", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit": { "name": "directions_transit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "egg": { "name": "egg", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_crash": { "name": "car_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mosque": { "name": "mosque", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "takeout_dining": { "name": "takeout_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat_filled": { "name": "directions_boat_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bike": { "name": "directions_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "connecting_airports": { "name": "connecting_airports", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_florist": { "name": "local_florist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions": { "name": "directions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "savings": { "name": "savings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_outline": { "name": "label_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_left": { "name": "arrow_circle_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_bluetooth": { "name": "settings_bluetooth", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "alarm_off": { "name": "alarm_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_all": { "name": "done_all", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbox": { "name": "outbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "polymer": { "name": "polymer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "online_prediction": { "name": "online_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outlet": { "name": "outlet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pending": { "name": "pending", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_list_alt": { "name": "filter_list_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "quickreply": { "name": "quickreply", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "density_large": { "name": "density_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_week": { "name": "view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_exploration": { "name": "data_exploration", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report_problem": { "name": "report_problem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_accessibility": { "name": "settings_accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_scan_wifi": { "name": "perm_scan_wifi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "find_in_page": { "name": "find_in_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "3d_rotation": { "name": "3d_rotation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_outline": { "name": "lock_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "production_quantity_limits": { "name": "production_quantity_limits", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_flat": { "name": "trending_flat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_for_work": { "name": "play_for_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_full": { "name": "hourglass_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio": { "name": "spatial_audio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "token": { "name": "token", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flight_takeoff": { "name": "flight_takeoff", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label": { "name": "label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search": { "name": "search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio_off": { "name": "spatial_audio_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_add": { "name": "alarm_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_full": { "name": "join_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle": { "name": "check_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "get_app": { "name": "get_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension_off": { "name": "extension_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "find_replace": { "name": "find_replace", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_basket": { "name": "shopping_basket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "terminal": { "name": "terminal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_important_outline": { "name": "label_important_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_add": { "name": "bookmark_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "javascript": { "name": "javascript", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_schedule_send": { "name": "cancel_schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm": { "name": "alarm", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "plagiarism": { "name": "plagiarism", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compress": { "name": "compress", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_out": { "name": "zoom_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy_alt": { "name": "view_comfy_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_applications": { "name": "settings_applications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_ethernet": { "name": "settings_ethernet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angleup": { "name": "text_rotation_angleup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore_from_trash": { "name": "restore_from_trash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flaky": { "name": "flaky", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_form": { "name": "dynamic_form", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors_off": { "name": "sensors_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update_disabled": { "name": "update_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new_off": { "name": "open_in_new_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copyright": { "name": "copyright", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "room": { "name": "room", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "opacity": { "name": "opacity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "schedule_send": { "name": "schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_travel": { "name": "card_travel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_filled": { "name": "home_filled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lightbulb_circle": { "name": "lightbulb_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_return": { "name": "assignment_return", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_card": { "name": "add_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_full": { "name": "open_in_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home": { "name": "add_home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "browse_gallery": { "name": "browse_gallery", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unpublished": { "name": "unpublished", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_backup_restore": { "name": "settings_backup_restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab_unselected": { "name": "tab_unselected", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code_off": { "name": "code_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_vertical": { "name": "swipe_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility": { "name": "accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "addchart": { "name": "addchart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_exchange": { "name": "currency_exchange", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "css": { "name": "css", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_sidebar": { "name": "view_sidebar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pending_actions": { "name": "pending_actions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tour": { "name": "tour", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight_round": { "name": "nightlight_round", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_important": { "name": "label_important", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "theaters": { "name": "theaters", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "backup_table": { "name": "backup_table", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "youtube_searched_for": { "name": "youtube_searched_for", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_off": { "name": "edit_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "ic_edit_off_24px" } } }, "done_outline": { "name": "done_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_plan": { "name": "next_plan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rule": { "name": "rule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "paid": { "name": "paid", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark": { "name": "bookmark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_source": { "name": "hide_source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "loyalty": { "name": "loyalty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fingerprint": { "name": "fingerprint", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "store": { "name": "store", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down_off_alt": { "name": "thumb_down_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_left_alt": { "name": "swipe_left_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leaderboard": { "name": "leaderboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_contact_calendar": { "name": "perm_contact_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "api": { "name": "api", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assured_workload": { "name": "assured_workload", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contactless": { "name": "contactless", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pan_tool": { "name": "pan_tool", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread_mailbox": { "name": "markunread_mailbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "preview": { "name": "preview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_alt_off": { "name": "filter_alt_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_input_component": { "name": "settings_input_component", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbond": { "name": "outbond", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work": { "name": "work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down_alt": { "name": "swipe_down_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "saved_search": { "name": "saved_search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_month": { "name": "calendar_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "article": { "name": "article", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "display_settings": { "name": "display_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe": { "name": "swipe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pinch": { "name": "pinch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "balance": { "name": "balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help": { "name": "help", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_page": { "name": "request_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop_2": { "name": "shop_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "watch_later": { "name": "watch_later", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock": { "name": "lock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmarks": { "name": "bookmarks", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_kanban": { "name": "view_kanban", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "history": { "name": "history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "generating_tokens": { "name": "generating_tokens", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_day": { "name": "view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible": { "name": "accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_carousel": { "name": "view_carousel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "percent": { "name": "percent", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "private_connectivity": { "name": "private_connectivity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "table_view": { "name": "table_view", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "favorite": { "name": "favorite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fit_screen": { "name": "fit_screen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_down": { "name": "text_rotation_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_square": { "name": "edit_square", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dashboard": { "name": "dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_support": { "name": "contact_support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_border": { "name": "bookmark_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_right": { "name": "arrow_circle_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "track_changes": { "name": "track_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible_forward": { "name": "accessible_forward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_left": { "name": "join_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified": { "name": "verified", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "android": { "name": "android", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "note_add": { "name": "note_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore": { "name": "restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_blocking": { "name": "app_blocking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gif_box": { "name": "gif_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility_new": { "name": "accessibility_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "reorder": { "name": "reorder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_turned_in": { "name": "assignment_turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_seat": { "name": "event_seat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_today": { "name": "calendar_today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart": { "name": "shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_button": { "name": "smart_button", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_composite": { "name": "settings_input_composite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up": { "name": "thumb_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "ads_click": { "name": "ads_click", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified_user": { "name": "verified_user", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_membership": { "name": "card_membership", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_overscan": { "name": "settings_overscan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in": { "name": "zoom_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code": { "name": "code", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_right": { "name": "join_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_task": { "name": "add_task", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_in_ar": { "name": "view_in_ar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_identity": { "name": "perm_identity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "install_mobile": { "name": "install_mobile", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turned_in": { "name": "turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_medium": { "name": "density_medium", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rocket": { "name": "rocket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_end": { "name": "pin_end", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle_outline": { "name": "check_circle_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_data_setting": { "name": "perm_data_setting", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_phone_msg": { "name": "perm_phone_msg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "http": { "name": "http", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_right_alt": { "name": "swipe_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_out": { "name": "all_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "exit_to_app": { "name": "exit_to_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "repartition": { "name": "repartition", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "euro_symbol": { "name": "euro_symbol", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "maximize": { "name": "maximize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_land": { "name": "flight_land", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "record_voice_over": { "name": "record_voice_over", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "login": { "name": "login", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_reset": { "name": "lock_reset", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "source": { "name": "source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tips_and_updates": { "name": "tips_and_updates", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_center": { "name": "help_center", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "eject": { "name": "eject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_column": { "name": "view_column", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_box": { "name": "account_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fax": { "name": "fax", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schedule": { "name": "schedule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab": { "name": "tab", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_ind": { "name": "assignment_ind", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "important_devices": { "name": "important_devices", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "face": { "name": "face", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors": { "name": "sensors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "commit": { "name": "commit", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "list": { "name": "list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_stream": { "name": "view_stream", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_left": { "name": "swipe_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_right": { "name": "swipe_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_full": { "name": "width_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_invoke": { "name": "pin_invoke", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand": { "name": "expand", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors": { "name": "invert_colors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "batch_prediction": { "name": "batch_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_aware": { "name": "noise_aware", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "eco": { "name": "eco", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_open": { "name": "lock_open", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_remove": { "name": "bookmark_remove", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_document": { "name": "edit_document", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_late": { "name": "assignment_late", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "upgrade": { "name": "upgrade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rowing": { "name": "rowing", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbound": { "name": "outbound", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_cell": { "name": "settings_cell", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_device_information": { "name": "perm_device_information", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_alt": { "name": "sync_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_browser": { "name": "open_in_browser", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "feedback": { "name": "feedback", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop": { "name": "shop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_shopping_cart": { "name": "add_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_tracking": { "name": "spatial_tracking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_outline": { "name": "help_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book": { "name": "book", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "launch": { "name": "launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_quilt": { "name": "view_quilt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "support": { "name": "support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_accounts": { "name": "no_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_day": { "name": "calendar_view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture_alt": { "name": "picture_in_picture_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_off": { "name": "work_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "https": { "name": "https", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility_off": { "name": "visibility_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_timeline": { "name": "view_timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_done": { "name": "remove_done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pageview": { "name": "pageview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info_outline": { "name": "info_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_access_shortcut_add": { "name": "switch_access_shortcut_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel_class": { "name": "hotel_class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hourglass_disabled": { "name": "hourglass_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_split": { "name": "horizontal_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture": { "name": "picture_in_picture", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grade": { "name": "grade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right_alt": { "name": "arrow_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "webhook": { "name": "webhook", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb": { "name": "lightbulb", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_history": { "name": "work_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb_outline": { "name": "lightbulb_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "close_fullscreen": { "name": "close_fullscreen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_translate": { "name": "g_translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_work": { "name": "group_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book_online": { "name": "book_online", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "published_with_changes": { "name": "published_with_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pets": { "name": "pets", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_pin": { "name": "offline_pin", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_toggle_off": { "name": "history_toggle_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_normal": { "name": "width_normal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "new_label": { "name": "new_label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_headline": { "name": "view_headline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "send_and_archive": { "name": "send_and_archive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flutter_dash": { "name": "flutter_dash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "speaker_notes_off": { "name": "speaker_notes_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_forever": { "name": "delete_forever", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart_checkout": { "name": "shopping_cart_checkout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "integration_instructions": { "name": "integration_instructions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "transcribe": { "name": "transcribe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "power_settings_new": { "name": "power_settings_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_empty": { "name": "hourglass_empty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "translate": { "name": "translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down": { "name": "thumb_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_off": { "name": "label_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_rate": { "name": "star_rate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "18": { "width": 18, "path": "" } } }, "view_module": { "name": "view_module", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "free_cancellation": { "name": "free_cancellation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_alt": { "name": "filter_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card_off": { "name": "credit_card_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "on_device_training": { "name": "on_device_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "date_range": { "name": "date_range", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_up": { "name": "arrow_circle_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "space_dashboard": { "name": "space_dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subtitles_off": { "name": "subtitles_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gif": { "name": "gif", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horizontal_circle": { "name": "swap_horizontal_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_hdmi": { "name": "settings_input_hdmi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_by_default": { "name": "disabled_by_default", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_page": { "name": "contact_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_large": { "name": "donut_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_list": { "name": "view_list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update": { "name": "update", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down": { "name": "swipe_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_access_shortcut": { "name": "switch_access_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "aspect_ratio": { "name": "aspect_ratio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_notes": { "name": "speaker_notes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_giftcard": { "name": "card_giftcard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_alt": { "name": "highlight_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_up": { "name": "swipe_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_back": { "name": "flip_to_back", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spellcheck": { "name": "spellcheck", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_repeat": { "name": "event_repeat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swap_vertical_circle": { "name": "swap_vertical_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "troubleshoot": { "name": "troubleshoot", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_protected_setup": { "name": "wifi_protected_setup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_cozy": { "name": "view_cozy", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "build_circle": { "name": "build_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unfold_less_double": { "name": "unfold_less_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shop_two": { "name": "shop_two", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension": { "name": "extension", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horiz": { "name": "swap_horiz", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervised_user_circle": { "name": "supervised_user_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore_off": { "name": "explore_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_down": { "name": "trending_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "segment": { "name": "segment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toc": { "name": "toc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_inner": { "name": "join_inner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_clock": { "name": "lock_clock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "analytics": { "name": "analytics", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "task_alt": { "name": "task_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_up": { "name": "text_rotate_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_bolt": { "name": "offline_bolt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "output": { "name": "output", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_inbox": { "name": "all_inbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "home": { "name": "home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_small": { "name": "density_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "abc": { "name": "abc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "install_desktop": { "name": "install_desktop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_on": { "name": "alarm_on", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete": { "name": "delete", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_agenda": { "name": "view_agenda", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autorenew": { "name": "autorenew", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angledown": { "name": "text_rotation_angledown", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_shortcut": { "name": "app_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "circle_notifications": { "name": "circle_notifications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gavel": { "name": "gavel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "minimize": { "name": "minimize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_array": { "name": "view_array", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dangerous": { "name": "dangerous", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_calendar": { "name": "edit_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "event": { "name": "event", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_accessible": { "name": "not_accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wysiwyg": { "name": "wysiwyg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grading": { "name": "grading", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "model_training": { "name": "model_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite_alt": { "name": "satellite_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cached": { "name": "cached", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outgoing_mail": { "name": "outgoing_mail", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "explore": { "name": "explore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info": { "name": "info", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fact_check": { "name": "fact_check", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_with": { "name": "open_with", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_split": { "name": "vertical_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "anchor": { "name": "anchor", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls_off": { "name": "hls_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_started": { "name": "not_started", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "favorite_border": { "name": "favorite_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "build": { "name": "build", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls": { "name": "hls", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "print": { "name": "print", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_camera_mic": { "name": "perm_camera_mic", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bug_report": { "name": "bug_report", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_added": { "name": "bookmark_added", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumbs_up_down": { "name": "thumbs_up_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more_double": { "name": "unfold_more_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "logout": { "name": "logout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_accounts": { "name": "manage_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "payment": { "name": "payment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rocket_launch": { "name": "rocket_launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_weight": { "name": "line_weight", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_over_off": { "name": "voice_over_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_off": { "name": "highlight_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_thresholding": { "name": "data_thresholding", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_front": { "name": "flip_to_front", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "today": { "name": "today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility": { "name": "visibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_as_unread": { "name": "mark_as_unread", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restore_page": { "name": "restore_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_mark": { "name": "question_mark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comment_bank": { "name": "comment_bank", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "input": { "name": "input", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_remote": { "name": "settings_remote", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_visible": { "name": "disabled_visible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delete_outline": { "name": "delete_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_vertical": { "name": "text_rotate_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_bag": { "name": "shopping_bag", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt": { "name": "receipt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_answer": { "name": "question_answer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toll": { "name": "toll", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_antenna": { "name": "settings_input_antenna", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "try": { "name": "try", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rounded_corner": { "name": "rounded_corner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "touch_app": { "name": "touch_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_drive": { "name": "add_to_drive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dashboard_customize": { "name": "dashboard_customize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done": { "name": "done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "php": { "name": "php", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_rotation_none": { "name": "text_rotation_none", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "admin_panel_settings": { "name": "admin_panel_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "backup": { "name": "backup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_outward": { "name": "arrow_outward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_control_off": { "name": "noise_control_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "query_builder": { "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_power": { "name": "settings_power", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_outline": { "name": "work_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_week": { "name": "calendar_view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_brightness": { "name": "settings_brightness", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance_wallet": { "name": "account_balance_wallet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "commute": { "name": "commute", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings": { "name": "settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "subject": { "name": "subject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "compare_arrows": { "name": "compare_arrows", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assessment": { "name": "assessment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "language": { "name": "language", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pregnant_woman": { "name": "pregnant_woman", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card": { "name": "credit_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_voice": { "name": "settings_voice", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_vert": { "name": "swap_vert", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "html": { "name": "html", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_style": { "name": "line_style", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pan_tool_alt": { "name": "pan_tool_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "description": { "name": "description", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_present": { "name": "file_present", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "stars": { "name": "stars", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment": { "name": "assignment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_enhance": { "name": "camera_enhance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up_off_alt": { "name": "thumb_up_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sticky_note_2": { "name": "sticky_note_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_history": { "name": "manage_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "announcement": { "name": "announcement", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_month": { "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_shopping_cart": { "name": "remove_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_history": { "name": "change_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "drag_indicator": { "name": "drag_indicator", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "privacy_tip": { "name": "privacy_tip", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_circle": { "name": "account_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chrome_reader_mode": { "name": "chrome_reader_mode", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_ping": { "name": "network_ping", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "perm_media": { "name": "perm_media", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "timeline": { "name": "timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search_off": { "name": "search_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_up_alt": { "name": "swipe_up_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "123": { "name": "123", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new": { "name": "open_in_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_returned": { "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_phone": { "name": "settings_phone", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance": { "name": "account_balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact_alt": { "name": "view_compact_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dns": { "name": "dns", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mediation": { "name": "mediation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_small": { "name": "donut_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "redeem": { "name": "redeem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "turned_in_not": { "name": "turned_in_not", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update_alt": { "name": "system_update_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "class": { "name": "class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_up": { "name": "trending_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_svideo": { "name": "settings_input_svideo", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervisor_account": { "name": "supervisor_account", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_person": { "name": "lock_person", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_circle_down": { "name": "arrow_circle_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_wide": { "name": "width_wide", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "desktop_mac": { "name": "desktop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_chromebook": { "name": "laptop_chromebook", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_down": { "name": "keyboard_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "mouse": { "name": "mouse", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_command_key": { "name": "keyboard_command_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_left": { "name": "keyboard_double_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_option_key": { "name": "keyboard_option_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_return": { "name": "keyboard_return", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_alt": { "name": "keyboard_alt", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "cast_for_education": { "name": "cast_for_education", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink": { "name": "phonelink", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_updated": { "name": "browser_updated", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "earbuds_battery": { "name": "earbuds_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board_off": { "name": "developer_board_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "start": { "name": "start", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "headset": { "name": "headset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset": { "name": "videogame_asset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor": { "name": "monitor", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_right": { "name": "keyboard_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "scanner": { "name": "scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch": { "name": "watch", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board": { "name": "developer_board", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_iphone": { "name": "phone_iphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_android": { "name": "tablet_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_mac": { "name": "tablet_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "router": { "name": "router", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones_battery": { "name": "headphones_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_backspace": { "name": "keyboard_backspace", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_toy": { "name": "smart_toy", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "gamepad": { "name": "gamepad", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "adf_scanner": { "name": "adf_scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "laptop_mac": { "name": "laptop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_not_supported": { "name": "browser_not_supported", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast_connected": { "name": "cast_connected", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv": { "name": "tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_windows": { "name": "laptop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_control_key": { "name": "keyboard_control_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "smart_display": { "name": "smart_display", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones": { "name": "headphones", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_android": { "name": "phone_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_up": { "name": "keyboard_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_max": { "name": "home_max", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smartphone": { "name": "smartphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_tab": { "name": "keyboard_tab", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch_off": { "name": "watch_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast": { "name": "cast", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "point_of_sale": { "name": "point_of_sale", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "computer": { "name": "computer", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "device_unknown": { "name": "device_unknown", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "memory": { "name": "memory", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_voice": { "name": "keyboard_voice", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard": { "name": "keyboard", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "earbuds": { "name": "earbuds", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "security": { "name": "security", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_hide": { "name": "keyboard_hide", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_input": { "name": "power_input", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_mini": { "name": "home_mini", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_other": { "name": "devices_other", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_mic": { "name": "headset_mic", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset_off": { "name": "videogame_asset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dock": { "name": "dock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_capslock": { "name": "keyboard_capslock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_off": { "name": "headset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_right": { "name": "keyboard_double_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_off": { "name": "phonelink_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card": { "name": "sim_card", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_left": { "name": "keyboard_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_up": { "name": "keyboard_double_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "toys": { "name": "toys", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_down": { "name": "keyboard_double_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_hub": { "name": "device_hub", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_group": { "name": "speaker_group", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_windows": { "name": "desktop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "connected_tv": { "name": "connected_tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet": { "name": "tablet", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop": { "name": "laptop", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker": { "name": "speaker", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_screen": { "name": "smart_screen", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "portable_wifi_off": { "name": "portable_wifi_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "textsms": { "name": "textsms", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_split": { "name": "call_split", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_export": { "name": "import_export", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone": { "name": "phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "3p": { "name": "3p", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "clear_all": { "name": "clear_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "dialpad": { "name": "dialpad", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat": { "name": "chat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_search": { "name": "person_search", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comments_disabled": { "name": "comments_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key": { "name": "vpn_key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "unsubscribe": { "name": "unsubscribe", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_setup": { "name": "phonelink_setup", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "live_help": { "name": "live_help", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "present_to_all": { "name": "present_to_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call": { "name": "call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "domain_disabled": { "name": "domain_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_portrait": { "name": "stay_current_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_access_disabled": { "name": "desktop_access_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_share": { "name": "screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_phone": { "name": "speaker_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_unread": { "name": "mark_email_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nat": { "name": "nat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_ring": { "name": "phonelink_ring", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_read": { "name": "mark_email_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "email": { "name": "email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "print_disabled": { "name": "print_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_chat_read": { "name": "mark_chat_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_made": { "name": "call_made", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_landscape": { "name": "stay_primary_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code": { "name": "qr_code", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_unread_chat_alt": { "name": "mark_unread_chat_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "spoke": { "name": "spoke", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chat_bubble": { "name": "chat_bubble", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "cell_tower": { "name": "cell_tower", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "document_scanner": { "name": "document_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key_off": { "name": "vpn_key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contacts": { "name": "contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "list_alt": { "name": "list_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_lock": { "name": "phonelink_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_enabled": { "name": "phone_enabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "co_present": { "name": "co_present", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_verification": { "name": "domain_verification", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied_alt": { "name": "sentiment_satisfied_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_disabled": { "name": "phone_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_ic_call": { "name": "add_ic_call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_on": { "name": "location_on", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_disabled": { "name": "person_add_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "business": { "name": "business", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_end": { "name": "call_end", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code_scanner": { "name": "qr_code_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_erase": { "name": "phonelink_erase", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed": { "name": "call_missed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_registration": { "name": "app_registration", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hub": { "name": "hub", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause_presentation": { "name": "pause_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop_screen_share": { "name": "stop_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "sip": { "name": "sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_lock": { "name": "mail_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_merge": { "name": "call_merge", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_bottom": { "name": "hourglass_bottom", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dialer_sip": { "name": "dialer_sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "comment": { "name": "comment", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_received": { "name": "call_received", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling": { "name": "wifi_calling", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forum": { "name": "forum", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "rtt": { "name": "rtt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "ic_dialer_rtt_revised_24px" } } }, "forward_to_inbox": { "name": "forward_to_inbox", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_time_extension": { "name": "send_time_extension", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_presentation": { "name": "cancel_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_mail": { "name": "contact_mail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat_bubble_outline": { "name": "chat_bubble_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_phone": { "name": "contact_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_off": { "name": "location_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed_outgoing": { "name": "call_missed_outgoing", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_emergency": { "name": "contact_emergency", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "duo": { "name": "duo", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_portrait": { "name": "stay_primary_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_sim": { "name": "no_sim", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "message": { "name": "message", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "read_more": { "name": "read_more", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rss_feed": { "name": "rss_feed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_calls": { "name": "swap_calls", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_top": { "name": "hourglass_top", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "voicemail": { "name": "voicemail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_landscape": { "name": "stay_current_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_outline": { "name": "mail_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "ring_volume": { "name": "ring_volume", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors_off": { "name": "invert_colors_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cell_wifi": { "name": "cell_wifi", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_screen_share": { "name": "mobile_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_contacts": { "name": "import_contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "alternate_email": { "name": "alternate_email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "key_off": { "name": "key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_chat_unread": { "name": "mark_chat_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "key": { "name": "key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "qr_code_2": { "name": "qr_code_2", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_time": { "name": "more_time", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grass": { "name": "grass", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bento": { "name": "bento", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "backpack": { "name": "backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "other_houses": { "name": "other_houses", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iron": { "name": "iron", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "escalator_warning": { "name": "escalator_warning", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cottage": { "name": "cottage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "golf_course": { "name": "golf_course", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_touch": { "name": "do_not_touch", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cabin": { "name": "cabin", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_photography": { "name": "no_photography", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vaping_rooms": { "name": "vaping_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "room_preferences": { "name": "room_preferences", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "fitness_center": { "name": "fitness_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_drinks": { "name": "no_drinks", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathtub": { "name": "bathtub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hot_tub": { "name": "hot_tub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "night_shelter": { "name": "night_shelter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "desk": { "name": "desk", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wash": { "name": "wash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_friendly": { "name": "child_friendly", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "soap": { "name": "soap", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoke_free": { "name": "smoke_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "kitchen": { "name": "kitchen", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stroller": { "name": "stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "crib": { "name": "crib", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "umbrella": { "name": "umbrella", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "beach_access": { "name": "beach_access", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "pool": { "name": "pool", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "gite": { "name": "gite", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_extinguisher": { "name": "fire_extinguisher", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoking_rooms": { "name": "smoking_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rv_hookup": { "name": "rv_hookup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "all_inclusive": { "name": "all_inclusive", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "family_restroom": { "name": "family_restroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stairs": { "name": "stairs", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tty": { "name": "tty", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "escalator": { "name": "escalator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_meeting_room": { "name": "no_meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_step": { "name": "do_not_step", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "water_damage": { "name": "water_damage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "carpenter": { "name": "carpenter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "checkroom": { "name": "checkroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_flash": { "name": "no_flash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "meeting_room": { "name": "meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "food_bank": { "name": "food_bank", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tapas": { "name": "tapas", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "roofing": { "name": "roofing", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "storefront": { "name": "storefront", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "room_service": { "name": "room_service", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "balcony": { "name": "balcony", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "countertops": { "name": "countertops", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "foundation": { "name": "foundation", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "holiday_village": { "name": "holiday_village", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "charging_station": { "name": "charging_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "airport_shuttle": { "name": "airport_shuttle", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_food": { "name": "no_food", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "houseboat": { "name": "houseboat", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "elevator": { "name": "elevator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "ac_unit": { "name": "ac_unit", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "house_siding": { "name": "house_siding", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_care": { "name": "child_care", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "business_center": { "name": "business_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rice_bowl": { "name": "rice_bowl", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_backpack": { "name": "no_backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vape_free": { "name": "vape_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "house": { "name": "house", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "baby_changing_station": { "name": "baby_changing_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_stroller": { "name": "no_stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "microwave": { "name": "microwave", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_cell": { "name": "no_cell", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "wheelchair_pickup": { "name": "wheelchair_pickup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "casino": { "name": "casino", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bungalow": { "name": "bungalow", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chalet": { "name": "chalet", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry": { "name": "dry", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_bar": { "name": "sports_bar", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "villa": { "name": "villa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apartment": { "name": "apartment", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fence": { "name": "fence", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "corporate_fare": { "name": "corporate_fare", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "free_breakfast": { "name": "free_breakfast", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "spa": { "name": "spa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_done": { "name": "cloud_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "downloading": { "name": "downloading", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_move_outline": { "name": "drive_file_move_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_quote": { "name": "request_quote", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces_filled": { "name": "workspaces_filled", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_rename_outline": { "name": "drive_file_rename_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_zip": { "name": "folder_zip", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_circle": { "name": "cloud_circle", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "rule_folder": { "name": "rule_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder": { "name": "folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload_file": { "name": "upload_file", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_overline": { "name": "format_overline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_delete": { "name": "folder_delete", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drive_file_move": { "name": "drive_file_move", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_move_rtl": { "name": "drive_file_move_rtl", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_download": { "name": "cloud_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_upload": { "name": "cloud_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attachment": { "name": "attachment", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "newspaper": { "name": "newspaper", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "create_new_folder": { "name": "create_new_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces_outline": { "name": "workspaces_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud": { "name": "cloud", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_snippet": { "name": "text_snippet", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download": { "name": "file_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_copy": { "name": "folder_copy", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "difference": { "name": "difference", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_off": { "name": "cloud_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_sync": { "name": "cloud_sync", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_off": { "name": "folder_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_download_done": { "name": "file_download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_upload_off": { "name": "file_upload_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_queue": { "name": "cloud_queue", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload": { "name": "upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_view": { "name": "grid_view", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_shared": { "name": "folder_shared", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download_done": { "name": "download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "topic": { "name": "topic", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_folder_upload": { "name": "drive_folder_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces": { "name": "workspaces", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "download_for_offline": { "name": "download_for_offline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_email": { "name": "attach_email", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_open": { "name": "folder_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download_off": { "name": "file_download_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "approval": { "name": "approval", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download": { "name": "download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_open": { "name": "file_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_upload": { "name": "file_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "snippet_folder": { "name": "snippet_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_full": { "name": "battery_charging_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "note_alt": { "name": "note_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_wifi": { "name": "network_wifi", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_medium": { "name": "brightness_medium", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_low": { "name": "brightness_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_usage": { "name": "data_usage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_off": { "name": "data_saver_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "share_location": { "name": "share_location", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_not_fixed": { "name": "gps_not_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_high": { "name": "edgesensor_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth": { "name": "bluetooth", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "shortcut": { "name": "shortcut", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_std": { "name": "battery_std", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_score": { "name": "sports_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarm": { "name": "access_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_4": { "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_0_bar": { "name": "signal_cellular_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "restart_alt": { "name": "restart_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_2_bar": { "name": "wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grid_goldenratio": { "name": "grid_goldenratio", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error_rounded": { "name": "wifi_tethering_error_rounded", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "price_change": { "name": "price_change", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_portrait": { "name": "screen_lock_portrait", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_4_bar": { "name": "signal_cellular_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_active": { "name": "airplanemode_active", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "price_check": { "name": "price_check", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt": { "name": "signal_cellular_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor_weight": { "name": "monitor_weight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "tungsten": { "name": "tungsten", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto": { "name": "hdr_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dvr": { "name": "dvr", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_fold": { "name": "devices_fold", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_night": { "name": "mode_night", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cameraswitch": { "name": "cameraswitch", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_2_bar": { "name": "battery_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_alt_1_bar": { "name": "signal_cellular_alt_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "punch_clock": { "name": "punch_clock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "e_mobiledata": { "name": "e_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storage": { "name": "storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "pin": { "name": "pin", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar_lock": { "name": "signal_wifi_4_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_standby": { "name": "mode_standby", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_cell": { "name": "network_cell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps": { "name": "60fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_3x3": { "name": "grid_3x3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication_liquid": { "name": "medication_liquid", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_thermostat": { "name": "device_thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation": { "name": "screen_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_rotation": { "name": "screen_lock_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_searching": { "name": "location_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_off": { "name": "flashlight_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_mobiledata": { "name": "g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_4_bar": { "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pattern": { "name": "pattern", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_searching": { "name": "bluetooth_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot_monitor": { "name": "screenshot_monitor", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quiz": { "name": "quiz", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "air": { "name": "air", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "phishing": { "name": "phishing", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "summarize": { "name": "summarize", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "password": { "name": "password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_4": { "name": "signal_wifi_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nfc": { "name": "nfc", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_1_bar": { "name": "battery_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reviews": { "name": "reviews", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_good": { "name": "gpp_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_low": { "name": "edgesensor_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "macro_off": { "name": "macro_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hdr_off_select": { "name": "hdr_off_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot": { "name": "screenshot", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_suggest": { "name": "settings_suggest", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_error": { "name": "nearby_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "light_mode": { "name": "light_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_2_bar": { "name": "network_wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_alarm": { "name": "add_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sell": { "name": "sell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_score": { "name": "credit_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_plus_mobiledata": { "name": "lte_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_off": { "name": "gps_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_fixed": { "name": "gps_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_landscape": { "name": "screen_lock_landscape", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_mobiledata": { "name": "h_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering": { "name": "wifi_tethering", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_friendly": { "name": "mobile_friendly", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_off": { "name": "mobile_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarms": { "name": "access_alarms", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "3g_mobiledata": { "name": "3g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto_select": { "name": "hdr_auto_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_4_bar": { "name": "signal_wifi_statusbar_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_system_daydream": { "name": "settings_system_daydream", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_bad": { "name": "gpp_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_off": { "name": "media_bluetooth_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_disabled": { "name": "bluetooth_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_4_bar": { "name": "battery_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_3_bar": { "name": "network_wifi_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_1_bar": { "name": "network_wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ad_units": { "name": "ad_units", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps": { "name": "30fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "task": { "name": "task", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_warning": { "name": "security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication": { "name": "medication", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat": { "name": "thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dark_mode": { "name": "dark_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_1_bar": { "name": "wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fluorescent": { "name": "fluorescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10_select": { "name": "timer_10_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_null": { "name": "signal_cellular_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_saver": { "name": "battery_saver", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on_select": { "name": "hdr_on_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_bad": { "name": "signal_wifi_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bloodtype": { "name": "bloodtype", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_on": { "name": "data_saver_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_good": { "name": "security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_off": { "name": "signal_cellular_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_mode": { "name": "developer_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices": { "name": "devices", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update": { "name": "security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flourescent": { "name": "flourescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_inactive": { "name": "airplanemode_inactive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "4g_plus_mobiledata": { "name": "4g_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "rsvp": { "name": "rsvp", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_mobiledata": { "name": "lte_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cable": { "name": "cable", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wallpaper": { "name": "wallpaper", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_high": { "name": "brightness_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "remember_me": { "name": "remember_me", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "splitscreen": { "name": "splitscreen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_lesson": { "name": "play_lesson", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_3": { "name": "wifi_calling_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb_off": { "name": "usb_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_0_bar": { "name": "signal_wifi_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lan": { "name": "lan", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "monitor_heart": { "name": "monitor_heart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "do_not_disturb_on_total_silence": { "name": "do_not_disturb_on_total_silence", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_alert": { "name": "battery_alert", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "1x_mobiledata": { "name": "1x_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "aod": { "name": "aod", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_0_bar": { "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_disabled": { "name": "location_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_on": { "name": "flashlight_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_on": { "name": "media_bluetooth_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_storage": { "name": "sd_storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_6_bar": { "name": "battery_6_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_full": { "name": "battery_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_nodata": { "name": "signal_cellular_nodata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_password": { "name": "wifi_password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "access_time_filled": { "name": "access_time_filled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_maybe": { "name": "gpp_maybe", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "ssid_chart": { "name": "ssid_chart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "widgets": { "name": "widgets", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_off": { "name": "nearby_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error": { "name": "wifi_tethering_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_channel": { "name": "wifi_channel", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reset_tv": { "name": "reset_tv", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_time": { "name": "access_time", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight": { "name": "nightlight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt_2_bar": { "name": "signal_cellular_alt_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_0_bar": { "name": "battery_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_lock": { "name": "wifi_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_null": { "name": "signal_wifi_statusbar_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_off": { "name": "wifi_tethering_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb": { "name": "usb", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3_select": { "name": "timer_3_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "water": { "name": "water", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_download": { "name": "sim_card_download", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_no_sim": { "name": "signal_cellular_no_sim", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_bad": { "name": "fmd_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update_warning": { "name": "system_security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dataset": { "name": "dataset", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_5_bar": { "name": "battery_5_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dataset_linked": { "name": "dataset_linked", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_to_mobile": { "name": "send_to_mobile", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobiledata_off": { "name": "mobiledata_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_unknown": { "name": "battery_unknown", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storm": { "name": "storm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_plus_mobiledata": { "name": "h_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update": { "name": "system_security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens_blur": { "name": "lens_blur", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_connected": { "name": "bluetooth_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_drive": { "name": "bluetooth_drive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_auto": { "name": "brightness_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_good": { "name": "fmd_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "4g_mobiledata": { "name": "4g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_find": { "name": "wifi_find", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_3_bar": { "name": "battery_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplane_ticket": { "name": "airplane_ticket", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar": { "name": "signal_wifi_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_home_screen": { "name": "add_to_home_screen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_search_desktop": { "name": "screen_search_desktop", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "discount": { "name": "discount", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "system_security_update_good": { "name": "system_security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_4x4": { "name": "grid_4x4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "r_mobiledata": { "name": "r_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "graphic_eq": { "name": "graphic_eq", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "radar": { "name": "radar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_off": { "name": "signal_wifi_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_delete": { "name": "auto_delete", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "error_outline": { "name": "error_outline", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "notification_important": { "name": "notification_important", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_alert": { "name": "add_alert", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning": { "name": "warning", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "error": { "name": "error", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning_amber": { "name": "warning_amber", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "broadcast_on_home": { "name": "broadcast_on_home", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wind_power": { "name": "wind_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heat_pump": { "name": "heat_pump", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains_closed": { "name": "curtains_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane_tank": { "name": "propane_tank", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloudy_snowing": { "name": "cloudy_snowing", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades_closed": { "name": "vertical_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades": { "name": "vertical_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowing": { "name": "snowing", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield_moon": { "name": "shield_moon", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "broadcast_on_personal": { "name": "broadcast_on_personal", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nest_cam_wired_stand": { "name": "nest_cam_wired_stand", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_window": { "name": "sensor_window", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds": { "name": "blinds", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sunny_snowing": { "name": "sunny_snowing", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gas_meter": { "name": "gas_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "solar_power": { "name": "solar_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains": { "name": "curtains", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_occupied": { "name": "sensor_occupied", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades_closed": { "name": "roller_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sunny": { "name": "sunny", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "oil_barrel": { "name": "oil_barrel", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "energy_savings_leaf": { "name": "energy_savings_leaf", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_bolt": { "name": "electric_bolt", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane": { "name": "propane", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_meter": { "name": "electric_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds_closed": { "name": "blinds_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "foggy": { "name": "foggy", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades": { "name": "roller_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_fan_off": { "name": "mode_fan_off", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_mode": { "name": "auto_mode", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_door": { "name": "sensor_door", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hiking": { "name": "hiking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "single_bed": { "name": "single_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_outline": { "name": "person_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "man": { "name": "man", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "male": { "name": "male", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "psychology_alt": { "name": "psychology_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tsunami": { "name": "tsunami", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pages": { "name": "pages", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "roller_skating": { "name": "roller_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano": { "name": "piano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scale": { "name": "scale", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "masks": { "name": "masks", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_symbols": { "name": "emoji_symbols", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_outline": { "name": "people_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "back_hand": { "name": "back_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatshot": { "name": "whatshot", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "diversity_3": { "name": "diversity_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hive": { "name": "hive", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_esports": { "name": "sports_esports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "precision_manufacturing": { "name": "precision_manufacturing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "real_estate_agent": { "name": "real_estate_agent", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cruelty_free": { "name": "cruelty_free", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_flags": { "name": "emoji_flags", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "follow_the_signs": { "name": "follow_the_signs", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly_woman": { "name": "elderly_woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_divider": { "name": "safety_divider", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt": { "name": "person_add_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_alt": { "name": "people_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "kitesurfing": { "name": "kitesurfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "waving_hand": { "name": "waving_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "woman": { "name": "woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scuba_diving": { "name": "scuba_diving", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person": { "name": "person", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "fireplace": { "name": "fireplace", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "deck": { "name": "deck", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "boy": { "name": "boy", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_account": { "name": "switch_account", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "woman_2": { "name": "woman_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_3": { "name": "man_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notification_add": { "name": "notification_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "luggage": { "name": "luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_golf": { "name": "sports_golf", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied": { "name": "sentiment_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "transgender": { "name": "transgender", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heart_broken": { "name": "heart_broken", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "landslide": { "name": "landslide", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_active": { "name": "notifications_active", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "skateboarding": { "name": "skateboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "handshake": { "name": "handshake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain": { "name": "domain", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_martial_arts": { "name": "sports_martial_arts", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_2": { "name": "person_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "co2": { "name": "co2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_hockey": { "name": "sports_hockey", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tornado": { "name": "tornado", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fitbit": { "name": "fitbit", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_rugby": { "name": "sports_rugby", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "female": { "name": "female", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_basketball": { "name": "sports_basketball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove": { "name": "person_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "military_tech": { "name": "military_tech", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recycling": { "name": "recycling", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "king_bed": { "name": "king_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group": { "name": "group", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly": { "name": "elderly", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_2": { "name": "face_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assist_walker": { "name": "assist_walker", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_reaction": { "name": "add_reaction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "travel_explore": { "name": "travel_explore", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_off": { "name": "notifications_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_gymnastics": { "name": "sports_gymnastics", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "6_ft_apart": { "name": "6_ft_apart", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "plus_one": { "name": "plus_one", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_remove": { "name": "group_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "construction": { "name": "construction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood_bad": { "name": "mood_bad", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ice_skating": { "name": "ice_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_5": { "name": "face_5", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wallet": { "name": "wallet", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "paragliding": { "name": "paragliding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_adult_content": { "name": "no_adult_content", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flood": { "name": "flood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people": { "name": "people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_6": { "name": "face_6", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "party_mode": { "name": "party_mode", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspace_premium": { "name": "workspace_premium", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_moderator": { "name": "add_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_events": { "name": "emoji_events", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pix": { "name": "pix", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowshoeing": { "name": "snowshoeing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outdoor_grill": { "name": "outdoor_grill", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_4": { "name": "man_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_moderator": { "name": "remove_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "reduce_capacity": { "name": "reduce_capacity", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nordic_walking": { "name": "nordic_walking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "interests": { "name": "interests", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_add": { "name": "group_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sanitizer": { "name": "sanitizer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_dissatisfied": { "name": "sentiment_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "cyclone": { "name": "cyclone", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "health_and_safety": { "name": "health_and_safety", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nights_stay": { "name": "nights_stay", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowboarding": { "name": "snowboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatsapp": { "name": "whatsapp", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_food_beverage": { "name": "emoji_food_beverage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_3": { "name": "person_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano_off": { "name": "piano_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_luggage": { "name": "no_luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_edu": { "name": "history_edu", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_mma": { "name": "sports_mma", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "social_distance": { "name": "social_distance", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_tennis": { "name": "sports_tennis", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_kabaddi": { "name": "sports_kabaddi", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_off": { "name": "group_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volcano": { "name": "volcano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dew_point": { "name": "dew_point", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sick": { "name": "sick", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "engineering": { "name": "engineering", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_emotions": { "name": "emoji_emotions", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_3": { "name": "face_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports": { "name": "sports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "downhill_skiing": { "name": "downhill_skiing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood": { "name": "mood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "thunderstorm": { "name": "thunderstorm", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cake": { "name": "cake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_satisfied": { "name": "sentiment_very_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_nature": { "name": "emoji_nature", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_paused": { "name": "notifications_paused", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_motorsports": { "name": "sports_motorsports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_soccer": { "name": "sports_soccer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "water_drop": { "name": "water_drop", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "architecture": { "name": "architecture", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_off": { "name": "person_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups_3": { "name": "groups_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_down_alt": { "name": "thumb_down_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sign_language": { "name": "sign_language", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "self_improvement": { "name": "self_improvement", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_2": { "name": "diversity_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_4": { "name": "face_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_1": { "name": "diversity_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "public": { "name": "public", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "blind": { "name": "blind", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "facebook": { "name": "facebook", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_dissatisfied": { "name": "sentiment_very_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_neutral": { "name": "sentiment_neutral", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "psychology": { "name": "psychology", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "catching_pokemon": { "name": "catching_pokemon", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_none": { "name": "notifications_none", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_volleyball": { "name": "sports_volleyball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sledding": { "name": "sledding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vaccines": { "name": "vaccines", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "poll": { "name": "poll", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "kayaking": { "name": "kayaking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "front_hand": { "name": "front_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_add": { "name": "person_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "notifications": { "name": "notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_notifications": { "name": "edit_notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clean_hands": { "name": "clean_hands", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "groups_2": { "name": "groups_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_city": { "name": "location_city", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ios_share": { "name": "ios_share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_cricket": { "name": "sports_cricket", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "girl": { "name": "girl", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_objects": { "name": "emoji_objects", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_4": { "name": "person_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scoreboard": { "name": "scoreboard", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_add": { "name": "domain_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_up_alt": { "name": "thumb_up_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "coronavirus": { "name": "coronavirus", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt_1": { "name": "person_add_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove_alt_1": { "name": "person_remove_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "share": { "name": "share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "surfing": { "name": "surfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "connect_without_contact": { "name": "connect_without_contact", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "public_off": { "name": "public_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_people": { "name": "emoji_people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups": { "name": "groups", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "severe_cold": { "name": "severe_cold", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_2": { "name": "man_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recommend": { "name": "recommend", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "ic_recommend_24px" } } }, "emoji_transportation": { "name": "emoji_transportation", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_baseball": { "name": "sports_baseball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "school": { "name": "school", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_handball": { "name": "sports_handball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "18_up_rating": { "name": "18_up_rating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "personal_injury": { "name": "personal_injury", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compost": { "name": "compost", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_america": { "name": "south_america", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "science": { "name": "science", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cookie": { "name": "cookie", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_football": { "name": "sports_football", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_strikethrough": { "name": "format_strikethrough", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "horizontal_distribute": { "name": "horizontal_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "space_bar": { "name": "space_bar", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_left": { "name": "format_align_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_bottom": { "name": "vertical_align_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "height": { "name": "height", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_right": { "name": "align_horizontal_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_quote": { "name": "format_quote", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "show_chart": { "name": "show_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "numbers": { "name": "numbers", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_bold": { "name": "format_bold", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_distribute": { "name": "vertical_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_size": { "name": "format_size", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_chart": { "name": "insert_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_list_numbered_rtl": { "name": "format_list_numbered_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart_outlined": { "name": "pie_chart_outlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_bottom": { "name": "border_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_emoticon": { "name": "insert_emoticon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "hexagon": { "name": "hexagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "type_specimen": { "name": "type_specimen", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_justify": { "name": "format_align_justify", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "padding": { "name": "padding", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_bottom": { "name": "align_vertical_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_top": { "name": "vertical_align_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_outer": { "name": "border_outer", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off": { "name": "money_off", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge_type": { "name": "merge_type", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_chart": { "name": "table_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pentagon": { "name": "pentagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schema": { "name": "schema", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_edit_outline": { "name": "mode_edit_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_center": { "name": "align_horizontal_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_top": { "name": "border_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_comment": { "name": "mode_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_style": { "name": "border_style", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "polyline": { "name": "polyline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "highlight": { "name": "highlight", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "short_text": { "name": "short_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_clear": { "name": "format_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_decrease": { "name": "text_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "post_add": { "name": "post_add", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_numbered": { "name": "format_list_numbered", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_line_spacing": { "name": "format_line_spacing", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_fields": { "name": "text_fields", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "title": { "name": "title", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "square": { "name": "square", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bubble_chart": { "name": "bubble_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_left": { "name": "border_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist": { "name": "checklist", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_color": { "name": "border_color", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist_rtl": { "name": "checklist_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_array": { "name": "data_array", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_page_break": { "name": "insert_page_break", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_comment": { "name": "add_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "scatter_plot": { "name": "scatter_plot", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_down": { "name": "move_down", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrap_text": { "name": "wrap_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_money": { "name": "attach_money", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_up": { "name": "move_up", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_shapes": { "name": "format_shapes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart": { "name": "pie_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "publish": { "name": "publish", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_italic": { "name": "format_italic", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_reset": { "name": "format_color_reset", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_horizontal_left": { "name": "align_horizontal_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_drive_file": { "name": "insert_drive_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_all": { "name": "border_all", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "strikethrough_s": { "name": "strikethrough_s", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_center": { "name": "format_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_underlined": { "name": "format_underlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_edit": { "name": "mode_edit", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "multiline_chart": { "name": "multiline_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "line_axis": { "name": "line_axis", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drag_handle": { "name": "drag_handle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "superscript": { "name": "superscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_comment": { "name": "insert_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "bar_chart": { "name": "bar_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_photo": { "name": "insert_photo", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_clear": { "name": "border_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_r_to_l": { "name": "format_textdirection_r_to_l", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_horizontal": { "name": "border_horizontal", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_line_chart": { "name": "stacked_line_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_invitation": { "name": "insert_invitation", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "rectangle": { "name": "rectangle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subscript": { "name": "subscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_rule": { "name": "horizontal_rule", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_increase": { "name": "text_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_align_center": { "name": "vertical_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "margin": { "name": "margin", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_link": { "name": "insert_link", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_graph": { "name": "auto_graph", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_chart_outlined": { "name": "insert_chart_outlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart_outline": { "name": "pie_chart_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off_csred": { "name": "money_off_csred", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_note": { "name": "edit_note", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_vertical_top": { "name": "align_vertical_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode": { "name": "mode", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_fill": { "name": "format_color_fill", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_bulleted": { "name": "format_list_bulleted", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "linear_scale": { "name": "linear_scale", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_vertical": { "name": "border_vertical", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "functions": { "name": "functions", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "notes": { "name": "notes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_rows": { "name": "table_rows", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "area_chart": { "name": "area_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_inner": { "name": "border_inner", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_l_to_r": { "name": "format_textdirection_l_to_r", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_chart": { "name": "add_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_right": { "name": "border_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_center": { "name": "align_vertical_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "candlestick_chart": { "name": "candlestick_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_paint": { "name": "format_paint", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "monetization_on": { "name": "monetization_on", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_increase": { "name": "format_indent_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_text": { "name": "format_color_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "attach_file": { "name": "attach_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "score": { "name": "score", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_decrease": { "name": "format_indent_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_object": { "name": "data_object", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_right": { "name": "format_align_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "query_stats": { "name": "query_stats", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shape_line": { "name": "shape_line", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "draw": { "name": "draw", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report": { "name": "report", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "calculate": { "name": "calculate", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mail": { "name": "mail", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add": { "name": "add", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_to_inbox": { "name": "move_to_inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste": { "name": "content_paste", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_search": { "name": "content_paste_search", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_circle_outline": { "name": "add_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "block_flipped": { "name": "block_flipped", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stacked_bar_chart": { "name": "stacked_bar_chart", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_link": { "name": "add_link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "create": { "name": "create", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag": { "name": "flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "ballot": { "name": "ballot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag": { "name": "tag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "reply": { "name": "reply", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_week": { "name": "next_week", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_circle": { "name": "change_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_vote": { "name": "how_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_sweep": { "name": "delete_sweep", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "archive": { "name": "archive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link_off": { "name": "link_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_gmailerrorred": { "name": "report_gmailerrorred", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "redo": { "name": "redo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_off": { "name": "report_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "insights": { "name": "insights", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save_alt": { "name": "save_alt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_off": { "name": "content_paste_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "square_foot": { "name": "square_foot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "content_cut": { "name": "content_cut", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "amp_stories": { "name": "amp_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clear": { "name": "clear", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "deselect": { "name": "deselect", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_circle_outline": { "name": "remove_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "gesture": { "name": "gesture", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "outlined_flag": { "name": "outlined_flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_stories": { "name": "web_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_reg": { "name": "how_to_reg", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list": { "name": "filter_list", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "upcoming": { "name": "upcoming", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_format": { "name": "text_format", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "push_pin": { "name": "push_pin", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_feed": { "name": "dynamic_feed", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "inbox": { "name": "inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "font_download": { "name": "font_download", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list_off": { "name": "filter_list_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "block": { "name": "block", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "biotech": { "name": "biotech", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reply_all": { "name": "reply_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory": { "name": "inventory", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag_circle": { "name": "flag_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save": { "name": "save", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_circle": { "name": "remove_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "send": { "name": "send", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "weekend": { "name": "weekend", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "attribution": { "name": "attribution", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_copy": { "name": "file_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link": { "name": "link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "drafts": { "name": "drafts", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "select_all": { "name": "select_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort": { "name": "sort", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_copy": { "name": "content_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "bolt": { "name": "bolt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_box": { "name": "add_box", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory_2": { "name": "inventory_2", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "font_download_off": { "name": "font_download_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copy_all": { "name": "copy_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield": { "name": "shield", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "low_priority": { "name": "low_priority", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "undo": { "name": "undo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "backspace": { "name": "backspace", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread": { "name": "markunread", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "waves": { "name": "waves", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "where_to_vote": { "name": "where_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "save_as": { "name": "save_as", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stream": { "name": "stream", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_go": { "name": "content_paste_go", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unarchive": { "name": "unarchive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_circle": { "name": "add_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "policy": { "name": "policy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forward": { "name": "forward", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove": { "name": "remove", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } } } sphinx-design-0.5.0/sphinx_design/compiled/material_round.json000066400000000000000000075102551446046271500246620ustar00rootroot00000000000000{ "no_encryption_gmailerrorred": { "name": "no_encryption_gmailerrorred", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_available": { "name": "event_available", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vpn_lock": { "name": "vpn_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_extra": { "name": "airline_seat_recline_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv_off": { "name": "tv_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_off": { "name": "power_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_encryption": { "name": "no_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "more": { "name": "more", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_paused": { "name": "phone_paused", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_audio": { "name": "bluetooth_audio", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync": { "name": "sync", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power": { "name": "power", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_alt": { "name": "do_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card": { "name": "sd_card", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "imagesearch_roller": { "name": "imagesearch_roller", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms": { "name": "sms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_eta": { "name": "drive_eta", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb": { "name": "do_not_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "priority_high": { "name": "priority_high", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "enhanced_encryption": { "name": "enhanced_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "mms": { "name": "mms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_normal": { "name": "airline_seat_legroom_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms_failed": { "name": "sms_failed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "adb": { "name": "adb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_lock": { "name": "sync_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "live_tv": { "name": "live_tv", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "confirmation_number": { "name": "confirmation_number", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi": { "name": "wifi", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card_alert": { "name": "sd_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "running_with_errors": { "name": "running_with_errors", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_flat_angled": { "name": "airline_seat_flat_angled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_off": { "name": "do_not_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_note": { "name": "event_note", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update": { "name": "system_update", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_chat": { "name": "video_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_locked": { "name": "network_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_reduced": { "name": "airline_seat_legroom_reduced", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_problem": { "name": "sync_problem", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_on": { "name": "do_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_in_talk": { "name": "phone_in_talk", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wc": { "name": "wc", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_forwarded": { "name": "phone_forwarded", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_disabled": { "name": "sync_disabled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_chat": { "name": "voice_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_bluetooth_speaker": { "name": "phone_bluetooth_speaker", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tap_and_play": { "name": "tap_and_play", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_special": { "name": "folder_special", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_on": { "name": "do_not_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_check": { "name": "network_check", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_busy": { "name": "event_busy", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "ondemand_video": { "name": "ondemand_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_locked": { "name": "phone_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_legroom_extra": { "name": "airline_seat_legroom_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "time_to_leave": { "name": "time_to_leave", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb": { "name": "do_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_off": { "name": "directions_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_normal": { "name": "airline_seat_recline_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_missed": { "name": "phone_missed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "personal_video": { "name": "personal_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_tree": { "name": "account_tree", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "support_agent": { "name": "support_agent", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_individual_suite": { "name": "airline_seat_individual_suite", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vibration": { "name": "vibration", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_alt": { "name": "do_not_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "disc_full": { "name": "disc_full", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_alert": { "name": "sim_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_off": { "name": "wifi_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_flat": { "name": "airline_seat_flat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_callback": { "name": "phone_callback", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_off": { "name": "do_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "doorbell": { "name": "doorbell", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "blender": { "name": "blender", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_baby": { "name": "bedroom_baby", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee": { "name": "coffee", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathroom": { "name": "bathroom", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "light": { "name": "light", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_sliding": { "name": "door_sliding", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_indoor": { "name": "camera_indoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_child": { "name": "bedroom_child", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "feed": { "name": "feed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "podcasts": { "name": "podcasts", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "garage": { "name": "garage", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "dining": { "name": "dining", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_back": { "name": "door_back", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair_alt": { "name": "chair_alt", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "living": { "name": "living", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "yard": { "name": "yard", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee_maker": { "name": "coffee_maker", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "shower": { "name": "shower", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "window": { "name": "window", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_front": { "name": "door_front", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair": { "name": "chair", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bed": { "name": "bed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_bar": { "name": "table_bar", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flatware": { "name": "flatware", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_search": { "name": "manage_search", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_outdoor": { "name": "camera_outdoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_restaurant": { "name": "table_restaurant", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bedroom_parent": { "name": "bedroom_parent", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "note": { "name": "note", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k": { "name": "7k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay": { "name": "replay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_queue": { "name": "add_to_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add": { "name": "library_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue_play_next": { "name": "queue_play_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k": { "name": "2k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check_circle": { "name": "playlist_add_check_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "repeat_on": { "name": "repeat_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "1k_plus": { "name": "1k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_10": { "name": "forward_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_remove": { "name": "playlist_remove", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mic": { "name": "mic", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_label": { "name": "video_label", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort_by_alpha": { "name": "sort_by_alpha", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_none": { "name": "mic_none", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_to_action": { "name": "call_to_action", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "3k_plus": { "name": "3k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle": { "name": "play_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "8k_plus": { "name": "8k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "interpreter_mode": { "name": "interpreter_mode", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "play_disabled": { "name": "play_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check": { "name": "playlist_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause": { "name": "pause", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "album": { "name": "album", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k_plus": { "name": "7k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_10": { "name": "replay_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_books": { "name": "library_books", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_previous": { "name": "skip_previous", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_circle_filled": { "name": "replay_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_arrow": { "name": "play_arrow", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "speed": { "name": "speed", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k_plus": { "name": "4k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie": { "name": "movie", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat": { "name": "repeat", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_30": { "name": "forward_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "9k": { "name": "9k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_forward": { "name": "fast_forward", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "lyrics": { "name": "lyrics", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "1k": { "name": "1k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subtitles": { "name": "subtitles", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "recent_actors": { "name": "recent_actors", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_settings": { "name": "video_settings", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "3k": { "name": "3k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_5": { "name": "forward_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_off": { "name": "volume_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "loop": { "name": "loop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_filled": { "name": "play_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle_on": { "name": "shuffle_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k_plus": { "name": "2k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k_plus": { "name": "6k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "explicit": { "name": "explicit", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5g": { "name": "5g", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "audio_file": { "name": "audio_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_from_queue": { "name": "remove_from_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue": { "name": "queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_video": { "name": "music_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_play": { "name": "playlist_play", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stop_circle": { "name": "stop_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "av_timer": { "name": "av_timer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web": { "name": "web", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam_off": { "name": "videocam_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_filled": { "name": "pause_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption": { "name": "closed_caption", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hd": { "name": "hd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio": { "name": "radio", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_5": { "name": "replay_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_manual_record": { "name": "fiber_manual_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_rewind": { "name": "fast_rewind", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_music": { "name": "library_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "equalizer": { "name": "equalizer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset": { "name": "web_asset", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam": { "name": "videocam", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "surround_sound": { "name": "surround_sound", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_library": { "name": "video_library", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "missed_video_call": { "name": "missed_video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "8k": { "name": "8k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5k_plus": { "name": "5k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing": { "name": "hearing", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k": { "name": "6k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "games": { "name": "games", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "slow_motion_video": { "name": "slow_motion_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "branding_watermark": { "name": "branding_watermark", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle": { "name": "shuffle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_off": { "name": "mic_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add_check": { "name": "library_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "featured_play_list": { "name": "featured_play_list", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "snooze": { "name": "snooze", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_outline": { "name": "pause_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "featured_video": { "name": "featured_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "10k": { "name": "10k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_call": { "name": "video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "art_track": { "name": "art_track", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_new": { "name": "fiber_new", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd": { "name": "sd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_smart_record": { "name": "fiber_smart_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_next": { "name": "skip_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_up": { "name": "volume_up", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset_off": { "name": "web_asset_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplay": { "name": "airplay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing_disabled": { "name": "hearing_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add_circle": { "name": "playlist_add_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "queue_music": { "name": "queue_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add": { "name": "playlist_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "5k": { "name": "5k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_interested": { "name": "not_interested", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one_on": { "name": "repeat_one_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_file": { "name": "video_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "9k_plus": { "name": "9k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subscriptions": { "name": "subscriptions", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle": { "name": "pause_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "control_camera": { "name": "control_camera", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_mute": { "name": "volume_mute", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_pin": { "name": "fiber_pin", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "high_quality": { "name": "high_quality", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_down": { "name": "volume_down", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k": { "name": "4k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_30": { "name": "replay_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_off": { "name": "closed_caption_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_outline": { "name": "play_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one": { "name": "repeat_one", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop": { "name": "stop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_disabled": { "name": "closed_caption_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "new_releases": { "name": "new_releases", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_dvr": { "name": "fiber_dvr", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_unchecked": { "name": "radio_button_unchecked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_outline": { "name": "star_outline", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "indeterminate_check_box": { "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_on": { "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_purple500": { "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box_outline_blank": { "name": "check_box_outline_blank", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border_purple500": { "name": "star_border_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box": { "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star": { "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border": { "name": "star_border", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_off": { "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_half": { "name": "star_half", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_checked": { "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point_duplicate": { "name": "control_point_duplicate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_off": { "name": "hdr_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_auto": { "name": "motion_photos_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timelapse": { "name": "timelapse", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_front": { "name": "photo_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_small": { "name": "photo_size_select_small", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "8mp": { "name": "8mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_on": { "name": "raw_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_off": { "name": "motion_photos_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "euro": { "name": "euro", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iso": { "name": "iso", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_back": { "name": "photo_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "19mp": { "name": "19mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "linked_camera": { "name": "linked_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_4": { "name": "filter_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "6mp": { "name": "6mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_auto": { "name": "flash_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_rear": { "name": "camera_rear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_android": { "name": "flip_camera_android", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vignette": { "name": "vignette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_zero": { "name": "exposure_zero", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_2": { "name": "filter_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip": { "name": "flip", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_plus": { "name": "hdr_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_roll": { "name": "camera_roll", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_off": { "name": "face_retouching_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_search": { "name": "image_search", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_ccw": { "name": "rotate_90_degrees_ccw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_album": { "name": "photo_album", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_9": { "name": "filter_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_auto": { "name": "wb_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "monochrome_photos": { "name": "monochrome_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_original": { "name": "crop_original", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime": { "name": "bedtime", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "20mp": { "name": "20mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure": { "name": "exposure", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_creation": { "name": "movie_creation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image": { "name": "image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_franc": { "name": "currency_franc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vrpano": { "name": "vrpano", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections_bookmark": { "name": "collections_bookmark", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_none": { "name": "filter_none", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_off": { "name": "blur_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_pound": { "name": "currency_pound", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "timer": { "name": "timer", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "style": { "name": "style", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_2": { "name": "brightness_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy": { "name": "view_comfy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_fix_off": { "name": "auto_fix_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal": { "name": "panorama_horizontal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama": { "name": "panorama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_cloudy": { "name": "wb_cloudy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_red_eye": { "name": "remove_red_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_natural": { "name": "face_retouching_natural", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_cw": { "name": "rotate_90_degrees_cw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "photo_camera": { "name": "photo_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3": { "name": "timer_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "16mp": { "name": "16mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_motion": { "name": "auto_awesome_motion", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_2": { "name": "exposure_plus_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere": { "name": "panorama_photosphere", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_pause": { "name": "motion_photos_pause", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "adjust": { "name": "adjust", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "straighten": { "name": "straighten", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hevc": { "name": "hevc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_portrait": { "name": "crop_portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_off": { "name": "mic_external_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "2mp": { "name": "2mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere_select": { "name": "panorama_photosphere_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_9_plus": { "name": "filter_9_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_strong": { "name": "hdr_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_aspect_ratio": { "name": "image_aspect_ratio", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo": { "name": "photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_front": { "name": "camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_rotate": { "name": "crop_rotate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_incandescent": { "name": "wb_incandescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_not_supported": { "name": "image_not_supported", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "17mp": { "name": "17mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "12mp": { "name": "12mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop": { "name": "crop", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "22mp": { "name": "22mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dirty_lens": { "name": "dirty_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt_long": { "name": "receipt_long", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "4mp": { "name": "4mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_before": { "name": "navigate_before", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_landscape": { "name": "crop_landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "9mp": { "name": "9mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_on": { "name": "mic_external_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat_auto": { "name": "thermostat_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_6": { "name": "brightness_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera": { "name": "camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps_select": { "name": "60fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome": { "name": "auto_awesome", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flare": { "name": "flare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_back": { "name": "video_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_sunny": { "name": "wb_sunny", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_7": { "name": "brightness_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_library": { "name": "photo_library", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_16_9": { "name": "crop_16_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_on": { "name": "blur_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_a_photo": { "name": "add_a_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_fish_eye": { "name": "panorama_fish_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_4": { "name": "looks_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_off": { "name": "raw_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical": { "name": "panorama_vertical", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_3": { "name": "looks_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks": { "name": "looks", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_off": { "name": "music_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_filter": { "name": "movie_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tonality": { "name": "tonality", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "10mp": { "name": "10mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_5": { "name": "filter_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "23mp": { "name": "23mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_off": { "name": "flash_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yen": { "name": "currency_yen", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "14mp": { "name": "14mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_image": { "name": "hide_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_iridescent": { "name": "wb_iridescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "burst_mode": { "name": "burst_mode", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "slideshow": { "name": "slideshow", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_twilight": { "name": "wb_twilight", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blur_circular": { "name": "blur_circular", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_7_5": { "name": "crop_7_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "5mp": { "name": "5mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_large": { "name": "photo_size_select_large", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_alt": { "name": "camera_alt", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_vintage": { "name": "filter_vintage", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "audiotrack": { "name": "audiotrack", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_on": { "name": "flash_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_3": { "name": "brightness_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_actual": { "name": "photo_size_select_actual", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_ios": { "name": "flip_camera_ios", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_drama": { "name": "filter_drama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag_faces": { "name": "tag_faces", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "leak_add": { "name": "leak_add", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "11mp": { "name": "11mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_1": { "name": "exposure_neg_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_rupee": { "name": "currency_rupee", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "healing": { "name": "healing", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_off": { "name": "timer_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transform": { "name": "transform", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens": { "name": "lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_5": { "name": "looks_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "cases": { "name": "cases", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "18mp": { "name": "18mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_filter": { "name": "photo_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter": { "name": "filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_6": { "name": "filter_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_free": { "name": "crop_free", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_1": { "name": "exposure_plus_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact": { "name": "view_compact", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10": { "name": "timer_10", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_mosaic": { "name": "auto_awesome_mosaic", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "21mp": { "name": "21mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_ruble": { "name": "currency_ruble", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "crop_din": { "name": "crop_din", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on": { "name": "hdr_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_square": { "name": "crop_square", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_on": { "name": "grid_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_bitcoin": { "name": "currency_bitcoin", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autofps_select": { "name": "autofps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit": { "name": "edit", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps_select": { "name": "30fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "colorize": { "name": "colorize", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brush": { "name": "brush", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_video": { "name": "switch_video", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_8": { "name": "filter_8", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_1": { "name": "filter_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "contrast": { "name": "contrast", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "brightness_1": { "name": "brightness_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_two": { "name": "looks_two", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "15mp": { "name": "15mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_paused": { "name": "motion_photos_paused", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "loupe": { "name": "loupe", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature": { "name": "nature", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_shade": { "name": "wb_shade", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "circle": { "name": "circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "landscape": { "name": "landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_5": { "name": "brightness_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mp": { "name": "mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_one": { "name": "looks_one", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_as_pdf": { "name": "picture_as_pdf", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "3mp": { "name": "3mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical_select": { "name": "panorama_vertical_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_b_and_w": { "name": "filter_b_and_w", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_note": { "name": "music_note", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "details": { "name": "details", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_photo_alternate": { "name": "add_photo_alternate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_7": { "name": "filter_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_right": { "name": "rotate_right", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_strong": { "name": "center_focus_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dehaze": { "name": "dehaze", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal_select": { "name": "panorama_horizontal_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime_off": { "name": "bedtime_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "motion_photos_on": { "name": "motion_photos_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compare": { "name": "compare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_3_2": { "name": "crop_3_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature_people": { "name": "nature_people", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tune": { "name": "tune", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_3": { "name": "filter_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "deblur": { "name": "deblur", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "texture": { "name": "texture", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_6": { "name": "looks_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "broken_image": { "name": "broken_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_hdr": { "name": "filter_hdr", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_4": { "name": "brightness_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "incomplete_circle": { "name": "incomplete_circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assistant_photo": { "name": "assistant_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_weak": { "name": "hdr_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_weak": { "name": "center_focus_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_normal": { "name": "auto_fix_normal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_enhanced_select": { "name": "hdr_enhanced_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_center_focus": { "name": "filter_center_focus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_off": { "name": "grid_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle": { "name": "panorama_wide_angle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant": { "name": "assistant", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections": { "name": "collections", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_next": { "name": "navigate_next", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_5_4": { "name": "crop_5_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grain": { "name": "grain", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_linear": { "name": "blur_linear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_lira": { "name": "currency_lira", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "24mp": { "name": "24mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_stories": { "name": "auto_stories", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "palette": { "name": "palette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "color_lens": { "name": "color_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_2": { "name": "exposure_neg_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "13mp": { "name": "13mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "7mp": { "name": "7mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_front": { "name": "video_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yuan": { "name": "currency_yuan", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "portrait": { "name": "portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_photos": { "name": "add_to_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point": { "name": "control_point", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_frames": { "name": "filter_frames", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "shutter_speed": { "name": "shutter_speed", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_tilt_shift": { "name": "filter_tilt_shift", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "logo_dev": { "name": "logo_dev", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leak_remove": { "name": "leak_remove", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle_select": { "name": "panorama_wide_angle_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_left": { "name": "rotate_left", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "gradient": { "name": "gradient", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_camera": { "name": "switch_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "animation": { "name": "animation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_high": { "name": "auto_fix_high", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_stable": { "name": "video_stable", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_left": { "name": "arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu": { "name": "menu", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_left": { "name": "switch_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "legend_toggle": { "name": "legend_toggle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_west": { "name": "south_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_upward": { "name": "arrow_upward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "waterfall_chart": { "name": "waterfall_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_circle_down": { "name": "expand_circle_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_drop_up": { "name": "arrow_drop_up", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "first_page": { "name": "first_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen": { "name": "fullscreen", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_left": { "name": "subdirectory_arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_right": { "name": "chevron_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home_work": { "name": "add_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps_outage": { "name": "apps_outage", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps": { "name": "apps", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "west": { "name": "west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_share": { "name": "offline_share", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right": { "name": "arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_right": { "name": "subdirectory_arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_downward": { "name": "arrow_downward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down_circle": { "name": "arrow_drop_down_circle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more": { "name": "unfold_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "cancel": { "name": "cancel", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "payments": { "name": "payments", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south_east": { "name": "south_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_work": { "name": "home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand_more": { "name": "expand_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "double_arrow": { "name": "double_arrow", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "north_west": { "name": "north_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_settings_alt": { "name": "app_settings_alt", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_less": { "name": "expand_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios": { "name": "arrow_back_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_open": { "name": "menu_open", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "campaign": { "name": "campaign", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "check": { "name": "check", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "refresh": { "name": "refresh", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south": { "name": "south", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_right": { "name": "switch_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_vert": { "name": "more_vert", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_less": { "name": "unfold_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "close": { "name": "close", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant_direction": { "name": "assistant_direction", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_left": { "name": "chevron_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back": { "name": "arrow_back", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "east": { "name": "east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north_east": { "name": "north_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "maps_home_work": { "name": "maps_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "pivot_table_chart": { "name": "pivot_table_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen_exit": { "name": "fullscreen_exit", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_horiz": { "name": "more_horiz", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_forward_ios": { "name": "arrow_forward_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "last_page": { "name": "last_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down": { "name": "arrow_drop_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios_new": { "name": "arrow_back_ios_new", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_forward": { "name": "arrow_forward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north": { "name": "north", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_movies": { "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "festival": { "name": "festival", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "traffic": { "name": "traffic", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "kebab_dining": { "name": "kebab_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrong_location": { "name": "wrong_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "my_location": { "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_scooter": { "name": "electric_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_railway_filled": { "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "crisis_alert": { "name": "crisis_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sailing": { "name": "sailing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "warehouse": { "name": "warehouse", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_share": { "name": "emergency_share", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_stops": { "name": "airline_stops", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nightlife": { "name": "nightlife", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diamond": { "name": "diamond", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant": { "name": "restaurant", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "attractions": { "name": "attractions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway": { "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "breakfast_dining": { "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_see": { "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "store_mall_directory": { "name": "store_mall_directory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_police": { "name": "local_police", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fort": { "name": "fort", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_right": { "name": "u_turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_atm": { "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_road": { "name": "edit_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_check": { "name": "safety_check", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transfer_within_a_station": { "name": "transfer_within_a_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ev_station": { "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hospital": { "name": "local_hospital", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "soup_kitchen": { "name": "soup_kitchen", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_meals": { "name": "no_meals", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "sos": { "name": "sos", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel": { "name": "hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_class": { "name": "flight_class", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "liquor": { "name": "liquor", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_information": { "name": "medical_information", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "plumbing": { "name": "plumbing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "place": { "name": "place", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "lunch_dining": { "name": "lunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_grocery_store": { "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_mall": { "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_right": { "name": "turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_attributes": { "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigation": { "name": "navigation", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_railway": { "name": "directions_railway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "layers_clear": { "name": "layers_clear", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moped": { "name": "moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "beenhere": { "name": "beenhere", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "trip_origin": { "name": "trip_origin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_shipping": { "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "minor_crash": { "name": "minor_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin": { "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "departure_board": { "name": "departure_board", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "agriculture": { "name": "agriculture", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "two_wheeler": { "name": "two_wheeler", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat": { "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_walk": { "name": "directions_walk", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_cafe": { "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "tram": { "name": "tram", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "celebration": { "name": "celebration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_left": { "name": "turn_sharp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_rickshaw": { "name": "electric_rickshaw", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "miscellaneous_services": { "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_listed_location": { "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_bike": { "name": "electric_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tire_repair": { "name": "tire_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry_cleaning": { "name": "dry_cleaning", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electrical_services": { "name": "electrical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_transfer": { "name": "no_transfer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "synagogue": { "name": "synagogue", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway_filled": { "name": "directions_subway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_book": { "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pest_control": { "name": "pest_control", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fork_left": { "name": "fork_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowmobile": { "name": "snowmobile", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_repair": { "name": "car_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "park": { "name": "park", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "church": { "name": "church", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hardware": { "name": "hardware", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bike_scooter": { "name": "bike_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compass_calibration": { "name": "compass_calibration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "dinner_dining": { "name": "dinner_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_taxi": { "name": "local_taxi", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_pizza": { "name": "local_pizza", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_parking": { "name": "local_parking", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me": { "name": "near_me", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in_map": { "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_phone": { "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_drink": { "name": "local_drink", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_right": { "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "maps_ugc": { "name": "maps_ugc", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car": { "name": "directions_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hotel": { "name": "local_hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fire_hydrant_alt": { "name": "fire_hydrant_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_printshop": { "name": "local_printshop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_business": { "name": "add_business", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_car": { "name": "electric_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin_circle": { "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation_alt": { "name": "screen_rotation_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_bar": { "name": "local_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "forest": { "name": "forest", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite": { "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_airport": { "name": "local_airport", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volunteer_activism": { "name": "volunteer_activism", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_fire_department": { "name": "local_fire_department", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "set_meal": { "name": "set_meal", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge": { "name": "merge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_car_wash": { "name": "local_car_wash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "atm": { "name": "atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_play": { "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moving": { "name": "moving", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "360": { "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight": { "name": "flight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "castle": { "name": "castle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "layers": { "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pedal_bike": { "name": "pedal_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_hindu": { "name": "temple_hindu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location_alt": { "name": "edit_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_services": { "name": "medical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_post_office": { "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "map": { "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hail": { "name": "hail", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "signpost": { "name": "signpost", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bakery_dining": { "name": "bakery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "zoom_out_map": { "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_repair_service": { "name": "home_repair_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wine_bar": { "name": "wine_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_left": { "name": "turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant_menu": { "name": "restaurant_menu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_left": { "name": "turn_slight_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "theater_comedy": { "name": "theater_comedy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramen_dining": { "name": "ramen_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_drop": { "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "transit_enterexit": { "name": "transit_enterexit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_crash": { "name": "no_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "egg_alt": { "name": "egg_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location": { "name": "edit_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_laundry_service": { "name": "local_laundry_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_dining": { "name": "local_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit_filled": { "name": "directions_transit_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "brunch_dining": { "name": "brunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "design_services": { "name": "design_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "run_circle": { "name": "run_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency": { "name": "emergency", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_road": { "name": "remove_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_run": { "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bus": { "name": "directions_bus", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_location_alt": { "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "streetview": { "name": "streetview", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "badge": { "name": "badge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_pharmacy": { "name": "local_pharmacy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fork_right": { "name": "fork_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_buddhist": { "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "factory": { "name": "factory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_location": { "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me_disabled": { "name": "near_me_disabled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "car_rental": { "name": "car_rental", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_right": { "name": "turn_sharp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "category": { "name": "category", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "taxi_alert": { "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "bus_alert": { "name": "bus_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "straight": { "name": "straight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rate_review": { "name": "rate_review", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "money": { "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ramp_left": { "name": "ramp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_left": { "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "railway_alert": { "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "cleaning_services": { "name": "cleaning_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "icecream": { "name": "icecream", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "multiple_stop": { "name": "multiple_stop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "handyman": { "name": "handyman", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_of_travel": { "name": "mode_of_travel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramp_right": { "name": "ramp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_right": { "name": "roundabout_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_truck": { "name": "fire_truck", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_bus_filled": { "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_offer": { "name": "local_offer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_moped": { "name": "electric_moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_recording": { "name": "emergency_recording", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_left": { "name": "u_turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_road": { "name": "add_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_gas_station": { "name": "local_gas_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "terrain": { "name": "terrain", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hvac": { "name": "hvac", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_library": { "name": "local_library", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car_filled": { "name": "directions_car_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "museum": { "name": "museum", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_convenience_store": { "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "airlines": { "name": "airlines", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fastfood": { "name": "fastfood", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "stadium": { "name": "stadium", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pest_control_rodent": { "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "route": { "name": "route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delivery_dining": { "name": "delivery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alt_route": { "name": "alt_route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subway": { "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "train": { "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_activity": { "name": "local_activity", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit": { "name": "directions_transit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "egg": { "name": "egg", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_crash": { "name": "car_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mosque": { "name": "mosque", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "takeout_dining": { "name": "takeout_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat_filled": { "name": "directions_boat_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bike": { "name": "directions_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "connecting_airports": { "name": "connecting_airports", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_florist": { "name": "local_florist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions": { "name": "directions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "savings": { "name": "savings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_outline": { "name": "label_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_left": { "name": "arrow_circle_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_bluetooth": { "name": "settings_bluetooth", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "alarm_off": { "name": "alarm_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_all": { "name": "done_all", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbox": { "name": "outbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "polymer": { "name": "polymer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "online_prediction": { "name": "online_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outlet": { "name": "outlet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pending": { "name": "pending", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quickreply": { "name": "quickreply", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "density_large": { "name": "density_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_week": { "name": "view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_exploration": { "name": "data_exploration", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report_problem": { "name": "report_problem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_accessibility": { "name": "settings_accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_scan_wifi": { "name": "perm_scan_wifi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "find_in_page": { "name": "find_in_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "3d_rotation": { "name": "3d_rotation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_outline": { "name": "lock_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "production_quantity_limits": { "name": "production_quantity_limits", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_flat": { "name": "trending_flat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_for_work": { "name": "play_for_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_full": { "name": "hourglass_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio": { "name": "spatial_audio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "token": { "name": "token", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flight_takeoff": { "name": "flight_takeoff", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label": { "name": "label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search": { "name": "search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio_off": { "name": "spatial_audio_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_add": { "name": "alarm_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_full": { "name": "join_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle": { "name": "check_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "get_app": { "name": "get_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension_off": { "name": "extension_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "find_replace": { "name": "find_replace", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_basket": { "name": "shopping_basket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "terminal": { "name": "terminal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_important_outline": { "name": "label_important_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_add": { "name": "bookmark_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "javascript": { "name": "javascript", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_schedule_send": { "name": "cancel_schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm": { "name": "alarm", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "plagiarism": { "name": "plagiarism", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compress": { "name": "compress", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_out": { "name": "zoom_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy_alt": { "name": "view_comfy_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_applications": { "name": "settings_applications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_ethernet": { "name": "settings_ethernet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angleup": { "name": "text_rotation_angleup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore_from_trash": { "name": "restore_from_trash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flaky": { "name": "flaky", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_form": { "name": "dynamic_form", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors_off": { "name": "sensors_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update_disabled": { "name": "update_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new_off": { "name": "open_in_new_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copyright": { "name": "copyright", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "room": { "name": "room", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "opacity": { "name": "opacity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "schedule_send": { "name": "schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_travel": { "name": "card_travel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lightbulb_circle": { "name": "lightbulb_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_return": { "name": "assignment_return", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_card": { "name": "add_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_full": { "name": "open_in_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home": { "name": "add_home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "browse_gallery": { "name": "browse_gallery", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unpublished": { "name": "unpublished", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_backup_restore": { "name": "settings_backup_restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab_unselected": { "name": "tab_unselected", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code_off": { "name": "code_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_vertical": { "name": "swipe_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility": { "name": "accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "addchart": { "name": "addchart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_exchange": { "name": "currency_exchange", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "css": { "name": "css", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_sidebar": { "name": "view_sidebar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pending_actions": { "name": "pending_actions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tour": { "name": "tour", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight_round": { "name": "nightlight_round", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_important": { "name": "label_important", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "theaters": { "name": "theaters", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "backup_table": { "name": "backup_table", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "youtube_searched_for": { "name": "youtube_searched_for", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_off": { "name": "edit_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_outline": { "name": "done_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_plan": { "name": "next_plan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rule": { "name": "rule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "paid": { "name": "paid", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark": { "name": "bookmark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_source": { "name": "hide_source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "loyalty": { "name": "loyalty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fingerprint": { "name": "fingerprint", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "store": { "name": "store", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down_off_alt": { "name": "thumb_down_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_left_alt": { "name": "swipe_left_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leaderboard": { "name": "leaderboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_contact_calendar": { "name": "perm_contact_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "api": { "name": "api", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assured_workload": { "name": "assured_workload", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contactless": { "name": "contactless", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pan_tool": { "name": "pan_tool", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread_mailbox": { "name": "markunread_mailbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "preview": { "name": "preview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_alt_off": { "name": "filter_alt_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_input_component": { "name": "settings_input_component", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbond": { "name": "outbond", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work": { "name": "work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down_alt": { "name": "swipe_down_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "saved_search": { "name": "saved_search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_month": { "name": "calendar_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "article": { "name": "article", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "display_settings": { "name": "display_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe": { "name": "swipe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pinch": { "name": "pinch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "balance": { "name": "balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help": { "name": "help", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_page": { "name": "request_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop_2": { "name": "shop_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "watch_later": { "name": "watch_later", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock": { "name": "lock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmarks": { "name": "bookmarks", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_kanban": { "name": "view_kanban", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "history": { "name": "history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "generating_tokens": { "name": "generating_tokens", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_day": { "name": "view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible": { "name": "accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_carousel": { "name": "view_carousel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "percent": { "name": "percent", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "private_connectivity": { "name": "private_connectivity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "table_view": { "name": "table_view", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "favorite": { "name": "favorite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fit_screen": { "name": "fit_screen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_down": { "name": "text_rotation_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "dashboard": { "name": "dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_support": { "name": "contact_support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_border": { "name": "bookmark_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_right": { "name": "arrow_circle_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "track_changes": { "name": "track_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible_forward": { "name": "accessible_forward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_left": { "name": "join_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified": { "name": "verified", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "android": { "name": "android", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "note_add": { "name": "note_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore": { "name": "restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_blocking": { "name": "app_blocking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gif_box": { "name": "gif_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility_new": { "name": "accessibility_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "reorder": { "name": "reorder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_turned_in": { "name": "assignment_turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_seat": { "name": "event_seat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_today": { "name": "calendar_today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart": { "name": "shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_button": { "name": "smart_button", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_composite": { "name": "settings_input_composite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up": { "name": "thumb_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "ads_click": { "name": "ads_click", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified_user": { "name": "verified_user", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_membership": { "name": "card_membership", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_overscan": { "name": "settings_overscan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in": { "name": "zoom_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code": { "name": "code", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_right": { "name": "join_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_task": { "name": "add_task", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_in_ar": { "name": "view_in_ar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_identity": { "name": "perm_identity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "install_mobile": { "name": "install_mobile", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turned_in": { "name": "turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_medium": { "name": "density_medium", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rocket": { "name": "rocket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_end": { "name": "pin_end", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle_outline": { "name": "check_circle_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_data_setting": { "name": "perm_data_setting", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_phone_msg": { "name": "perm_phone_msg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "http": { "name": "http", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_right_alt": { "name": "swipe_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_out": { "name": "all_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "exit_to_app": { "name": "exit_to_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "repartition": { "name": "repartition", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "euro_symbol": { "name": "euro_symbol", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "maximize": { "name": "maximize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_land": { "name": "flight_land", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "record_voice_over": { "name": "record_voice_over", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "login": { "name": "login", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_reset": { "name": "lock_reset", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "source": { "name": "source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tips_and_updates": { "name": "tips_and_updates", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_center": { "name": "help_center", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "eject": { "name": "eject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_column": { "name": "view_column", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_box": { "name": "account_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fax": { "name": "fax", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schedule": { "name": "schedule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab": { "name": "tab", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_ind": { "name": "assignment_ind", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "important_devices": { "name": "important_devices", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "face": { "name": "face", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors": { "name": "sensors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "commit": { "name": "commit", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "list": { "name": "list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_stream": { "name": "view_stream", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_left": { "name": "swipe_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_right": { "name": "swipe_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_full": { "name": "width_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_invoke": { "name": "pin_invoke", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand": { "name": "expand", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors": { "name": "invert_colors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "batch_prediction": { "name": "batch_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_aware": { "name": "noise_aware", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "eco": { "name": "eco", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_open": { "name": "lock_open", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_remove": { "name": "bookmark_remove", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_late": { "name": "assignment_late", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "upgrade": { "name": "upgrade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rowing": { "name": "rowing", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbound": { "name": "outbound", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_cell": { "name": "settings_cell", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_device_information": { "name": "perm_device_information", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_alt": { "name": "sync_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_browser": { "name": "open_in_browser", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "feedback": { "name": "feedback", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop": { "name": "shop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_shopping_cart": { "name": "add_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_tracking": { "name": "spatial_tracking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_outline": { "name": "help_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book": { "name": "book", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "launch": { "name": "launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_quilt": { "name": "view_quilt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "support": { "name": "support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_accounts": { "name": "no_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_day": { "name": "calendar_view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture_alt": { "name": "picture_in_picture_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_off": { "name": "work_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "https": { "name": "https", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility_off": { "name": "visibility_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_timeline": { "name": "view_timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_done": { "name": "remove_done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pageview": { "name": "pageview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info_outline": { "name": "info_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_access_shortcut_add": { "name": "switch_access_shortcut_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel_class": { "name": "hotel_class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hourglass_disabled": { "name": "hourglass_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_split": { "name": "horizontal_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture": { "name": "picture_in_picture", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grade": { "name": "grade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right_alt": { "name": "arrow_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "webhook": { "name": "webhook", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb": { "name": "lightbulb", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_history": { "name": "work_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb_outline": { "name": "lightbulb_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "close_fullscreen": { "name": "close_fullscreen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_translate": { "name": "g_translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_work": { "name": "group_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book_online": { "name": "book_online", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "published_with_changes": { "name": "published_with_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pets": { "name": "pets", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_pin": { "name": "offline_pin", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_toggle_off": { "name": "history_toggle_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_normal": { "name": "width_normal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "new_label": { "name": "new_label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_headline": { "name": "view_headline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "send_and_archive": { "name": "send_and_archive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_unlock": { "name": "face_unlock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flutter_dash": { "name": "flutter_dash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "speaker_notes_off": { "name": "speaker_notes_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_forever": { "name": "delete_forever", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart_checkout": { "name": "shopping_cart_checkout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "integration_instructions": { "name": "integration_instructions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "transcribe": { "name": "transcribe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "power_settings_new": { "name": "power_settings_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_empty": { "name": "hourglass_empty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "translate": { "name": "translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down": { "name": "thumb_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_off": { "name": "label_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_rate": { "name": "star_rate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "18": { "width": 18, "path": "" } } }, "view_module": { "name": "view_module", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "free_cancellation": { "name": "free_cancellation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_alt": { "name": "filter_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card_off": { "name": "credit_card_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "on_device_training": { "name": "on_device_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "date_range": { "name": "date_range", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_up": { "name": "arrow_circle_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "space_dashboard": { "name": "space_dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subtitles_off": { "name": "subtitles_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gif": { "name": "gif", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horizontal_circle": { "name": "swap_horizontal_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_hdmi": { "name": "settings_input_hdmi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_by_default": { "name": "disabled_by_default", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_page": { "name": "contact_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_large": { "name": "donut_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_list": { "name": "view_list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update": { "name": "update", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down": { "name": "swipe_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_access_shortcut": { "name": "switch_access_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "aspect_ratio": { "name": "aspect_ratio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_notes": { "name": "speaker_notes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_giftcard": { "name": "card_giftcard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_alt": { "name": "highlight_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_up": { "name": "swipe_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_back": { "name": "flip_to_back", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spellcheck": { "name": "spellcheck", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_repeat": { "name": "event_repeat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swap_vertical_circle": { "name": "swap_vertical_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "troubleshoot": { "name": "troubleshoot", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_protected_setup": { "name": "wifi_protected_setup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_cozy": { "name": "view_cozy", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "build_circle": { "name": "build_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unfold_less_double": { "name": "unfold_less_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shop_two": { "name": "shop_two", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension": { "name": "extension", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horiz": { "name": "swap_horiz", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervised_user_circle": { "name": "supervised_user_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore_off": { "name": "explore_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_down": { "name": "trending_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "segment": { "name": "segment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toc": { "name": "toc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_inner": { "name": "join_inner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_clock": { "name": "lock_clock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "analytics": { "name": "analytics", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "task_alt": { "name": "task_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_up": { "name": "text_rotate_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_bolt": { "name": "offline_bolt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "output": { "name": "output", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_inbox": { "name": "all_inbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "home": { "name": "home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_small": { "name": "density_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "abc": { "name": "abc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "install_desktop": { "name": "install_desktop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_on": { "name": "alarm_on", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete": { "name": "delete", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_agenda": { "name": "view_agenda", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autorenew": { "name": "autorenew", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angledown": { "name": "text_rotation_angledown", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_shortcut": { "name": "app_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "circle_notifications": { "name": "circle_notifications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gavel": { "name": "gavel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "minimize": { "name": "minimize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_array": { "name": "view_array", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dangerous": { "name": "dangerous", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_calendar": { "name": "edit_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "event": { "name": "event", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_accessible": { "name": "not_accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wysiwyg": { "name": "wysiwyg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grading": { "name": "grading", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "model_training": { "name": "model_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite_alt": { "name": "satellite_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cached": { "name": "cached", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore": { "name": "explore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info": { "name": "info", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fact_check": { "name": "fact_check", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_with": { "name": "open_with", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_split": { "name": "vertical_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "anchor": { "name": "anchor", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls_off": { "name": "hls_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_started": { "name": "not_started", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "favorite_border": { "name": "favorite_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "build": { "name": "build", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls": { "name": "hls", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "print": { "name": "print", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_camera_mic": { "name": "perm_camera_mic", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bug_report": { "name": "bug_report", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_added": { "name": "bookmark_added", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumbs_up_down": { "name": "thumbs_up_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more_double": { "name": "unfold_more_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "logout": { "name": "logout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_accounts": { "name": "manage_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "payment": { "name": "payment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rocket_launch": { "name": "rocket_launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_weight": { "name": "line_weight", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_over_off": { "name": "voice_over_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_off": { "name": "highlight_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_thresholding": { "name": "data_thresholding", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_front": { "name": "flip_to_front", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "today": { "name": "today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility": { "name": "visibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_as_unread": { "name": "mark_as_unread", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restore_page": { "name": "restore_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_mark": { "name": "question_mark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comment_bank": { "name": "comment_bank", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "input": { "name": "input", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_remote": { "name": "settings_remote", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_visible": { "name": "disabled_visible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delete_outline": { "name": "delete_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_vertical": { "name": "text_rotate_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_bag": { "name": "shopping_bag", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt": { "name": "receipt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_answer": { "name": "question_answer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toll": { "name": "toll", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_antenna": { "name": "settings_input_antenna", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "try": { "name": "try", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rounded_corner": { "name": "rounded_corner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "touch_app": { "name": "touch_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_drive": { "name": "add_to_drive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dashboard_customize": { "name": "dashboard_customize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done": { "name": "done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "php": { "name": "php", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_rotation_none": { "name": "text_rotation_none", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "admin_panel_settings": { "name": "admin_panel_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "backup": { "name": "backup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_outward": { "name": "arrow_outward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_control_off": { "name": "noise_control_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "query_builder": { "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_power": { "name": "settings_power", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_outline": { "name": "work_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_week": { "name": "calendar_view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_brightness": { "name": "settings_brightness", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance_wallet": { "name": "account_balance_wallet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "commute": { "name": "commute", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings": { "name": "settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "subject": { "name": "subject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "compare_arrows": { "name": "compare_arrows", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assessment": { "name": "assessment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "language": { "name": "language", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pregnant_woman": { "name": "pregnant_woman", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card": { "name": "credit_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_voice": { "name": "settings_voice", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_vert": { "name": "swap_vert", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "html": { "name": "html", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_style": { "name": "line_style", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pan_tool_alt": { "name": "pan_tool_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "description": { "name": "description", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_present": { "name": "file_present", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "stars": { "name": "stars", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment": { "name": "assignment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_enhance": { "name": "camera_enhance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up_off_alt": { "name": "thumb_up_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sticky_note_2": { "name": "sticky_note_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_history": { "name": "manage_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "announcement": { "name": "announcement", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_month": { "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_shopping_cart": { "name": "remove_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_history": { "name": "change_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "drag_indicator": { "name": "drag_indicator", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "privacy_tip": { "name": "privacy_tip", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_circle": { "name": "account_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chrome_reader_mode": { "name": "chrome_reader_mode", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_ping": { "name": "network_ping", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "perm_media": { "name": "perm_media", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "timeline": { "name": "timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search_off": { "name": "search_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_up_alt": { "name": "swipe_up_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "123": { "name": "123", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new": { "name": "open_in_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_returned": { "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_phone": { "name": "settings_phone", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance": { "name": "account_balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact_alt": { "name": "view_compact_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dns": { "name": "dns", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mediation": { "name": "mediation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_small": { "name": "donut_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "redeem": { "name": "redeem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "turned_in_not": { "name": "turned_in_not", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update_alt": { "name": "system_update_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "class": { "name": "class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_up": { "name": "trending_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_svideo": { "name": "settings_input_svideo", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervisor_account": { "name": "supervisor_account", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_person": { "name": "lock_person", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_circle_down": { "name": "arrow_circle_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_wide": { "name": "width_wide", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "desktop_mac": { "name": "desktop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_chromebook": { "name": "laptop_chromebook", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_down": { "name": "keyboard_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "mouse": { "name": "mouse", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_command_key": { "name": "keyboard_command_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_left": { "name": "keyboard_double_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_option_key": { "name": "keyboard_option_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_return": { "name": "keyboard_return", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_alt": { "name": "keyboard_alt", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "cast_for_education": { "name": "cast_for_education", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink": { "name": "phonelink", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_updated": { "name": "browser_updated", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "earbuds_battery": { "name": "earbuds_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board_off": { "name": "developer_board_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "start": { "name": "start", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "headset": { "name": "headset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset": { "name": "videogame_asset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor": { "name": "monitor", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_right": { "name": "keyboard_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "scanner": { "name": "scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch": { "name": "watch", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board": { "name": "developer_board", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_iphone": { "name": "phone_iphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_android": { "name": "tablet_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_mac": { "name": "tablet_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "router": { "name": "router", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones_battery": { "name": "headphones_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_backspace": { "name": "keyboard_backspace", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_toy": { "name": "smart_toy", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "gamepad": { "name": "gamepad", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "adf_scanner": { "name": "adf_scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "laptop_mac": { "name": "laptop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_not_supported": { "name": "browser_not_supported", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast_connected": { "name": "cast_connected", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv": { "name": "tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_windows": { "name": "laptop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_control_key": { "name": "keyboard_control_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "smart_display": { "name": "smart_display", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones": { "name": "headphones", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_android": { "name": "phone_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_up": { "name": "keyboard_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_max": { "name": "home_max", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smartphone": { "name": "smartphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_tab": { "name": "keyboard_tab", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch_off": { "name": "watch_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast": { "name": "cast", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "point_of_sale": { "name": "point_of_sale", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "computer": { "name": "computer", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "device_unknown": { "name": "device_unknown", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "memory": { "name": "memory", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_voice": { "name": "keyboard_voice", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard": { "name": "keyboard", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "earbuds": { "name": "earbuds", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "security": { "name": "security", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_hide": { "name": "keyboard_hide", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_input": { "name": "power_input", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_mini": { "name": "home_mini", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_other": { "name": "devices_other", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_mic": { "name": "headset_mic", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset_off": { "name": "videogame_asset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dock": { "name": "dock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_capslock": { "name": "keyboard_capslock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_off": { "name": "headset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_right": { "name": "keyboard_double_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_off": { "name": "phonelink_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card": { "name": "sim_card", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_left": { "name": "keyboard_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_up": { "name": "keyboard_double_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "toys": { "name": "toys", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_down": { "name": "keyboard_double_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_hub": { "name": "device_hub", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_group": { "name": "speaker_group", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_windows": { "name": "desktop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "connected_tv": { "name": "connected_tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet": { "name": "tablet", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop": { "name": "laptop", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker": { "name": "speaker", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_screen": { "name": "smart_screen", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "portable_wifi_off": { "name": "portable_wifi_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "textsms": { "name": "textsms", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_split": { "name": "call_split", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_export": { "name": "import_export", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone": { "name": "phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "3p": { "name": "3p", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "clear_all": { "name": "clear_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "dialpad": { "name": "dialpad", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat": { "name": "chat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_search": { "name": "person_search", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comments_disabled": { "name": "comments_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key": { "name": "vpn_key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "unsubscribe": { "name": "unsubscribe", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_setup": { "name": "phonelink_setup", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "live_help": { "name": "live_help", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "present_to_all": { "name": "present_to_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call": { "name": "call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "domain_disabled": { "name": "domain_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_portrait": { "name": "stay_current_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_access_disabled": { "name": "desktop_access_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_share": { "name": "screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_phone": { "name": "speaker_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_unread": { "name": "mark_email_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nat": { "name": "nat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_ring": { "name": "phonelink_ring", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_read": { "name": "mark_email_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "email": { "name": "email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "print_disabled": { "name": "print_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_chat_read": { "name": "mark_chat_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_made": { "name": "call_made", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_landscape": { "name": "stay_primary_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code": { "name": "qr_code", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_unread_chat_alt": { "name": "mark_unread_chat_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "spoke": { "name": "spoke", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chat_bubble": { "name": "chat_bubble", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "cell_tower": { "name": "cell_tower", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "document_scanner": { "name": "document_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key_off": { "name": "vpn_key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contacts": { "name": "contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "list_alt": { "name": "list_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_lock": { "name": "phonelink_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_enabled": { "name": "phone_enabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "co_present": { "name": "co_present", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_verification": { "name": "domain_verification", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied_alt": { "name": "sentiment_satisfied_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_disabled": { "name": "phone_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_ic_call": { "name": "add_ic_call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_on": { "name": "location_on", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_disabled": { "name": "person_add_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "business": { "name": "business", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_end": { "name": "call_end", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code_scanner": { "name": "qr_code_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_erase": { "name": "phonelink_erase", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed": { "name": "call_missed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_registration": { "name": "app_registration", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hub": { "name": "hub", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause_presentation": { "name": "pause_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop_screen_share": { "name": "stop_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "sip": { "name": "sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_lock": { "name": "mail_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_merge": { "name": "call_merge", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_bottom": { "name": "hourglass_bottom", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dialer_sip": { "name": "dialer_sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "comment": { "name": "comment", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_received": { "name": "call_received", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling": { "name": "wifi_calling", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forum": { "name": "forum", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "rtt": { "name": "rtt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_to_inbox": { "name": "forward_to_inbox", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_time_extension": { "name": "send_time_extension", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_presentation": { "name": "cancel_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_mail": { "name": "contact_mail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat_bubble_outline": { "name": "chat_bubble_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_phone": { "name": "contact_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_off": { "name": "location_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed_outgoing": { "name": "call_missed_outgoing", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_emergency": { "name": "contact_emergency", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "duo": { "name": "duo", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_portrait": { "name": "stay_primary_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_sim": { "name": "no_sim", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "message": { "name": "message", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "read_more": { "name": "read_more", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rss_feed": { "name": "rss_feed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_calls": { "name": "swap_calls", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_top": { "name": "hourglass_top", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "voicemail": { "name": "voicemail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_landscape": { "name": "stay_current_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_outline": { "name": "mail_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "ring_volume": { "name": "ring_volume", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors_off": { "name": "invert_colors_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cell_wifi": { "name": "cell_wifi", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_screen_share": { "name": "mobile_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_contacts": { "name": "import_contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "alternate_email": { "name": "alternate_email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "key_off": { "name": "key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_chat_unread": { "name": "mark_chat_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "key": { "name": "key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "qr_code_2": { "name": "qr_code_2", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_time": { "name": "more_time", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grass": { "name": "grass", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bento": { "name": "bento", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "backpack": { "name": "backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "other_houses": { "name": "other_houses", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iron": { "name": "iron", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "escalator_warning": { "name": "escalator_warning", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cottage": { "name": "cottage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "golf_course": { "name": "golf_course", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_touch": { "name": "do_not_touch", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cabin": { "name": "cabin", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_photography": { "name": "no_photography", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vaping_rooms": { "name": "vaping_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "room_preferences": { "name": "room_preferences", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "fitness_center": { "name": "fitness_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_drinks": { "name": "no_drinks", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathtub": { "name": "bathtub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hot_tub": { "name": "hot_tub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "night_shelter": { "name": "night_shelter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "desk": { "name": "desk", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wash": { "name": "wash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_friendly": { "name": "child_friendly", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "soap": { "name": "soap", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoke_free": { "name": "smoke_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "kitchen": { "name": "kitchen", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stroller": { "name": "stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "crib": { "name": "crib", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "umbrella": { "name": "umbrella", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "beach_access": { "name": "beach_access", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "pool": { "name": "pool", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "gite": { "name": "gite", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_extinguisher": { "name": "fire_extinguisher", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoking_rooms": { "name": "smoking_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rv_hookup": { "name": "rv_hookup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "all_inclusive": { "name": "all_inclusive", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "family_restroom": { "name": "family_restroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stairs": { "name": "stairs", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tty": { "name": "tty", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "escalator": { "name": "escalator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_meeting_room": { "name": "no_meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_step": { "name": "do_not_step", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "water_damage": { "name": "water_damage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "carpenter": { "name": "carpenter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "checkroom": { "name": "checkroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_flash": { "name": "no_flash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "meeting_room": { "name": "meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "food_bank": { "name": "food_bank", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tapas": { "name": "tapas", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "roofing": { "name": "roofing", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "storefront": { "name": "storefront", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "room_service": { "name": "room_service", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "balcony": { "name": "balcony", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "countertops": { "name": "countertops", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "foundation": { "name": "foundation", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "holiday_village": { "name": "holiday_village", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "charging_station": { "name": "charging_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "airport_shuttle": { "name": "airport_shuttle", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_food": { "name": "no_food", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "houseboat": { "name": "houseboat", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "elevator": { "name": "elevator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "ac_unit": { "name": "ac_unit", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "house_siding": { "name": "house_siding", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_care": { "name": "child_care", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "business_center": { "name": "business_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rice_bowl": { "name": "rice_bowl", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_backpack": { "name": "no_backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vape_free": { "name": "vape_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "house": { "name": "house", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "baby_changing_station": { "name": "baby_changing_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_stroller": { "name": "no_stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "microwave": { "name": "microwave", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_cell": { "name": "no_cell", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "wheelchair_pickup": { "name": "wheelchair_pickup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "casino": { "name": "casino", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bungalow": { "name": "bungalow", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chalet": { "name": "chalet", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry": { "name": "dry", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_bar": { "name": "sports_bar", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "villa": { "name": "villa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apartment": { "name": "apartment", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fence": { "name": "fence", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "corporate_fare": { "name": "corporate_fare", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "free_breakfast": { "name": "free_breakfast", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "spa": { "name": "spa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_done": { "name": "cloud_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "downloading": { "name": "downloading", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_quote": { "name": "request_quote", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_rename_outline": { "name": "drive_file_rename_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_zip": { "name": "folder_zip", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_circle": { "name": "cloud_circle", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "rule_folder": { "name": "rule_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder": { "name": "folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload_file": { "name": "upload_file", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_overline": { "name": "format_overline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_delete": { "name": "folder_delete", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drive_file_move": { "name": "drive_file_move", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_move_rtl": { "name": "drive_file_move_rtl", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_download": { "name": "cloud_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_upload": { "name": "cloud_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attachment": { "name": "attachment", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "newspaper": { "name": "newspaper", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "create_new_folder": { "name": "create_new_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud": { "name": "cloud", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_snippet": { "name": "text_snippet", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download": { "name": "file_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_copy": { "name": "folder_copy", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "difference": { "name": "difference", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_off": { "name": "cloud_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_sync": { "name": "cloud_sync", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_off": { "name": "folder_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_download_done": { "name": "file_download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_queue": { "name": "cloud_queue", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload": { "name": "upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_view": { "name": "grid_view", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_shared": { "name": "folder_shared", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download_done": { "name": "download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "topic": { "name": "topic", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_folder_upload": { "name": "drive_folder_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces": { "name": "workspaces", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "download_for_offline": { "name": "download_for_offline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_email": { "name": "attach_email", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_open": { "name": "folder_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download_off": { "name": "file_download_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "approval": { "name": "approval", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download": { "name": "download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_open": { "name": "file_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_upload": { "name": "file_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "snippet_folder": { "name": "snippet_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_full": { "name": "battery_charging_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "note_alt": { "name": "note_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_wifi": { "name": "network_wifi", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_medium": { "name": "brightness_medium", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_low": { "name": "brightness_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_usage": { "name": "data_usage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_off": { "name": "data_saver_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "share_location": { "name": "share_location", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_not_fixed": { "name": "gps_not_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_high": { "name": "edgesensor_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth": { "name": "bluetooth", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "shortcut": { "name": "shortcut", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_std": { "name": "battery_std", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_score": { "name": "sports_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarm": { "name": "access_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_4": { "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_0_bar": { "name": "signal_cellular_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "restart_alt": { "name": "restart_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_2_bar": { "name": "wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grid_goldenratio": { "name": "grid_goldenratio", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error_rounded": { "name": "wifi_tethering_error_rounded", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "price_change": { "name": "price_change", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_portrait": { "name": "screen_lock_portrait", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_4_bar": { "name": "signal_cellular_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_active": { "name": "airplanemode_active", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "price_check": { "name": "price_check", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt": { "name": "signal_cellular_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor_weight": { "name": "monitor_weight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "tungsten": { "name": "tungsten", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto": { "name": "hdr_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dvr": { "name": "dvr", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_fold": { "name": "devices_fold", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_night": { "name": "mode_night", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cameraswitch": { "name": "cameraswitch", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_2_bar": { "name": "battery_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_alt_1_bar": { "name": "signal_cellular_alt_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "punch_clock": { "name": "punch_clock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "e_mobiledata": { "name": "e_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storage": { "name": "storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "pin": { "name": "pin", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar_lock": { "name": "signal_wifi_4_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_standby": { "name": "mode_standby", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_cell": { "name": "network_cell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps": { "name": "60fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_3x3": { "name": "grid_3x3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication_liquid": { "name": "medication_liquid", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_thermostat": { "name": "device_thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation": { "name": "screen_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_rotation": { "name": "screen_lock_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_searching": { "name": "location_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_off": { "name": "flashlight_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_mobiledata": { "name": "g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_4_bar": { "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pattern": { "name": "pattern", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_searching": { "name": "bluetooth_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot_monitor": { "name": "screenshot_monitor", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quiz": { "name": "quiz", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "air": { "name": "air", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "phishing": { "name": "phishing", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "summarize": { "name": "summarize", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "password": { "name": "password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_4": { "name": "signal_wifi_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nfc": { "name": "nfc", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_1_bar": { "name": "battery_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reviews": { "name": "reviews", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_good": { "name": "gpp_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_low": { "name": "edgesensor_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "macro_off": { "name": "macro_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hdr_off_select": { "name": "hdr_off_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot": { "name": "screenshot", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_suggest": { "name": "settings_suggest", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_error": { "name": "nearby_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "light_mode": { "name": "light_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_2_bar": { "name": "network_wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_alarm": { "name": "add_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sell": { "name": "sell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_score": { "name": "credit_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_plus_mobiledata": { "name": "lte_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_off": { "name": "gps_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_fixed": { "name": "gps_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_landscape": { "name": "screen_lock_landscape", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_mobiledata": { "name": "h_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering": { "name": "wifi_tethering", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_friendly": { "name": "mobile_friendly", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_off": { "name": "mobile_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarms": { "name": "access_alarms", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "3g_mobiledata": { "name": "3g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto_select": { "name": "hdr_auto_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_4_bar": { "name": "signal_wifi_statusbar_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_system_daydream": { "name": "settings_system_daydream", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_bad": { "name": "gpp_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_off": { "name": "media_bluetooth_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_disabled": { "name": "bluetooth_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_4_bar": { "name": "battery_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_3_bar": { "name": "network_wifi_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_1_bar": { "name": "network_wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ad_units": { "name": "ad_units", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps": { "name": "30fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "task": { "name": "task", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_warning": { "name": "security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication": { "name": "medication", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat": { "name": "thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dark_mode": { "name": "dark_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_1_bar": { "name": "wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fluorescent": { "name": "fluorescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10_select": { "name": "timer_10_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_null": { "name": "signal_cellular_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_saver": { "name": "battery_saver", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on_select": { "name": "hdr_on_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_bad": { "name": "signal_wifi_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bloodtype": { "name": "bloodtype", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_on": { "name": "data_saver_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_good": { "name": "security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_off": { "name": "signal_cellular_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_mode": { "name": "developer_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices": { "name": "devices", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update": { "name": "security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flourescent": { "name": "flourescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_inactive": { "name": "airplanemode_inactive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "4g_plus_mobiledata": { "name": "4g_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "rsvp": { "name": "rsvp", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_mobiledata": { "name": "lte_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cable": { "name": "cable", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wallpaper": { "name": "wallpaper", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_high": { "name": "brightness_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "remember_me": { "name": "remember_me", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "splitscreen": { "name": "splitscreen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_lesson": { "name": "play_lesson", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_3": { "name": "wifi_calling_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb_off": { "name": "usb_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_0_bar": { "name": "signal_wifi_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lan": { "name": "lan", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "monitor_heart": { "name": "monitor_heart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "do_not_disturb_on_total_silence": { "name": "do_not_disturb_on_total_silence", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_alert": { "name": "battery_alert", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "1x_mobiledata": { "name": "1x_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "aod": { "name": "aod", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_0_bar": { "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_disabled": { "name": "location_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_on": { "name": "flashlight_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_on": { "name": "media_bluetooth_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_storage": { "name": "sd_storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_6_bar": { "name": "battery_6_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_full": { "name": "battery_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_nodata": { "name": "signal_cellular_nodata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_password": { "name": "wifi_password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "access_time_filled": { "name": "access_time_filled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_maybe": { "name": "gpp_maybe", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "ssid_chart": { "name": "ssid_chart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "widgets": { "name": "widgets", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_off": { "name": "nearby_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error": { "name": "wifi_tethering_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_channel": { "name": "wifi_channel", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reset_tv": { "name": "reset_tv", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_time": { "name": "access_time", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight": { "name": "nightlight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt_2_bar": { "name": "signal_cellular_alt_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_0_bar": { "name": "battery_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_lock": { "name": "wifi_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_null": { "name": "signal_wifi_statusbar_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_off": { "name": "wifi_tethering_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb": { "name": "usb", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3_select": { "name": "timer_3_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "water": { "name": "water", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_download": { "name": "sim_card_download", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_no_sim": { "name": "signal_cellular_no_sim", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_bad": { "name": "fmd_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update_warning": { "name": "system_security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dataset": { "name": "dataset", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_5_bar": { "name": "battery_5_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dataset_linked": { "name": "dataset_linked", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_to_mobile": { "name": "send_to_mobile", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobiledata_off": { "name": "mobiledata_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_unknown": { "name": "battery_unknown", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storm": { "name": "storm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_plus_mobiledata": { "name": "h_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update": { "name": "system_security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens_blur": { "name": "lens_blur", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_connected": { "name": "bluetooth_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_drive": { "name": "bluetooth_drive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_auto": { "name": "brightness_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_good": { "name": "fmd_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "4g_mobiledata": { "name": "4g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_find": { "name": "wifi_find", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_3_bar": { "name": "battery_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplane_ticket": { "name": "airplane_ticket", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar": { "name": "signal_wifi_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_home_screen": { "name": "add_to_home_screen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_search_desktop": { "name": "screen_search_desktop", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "discount": { "name": "discount", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "system_security_update_good": { "name": "system_security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_4x4": { "name": "grid_4x4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "r_mobiledata": { "name": "r_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "graphic_eq": { "name": "graphic_eq", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "radar": { "name": "radar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_off": { "name": "signal_wifi_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_delete": { "name": "auto_delete", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "error_outline": { "name": "error_outline", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "notification_important": { "name": "notification_important", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_alert": { "name": "add_alert", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning": { "name": "warning", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "error": { "name": "error", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning_amber": { "name": "warning_amber", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "broadcast_on_home": { "name": "broadcast_on_home", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wind_power": { "name": "wind_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heat_pump": { "name": "heat_pump", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains_closed": { "name": "curtains_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane_tank": { "name": "propane_tank", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades_closed": { "name": "vertical_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades": { "name": "vertical_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield_moon": { "name": "shield_moon", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "broadcast_on_personal": { "name": "broadcast_on_personal", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nest_cam_wired_stand": { "name": "nest_cam_wired_stand", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_window": { "name": "sensor_window", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds": { "name": "blinds", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gas_meter": { "name": "gas_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "solar_power": { "name": "solar_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains": { "name": "curtains", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_occupied": { "name": "sensor_occupied", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades_closed": { "name": "roller_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "oil_barrel": { "name": "oil_barrel", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "energy_savings_leaf": { "name": "energy_savings_leaf", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_bolt": { "name": "electric_bolt", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane": { "name": "propane", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_meter": { "name": "electric_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds_closed": { "name": "blinds_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades": { "name": "roller_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_fan_off": { "name": "mode_fan_off", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_mode": { "name": "auto_mode", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_door": { "name": "sensor_door", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hiking": { "name": "hiking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "single_bed": { "name": "single_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_outline": { "name": "person_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "man": { "name": "man", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "male": { "name": "male", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "psychology_alt": { "name": "psychology_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tsunami": { "name": "tsunami", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pages": { "name": "pages", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "roller_skating": { "name": "roller_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano": { "name": "piano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scale": { "name": "scale", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "masks": { "name": "masks", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_symbols": { "name": "emoji_symbols", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_outline": { "name": "people_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "back_hand": { "name": "back_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatshot": { "name": "whatshot", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "diversity_3": { "name": "diversity_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hive": { "name": "hive", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_esports": { "name": "sports_esports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "precision_manufacturing": { "name": "precision_manufacturing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "real_estate_agent": { "name": "real_estate_agent", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cruelty_free": { "name": "cruelty_free", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_flags": { "name": "emoji_flags", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "follow_the_signs": { "name": "follow_the_signs", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly_woman": { "name": "elderly_woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_divider": { "name": "safety_divider", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt": { "name": "person_add_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_alt": { "name": "people_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "kitesurfing": { "name": "kitesurfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "waving_hand": { "name": "waving_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "woman": { "name": "woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scuba_diving": { "name": "scuba_diving", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person": { "name": "person", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "fireplace": { "name": "fireplace", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "deck": { "name": "deck", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "boy": { "name": "boy", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_account": { "name": "switch_account", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "woman_2": { "name": "woman_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_3": { "name": "man_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notification_add": { "name": "notification_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "luggage": { "name": "luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_golf": { "name": "sports_golf", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied": { "name": "sentiment_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "transgender": { "name": "transgender", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heart_broken": { "name": "heart_broken", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "landslide": { "name": "landslide", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_active": { "name": "notifications_active", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "skateboarding": { "name": "skateboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "handshake": { "name": "handshake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain": { "name": "domain", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_martial_arts": { "name": "sports_martial_arts", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_2": { "name": "person_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "co2": { "name": "co2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_hockey": { "name": "sports_hockey", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tornado": { "name": "tornado", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fitbit": { "name": "fitbit", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_rugby": { "name": "sports_rugby", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "female": { "name": "female", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_basketball": { "name": "sports_basketball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove": { "name": "person_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "military_tech": { "name": "military_tech", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recycling": { "name": "recycling", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "king_bed": { "name": "king_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group": { "name": "group", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly": { "name": "elderly", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_2": { "name": "face_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assist_walker": { "name": "assist_walker", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_reaction": { "name": "add_reaction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "travel_explore": { "name": "travel_explore", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_off": { "name": "notifications_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_gymnastics": { "name": "sports_gymnastics", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "6_ft_apart": { "name": "6_ft_apart", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "plus_one": { "name": "plus_one", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_remove": { "name": "group_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "construction": { "name": "construction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood_bad": { "name": "mood_bad", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ice_skating": { "name": "ice_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_5": { "name": "face_5", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wallet": { "name": "wallet", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "paragliding": { "name": "paragliding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_adult_content": { "name": "no_adult_content", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flood": { "name": "flood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people": { "name": "people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_6": { "name": "face_6", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "party_mode": { "name": "party_mode", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspace_premium": { "name": "workspace_premium", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_moderator": { "name": "add_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_events": { "name": "emoji_events", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pix": { "name": "pix", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowshoeing": { "name": "snowshoeing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outdoor_grill": { "name": "outdoor_grill", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_4": { "name": "man_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_moderator": { "name": "remove_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "reduce_capacity": { "name": "reduce_capacity", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nordic_walking": { "name": "nordic_walking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "interests": { "name": "interests", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_add": { "name": "group_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sanitizer": { "name": "sanitizer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_dissatisfied": { "name": "sentiment_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "cyclone": { "name": "cyclone", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "health_and_safety": { "name": "health_and_safety", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nights_stay": { "name": "nights_stay", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowboarding": { "name": "snowboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatsapp": { "name": "whatsapp", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_food_beverage": { "name": "emoji_food_beverage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_3": { "name": "person_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano_off": { "name": "piano_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_luggage": { "name": "no_luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_edu": { "name": "history_edu", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_mma": { "name": "sports_mma", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "social_distance": { "name": "social_distance", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_tennis": { "name": "sports_tennis", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_kabaddi": { "name": "sports_kabaddi", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_off": { "name": "group_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volcano": { "name": "volcano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sick": { "name": "sick", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "engineering": { "name": "engineering", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_emotions": { "name": "emoji_emotions", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_3": { "name": "face_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports": { "name": "sports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "downhill_skiing": { "name": "downhill_skiing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood": { "name": "mood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "thunderstorm": { "name": "thunderstorm", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cake": { "name": "cake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_satisfied": { "name": "sentiment_very_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_nature": { "name": "emoji_nature", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_paused": { "name": "notifications_paused", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_motorsports": { "name": "sports_motorsports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_soccer": { "name": "sports_soccer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "water_drop": { "name": "water_drop", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "architecture": { "name": "architecture", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_off": { "name": "person_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups_3": { "name": "groups_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_down_alt": { "name": "thumb_down_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sign_language": { "name": "sign_language", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "self_improvement": { "name": "self_improvement", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_2": { "name": "diversity_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_4": { "name": "face_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_1": { "name": "diversity_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "public": { "name": "public", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "blind": { "name": "blind", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "facebook": { "name": "facebook", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_dissatisfied": { "name": "sentiment_very_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_neutral": { "name": "sentiment_neutral", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "psychology": { "name": "psychology", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "catching_pokemon": { "name": "catching_pokemon", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_none": { "name": "notifications_none", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_volleyball": { "name": "sports_volleyball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sledding": { "name": "sledding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vaccines": { "name": "vaccines", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "poll": { "name": "poll", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "kayaking": { "name": "kayaking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "front_hand": { "name": "front_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_add": { "name": "person_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "notifications": { "name": "notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_notifications": { "name": "edit_notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clean_hands": { "name": "clean_hands", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "groups_2": { "name": "groups_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_city": { "name": "location_city", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ios_share": { "name": "ios_share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_cricket": { "name": "sports_cricket", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "girl": { "name": "girl", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_objects": { "name": "emoji_objects", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_4": { "name": "person_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scoreboard": { "name": "scoreboard", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_add": { "name": "domain_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_up_alt": { "name": "thumb_up_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "coronavirus": { "name": "coronavirus", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt_1": { "name": "person_add_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove_alt_1": { "name": "person_remove_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "share": { "name": "share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "surfing": { "name": "surfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "connect_without_contact": { "name": "connect_without_contact", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "public_off": { "name": "public_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_people": { "name": "emoji_people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups": { "name": "groups", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "severe_cold": { "name": "severe_cold", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_2": { "name": "man_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recommend": { "name": "recommend", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_transportation": { "name": "emoji_transportation", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_baseball": { "name": "sports_baseball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "school": { "name": "school", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_handball": { "name": "sports_handball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "18_up_rating": { "name": "18_up_rating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "personal_injury": { "name": "personal_injury", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compost": { "name": "compost", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_america": { "name": "south_america", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "science": { "name": "science", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cookie": { "name": "cookie", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_football": { "name": "sports_football", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_strikethrough": { "name": "format_strikethrough", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "horizontal_distribute": { "name": "horizontal_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "space_bar": { "name": "space_bar", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_left": { "name": "format_align_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_bottom": { "name": "vertical_align_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "height": { "name": "height", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_right": { "name": "align_horizontal_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_quote": { "name": "format_quote", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "show_chart": { "name": "show_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "numbers": { "name": "numbers", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_bold": { "name": "format_bold", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_distribute": { "name": "vertical_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_size": { "name": "format_size", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_chart": { "name": "insert_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_list_numbered_rtl": { "name": "format_list_numbered_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_bottom": { "name": "border_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_emoticon": { "name": "insert_emoticon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "hexagon": { "name": "hexagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "type_specimen": { "name": "type_specimen", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_justify": { "name": "format_align_justify", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "padding": { "name": "padding", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_bottom": { "name": "align_vertical_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_top": { "name": "vertical_align_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_outer": { "name": "border_outer", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off": { "name": "money_off", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge_type": { "name": "merge_type", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_chart": { "name": "table_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pentagon": { "name": "pentagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schema": { "name": "schema", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_edit_outline": { "name": "mode_edit_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_center": { "name": "align_horizontal_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_top": { "name": "border_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_comment": { "name": "mode_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_style": { "name": "border_style", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "polyline": { "name": "polyline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "highlight": { "name": "highlight", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "short_text": { "name": "short_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_clear": { "name": "format_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_decrease": { "name": "text_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "post_add": { "name": "post_add", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_numbered": { "name": "format_list_numbered", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_line_spacing": { "name": "format_line_spacing", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_fields": { "name": "text_fields", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "title": { "name": "title", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "square": { "name": "square", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bubble_chart": { "name": "bubble_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_left": { "name": "border_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist": { "name": "checklist", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_color": { "name": "border_color", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist_rtl": { "name": "checklist_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_array": { "name": "data_array", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_page_break": { "name": "insert_page_break", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_comment": { "name": "add_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "scatter_plot": { "name": "scatter_plot", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_down": { "name": "move_down", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrap_text": { "name": "wrap_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_money": { "name": "attach_money", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_up": { "name": "move_up", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_shapes": { "name": "format_shapes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart": { "name": "pie_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "publish": { "name": "publish", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_italic": { "name": "format_italic", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_reset": { "name": "format_color_reset", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_horizontal_left": { "name": "align_horizontal_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_drive_file": { "name": "insert_drive_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_all": { "name": "border_all", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "strikethrough_s": { "name": "strikethrough_s", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_center": { "name": "format_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_underlined": { "name": "format_underlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_edit": { "name": "mode_edit", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "multiline_chart": { "name": "multiline_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "line_axis": { "name": "line_axis", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drag_handle": { "name": "drag_handle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "superscript": { "name": "superscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_comment": { "name": "insert_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "bar_chart": { "name": "bar_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_photo": { "name": "insert_photo", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_clear": { "name": "border_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_r_to_l": { "name": "format_textdirection_r_to_l", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_horizontal": { "name": "border_horizontal", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_line_chart": { "name": "stacked_line_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_invitation": { "name": "insert_invitation", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "rectangle": { "name": "rectangle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subscript": { "name": "subscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_rule": { "name": "horizontal_rule", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_increase": { "name": "text_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_align_center": { "name": "vertical_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "margin": { "name": "margin", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_link": { "name": "insert_link", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_graph": { "name": "auto_graph", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_chart_outlined": { "name": "insert_chart_outlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart_outline": { "name": "pie_chart_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off_csred": { "name": "money_off_csred", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_note": { "name": "edit_note", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_vertical_top": { "name": "align_vertical_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode": { "name": "mode", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_fill": { "name": "format_color_fill", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_bulleted": { "name": "format_list_bulleted", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "linear_scale": { "name": "linear_scale", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_vertical": { "name": "border_vertical", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "functions": { "name": "functions", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "notes": { "name": "notes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_rows": { "name": "table_rows", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "area_chart": { "name": "area_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_inner": { "name": "border_inner", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_l_to_r": { "name": "format_textdirection_l_to_r", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_chart": { "name": "add_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_right": { "name": "border_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_center": { "name": "align_vertical_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "candlestick_chart": { "name": "candlestick_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_paint": { "name": "format_paint", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "monetization_on": { "name": "monetization_on", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_increase": { "name": "format_indent_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_text": { "name": "format_color_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "attach_file": { "name": "attach_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "score": { "name": "score", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_decrease": { "name": "format_indent_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_object": { "name": "data_object", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_right": { "name": "format_align_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "query_stats": { "name": "query_stats", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shape_line": { "name": "shape_line", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "draw": { "name": "draw", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report": { "name": "report", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "calculate": { "name": "calculate", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mail": { "name": "mail", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add": { "name": "add", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_to_inbox": { "name": "move_to_inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste": { "name": "content_paste", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_search": { "name": "content_paste_search", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_circle_outline": { "name": "add_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_bar_chart": { "name": "stacked_bar_chart", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_link": { "name": "add_link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "create": { "name": "create", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag": { "name": "flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "ballot": { "name": "ballot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag": { "name": "tag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "reply": { "name": "reply", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_week": { "name": "next_week", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_circle": { "name": "change_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_vote": { "name": "how_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_sweep": { "name": "delete_sweep", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "archive": { "name": "archive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link_off": { "name": "link_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_gmailerrorred": { "name": "report_gmailerrorred", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "redo": { "name": "redo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_off": { "name": "report_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "insights": { "name": "insights", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save_alt": { "name": "save_alt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_off": { "name": "content_paste_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "square_foot": { "name": "square_foot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "content_cut": { "name": "content_cut", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "amp_stories": { "name": "amp_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clear": { "name": "clear", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "deselect": { "name": "deselect", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_circle_outline": { "name": "remove_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "gesture": { "name": "gesture", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "outlined_flag": { "name": "outlined_flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_stories": { "name": "web_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_reg": { "name": "how_to_reg", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list": { "name": "filter_list", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "upcoming": { "name": "upcoming", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_format": { "name": "text_format", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "push_pin": { "name": "push_pin", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_feed": { "name": "dynamic_feed", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "inbox": { "name": "inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "font_download": { "name": "font_download", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list_off": { "name": "filter_list_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "block": { "name": "block", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "biotech": { "name": "biotech", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reply_all": { "name": "reply_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory": { "name": "inventory", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag_circle": { "name": "flag_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save": { "name": "save", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_circle": { "name": "remove_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "send": { "name": "send", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "weekend": { "name": "weekend", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "attribution": { "name": "attribution", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_copy": { "name": "file_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link": { "name": "link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "drafts": { "name": "drafts", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "select_all": { "name": "select_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort": { "name": "sort", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_copy": { "name": "content_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "bolt": { "name": "bolt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_box": { "name": "add_box", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory_2": { "name": "inventory_2", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "font_download_off": { "name": "font_download_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copy_all": { "name": "copy_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield": { "name": "shield", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "low_priority": { "name": "low_priority", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "undo": { "name": "undo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "backspace": { "name": "backspace", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread": { "name": "markunread", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "waves": { "name": "waves", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "where_to_vote": { "name": "where_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "save_as": { "name": "save_as", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stream": { "name": "stream", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_go": { "name": "content_paste_go", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unarchive": { "name": "unarchive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_circle": { "name": "add_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "policy": { "name": "policy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forward": { "name": "forward", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove": { "name": "remove", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } } } sphinx-design-0.5.0/sphinx_design/compiled/material_sharp.json000066400000000000000000051646211446046271500246500ustar00rootroot00000000000000{ "no_encryption_gmailerrorred": { "name": "no_encryption_gmailerrorred", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_available": { "name": "event_available", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vpn_lock": { "name": "vpn_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_extra": { "name": "airline_seat_recline_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv_off": { "name": "tv_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_off": { "name": "power_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_encryption": { "name": "no_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "more": { "name": "more", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_paused": { "name": "phone_paused", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_audio": { "name": "bluetooth_audio", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync": { "name": "sync", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power": { "name": "power", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_alt": { "name": "do_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card": { "name": "sd_card", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "imagesearch_roller": { "name": "imagesearch_roller", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms": { "name": "sms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_eta": { "name": "drive_eta", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb": { "name": "do_not_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "priority_high": { "name": "priority_high", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "enhanced_encryption": { "name": "enhanced_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "mms": { "name": "mms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_normal": { "name": "airline_seat_legroom_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms_failed": { "name": "sms_failed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "adb": { "name": "adb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_lock": { "name": "sync_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "live_tv": { "name": "live_tv", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "confirmation_number": { "name": "confirmation_number", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi": { "name": "wifi", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card_alert": { "name": "sd_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "running_with_errors": { "name": "running_with_errors", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_flat_angled": { "name": "airline_seat_flat_angled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_off": { "name": "do_not_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_note": { "name": "event_note", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update": { "name": "system_update", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_chat": { "name": "video_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_locked": { "name": "network_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_reduced": { "name": "airline_seat_legroom_reduced", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_problem": { "name": "sync_problem", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_on": { "name": "do_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_in_talk": { "name": "phone_in_talk", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wc": { "name": "wc", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_forwarded": { "name": "phone_forwarded", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_disabled": { "name": "sync_disabled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_chat": { "name": "voice_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_bluetooth_speaker": { "name": "phone_bluetooth_speaker", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tap_and_play": { "name": "tap_and_play", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_special": { "name": "folder_special", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_on": { "name": "do_not_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_check": { "name": "network_check", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_busy": { "name": "event_busy", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "ondemand_video": { "name": "ondemand_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_locked": { "name": "phone_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_legroom_extra": { "name": "airline_seat_legroom_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "time_to_leave": { "name": "time_to_leave", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb": { "name": "do_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_off": { "name": "directions_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_normal": { "name": "airline_seat_recline_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_missed": { "name": "phone_missed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "personal_video": { "name": "personal_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_tree": { "name": "account_tree", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "support_agent": { "name": "support_agent", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_individual_suite": { "name": "airline_seat_individual_suite", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vibration": { "name": "vibration", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_alt": { "name": "do_not_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "disc_full": { "name": "disc_full", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_alert": { "name": "sim_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_off": { "name": "wifi_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_flat": { "name": "airline_seat_flat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_callback": { "name": "phone_callback", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_off": { "name": "do_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "doorbell": { "name": "doorbell", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "blender": { "name": "blender", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_baby": { "name": "bedroom_baby", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee": { "name": "coffee", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathroom": { "name": "bathroom", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "light": { "name": "light", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_sliding": { "name": "door_sliding", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_indoor": { "name": "camera_indoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_child": { "name": "bedroom_child", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "feed": { "name": "feed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "podcasts": { "name": "podcasts", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "garage": { "name": "garage", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "dining": { "name": "dining", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_back": { "name": "door_back", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair_alt": { "name": "chair_alt", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "living": { "name": "living", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "yard": { "name": "yard", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee_maker": { "name": "coffee_maker", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "shower": { "name": "shower", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "window": { "name": "window", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_front": { "name": "door_front", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair": { "name": "chair", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bed": { "name": "bed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_bar": { "name": "table_bar", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flatware": { "name": "flatware", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_search": { "name": "manage_search", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_outdoor": { "name": "camera_outdoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_restaurant": { "name": "table_restaurant", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bedroom_parent": { "name": "bedroom_parent", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "note": { "name": "note", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k": { "name": "7k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay": { "name": "replay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_queue": { "name": "add_to_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add": { "name": "library_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue_play_next": { "name": "queue_play_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k": { "name": "2k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check_circle": { "name": "playlist_add_check_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "repeat_on": { "name": "repeat_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "1k_plus": { "name": "1k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_10": { "name": "forward_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_remove": { "name": "playlist_remove", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mic": { "name": "mic", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_label": { "name": "video_label", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort_by_alpha": { "name": "sort_by_alpha", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_none": { "name": "mic_none", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_to_action": { "name": "call_to_action", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "3k_plus": { "name": "3k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle": { "name": "play_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "8k_plus": { "name": "8k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "interpreter_mode": { "name": "interpreter_mode", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "play_disabled": { "name": "play_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check": { "name": "playlist_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause": { "name": "pause", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "album": { "name": "album", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k_plus": { "name": "7k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_10": { "name": "replay_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_books": { "name": "library_books", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_previous": { "name": "skip_previous", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_circle_filled": { "name": "replay_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_arrow": { "name": "play_arrow", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "speed": { "name": "speed", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k_plus": { "name": "4k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie": { "name": "movie", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat": { "name": "repeat", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_30": { "name": "forward_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "9k": { "name": "9k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_forward": { "name": "fast_forward", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "lyrics": { "name": "lyrics", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "1k": { "name": "1k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subtitles": { "name": "subtitles", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "recent_actors": { "name": "recent_actors", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_settings": { "name": "video_settings", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "3k": { "name": "3k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_5": { "name": "forward_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_off": { "name": "volume_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "loop": { "name": "loop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_filled": { "name": "play_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle_on": { "name": "shuffle_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k_plus": { "name": "2k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k_plus": { "name": "6k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "explicit": { "name": "explicit", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5g": { "name": "5g", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "audio_file": { "name": "audio_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_from_queue": { "name": "remove_from_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue": { "name": "queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_video": { "name": "music_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_play": { "name": "playlist_play", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stop_circle": { "name": "stop_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "av_timer": { "name": "av_timer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web": { "name": "web", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam_off": { "name": "videocam_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_filled": { "name": "pause_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption": { "name": "closed_caption", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hd": { "name": "hd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio": { "name": "radio", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_5": { "name": "replay_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_manual_record": { "name": "fiber_manual_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_rewind": { "name": "fast_rewind", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_music": { "name": "library_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "equalizer": { "name": "equalizer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset": { "name": "web_asset", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam": { "name": "videocam", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "surround_sound": { "name": "surround_sound", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_library": { "name": "video_library", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "missed_video_call": { "name": "missed_video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "8k": { "name": "8k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5k_plus": { "name": "5k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing": { "name": "hearing", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k": { "name": "6k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "games": { "name": "games", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "slow_motion_video": { "name": "slow_motion_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "branding_watermark": { "name": "branding_watermark", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle": { "name": "shuffle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_off": { "name": "mic_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add_check": { "name": "library_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "featured_play_list": { "name": "featured_play_list", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "snooze": { "name": "snooze", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_outline": { "name": "pause_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "featured_video": { "name": "featured_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "10k": { "name": "10k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_call": { "name": "video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "art_track": { "name": "art_track", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_new": { "name": "fiber_new", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd": { "name": "sd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_smart_record": { "name": "fiber_smart_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_next": { "name": "skip_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_up": { "name": "volume_up", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset_off": { "name": "web_asset_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplay": { "name": "airplay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing_disabled": { "name": "hearing_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add_circle": { "name": "playlist_add_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "queue_music": { "name": "queue_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add": { "name": "playlist_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "5k": { "name": "5k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_interested": { "name": "not_interested", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one_on": { "name": "repeat_one_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_file": { "name": "video_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "9k_plus": { "name": "9k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subscriptions": { "name": "subscriptions", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle": { "name": "pause_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "control_camera": { "name": "control_camera", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_mute": { "name": "volume_mute", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_pin": { "name": "fiber_pin", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "high_quality": { "name": "high_quality", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_down": { "name": "volume_down", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k": { "name": "4k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_30": { "name": "replay_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_off": { "name": "closed_caption_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_outline": { "name": "play_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one": { "name": "repeat_one", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop": { "name": "stop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_disabled": { "name": "closed_caption_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "new_releases": { "name": "new_releases", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_dvr": { "name": "fiber_dvr", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_unchecked": { "name": "radio_button_unchecked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_outline": { "name": "star_outline", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "indeterminate_check_box": { "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_on": { "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_purple500": { "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box_outline_blank": { "name": "check_box_outline_blank", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border_purple500": { "name": "star_border_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box": { "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star": { "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border": { "name": "star_border", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_off": { "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_half": { "name": "star_half", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_checked": { "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point_duplicate": { "name": "control_point_duplicate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_off": { "name": "hdr_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_auto": { "name": "motion_photos_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timelapse": { "name": "timelapse", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_front": { "name": "photo_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_small": { "name": "photo_size_select_small", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "8mp": { "name": "8mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_on": { "name": "raw_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_off": { "name": "motion_photos_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "euro": { "name": "euro", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iso": { "name": "iso", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_back": { "name": "photo_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "19mp": { "name": "19mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "linked_camera": { "name": "linked_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_4": { "name": "filter_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "6mp": { "name": "6mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_auto": { "name": "flash_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_rear": { "name": "camera_rear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_android": { "name": "flip_camera_android", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vignette": { "name": "vignette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_zero": { "name": "exposure_zero", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_2": { "name": "filter_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip": { "name": "flip", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_plus": { "name": "hdr_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_roll": { "name": "camera_roll", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_off": { "name": "face_retouching_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_search": { "name": "image_search", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_ccw": { "name": "rotate_90_degrees_ccw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_album": { "name": "photo_album", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_9": { "name": "filter_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_auto": { "name": "wb_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "monochrome_photos": { "name": "monochrome_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_original": { "name": "crop_original", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime": { "name": "bedtime", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "20mp": { "name": "20mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure": { "name": "exposure", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_creation": { "name": "movie_creation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image": { "name": "image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_franc": { "name": "currency_franc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vrpano": { "name": "vrpano", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections_bookmark": { "name": "collections_bookmark", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_none": { "name": "filter_none", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_off": { "name": "blur_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_pound": { "name": "currency_pound", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "timer": { "name": "timer", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "style": { "name": "style", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_2": { "name": "brightness_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy": { "name": "view_comfy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_fix_off": { "name": "auto_fix_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal": { "name": "panorama_horizontal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama": { "name": "panorama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_cloudy": { "name": "wb_cloudy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_red_eye": { "name": "remove_red_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_natural": { "name": "face_retouching_natural", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_cw": { "name": "rotate_90_degrees_cw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "photo_camera": { "name": "photo_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3": { "name": "timer_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "16mp": { "name": "16mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_motion": { "name": "auto_awesome_motion", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_2": { "name": "exposure_plus_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere": { "name": "panorama_photosphere", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_pause": { "name": "motion_photos_pause", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "adjust": { "name": "adjust", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "straighten": { "name": "straighten", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hevc": { "name": "hevc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_portrait": { "name": "crop_portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_off": { "name": "mic_external_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "2mp": { "name": "2mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere_select": { "name": "panorama_photosphere_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_9_plus": { "name": "filter_9_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_strong": { "name": "hdr_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_aspect_ratio": { "name": "image_aspect_ratio", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo": { "name": "photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_front": { "name": "camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_rotate": { "name": "crop_rotate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_incandescent": { "name": "wb_incandescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_not_supported": { "name": "image_not_supported", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "17mp": { "name": "17mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "12mp": { "name": "12mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop": { "name": "crop", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "22mp": { "name": "22mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dirty_lens": { "name": "dirty_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt_long": { "name": "receipt_long", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "4mp": { "name": "4mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_before": { "name": "navigate_before", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_landscape": { "name": "crop_landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "9mp": { "name": "9mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_on": { "name": "mic_external_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat_auto": { "name": "thermostat_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_6": { "name": "brightness_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera": { "name": "camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps_select": { "name": "60fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome": { "name": "auto_awesome", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flare": { "name": "flare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_back": { "name": "video_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_sunny": { "name": "wb_sunny", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_7": { "name": "brightness_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_library": { "name": "photo_library", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_16_9": { "name": "crop_16_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_on": { "name": "blur_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_a_photo": { "name": "add_a_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_fish_eye": { "name": "panorama_fish_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_4": { "name": "looks_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_off": { "name": "raw_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical": { "name": "panorama_vertical", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_3": { "name": "looks_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks": { "name": "looks", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_off": { "name": "music_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_filter": { "name": "movie_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tonality": { "name": "tonality", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "10mp": { "name": "10mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_5": { "name": "filter_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "23mp": { "name": "23mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_off": { "name": "flash_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yen": { "name": "currency_yen", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "14mp": { "name": "14mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_image": { "name": "hide_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_iridescent": { "name": "wb_iridescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "burst_mode": { "name": "burst_mode", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "slideshow": { "name": "slideshow", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_twilight": { "name": "wb_twilight", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blur_circular": { "name": "blur_circular", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_7_5": { "name": "crop_7_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "5mp": { "name": "5mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_large": { "name": "photo_size_select_large", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_alt": { "name": "camera_alt", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_vintage": { "name": "filter_vintage", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "audiotrack": { "name": "audiotrack", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_on": { "name": "flash_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_3": { "name": "brightness_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_actual": { "name": "photo_size_select_actual", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_ios": { "name": "flip_camera_ios", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_drama": { "name": "filter_drama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag_faces": { "name": "tag_faces", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "leak_add": { "name": "leak_add", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "11mp": { "name": "11mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_1": { "name": "exposure_neg_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_rupee": { "name": "currency_rupee", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "healing": { "name": "healing", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_off": { "name": "timer_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transform": { "name": "transform", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens": { "name": "lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_5": { "name": "looks_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "cases": { "name": "cases", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "18mp": { "name": "18mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_filter": { "name": "photo_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter": { "name": "filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_6": { "name": "filter_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_free": { "name": "crop_free", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_1": { "name": "exposure_plus_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact": { "name": "view_compact", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10": { "name": "timer_10", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_mosaic": { "name": "auto_awesome_mosaic", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "21mp": { "name": "21mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_ruble": { "name": "currency_ruble", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "crop_din": { "name": "crop_din", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on": { "name": "hdr_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_square": { "name": "crop_square", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_on": { "name": "grid_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_bitcoin": { "name": "currency_bitcoin", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autofps_select": { "name": "autofps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit": { "name": "edit", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps_select": { "name": "30fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "colorize": { "name": "colorize", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brush": { "name": "brush", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_video": { "name": "switch_video", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_8": { "name": "filter_8", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_1": { "name": "filter_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "contrast": { "name": "contrast", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "brightness_1": { "name": "brightness_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_two": { "name": "looks_two", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "15mp": { "name": "15mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_paused": { "name": "motion_photos_paused", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "loupe": { "name": "loupe", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature": { "name": "nature", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_shade": { "name": "wb_shade", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "circle": { "name": "circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "landscape": { "name": "landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_5": { "name": "brightness_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mp": { "name": "mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_one": { "name": "looks_one", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_as_pdf": { "name": "picture_as_pdf", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "3mp": { "name": "3mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical_select": { "name": "panorama_vertical_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_b_and_w": { "name": "filter_b_and_w", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_note": { "name": "music_note", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "details": { "name": "details", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_photo_alternate": { "name": "add_photo_alternate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_7": { "name": "filter_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_right": { "name": "rotate_right", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_strong": { "name": "center_focus_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dehaze": { "name": "dehaze", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal_select": { "name": "panorama_horizontal_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime_off": { "name": "bedtime_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "motion_photos_on": { "name": "motion_photos_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compare": { "name": "compare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_3_2": { "name": "crop_3_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature_people": { "name": "nature_people", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tune": { "name": "tune", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_3": { "name": "filter_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "deblur": { "name": "deblur", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "texture": { "name": "texture", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_6": { "name": "looks_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "broken_image": { "name": "broken_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_hdr": { "name": "filter_hdr", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_4": { "name": "brightness_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "incomplete_circle": { "name": "incomplete_circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assistant_photo": { "name": "assistant_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_weak": { "name": "hdr_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_weak": { "name": "center_focus_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_normal": { "name": "auto_fix_normal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_enhanced_select": { "name": "hdr_enhanced_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_center_focus": { "name": "filter_center_focus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_off": { "name": "grid_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle": { "name": "panorama_wide_angle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant": { "name": "assistant", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections": { "name": "collections", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_next": { "name": "navigate_next", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_5_4": { "name": "crop_5_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grain": { "name": "grain", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_linear": { "name": "blur_linear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_lira": { "name": "currency_lira", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "24mp": { "name": "24mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_stories": { "name": "auto_stories", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "palette": { "name": "palette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "color_lens": { "name": "color_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_2": { "name": "exposure_neg_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "13mp": { "name": "13mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "7mp": { "name": "7mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_front": { "name": "video_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yuan": { "name": "currency_yuan", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "portrait": { "name": "portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_photos": { "name": "add_to_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point": { "name": "control_point", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_frames": { "name": "filter_frames", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "shutter_speed": { "name": "shutter_speed", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_tilt_shift": { "name": "filter_tilt_shift", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "logo_dev": { "name": "logo_dev", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leak_remove": { "name": "leak_remove", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle_select": { "name": "panorama_wide_angle_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_left": { "name": "rotate_left", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "gradient": { "name": "gradient", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_camera": { "name": "switch_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "animation": { "name": "animation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_high": { "name": "auto_fix_high", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_stable": { "name": "video_stable", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_left": { "name": "arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu": { "name": "menu", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_left": { "name": "switch_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "legend_toggle": { "name": "legend_toggle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_west": { "name": "south_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_upward": { "name": "arrow_upward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "waterfall_chart": { "name": "waterfall_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_circle_down": { "name": "expand_circle_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_drop_up": { "name": "arrow_drop_up", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "first_page": { "name": "first_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen": { "name": "fullscreen", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_left": { "name": "subdirectory_arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_right": { "name": "chevron_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home_work": { "name": "add_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps_outage": { "name": "apps_outage", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps": { "name": "apps", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "west": { "name": "west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_share": { "name": "offline_share", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right": { "name": "arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_right": { "name": "subdirectory_arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_downward": { "name": "arrow_downward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down_circle": { "name": "arrow_drop_down_circle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more": { "name": "unfold_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "cancel": { "name": "cancel", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "payments": { "name": "payments", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south_east": { "name": "south_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_work": { "name": "home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand_more": { "name": "expand_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "double_arrow": { "name": "double_arrow", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "north_west": { "name": "north_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_settings_alt": { "name": "app_settings_alt", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_less": { "name": "expand_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios": { "name": "arrow_back_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_open": { "name": "menu_open", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "campaign": { "name": "campaign", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "check": { "name": "check", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "refresh": { "name": "refresh", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south": { "name": "south", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_right": { "name": "switch_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_vert": { "name": "more_vert", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_less": { "name": "unfold_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "close": { "name": "close", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant_direction": { "name": "assistant_direction", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_left": { "name": "chevron_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back": { "name": "arrow_back", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "east": { "name": "east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north_east": { "name": "north_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "maps_home_work": { "name": "maps_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "pivot_table_chart": { "name": "pivot_table_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen_exit": { "name": "fullscreen_exit", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_horiz": { "name": "more_horiz", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_forward_ios": { "name": "arrow_forward_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "last_page": { "name": "last_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down": { "name": "arrow_drop_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios_new": { "name": "arrow_back_ios_new", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_forward": { "name": "arrow_forward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north": { "name": "north", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_movies": { "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "festival": { "name": "festival", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "traffic": { "name": "traffic", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "kebab_dining": { "name": "kebab_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrong_location": { "name": "wrong_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "my_location": { "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_scooter": { "name": "electric_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_railway_filled": { "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "crisis_alert": { "name": "crisis_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sailing": { "name": "sailing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "warehouse": { "name": "warehouse", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_share": { "name": "emergency_share", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_stops": { "name": "airline_stops", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nightlife": { "name": "nightlife", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diamond": { "name": "diamond", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant": { "name": "restaurant", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "attractions": { "name": "attractions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway": { "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "breakfast_dining": { "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_see": { "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "store_mall_directory": { "name": "store_mall_directory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_police": { "name": "local_police", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fort": { "name": "fort", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_right": { "name": "u_turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_atm": { "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_road": { "name": "edit_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_check": { "name": "safety_check", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transfer_within_a_station": { "name": "transfer_within_a_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ev_station": { "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hospital": { "name": "local_hospital", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "soup_kitchen": { "name": "soup_kitchen", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_meals": { "name": "no_meals", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "sos": { "name": "sos", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel": { "name": "hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_class": { "name": "flight_class", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "liquor": { "name": "liquor", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_information": { "name": "medical_information", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "plumbing": { "name": "plumbing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "place": { "name": "place", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "lunch_dining": { "name": "lunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_grocery_store": { "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_mall": { "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_right": { "name": "turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_attributes": { "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigation": { "name": "navigation", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_railway": { "name": "directions_railway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "layers_clear": { "name": "layers_clear", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moped": { "name": "moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "beenhere": { "name": "beenhere", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "trip_origin": { "name": "trip_origin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_shipping": { "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "minor_crash": { "name": "minor_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin": { "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "departure_board": { "name": "departure_board", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "agriculture": { "name": "agriculture", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "two_wheeler": { "name": "two_wheeler", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat": { "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_walk": { "name": "directions_walk", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_cafe": { "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "tram": { "name": "tram", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "celebration": { "name": "celebration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_left": { "name": "turn_sharp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_rickshaw": { "name": "electric_rickshaw", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "miscellaneous_services": { "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_listed_location": { "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_bike": { "name": "electric_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tire_repair": { "name": "tire_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry_cleaning": { "name": "dry_cleaning", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electrical_services": { "name": "electrical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_transfer": { "name": "no_transfer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "synagogue": { "name": "synagogue", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway_filled": { "name": "directions_subway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_book": { "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pest_control": { "name": "pest_control", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fork_left": { "name": "fork_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowmobile": { "name": "snowmobile", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_repair": { "name": "car_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "park": { "name": "park", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "church": { "name": "church", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hardware": { "name": "hardware", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bike_scooter": { "name": "bike_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compass_calibration": { "name": "compass_calibration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "dinner_dining": { "name": "dinner_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_taxi": { "name": "local_taxi", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_pizza": { "name": "local_pizza", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_parking": { "name": "local_parking", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me": { "name": "near_me", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in_map": { "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_phone": { "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_drink": { "name": "local_drink", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_right": { "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "maps_ugc": { "name": "maps_ugc", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car": { "name": "directions_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hotel": { "name": "local_hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fire_hydrant_alt": { "name": "fire_hydrant_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_printshop": { "name": "local_printshop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_business": { "name": "add_business", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_car": { "name": "electric_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin_circle": { "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation_alt": { "name": "screen_rotation_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_bar": { "name": "local_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "forest": { "name": "forest", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite": { "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_airport": { "name": "local_airport", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volunteer_activism": { "name": "volunteer_activism", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_fire_department": { "name": "local_fire_department", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "set_meal": { "name": "set_meal", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge": { "name": "merge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_car_wash": { "name": "local_car_wash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "atm": { "name": "atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_play": { "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moving": { "name": "moving", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "360": { "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight": { "name": "flight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "castle": { "name": "castle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "layers": { "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pedal_bike": { "name": "pedal_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_hindu": { "name": "temple_hindu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location_alt": { "name": "edit_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_services": { "name": "medical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_post_office": { "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "map": { "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hail": { "name": "hail", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "signpost": { "name": "signpost", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bakery_dining": { "name": "bakery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "zoom_out_map": { "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_repair_service": { "name": "home_repair_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wine_bar": { "name": "wine_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_left": { "name": "turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant_menu": { "name": "restaurant_menu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_left": { "name": "turn_slight_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "theater_comedy": { "name": "theater_comedy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramen_dining": { "name": "ramen_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_drop": { "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "transit_enterexit": { "name": "transit_enterexit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_crash": { "name": "no_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "egg_alt": { "name": "egg_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location": { "name": "edit_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_laundry_service": { "name": "local_laundry_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_dining": { "name": "local_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit_filled": { "name": "directions_transit_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "brunch_dining": { "name": "brunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "design_services": { "name": "design_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "run_circle": { "name": "run_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency": { "name": "emergency", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_road": { "name": "remove_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_run": { "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bus": { "name": "directions_bus", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_location_alt": { "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "streetview": { "name": "streetview", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "badge": { "name": "badge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_pharmacy": { "name": "local_pharmacy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fork_right": { "name": "fork_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_buddhist": { "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "factory": { "name": "factory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_location": { "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me_disabled": { "name": "near_me_disabled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "car_rental": { "name": "car_rental", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_right": { "name": "turn_sharp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "category": { "name": "category", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "taxi_alert": { "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "bus_alert": { "name": "bus_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "straight": { "name": "straight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rate_review": { "name": "rate_review", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "money": { "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ramp_left": { "name": "ramp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_left": { "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "railway_alert": { "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "cleaning_services": { "name": "cleaning_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "icecream": { "name": "icecream", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "multiple_stop": { "name": "multiple_stop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "handyman": { "name": "handyman", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_of_travel": { "name": "mode_of_travel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramp_right": { "name": "ramp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_right": { "name": "roundabout_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_truck": { "name": "fire_truck", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_bus_filled": { "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_offer": { "name": "local_offer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_moped": { "name": "electric_moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_recording": { "name": "emergency_recording", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_left": { "name": "u_turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_road": { "name": "add_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_gas_station": { "name": "local_gas_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "terrain": { "name": "terrain", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hvac": { "name": "hvac", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_library": { "name": "local_library", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car_filled": { "name": "directions_car_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "museum": { "name": "museum", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_convenience_store": { "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "airlines": { "name": "airlines", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fastfood": { "name": "fastfood", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "stadium": { "name": "stadium", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pest_control_rodent": { "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "route": { "name": "route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delivery_dining": { "name": "delivery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alt_route": { "name": "alt_route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subway": { "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "train": { "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_activity": { "name": "local_activity", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit": { "name": "directions_transit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "egg": { "name": "egg", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_crash": { "name": "car_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mosque": { "name": "mosque", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "takeout_dining": { "name": "takeout_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat_filled": { "name": "directions_boat_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bike": { "name": "directions_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "connecting_airports": { "name": "connecting_airports", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_florist": { "name": "local_florist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions": { "name": "directions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "savings": { "name": "savings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_outline": { "name": "label_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_left": { "name": "arrow_circle_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_bluetooth": { "name": "settings_bluetooth", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "alarm_off": { "name": "alarm_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_all": { "name": "done_all", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbox": { "name": "outbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "polymer": { "name": "polymer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "online_prediction": { "name": "online_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outlet": { "name": "outlet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pending": { "name": "pending", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quickreply": { "name": "quickreply", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "density_large": { "name": "density_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_week": { "name": "view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_exploration": { "name": "data_exploration", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report_problem": { "name": "report_problem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_accessibility": { "name": "settings_accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_scan_wifi": { "name": "perm_scan_wifi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "find_in_page": { "name": "find_in_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "3d_rotation": { "name": "3d_rotation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_outline": { "name": "lock_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "production_quantity_limits": { "name": "production_quantity_limits", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_flat": { "name": "trending_flat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_for_work": { "name": "play_for_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_full": { "name": "hourglass_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio": { "name": "spatial_audio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "token": { "name": "token", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flight_takeoff": { "name": "flight_takeoff", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label": { "name": "label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search": { "name": "search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio_off": { "name": "spatial_audio_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_add": { "name": "alarm_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_full": { "name": "join_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle": { "name": "check_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "get_app": { "name": "get_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension_off": { "name": "extension_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "find_replace": { "name": "find_replace", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_basket": { "name": "shopping_basket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "terminal": { "name": "terminal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_important_outline": { "name": "label_important_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_add": { "name": "bookmark_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "javascript": { "name": "javascript", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_schedule_send": { "name": "cancel_schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm": { "name": "alarm", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "plagiarism": { "name": "plagiarism", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compress": { "name": "compress", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_out": { "name": "zoom_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy_alt": { "name": "view_comfy_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_applications": { "name": "settings_applications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_ethernet": { "name": "settings_ethernet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angleup": { "name": "text_rotation_angleup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore_from_trash": { "name": "restore_from_trash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flaky": { "name": "flaky", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_form": { "name": "dynamic_form", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors_off": { "name": "sensors_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update_disabled": { "name": "update_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new_off": { "name": "open_in_new_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copyright": { "name": "copyright", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "room": { "name": "room", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "opacity": { "name": "opacity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "schedule_send": { "name": "schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_travel": { "name": "card_travel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lightbulb_circle": { "name": "lightbulb_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_return": { "name": "assignment_return", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_card": { "name": "add_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_full": { "name": "open_in_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home": { "name": "add_home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "browse_gallery": { "name": "browse_gallery", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unpublished": { "name": "unpublished", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_backup_restore": { "name": "settings_backup_restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab_unselected": { "name": "tab_unselected", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code_off": { "name": "code_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_vertical": { "name": "swipe_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility": { "name": "accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "addchart": { "name": "addchart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_exchange": { "name": "currency_exchange", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "css": { "name": "css", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_sidebar": { "name": "view_sidebar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pending_actions": { "name": "pending_actions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tour": { "name": "tour", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight_round": { "name": "nightlight_round", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_important": { "name": "label_important", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "theaters": { "name": "theaters", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "backup_table": { "name": "backup_table", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "youtube_searched_for": { "name": "youtube_searched_for", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_off": { "name": "edit_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_outline": { "name": "done_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_plan": { "name": "next_plan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rule": { "name": "rule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "paid": { "name": "paid", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark": { "name": "bookmark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_source": { "name": "hide_source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "loyalty": { "name": "loyalty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fingerprint": { "name": "fingerprint", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "store": { "name": "store", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down_off_alt": { "name": "thumb_down_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_left_alt": { "name": "swipe_left_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leaderboard": { "name": "leaderboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_contact_calendar": { "name": "perm_contact_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "api": { "name": "api", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assured_workload": { "name": "assured_workload", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contactless": { "name": "contactless", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pan_tool": { "name": "pan_tool", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread_mailbox": { "name": "markunread_mailbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "preview": { "name": "preview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_alt_off": { "name": "filter_alt_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_input_component": { "name": "settings_input_component", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbond": { "name": "outbond", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work": { "name": "work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down_alt": { "name": "swipe_down_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "saved_search": { "name": "saved_search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_month": { "name": "calendar_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "article": { "name": "article", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "display_settings": { "name": "display_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe": { "name": "swipe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pinch": { "name": "pinch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "balance": { "name": "balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help": { "name": "help", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_page": { "name": "request_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop_2": { "name": "shop_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "watch_later": { "name": "watch_later", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock": { "name": "lock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmarks": { "name": "bookmarks", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_kanban": { "name": "view_kanban", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "history": { "name": "history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "generating_tokens": { "name": "generating_tokens", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_day": { "name": "view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible": { "name": "accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_carousel": { "name": "view_carousel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "percent": { "name": "percent", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "private_connectivity": { "name": "private_connectivity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "table_view": { "name": "table_view", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "favorite": { "name": "favorite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fit_screen": { "name": "fit_screen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_down": { "name": "text_rotation_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "dashboard": { "name": "dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_support": { "name": "contact_support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_border": { "name": "bookmark_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_right": { "name": "arrow_circle_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "track_changes": { "name": "track_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible_forward": { "name": "accessible_forward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_left": { "name": "join_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified": { "name": "verified", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "android": { "name": "android", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "note_add": { "name": "note_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore": { "name": "restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_blocking": { "name": "app_blocking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gif_box": { "name": "gif_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility_new": { "name": "accessibility_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "reorder": { "name": "reorder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_turned_in": { "name": "assignment_turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_seat": { "name": "event_seat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_today": { "name": "calendar_today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart": { "name": "shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_button": { "name": "smart_button", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_composite": { "name": "settings_input_composite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up": { "name": "thumb_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "ads_click": { "name": "ads_click", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified_user": { "name": "verified_user", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_membership": { "name": "card_membership", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_overscan": { "name": "settings_overscan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in": { "name": "zoom_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code": { "name": "code", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_right": { "name": "join_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_task": { "name": "add_task", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_in_ar": { "name": "view_in_ar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_identity": { "name": "perm_identity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "install_mobile": { "name": "install_mobile", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turned_in": { "name": "turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_medium": { "name": "density_medium", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rocket": { "name": "rocket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_end": { "name": "pin_end", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle_outline": { "name": "check_circle_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_data_setting": { "name": "perm_data_setting", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_phone_msg": { "name": "perm_phone_msg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "http": { "name": "http", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_right_alt": { "name": "swipe_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_out": { "name": "all_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "exit_to_app": { "name": "exit_to_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "repartition": { "name": "repartition", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "euro_symbol": { "name": "euro_symbol", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "maximize": { "name": "maximize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_land": { "name": "flight_land", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "record_voice_over": { "name": "record_voice_over", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "login": { "name": "login", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_reset": { "name": "lock_reset", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "source": { "name": "source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tips_and_updates": { "name": "tips_and_updates", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_center": { "name": "help_center", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "eject": { "name": "eject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_column": { "name": "view_column", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_box": { "name": "account_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fax": { "name": "fax", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schedule": { "name": "schedule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab": { "name": "tab", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_ind": { "name": "assignment_ind", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "important_devices": { "name": "important_devices", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "face": { "name": "face", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors": { "name": "sensors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "commit": { "name": "commit", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "list": { "name": "list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_stream": { "name": "view_stream", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_left": { "name": "swipe_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_right": { "name": "swipe_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_full": { "name": "width_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_invoke": { "name": "pin_invoke", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand": { "name": "expand", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors": { "name": "invert_colors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "batch_prediction": { "name": "batch_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_aware": { "name": "noise_aware", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "eco": { "name": "eco", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_open": { "name": "lock_open", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_remove": { "name": "bookmark_remove", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_late": { "name": "assignment_late", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "upgrade": { "name": "upgrade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rowing": { "name": "rowing", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbound": { "name": "outbound", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_cell": { "name": "settings_cell", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_device_information": { "name": "perm_device_information", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_alt": { "name": "sync_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_browser": { "name": "open_in_browser", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "feedback": { "name": "feedback", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop": { "name": "shop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_shopping_cart": { "name": "add_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_tracking": { "name": "spatial_tracking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_outline": { "name": "help_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book": { "name": "book", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "launch": { "name": "launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_quilt": { "name": "view_quilt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "support": { "name": "support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_accounts": { "name": "no_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_day": { "name": "calendar_view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture_alt": { "name": "picture_in_picture_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_off": { "name": "work_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "https": { "name": "https", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility_off": { "name": "visibility_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_timeline": { "name": "view_timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_done": { "name": "remove_done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pageview": { "name": "pageview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info_outline": { "name": "info_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_access_shortcut_add": { "name": "switch_access_shortcut_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel_class": { "name": "hotel_class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hourglass_disabled": { "name": "hourglass_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_split": { "name": "horizontal_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture": { "name": "picture_in_picture", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grade": { "name": "grade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right_alt": { "name": "arrow_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "webhook": { "name": "webhook", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb": { "name": "lightbulb", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_history": { "name": "work_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb_outline": { "name": "lightbulb_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "close_fullscreen": { "name": "close_fullscreen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_translate": { "name": "g_translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_work": { "name": "group_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book_online": { "name": "book_online", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "published_with_changes": { "name": "published_with_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pets": { "name": "pets", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_pin": { "name": "offline_pin", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_toggle_off": { "name": "history_toggle_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_normal": { "name": "width_normal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "new_label": { "name": "new_label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_headline": { "name": "view_headline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "send_and_archive": { "name": "send_and_archive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_unlock": { "name": "face_unlock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flutter_dash": { "name": "flutter_dash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "speaker_notes_off": { "name": "speaker_notes_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_forever": { "name": "delete_forever", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart_checkout": { "name": "shopping_cart_checkout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "integration_instructions": { "name": "integration_instructions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "transcribe": { "name": "transcribe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "power_settings_new": { "name": "power_settings_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_empty": { "name": "hourglass_empty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "translate": { "name": "translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down": { "name": "thumb_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_off": { "name": "label_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_rate": { "name": "star_rate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "18": { "width": 18, "path": "" } } }, "view_module": { "name": "view_module", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "free_cancellation": { "name": "free_cancellation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_alt": { "name": "filter_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card_off": { "name": "credit_card_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "on_device_training": { "name": "on_device_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "date_range": { "name": "date_range", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_up": { "name": "arrow_circle_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "space_dashboard": { "name": "space_dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subtitles_off": { "name": "subtitles_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gif": { "name": "gif", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horizontal_circle": { "name": "swap_horizontal_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_hdmi": { "name": "settings_input_hdmi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_by_default": { "name": "disabled_by_default", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_page": { "name": "contact_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_large": { "name": "donut_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_list": { "name": "view_list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update": { "name": "update", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down": { "name": "swipe_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_access_shortcut": { "name": "switch_access_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "aspect_ratio": { "name": "aspect_ratio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_notes": { "name": "speaker_notes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_giftcard": { "name": "card_giftcard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_alt": { "name": "highlight_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_up": { "name": "swipe_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_back": { "name": "flip_to_back", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spellcheck": { "name": "spellcheck", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_repeat": { "name": "event_repeat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swap_vertical_circle": { "name": "swap_vertical_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "troubleshoot": { "name": "troubleshoot", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_protected_setup": { "name": "wifi_protected_setup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_cozy": { "name": "view_cozy", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "build_circle": { "name": "build_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unfold_less_double": { "name": "unfold_less_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shop_two": { "name": "shop_two", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension": { "name": "extension", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horiz": { "name": "swap_horiz", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervised_user_circle": { "name": "supervised_user_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore_off": { "name": "explore_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_down": { "name": "trending_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "segment": { "name": "segment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toc": { "name": "toc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_inner": { "name": "join_inner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_clock": { "name": "lock_clock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "analytics": { "name": "analytics", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "task_alt": { "name": "task_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_up": { "name": "text_rotate_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_bolt": { "name": "offline_bolt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "output": { "name": "output", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_inbox": { "name": "all_inbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "home": { "name": "home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_small": { "name": "density_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "abc": { "name": "abc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "install_desktop": { "name": "install_desktop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_on": { "name": "alarm_on", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete": { "name": "delete", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_agenda": { "name": "view_agenda", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autorenew": { "name": "autorenew", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angledown": { "name": "text_rotation_angledown", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_shortcut": { "name": "app_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "circle_notifications": { "name": "circle_notifications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gavel": { "name": "gavel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "minimize": { "name": "minimize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_array": { "name": "view_array", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dangerous": { "name": "dangerous", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_calendar": { "name": "edit_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "event": { "name": "event", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_accessible": { "name": "not_accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wysiwyg": { "name": "wysiwyg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grading": { "name": "grading", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "model_training": { "name": "model_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite_alt": { "name": "satellite_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cached": { "name": "cached", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore": { "name": "explore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info": { "name": "info", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fact_check": { "name": "fact_check", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_with": { "name": "open_with", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_split": { "name": "vertical_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "anchor": { "name": "anchor", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls_off": { "name": "hls_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_started": { "name": "not_started", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "favorite_border": { "name": "favorite_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "build": { "name": "build", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls": { "name": "hls", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "print": { "name": "print", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_camera_mic": { "name": "perm_camera_mic", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bug_report": { "name": "bug_report", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_added": { "name": "bookmark_added", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumbs_up_down": { "name": "thumbs_up_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more_double": { "name": "unfold_more_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "logout": { "name": "logout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_accounts": { "name": "manage_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "payment": { "name": "payment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rocket_launch": { "name": "rocket_launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_weight": { "name": "line_weight", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_over_off": { "name": "voice_over_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_off": { "name": "highlight_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_thresholding": { "name": "data_thresholding", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_front": { "name": "flip_to_front", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "today": { "name": "today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility": { "name": "visibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_as_unread": { "name": "mark_as_unread", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restore_page": { "name": "restore_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_mark": { "name": "question_mark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comment_bank": { "name": "comment_bank", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "input": { "name": "input", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_remote": { "name": "settings_remote", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_visible": { "name": "disabled_visible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delete_outline": { "name": "delete_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_vertical": { "name": "text_rotate_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_bag": { "name": "shopping_bag", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt": { "name": "receipt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_answer": { "name": "question_answer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toll": { "name": "toll", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_antenna": { "name": "settings_input_antenna", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "try": { "name": "try", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rounded_corner": { "name": "rounded_corner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "touch_app": { "name": "touch_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_drive": { "name": "add_to_drive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dashboard_customize": { "name": "dashboard_customize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done": { "name": "done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "php": { "name": "php", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_rotation_none": { "name": "text_rotation_none", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "admin_panel_settings": { "name": "admin_panel_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "backup": { "name": "backup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_outward": { "name": "arrow_outward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_control_off": { "name": "noise_control_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "query_builder": { "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_power": { "name": "settings_power", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_outline": { "name": "work_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_week": { "name": "calendar_view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_brightness": { "name": "settings_brightness", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance_wallet": { "name": "account_balance_wallet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "commute": { "name": "commute", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings": { "name": "settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "subject": { "name": "subject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "compare_arrows": { "name": "compare_arrows", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assessment": { "name": "assessment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "language": { "name": "language", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pregnant_woman": { "name": "pregnant_woman", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card": { "name": "credit_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_voice": { "name": "settings_voice", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_vert": { "name": "swap_vert", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "html": { "name": "html", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_style": { "name": "line_style", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pan_tool_alt": { "name": "pan_tool_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "description": { "name": "description", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_present": { "name": "file_present", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "stars": { "name": "stars", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment": { "name": "assignment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_enhance": { "name": "camera_enhance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up_off_alt": { "name": "thumb_up_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sticky_note_2": { "name": "sticky_note_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_history": { "name": "manage_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "announcement": { "name": "announcement", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_month": { "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_shopping_cart": { "name": "remove_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_history": { "name": "change_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "drag_indicator": { "name": "drag_indicator", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "privacy_tip": { "name": "privacy_tip", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_circle": { "name": "account_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chrome_reader_mode": { "name": "chrome_reader_mode", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_ping": { "name": "network_ping", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "perm_media": { "name": "perm_media", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "timeline": { "name": "timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search_off": { "name": "search_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_up_alt": { "name": "swipe_up_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "123": { "name": "123", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new": { "name": "open_in_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_returned": { "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_phone": { "name": "settings_phone", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance": { "name": "account_balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact_alt": { "name": "view_compact_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dns": { "name": "dns", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mediation": { "name": "mediation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_small": { "name": "donut_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "redeem": { "name": "redeem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "turned_in_not": { "name": "turned_in_not", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update_alt": { "name": "system_update_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "class": { "name": "class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_up": { "name": "trending_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_svideo": { "name": "settings_input_svideo", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervisor_account": { "name": "supervisor_account", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_person": { "name": "lock_person", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_circle_down": { "name": "arrow_circle_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_wide": { "name": "width_wide", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "desktop_mac": { "name": "desktop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_chromebook": { "name": "laptop_chromebook", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_down": { "name": "keyboard_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "mouse": { "name": "mouse", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_command_key": { "name": "keyboard_command_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_left": { "name": "keyboard_double_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_option_key": { "name": "keyboard_option_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_return": { "name": "keyboard_return", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_alt": { "name": "keyboard_alt", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "cast_for_education": { "name": "cast_for_education", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink": { "name": "phonelink", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_updated": { "name": "browser_updated", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "earbuds_battery": { "name": "earbuds_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board_off": { "name": "developer_board_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "start": { "name": "start", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "headset": { "name": "headset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset": { "name": "videogame_asset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor": { "name": "monitor", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_right": { "name": "keyboard_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "scanner": { "name": "scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch": { "name": "watch", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board": { "name": "developer_board", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_iphone": { "name": "phone_iphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_android": { "name": "tablet_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_mac": { "name": "tablet_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "router": { "name": "router", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones_battery": { "name": "headphones_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_backspace": { "name": "keyboard_backspace", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_toy": { "name": "smart_toy", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "gamepad": { "name": "gamepad", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "adf_scanner": { "name": "adf_scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "laptop_mac": { "name": "laptop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_not_supported": { "name": "browser_not_supported", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast_connected": { "name": "cast_connected", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv": { "name": "tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_windows": { "name": "laptop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_control_key": { "name": "keyboard_control_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "smart_display": { "name": "smart_display", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones": { "name": "headphones", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_android": { "name": "phone_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_up": { "name": "keyboard_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_max": { "name": "home_max", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smartphone": { "name": "smartphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_tab": { "name": "keyboard_tab", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch_off": { "name": "watch_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast": { "name": "cast", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "point_of_sale": { "name": "point_of_sale", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "computer": { "name": "computer", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "device_unknown": { "name": "device_unknown", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "memory": { "name": "memory", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_voice": { "name": "keyboard_voice", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard": { "name": "keyboard", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "earbuds": { "name": "earbuds", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "security": { "name": "security", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_hide": { "name": "keyboard_hide", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_input": { "name": "power_input", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_mini": { "name": "home_mini", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_other": { "name": "devices_other", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_mic": { "name": "headset_mic", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset_off": { "name": "videogame_asset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dock": { "name": "dock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_capslock": { "name": "keyboard_capslock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_off": { "name": "headset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_right": { "name": "keyboard_double_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_off": { "name": "phonelink_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card": { "name": "sim_card", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_left": { "name": "keyboard_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_up": { "name": "keyboard_double_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "toys": { "name": "toys", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_down": { "name": "keyboard_double_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_hub": { "name": "device_hub", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_group": { "name": "speaker_group", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_windows": { "name": "desktop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "connected_tv": { "name": "connected_tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet": { "name": "tablet", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop": { "name": "laptop", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker": { "name": "speaker", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_screen": { "name": "smart_screen", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "portable_wifi_off": { "name": "portable_wifi_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "textsms": { "name": "textsms", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_split": { "name": "call_split", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_export": { "name": "import_export", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone": { "name": "phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "3p": { "name": "3p", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "clear_all": { "name": "clear_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "dialpad": { "name": "dialpad", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat": { "name": "chat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_search": { "name": "person_search", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comments_disabled": { "name": "comments_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key": { "name": "vpn_key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "unsubscribe": { "name": "unsubscribe", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_setup": { "name": "phonelink_setup", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "live_help": { "name": "live_help", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "present_to_all": { "name": "present_to_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call": { "name": "call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "domain_disabled": { "name": "domain_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_portrait": { "name": "stay_current_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_access_disabled": { "name": "desktop_access_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_share": { "name": "screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_phone": { "name": "speaker_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_unread": { "name": "mark_email_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nat": { "name": "nat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_ring": { "name": "phonelink_ring", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_read": { "name": "mark_email_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "email": { "name": "email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "print_disabled": { "name": "print_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_chat_read": { "name": "mark_chat_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_made": { "name": "call_made", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_landscape": { "name": "stay_primary_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code": { "name": "qr_code", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_unread_chat_alt": { "name": "mark_unread_chat_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "spoke": { "name": "spoke", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chat_bubble": { "name": "chat_bubble", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "cell_tower": { "name": "cell_tower", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "document_scanner": { "name": "document_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key_off": { "name": "vpn_key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contacts": { "name": "contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "list_alt": { "name": "list_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_lock": { "name": "phonelink_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_enabled": { "name": "phone_enabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "co_present": { "name": "co_present", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_verification": { "name": "domain_verification", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied_alt": { "name": "sentiment_satisfied_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_disabled": { "name": "phone_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_ic_call": { "name": "add_ic_call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_on": { "name": "location_on", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_disabled": { "name": "person_add_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "business": { "name": "business", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_end": { "name": "call_end", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code_scanner": { "name": "qr_code_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_erase": { "name": "phonelink_erase", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed": { "name": "call_missed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_registration": { "name": "app_registration", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hub": { "name": "hub", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause_presentation": { "name": "pause_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop_screen_share": { "name": "stop_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "sip": { "name": "sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_lock": { "name": "mail_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_merge": { "name": "call_merge", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_bottom": { "name": "hourglass_bottom", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dialer_sip": { "name": "dialer_sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "comment": { "name": "comment", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_received": { "name": "call_received", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling": { "name": "wifi_calling", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forum": { "name": "forum", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "rtt": { "name": "rtt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_to_inbox": { "name": "forward_to_inbox", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_time_extension": { "name": "send_time_extension", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_presentation": { "name": "cancel_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_mail": { "name": "contact_mail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat_bubble_outline": { "name": "chat_bubble_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_phone": { "name": "contact_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_off": { "name": "location_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed_outgoing": { "name": "call_missed_outgoing", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_emergency": { "name": "contact_emergency", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "duo": { "name": "duo", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_portrait": { "name": "stay_primary_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_sim": { "name": "no_sim", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "message": { "name": "message", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "read_more": { "name": "read_more", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rss_feed": { "name": "rss_feed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_calls": { "name": "swap_calls", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_top": { "name": "hourglass_top", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "voicemail": { "name": "voicemail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_landscape": { "name": "stay_current_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_outline": { "name": "mail_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "ring_volume": { "name": "ring_volume", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors_off": { "name": "invert_colors_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cell_wifi": { "name": "cell_wifi", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_screen_share": { "name": "mobile_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_contacts": { "name": "import_contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "alternate_email": { "name": "alternate_email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "key_off": { "name": "key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_chat_unread": { "name": "mark_chat_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "key": { "name": "key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "qr_code_2": { "name": "qr_code_2", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_time": { "name": "more_time", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grass": { "name": "grass", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bento": { "name": "bento", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "backpack": { "name": "backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "other_houses": { "name": "other_houses", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iron": { "name": "iron", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "escalator_warning": { "name": "escalator_warning", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cottage": { "name": "cottage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "golf_course": { "name": "golf_course", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_touch": { "name": "do_not_touch", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cabin": { "name": "cabin", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_photography": { "name": "no_photography", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vaping_rooms": { "name": "vaping_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "room_preferences": { "name": "room_preferences", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "fitness_center": { "name": "fitness_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_drinks": { "name": "no_drinks", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathtub": { "name": "bathtub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hot_tub": { "name": "hot_tub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "night_shelter": { "name": "night_shelter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "desk": { "name": "desk", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wash": { "name": "wash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_friendly": { "name": "child_friendly", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "soap": { "name": "soap", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoke_free": { "name": "smoke_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "kitchen": { "name": "kitchen", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stroller": { "name": "stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "crib": { "name": "crib", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "umbrella": { "name": "umbrella", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "beach_access": { "name": "beach_access", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "pool": { "name": "pool", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "gite": { "name": "gite", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_extinguisher": { "name": "fire_extinguisher", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoking_rooms": { "name": "smoking_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rv_hookup": { "name": "rv_hookup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "all_inclusive": { "name": "all_inclusive", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "family_restroom": { "name": "family_restroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stairs": { "name": "stairs", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tty": { "name": "tty", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "escalator": { "name": "escalator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_meeting_room": { "name": "no_meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_step": { "name": "do_not_step", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "water_damage": { "name": "water_damage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "carpenter": { "name": "carpenter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "checkroom": { "name": "checkroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_flash": { "name": "no_flash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "meeting_room": { "name": "meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "food_bank": { "name": "food_bank", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tapas": { "name": "tapas", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "roofing": { "name": "roofing", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "storefront": { "name": "storefront", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "room_service": { "name": "room_service", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "balcony": { "name": "balcony", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "countertops": { "name": "countertops", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "foundation": { "name": "foundation", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "holiday_village": { "name": "holiday_village", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "charging_station": { "name": "charging_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "airport_shuttle": { "name": "airport_shuttle", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_food": { "name": "no_food", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "houseboat": { "name": "houseboat", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "elevator": { "name": "elevator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "ac_unit": { "name": "ac_unit", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "house_siding": { "name": "house_siding", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_care": { "name": "child_care", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "business_center": { "name": "business_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rice_bowl": { "name": "rice_bowl", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_backpack": { "name": "no_backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vape_free": { "name": "vape_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "house": { "name": "house", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "baby_changing_station": { "name": "baby_changing_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_stroller": { "name": "no_stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "microwave": { "name": "microwave", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_cell": { "name": "no_cell", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "wheelchair_pickup": { "name": "wheelchair_pickup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "casino": { "name": "casino", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bungalow": { "name": "bungalow", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chalet": { "name": "chalet", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry": { "name": "dry", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_bar": { "name": "sports_bar", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "villa": { "name": "villa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apartment": { "name": "apartment", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fence": { "name": "fence", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "corporate_fare": { "name": "corporate_fare", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "free_breakfast": { "name": "free_breakfast", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "spa": { "name": "spa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_done": { "name": "cloud_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "downloading": { "name": "downloading", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_quote": { "name": "request_quote", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_rename_outline": { "name": "drive_file_rename_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_zip": { "name": "folder_zip", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_circle": { "name": "cloud_circle", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "rule_folder": { "name": "rule_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder": { "name": "folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload_file": { "name": "upload_file", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_overline": { "name": "format_overline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_delete": { "name": "folder_delete", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drive_file_move": { "name": "drive_file_move", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_move_rtl": { "name": "drive_file_move_rtl", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_download": { "name": "cloud_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_upload": { "name": "cloud_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attachment": { "name": "attachment", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "newspaper": { "name": "newspaper", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "create_new_folder": { "name": "create_new_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud": { "name": "cloud", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_snippet": { "name": "text_snippet", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download": { "name": "file_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_copy": { "name": "folder_copy", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "difference": { "name": "difference", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_off": { "name": "cloud_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_sync": { "name": "cloud_sync", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_off": { "name": "folder_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_download_done": { "name": "file_download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_queue": { "name": "cloud_queue", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload": { "name": "upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_view": { "name": "grid_view", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_shared": { "name": "folder_shared", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download_done": { "name": "download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "topic": { "name": "topic", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_folder_upload": { "name": "drive_folder_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces": { "name": "workspaces", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "download_for_offline": { "name": "download_for_offline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_email": { "name": "attach_email", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_open": { "name": "folder_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download_off": { "name": "file_download_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "approval": { "name": "approval", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download": { "name": "download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_open": { "name": "file_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_upload": { "name": "file_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "snippet_folder": { "name": "snippet_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_full": { "name": "battery_charging_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "note_alt": { "name": "note_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_wifi": { "name": "network_wifi", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_medium": { "name": "brightness_medium", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_low": { "name": "brightness_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_usage": { "name": "data_usage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_off": { "name": "data_saver_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "share_location": { "name": "share_location", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_not_fixed": { "name": "gps_not_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_high": { "name": "edgesensor_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth": { "name": "bluetooth", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "shortcut": { "name": "shortcut", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_std": { "name": "battery_std", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_score": { "name": "sports_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarm": { "name": "access_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_4": { "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_0_bar": { "name": "signal_cellular_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "restart_alt": { "name": "restart_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_2_bar": { "name": "wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grid_goldenratio": { "name": "grid_goldenratio", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error_rounded": { "name": "wifi_tethering_error_rounded", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "price_change": { "name": "price_change", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_portrait": { "name": "screen_lock_portrait", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_4_bar": { "name": "signal_cellular_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_active": { "name": "airplanemode_active", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "price_check": { "name": "price_check", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt": { "name": "signal_cellular_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor_weight": { "name": "monitor_weight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "tungsten": { "name": "tungsten", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto": { "name": "hdr_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dvr": { "name": "dvr", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_fold": { "name": "devices_fold", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_night": { "name": "mode_night", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cameraswitch": { "name": "cameraswitch", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_2_bar": { "name": "battery_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_alt_1_bar": { "name": "signal_cellular_alt_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "punch_clock": { "name": "punch_clock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "e_mobiledata": { "name": "e_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storage": { "name": "storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "pin": { "name": "pin", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar_lock": { "name": "signal_wifi_4_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_standby": { "name": "mode_standby", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_cell": { "name": "network_cell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps": { "name": "60fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_3x3": { "name": "grid_3x3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication_liquid": { "name": "medication_liquid", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_thermostat": { "name": "device_thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation": { "name": "screen_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_rotation": { "name": "screen_lock_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_searching": { "name": "location_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_off": { "name": "flashlight_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_mobiledata": { "name": "g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_4_bar": { "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pattern": { "name": "pattern", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_searching": { "name": "bluetooth_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot_monitor": { "name": "screenshot_monitor", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quiz": { "name": "quiz", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "air": { "name": "air", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "phishing": { "name": "phishing", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "summarize": { "name": "summarize", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "password": { "name": "password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_4": { "name": "signal_wifi_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nfc": { "name": "nfc", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_1_bar": { "name": "battery_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reviews": { "name": "reviews", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_good": { "name": "gpp_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_low": { "name": "edgesensor_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "macro_off": { "name": "macro_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hdr_off_select": { "name": "hdr_off_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot": { "name": "screenshot", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_suggest": { "name": "settings_suggest", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_error": { "name": "nearby_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "light_mode": { "name": "light_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_2_bar": { "name": "network_wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_alarm": { "name": "add_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sell": { "name": "sell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_score": { "name": "credit_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_plus_mobiledata": { "name": "lte_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_off": { "name": "gps_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_fixed": { "name": "gps_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_landscape": { "name": "screen_lock_landscape", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_mobiledata": { "name": "h_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering": { "name": "wifi_tethering", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_friendly": { "name": "mobile_friendly", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_off": { "name": "mobile_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarms": { "name": "access_alarms", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "3g_mobiledata": { "name": "3g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto_select": { "name": "hdr_auto_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_4_bar": { "name": "signal_wifi_statusbar_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_system_daydream": { "name": "settings_system_daydream", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_bad": { "name": "gpp_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_off": { "name": "media_bluetooth_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_disabled": { "name": "bluetooth_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_4_bar": { "name": "battery_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_3_bar": { "name": "network_wifi_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_1_bar": { "name": "network_wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ad_units": { "name": "ad_units", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps": { "name": "30fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "task": { "name": "task", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_warning": { "name": "security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication": { "name": "medication", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat": { "name": "thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dark_mode": { "name": "dark_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_1_bar": { "name": "wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fluorescent": { "name": "fluorescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10_select": { "name": "timer_10_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_null": { "name": "signal_cellular_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_saver": { "name": "battery_saver", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on_select": { "name": "hdr_on_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_bad": { "name": "signal_wifi_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bloodtype": { "name": "bloodtype", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_on": { "name": "data_saver_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_good": { "name": "security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_off": { "name": "signal_cellular_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_mode": { "name": "developer_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices": { "name": "devices", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update": { "name": "security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flourescent": { "name": "flourescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_inactive": { "name": "airplanemode_inactive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "4g_plus_mobiledata": { "name": "4g_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "rsvp": { "name": "rsvp", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_mobiledata": { "name": "lte_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cable": { "name": "cable", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wallpaper": { "name": "wallpaper", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_high": { "name": "brightness_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "remember_me": { "name": "remember_me", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "splitscreen": { "name": "splitscreen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_lesson": { "name": "play_lesson", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_3": { "name": "wifi_calling_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb_off": { "name": "usb_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_0_bar": { "name": "signal_wifi_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lan": { "name": "lan", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "monitor_heart": { "name": "monitor_heart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "do_not_disturb_on_total_silence": { "name": "do_not_disturb_on_total_silence", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_alert": { "name": "battery_alert", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "1x_mobiledata": { "name": "1x_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "aod": { "name": "aod", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_0_bar": { "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_disabled": { "name": "location_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_on": { "name": "flashlight_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_on": { "name": "media_bluetooth_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_storage": { "name": "sd_storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_6_bar": { "name": "battery_6_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_full": { "name": "battery_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_nodata": { "name": "signal_cellular_nodata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_password": { "name": "wifi_password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "access_time_filled": { "name": "access_time_filled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_maybe": { "name": "gpp_maybe", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "ssid_chart": { "name": "ssid_chart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "widgets": { "name": "widgets", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_off": { "name": "nearby_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error": { "name": "wifi_tethering_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_channel": { "name": "wifi_channel", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reset_tv": { "name": "reset_tv", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_time": { "name": "access_time", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight": { "name": "nightlight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt_2_bar": { "name": "signal_cellular_alt_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_0_bar": { "name": "battery_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_lock": { "name": "wifi_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_null": { "name": "signal_wifi_statusbar_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_off": { "name": "wifi_tethering_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb": { "name": "usb", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3_select": { "name": "timer_3_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "water": { "name": "water", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_download": { "name": "sim_card_download", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_no_sim": { "name": "signal_cellular_no_sim", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_bad": { "name": "fmd_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update_warning": { "name": "system_security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dataset": { "name": "dataset", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_5_bar": { "name": "battery_5_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dataset_linked": { "name": "dataset_linked", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_to_mobile": { "name": "send_to_mobile", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobiledata_off": { "name": "mobiledata_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_unknown": { "name": "battery_unknown", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storm": { "name": "storm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_plus_mobiledata": { "name": "h_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update": { "name": "system_security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens_blur": { "name": "lens_blur", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_connected": { "name": "bluetooth_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_drive": { "name": "bluetooth_drive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_auto": { "name": "brightness_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_good": { "name": "fmd_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "4g_mobiledata": { "name": "4g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_find": { "name": "wifi_find", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_3_bar": { "name": "battery_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplane_ticket": { "name": "airplane_ticket", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar": { "name": "signal_wifi_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_home_screen": { "name": "add_to_home_screen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_search_desktop": { "name": "screen_search_desktop", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "discount": { "name": "discount", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "system_security_update_good": { "name": "system_security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_4x4": { "name": "grid_4x4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "r_mobiledata": { "name": "r_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "graphic_eq": { "name": "graphic_eq", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "radar": { "name": "radar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_off": { "name": "signal_wifi_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_delete": { "name": "auto_delete", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "error_outline": { "name": "error_outline", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "notification_important": { "name": "notification_important", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_alert": { "name": "add_alert", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning": { "name": "warning", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "error": { "name": "error", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning_amber": { "name": "warning_amber", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "broadcast_on_home": { "name": "broadcast_on_home", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wind_power": { "name": "wind_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heat_pump": { "name": "heat_pump", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains_closed": { "name": "curtains_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane_tank": { "name": "propane_tank", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades_closed": { "name": "vertical_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades": { "name": "vertical_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield_moon": { "name": "shield_moon", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "broadcast_on_personal": { "name": "broadcast_on_personal", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nest_cam_wired_stand": { "name": "nest_cam_wired_stand", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_window": { "name": "sensor_window", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds": { "name": "blinds", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gas_meter": { "name": "gas_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "solar_power": { "name": "solar_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains": { "name": "curtains", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_occupied": { "name": "sensor_occupied", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades_closed": { "name": "roller_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "oil_barrel": { "name": "oil_barrel", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "energy_savings_leaf": { "name": "energy_savings_leaf", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_bolt": { "name": "electric_bolt", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane": { "name": "propane", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_meter": { "name": "electric_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds_closed": { "name": "blinds_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades": { "name": "roller_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_fan_off": { "name": "mode_fan_off", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_mode": { "name": "auto_mode", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_door": { "name": "sensor_door", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hiking": { "name": "hiking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "single_bed": { "name": "single_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_outline": { "name": "person_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "man": { "name": "man", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "male": { "name": "male", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "psychology_alt": { "name": "psychology_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tsunami": { "name": "tsunami", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pages": { "name": "pages", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "roller_skating": { "name": "roller_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano": { "name": "piano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scale": { "name": "scale", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "masks": { "name": "masks", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_symbols": { "name": "emoji_symbols", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_outline": { "name": "people_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "back_hand": { "name": "back_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatshot": { "name": "whatshot", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "diversity_3": { "name": "diversity_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hive": { "name": "hive", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_esports": { "name": "sports_esports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "precision_manufacturing": { "name": "precision_manufacturing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "real_estate_agent": { "name": "real_estate_agent", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cruelty_free": { "name": "cruelty_free", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_flags": { "name": "emoji_flags", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "follow_the_signs": { "name": "follow_the_signs", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly_woman": { "name": "elderly_woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_divider": { "name": "safety_divider", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt": { "name": "person_add_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_alt": { "name": "people_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "kitesurfing": { "name": "kitesurfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "waving_hand": { "name": "waving_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "woman": { "name": "woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scuba_diving": { "name": "scuba_diving", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person": { "name": "person", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "fireplace": { "name": "fireplace", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "deck": { "name": "deck", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "boy": { "name": "boy", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_account": { "name": "switch_account", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "woman_2": { "name": "woman_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_3": { "name": "man_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notification_add": { "name": "notification_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "luggage": { "name": "luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_golf": { "name": "sports_golf", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied": { "name": "sentiment_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "transgender": { "name": "transgender", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heart_broken": { "name": "heart_broken", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "landslide": { "name": "landslide", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_active": { "name": "notifications_active", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "skateboarding": { "name": "skateboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "handshake": { "name": "handshake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain": { "name": "domain", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_martial_arts": { "name": "sports_martial_arts", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_2": { "name": "person_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "co2": { "name": "co2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_hockey": { "name": "sports_hockey", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tornado": { "name": "tornado", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fitbit": { "name": "fitbit", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_rugby": { "name": "sports_rugby", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "female": { "name": "female", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_basketball": { "name": "sports_basketball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove": { "name": "person_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "military_tech": { "name": "military_tech", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recycling": { "name": "recycling", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "king_bed": { "name": "king_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group": { "name": "group", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly": { "name": "elderly", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_2": { "name": "face_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assist_walker": { "name": "assist_walker", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_reaction": { "name": "add_reaction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "travel_explore": { "name": "travel_explore", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_off": { "name": "notifications_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_gymnastics": { "name": "sports_gymnastics", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "6_ft_apart": { "name": "6_ft_apart", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "plus_one": { "name": "plus_one", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_remove": { "name": "group_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "construction": { "name": "construction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood_bad": { "name": "mood_bad", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ice_skating": { "name": "ice_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_5": { "name": "face_5", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wallet": { "name": "wallet", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "paragliding": { "name": "paragliding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_adult_content": { "name": "no_adult_content", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flood": { "name": "flood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people": { "name": "people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_6": { "name": "face_6", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "party_mode": { "name": "party_mode", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspace_premium": { "name": "workspace_premium", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_moderator": { "name": "add_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_events": { "name": "emoji_events", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pix": { "name": "pix", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowshoeing": { "name": "snowshoeing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outdoor_grill": { "name": "outdoor_grill", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_4": { "name": "man_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_moderator": { "name": "remove_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "reduce_capacity": { "name": "reduce_capacity", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nordic_walking": { "name": "nordic_walking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "interests": { "name": "interests", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_add": { "name": "group_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sanitizer": { "name": "sanitizer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_dissatisfied": { "name": "sentiment_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "cyclone": { "name": "cyclone", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "health_and_safety": { "name": "health_and_safety", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nights_stay": { "name": "nights_stay", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowboarding": { "name": "snowboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatsapp": { "name": "whatsapp", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_food_beverage": { "name": "emoji_food_beverage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_3": { "name": "person_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano_off": { "name": "piano_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_luggage": { "name": "no_luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_edu": { "name": "history_edu", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_mma": { "name": "sports_mma", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "social_distance": { "name": "social_distance", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_tennis": { "name": "sports_tennis", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_kabaddi": { "name": "sports_kabaddi", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_off": { "name": "group_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volcano": { "name": "volcano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sick": { "name": "sick", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "engineering": { "name": "engineering", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_emotions": { "name": "emoji_emotions", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_3": { "name": "face_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports": { "name": "sports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "downhill_skiing": { "name": "downhill_skiing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood": { "name": "mood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "thunderstorm": { "name": "thunderstorm", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cake": { "name": "cake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_satisfied": { "name": "sentiment_very_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_nature": { "name": "emoji_nature", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_paused": { "name": "notifications_paused", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_motorsports": { "name": "sports_motorsports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_soccer": { "name": "sports_soccer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "water_drop": { "name": "water_drop", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "architecture": { "name": "architecture", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_off": { "name": "person_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups_3": { "name": "groups_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_down_alt": { "name": "thumb_down_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sign_language": { "name": "sign_language", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "self_improvement": { "name": "self_improvement", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_2": { "name": "diversity_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_4": { "name": "face_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_1": { "name": "diversity_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "public": { "name": "public", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "blind": { "name": "blind", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "facebook": { "name": "facebook", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_dissatisfied": { "name": "sentiment_very_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_neutral": { "name": "sentiment_neutral", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "psychology": { "name": "psychology", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "catching_pokemon": { "name": "catching_pokemon", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_none": { "name": "notifications_none", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_volleyball": { "name": "sports_volleyball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sledding": { "name": "sledding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vaccines": { "name": "vaccines", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "poll": { "name": "poll", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "kayaking": { "name": "kayaking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "front_hand": { "name": "front_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_add": { "name": "person_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "notifications": { "name": "notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_notifications": { "name": "edit_notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clean_hands": { "name": "clean_hands", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "groups_2": { "name": "groups_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_city": { "name": "location_city", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ios_share": { "name": "ios_share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_cricket": { "name": "sports_cricket", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "girl": { "name": "girl", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_objects": { "name": "emoji_objects", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_4": { "name": "person_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scoreboard": { "name": "scoreboard", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_add": { "name": "domain_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_up_alt": { "name": "thumb_up_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "coronavirus": { "name": "coronavirus", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt_1": { "name": "person_add_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove_alt_1": { "name": "person_remove_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "share": { "name": "share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "surfing": { "name": "surfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "connect_without_contact": { "name": "connect_without_contact", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "public_off": { "name": "public_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_people": { "name": "emoji_people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups": { "name": "groups", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "severe_cold": { "name": "severe_cold", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_2": { "name": "man_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recommend": { "name": "recommend", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_transportation": { "name": "emoji_transportation", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_baseball": { "name": "sports_baseball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "school": { "name": "school", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_handball": { "name": "sports_handball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "18_up_rating": { "name": "18_up_rating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "personal_injury": { "name": "personal_injury", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compost": { "name": "compost", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_america": { "name": "south_america", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "science": { "name": "science", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cookie": { "name": "cookie", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_football": { "name": "sports_football", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_strikethrough": { "name": "format_strikethrough", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "horizontal_distribute": { "name": "horizontal_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "space_bar": { "name": "space_bar", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_left": { "name": "format_align_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_bottom": { "name": "vertical_align_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "height": { "name": "height", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_right": { "name": "align_horizontal_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_quote": { "name": "format_quote", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "show_chart": { "name": "show_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "numbers": { "name": "numbers", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_bold": { "name": "format_bold", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_distribute": { "name": "vertical_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_size": { "name": "format_size", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_chart": { "name": "insert_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_list_numbered_rtl": { "name": "format_list_numbered_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_bottom": { "name": "border_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_emoticon": { "name": "insert_emoticon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "hexagon": { "name": "hexagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "type_specimen": { "name": "type_specimen", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_justify": { "name": "format_align_justify", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "padding": { "name": "padding", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_bottom": { "name": "align_vertical_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_top": { "name": "vertical_align_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_outer": { "name": "border_outer", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off": { "name": "money_off", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge_type": { "name": "merge_type", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_chart": { "name": "table_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pentagon": { "name": "pentagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schema": { "name": "schema", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_edit_outline": { "name": "mode_edit_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_center": { "name": "align_horizontal_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_top": { "name": "border_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_comment": { "name": "mode_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_style": { "name": "border_style", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "polyline": { "name": "polyline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "highlight": { "name": "highlight", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "short_text": { "name": "short_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_clear": { "name": "format_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_decrease": { "name": "text_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "post_add": { "name": "post_add", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_numbered": { "name": "format_list_numbered", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_line_spacing": { "name": "format_line_spacing", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_fields": { "name": "text_fields", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "title": { "name": "title", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "square": { "name": "square", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bubble_chart": { "name": "bubble_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_left": { "name": "border_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist": { "name": "checklist", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_color": { "name": "border_color", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist_rtl": { "name": "checklist_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_array": { "name": "data_array", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_page_break": { "name": "insert_page_break", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_comment": { "name": "add_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "scatter_plot": { "name": "scatter_plot", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_down": { "name": "move_down", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrap_text": { "name": "wrap_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_money": { "name": "attach_money", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_up": { "name": "move_up", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_shapes": { "name": "format_shapes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart": { "name": "pie_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "publish": { "name": "publish", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_italic": { "name": "format_italic", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_reset": { "name": "format_color_reset", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_horizontal_left": { "name": "align_horizontal_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_drive_file": { "name": "insert_drive_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_all": { "name": "border_all", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "strikethrough_s": { "name": "strikethrough_s", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_center": { "name": "format_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_underlined": { "name": "format_underlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_edit": { "name": "mode_edit", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "multiline_chart": { "name": "multiline_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "line_axis": { "name": "line_axis", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drag_handle": { "name": "drag_handle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "superscript": { "name": "superscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_comment": { "name": "insert_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "bar_chart": { "name": "bar_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_photo": { "name": "insert_photo", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_clear": { "name": "border_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_r_to_l": { "name": "format_textdirection_r_to_l", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_horizontal": { "name": "border_horizontal", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_line_chart": { "name": "stacked_line_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_invitation": { "name": "insert_invitation", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "rectangle": { "name": "rectangle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subscript": { "name": "subscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_rule": { "name": "horizontal_rule", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_increase": { "name": "text_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_align_center": { "name": "vertical_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "margin": { "name": "margin", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_link": { "name": "insert_link", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_graph": { "name": "auto_graph", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_chart_outlined": { "name": "insert_chart_outlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart_outline": { "name": "pie_chart_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off_csred": { "name": "money_off_csred", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_note": { "name": "edit_note", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_vertical_top": { "name": "align_vertical_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode": { "name": "mode", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_fill": { "name": "format_color_fill", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_bulleted": { "name": "format_list_bulleted", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "linear_scale": { "name": "linear_scale", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_vertical": { "name": "border_vertical", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "functions": { "name": "functions", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "notes": { "name": "notes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_rows": { "name": "table_rows", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "area_chart": { "name": "area_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_inner": { "name": "border_inner", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_l_to_r": { "name": "format_textdirection_l_to_r", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_chart": { "name": "add_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_right": { "name": "border_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_center": { "name": "align_vertical_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "candlestick_chart": { "name": "candlestick_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_paint": { "name": "format_paint", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "monetization_on": { "name": "monetization_on", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_increase": { "name": "format_indent_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_text": { "name": "format_color_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "attach_file": { "name": "attach_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "score": { "name": "score", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_decrease": { "name": "format_indent_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_object": { "name": "data_object", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_right": { "name": "format_align_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "query_stats": { "name": "query_stats", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shape_line": { "name": "shape_line", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "draw": { "name": "draw", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report": { "name": "report", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "calculate": { "name": "calculate", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mail": { "name": "mail", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add": { "name": "add", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_to_inbox": { "name": "move_to_inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste": { "name": "content_paste", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_search": { "name": "content_paste_search", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_circle_outline": { "name": "add_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_bar_chart": { "name": "stacked_bar_chart", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_link": { "name": "add_link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "create": { "name": "create", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag": { "name": "flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "ballot": { "name": "ballot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag": { "name": "tag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "reply": { "name": "reply", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_week": { "name": "next_week", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_circle": { "name": "change_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_vote": { "name": "how_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_sweep": { "name": "delete_sweep", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "archive": { "name": "archive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link_off": { "name": "link_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_gmailerrorred": { "name": "report_gmailerrorred", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "redo": { "name": "redo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_off": { "name": "report_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "insights": { "name": "insights", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save_alt": { "name": "save_alt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_off": { "name": "content_paste_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "square_foot": { "name": "square_foot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "content_cut": { "name": "content_cut", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "amp_stories": { "name": "amp_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clear": { "name": "clear", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "deselect": { "name": "deselect", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_circle_outline": { "name": "remove_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "gesture": { "name": "gesture", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "outlined_flag": { "name": "outlined_flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_stories": { "name": "web_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_reg": { "name": "how_to_reg", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list": { "name": "filter_list", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "upcoming": { "name": "upcoming", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_format": { "name": "text_format", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "push_pin": { "name": "push_pin", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_feed": { "name": "dynamic_feed", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "inbox": { "name": "inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "font_download": { "name": "font_download", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list_off": { "name": "filter_list_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "block": { "name": "block", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "biotech": { "name": "biotech", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reply_all": { "name": "reply_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory": { "name": "inventory", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag_circle": { "name": "flag_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save": { "name": "save", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_circle": { "name": "remove_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "send": { "name": "send", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "weekend": { "name": "weekend", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "attribution": { "name": "attribution", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_copy": { "name": "file_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link": { "name": "link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "drafts": { "name": "drafts", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "select_all": { "name": "select_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort": { "name": "sort", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_copy": { "name": "content_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "bolt": { "name": "bolt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_box": { "name": "add_box", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory_2": { "name": "inventory_2", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "font_download_off": { "name": "font_download_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copy_all": { "name": "copy_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield": { "name": "shield", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "low_priority": { "name": "low_priority", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "undo": { "name": "undo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "backspace": { "name": "backspace", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread": { "name": "markunread", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "waves": { "name": "waves", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "where_to_vote": { "name": "where_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "save_as": { "name": "save_as", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stream": { "name": "stream", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_go": { "name": "content_paste_go", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unarchive": { "name": "unarchive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_circle": { "name": "add_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "policy": { "name": "policy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forward": { "name": "forward", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove": { "name": "remove", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } } } sphinx-design-0.5.0/sphinx_design/compiled/material_twotone.json000066400000000000000000074711661446046271500252410ustar00rootroot00000000000000{ "no_encryption_gmailerrorred": { "name": "no_encryption_gmailerrorred", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_available": { "name": "event_available", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vpn_lock": { "name": "vpn_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_extra": { "name": "airline_seat_recline_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv_off": { "name": "tv_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_off": { "name": "power_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_encryption": { "name": "no_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "more": { "name": "more", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_paused": { "name": "phone_paused", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_audio": { "name": "bluetooth_audio", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync": { "name": "sync", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power": { "name": "power", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_alt": { "name": "do_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card": { "name": "sd_card", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "imagesearch_roller": { "name": "imagesearch_roller", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms": { "name": "sms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_eta": { "name": "drive_eta", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb": { "name": "do_not_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "priority_high": { "name": "priority_high", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "enhanced_encryption": { "name": "enhanced_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "mms": { "name": "mms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_normal": { "name": "airline_seat_legroom_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms_failed": { "name": "sms_failed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "adb": { "name": "adb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_lock": { "name": "sync_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "live_tv": { "name": "live_tv", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "confirmation_number": { "name": "confirmation_number", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi": { "name": "wifi", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card_alert": { "name": "sd_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "running_with_errors": { "name": "running_with_errors", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_flat_angled": { "name": "airline_seat_flat_angled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_off": { "name": "do_not_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_note": { "name": "event_note", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update": { "name": "system_update", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_chat": { "name": "video_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_locked": { "name": "network_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_reduced": { "name": "airline_seat_legroom_reduced", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_problem": { "name": "sync_problem", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_on": { "name": "do_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_in_talk": { "name": "phone_in_talk", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wc": { "name": "wc", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_forwarded": { "name": "phone_forwarded", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_disabled": { "name": "sync_disabled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_chat": { "name": "voice_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_bluetooth_speaker": { "name": "phone_bluetooth_speaker", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tap_and_play": { "name": "tap_and_play", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_special": { "name": "folder_special", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_on": { "name": "do_not_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_check": { "name": "network_check", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_busy": { "name": "event_busy", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "ondemand_video": { "name": "ondemand_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_locked": { "name": "phone_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_legroom_extra": { "name": "airline_seat_legroom_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "time_to_leave": { "name": "time_to_leave", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb": { "name": "do_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_off": { "name": "directions_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_normal": { "name": "airline_seat_recline_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_missed": { "name": "phone_missed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "personal_video": { "name": "personal_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_tree": { "name": "account_tree", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "support_agent": { "name": "support_agent", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_individual_suite": { "name": "airline_seat_individual_suite", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vibration": { "name": "vibration", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_alt": { "name": "do_not_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "disc_full": { "name": "disc_full", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_alert": { "name": "sim_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_off": { "name": "wifi_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_flat": { "name": "airline_seat_flat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_callback": { "name": "phone_callback", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_off": { "name": "do_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "doorbell": { "name": "doorbell", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "blender": { "name": "blender", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_baby": { "name": "bedroom_baby", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee": { "name": "coffee", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathroom": { "name": "bathroom", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "light": { "name": "light", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_sliding": { "name": "door_sliding", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_indoor": { "name": "camera_indoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_child": { "name": "bedroom_child", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "feed": { "name": "feed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "podcasts": { "name": "podcasts", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "garage": { "name": "garage", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "dining": { "name": "dining", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_back": { "name": "door_back", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair_alt": { "name": "chair_alt", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "living": { "name": "living", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "yard": { "name": "yard", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee_maker": { "name": "coffee_maker", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "shower": { "name": "shower", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "window": { "name": "window", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_front": { "name": "door_front", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair": { "name": "chair", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bed": { "name": "bed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_bar": { "name": "table_bar", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flatware": { "name": "flatware", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_search": { "name": "manage_search", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_outdoor": { "name": "camera_outdoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_restaurant": { "name": "table_restaurant", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bedroom_parent": { "name": "bedroom_parent", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "note": { "name": "note", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k": { "name": "7k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay": { "name": "replay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_queue": { "name": "add_to_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add": { "name": "library_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue_play_next": { "name": "queue_play_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k": { "name": "2k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check_circle": { "name": "playlist_add_check_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "repeat_on": { "name": "repeat_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "1k_plus": { "name": "1k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_10": { "name": "forward_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_remove": { "name": "playlist_remove", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mic": { "name": "mic", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_label": { "name": "video_label", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort_by_alpha": { "name": "sort_by_alpha", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_none": { "name": "mic_none", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_to_action": { "name": "call_to_action", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "3k_plus": { "name": "3k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle": { "name": "play_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "8k_plus": { "name": "8k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "interpreter_mode": { "name": "interpreter_mode", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "play_disabled": { "name": "play_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check": { "name": "playlist_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause": { "name": "pause", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "album": { "name": "album", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k_plus": { "name": "7k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_10": { "name": "replay_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_books": { "name": "library_books", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_previous": { "name": "skip_previous", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_circle_filled": { "name": "replay_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_arrow": { "name": "play_arrow", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "speed": { "name": "speed", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k_plus": { "name": "4k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie": { "name": "movie", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat": { "name": "repeat", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_30": { "name": "forward_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "9k": { "name": "9k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_forward": { "name": "fast_forward", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "lyrics": { "name": "lyrics", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "1k": { "name": "1k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subtitles": { "name": "subtitles", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "recent_actors": { "name": "recent_actors", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_settings": { "name": "video_settings", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "3k": { "name": "3k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_5": { "name": "forward_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_off": { "name": "volume_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "loop": { "name": "loop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_filled": { "name": "play_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle_on": { "name": "shuffle_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k_plus": { "name": "2k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k_plus": { "name": "6k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "explicit": { "name": "explicit", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5g": { "name": "5g", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "audio_file": { "name": "audio_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_from_queue": { "name": "remove_from_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue": { "name": "queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_video": { "name": "music_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_play": { "name": "playlist_play", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stop_circle": { "name": "stop_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "av_timer": { "name": "av_timer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web": { "name": "web", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam_off": { "name": "videocam_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_filled": { "name": "pause_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption": { "name": "closed_caption", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hd": { "name": "hd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio": { "name": "radio", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_5": { "name": "replay_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_manual_record": { "name": "fiber_manual_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_rewind": { "name": "fast_rewind", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_music": { "name": "library_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "equalizer": { "name": "equalizer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset": { "name": "web_asset", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam": { "name": "videocam", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "surround_sound": { "name": "surround_sound", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_library": { "name": "video_library", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "missed_video_call": { "name": "missed_video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "8k": { "name": "8k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5k_plus": { "name": "5k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing": { "name": "hearing", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k": { "name": "6k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "games": { "name": "games", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "slow_motion_video": { "name": "slow_motion_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "branding_watermark": { "name": "branding_watermark", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle": { "name": "shuffle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_off": { "name": "mic_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add_check": { "name": "library_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "featured_play_list": { "name": "featured_play_list", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "snooze": { "name": "snooze", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_outline": { "name": "pause_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "featured_video": { "name": "featured_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "10k": { "name": "10k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_call": { "name": "video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "art_track": { "name": "art_track", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_new": { "name": "fiber_new", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd": { "name": "sd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_smart_record": { "name": "fiber_smart_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_next": { "name": "skip_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_up": { "name": "volume_up", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset_off": { "name": "web_asset_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplay": { "name": "airplay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing_disabled": { "name": "hearing_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add_circle": { "name": "playlist_add_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "queue_music": { "name": "queue_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add": { "name": "playlist_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "5k": { "name": "5k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_interested": { "name": "not_interested", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one_on": { "name": "repeat_one_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_file": { "name": "video_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "9k_plus": { "name": "9k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subscriptions": { "name": "subscriptions", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle": { "name": "pause_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "control_camera": { "name": "control_camera", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_mute": { "name": "volume_mute", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_pin": { "name": "fiber_pin", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "high_quality": { "name": "high_quality", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_down": { "name": "volume_down", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k": { "name": "4k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_30": { "name": "replay_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_off": { "name": "closed_caption_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_outline": { "name": "play_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one": { "name": "repeat_one", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop": { "name": "stop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_disabled": { "name": "closed_caption_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "new_releases": { "name": "new_releases", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_dvr": { "name": "fiber_dvr", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_unchecked": { "name": "radio_button_unchecked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_outline": { "name": "star_outline", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "indeterminate_check_box": { "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_on": { "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_purple500": { "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box_outline_blank": { "name": "check_box_outline_blank", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border_purple500": { "name": "star_border_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box": { "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star": { "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border": { "name": "star_border", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_off": { "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_half": { "name": "star_half", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_checked": { "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point_duplicate": { "name": "control_point_duplicate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_off": { "name": "hdr_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_auto": { "name": "motion_photos_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timelapse": { "name": "timelapse", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_front": { "name": "photo_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_small": { "name": "photo_size_select_small", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "8mp": { "name": "8mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_on": { "name": "raw_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_off": { "name": "motion_photos_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "euro": { "name": "euro", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iso": { "name": "iso", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_back": { "name": "photo_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "19mp": { "name": "19mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "linked_camera": { "name": "linked_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_4": { "name": "filter_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "6mp": { "name": "6mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_auto": { "name": "flash_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_rear": { "name": "camera_rear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_android": { "name": "flip_camera_android", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vignette": { "name": "vignette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_zero": { "name": "exposure_zero", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_2": { "name": "filter_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip": { "name": "flip", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_plus": { "name": "hdr_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_roll": { "name": "camera_roll", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_off": { "name": "face_retouching_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_search": { "name": "image_search", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_ccw": { "name": "rotate_90_degrees_ccw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_album": { "name": "photo_album", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_9": { "name": "filter_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_auto": { "name": "wb_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "monochrome_photos": { "name": "monochrome_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_original": { "name": "crop_original", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime": { "name": "bedtime", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "20mp": { "name": "20mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure": { "name": "exposure", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_creation": { "name": "movie_creation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image": { "name": "image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_franc": { "name": "currency_franc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vrpano": { "name": "vrpano", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections_bookmark": { "name": "collections_bookmark", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_none": { "name": "filter_none", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_off": { "name": "blur_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_pound": { "name": "currency_pound", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "timer": { "name": "timer", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "style": { "name": "style", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_2": { "name": "brightness_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy": { "name": "view_comfy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_fix_off": { "name": "auto_fix_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal": { "name": "panorama_horizontal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama": { "name": "panorama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_cloudy": { "name": "wb_cloudy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_red_eye": { "name": "remove_red_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_natural": { "name": "face_retouching_natural", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_cw": { "name": "rotate_90_degrees_cw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "photo_camera": { "name": "photo_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3": { "name": "timer_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "16mp": { "name": "16mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_motion": { "name": "auto_awesome_motion", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_2": { "name": "exposure_plus_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere": { "name": "panorama_photosphere", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_pause": { "name": "motion_photos_pause", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "adjust": { "name": "adjust", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "straighten": { "name": "straighten", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hevc": { "name": "hevc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_portrait": { "name": "crop_portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_off": { "name": "mic_external_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "2mp": { "name": "2mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere_select": { "name": "panorama_photosphere_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_9_plus": { "name": "filter_9_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_strong": { "name": "hdr_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_aspect_ratio": { "name": "image_aspect_ratio", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo": { "name": "photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_front": { "name": "camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_rotate": { "name": "crop_rotate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_incandescent": { "name": "wb_incandescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_not_supported": { "name": "image_not_supported", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "17mp": { "name": "17mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "12mp": { "name": "12mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop": { "name": "crop", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "22mp": { "name": "22mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dirty_lens": { "name": "dirty_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt_long": { "name": "receipt_long", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "4mp": { "name": "4mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_before": { "name": "navigate_before", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_landscape": { "name": "crop_landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "9mp": { "name": "9mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_on": { "name": "mic_external_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat_auto": { "name": "thermostat_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_6": { "name": "brightness_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera": { "name": "camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps_select": { "name": "60fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome": { "name": "auto_awesome", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flare": { "name": "flare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_back": { "name": "video_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_sunny": { "name": "wb_sunny", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_7": { "name": "brightness_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_library": { "name": "photo_library", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_16_9": { "name": "crop_16_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_on": { "name": "blur_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_a_photo": { "name": "add_a_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_fish_eye": { "name": "panorama_fish_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_4": { "name": "looks_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_off": { "name": "raw_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical": { "name": "panorama_vertical", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_3": { "name": "looks_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks": { "name": "looks", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_off": { "name": "music_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_filter": { "name": "movie_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tonality": { "name": "tonality", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "10mp": { "name": "10mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_5": { "name": "filter_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "23mp": { "name": "23mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_off": { "name": "flash_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yen": { "name": "currency_yen", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "14mp": { "name": "14mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_image": { "name": "hide_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_iridescent": { "name": "wb_iridescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "burst_mode": { "name": "burst_mode", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "slideshow": { "name": "slideshow", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_twilight": { "name": "wb_twilight", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blur_circular": { "name": "blur_circular", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_7_5": { "name": "crop_7_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "5mp": { "name": "5mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_large": { "name": "photo_size_select_large", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_alt": { "name": "camera_alt", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_vintage": { "name": "filter_vintage", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "audiotrack": { "name": "audiotrack", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_on": { "name": "flash_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_3": { "name": "brightness_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_actual": { "name": "photo_size_select_actual", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_ios": { "name": "flip_camera_ios", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_drama": { "name": "filter_drama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag_faces": { "name": "tag_faces", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "leak_add": { "name": "leak_add", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "11mp": { "name": "11mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_1": { "name": "exposure_neg_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_rupee": { "name": "currency_rupee", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "healing": { "name": "healing", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_off": { "name": "timer_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transform": { "name": "transform", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens": { "name": "lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_5": { "name": "looks_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "cases": { "name": "cases", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "18mp": { "name": "18mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_filter": { "name": "photo_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter": { "name": "filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_6": { "name": "filter_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_free": { "name": "crop_free", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_1": { "name": "exposure_plus_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact": { "name": "view_compact", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10": { "name": "timer_10", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_mosaic": { "name": "auto_awesome_mosaic", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "21mp": { "name": "21mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_ruble": { "name": "currency_ruble", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "crop_din": { "name": "crop_din", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on": { "name": "hdr_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_square": { "name": "crop_square", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_on": { "name": "grid_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_bitcoin": { "name": "currency_bitcoin", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autofps_select": { "name": "autofps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit": { "name": "edit", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps_select": { "name": "30fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "colorize": { "name": "colorize", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brush": { "name": "brush", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_video": { "name": "switch_video", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_8": { "name": "filter_8", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_1": { "name": "filter_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "contrast": { "name": "contrast", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "brightness_1": { "name": "brightness_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_two": { "name": "looks_two", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "15mp": { "name": "15mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_paused": { "name": "motion_photos_paused", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "loupe": { "name": "loupe", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature": { "name": "nature", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_shade": { "name": "wb_shade", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "circle": { "name": "circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "landscape": { "name": "landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_5": { "name": "brightness_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mp": { "name": "mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_one": { "name": "looks_one", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_as_pdf": { "name": "picture_as_pdf", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "3mp": { "name": "3mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical_select": { "name": "panorama_vertical_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_b_and_w": { "name": "filter_b_and_w", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_note": { "name": "music_note", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "details": { "name": "details", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_photo_alternate": { "name": "add_photo_alternate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_7": { "name": "filter_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_right": { "name": "rotate_right", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_strong": { "name": "center_focus_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dehaze": { "name": "dehaze", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal_select": { "name": "panorama_horizontal_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime_off": { "name": "bedtime_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "motion_photos_on": { "name": "motion_photos_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compare": { "name": "compare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_3_2": { "name": "crop_3_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature_people": { "name": "nature_people", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tune": { "name": "tune", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_3": { "name": "filter_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "deblur": { "name": "deblur", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "texture": { "name": "texture", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_6": { "name": "looks_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "broken_image": { "name": "broken_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_hdr": { "name": "filter_hdr", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_4": { "name": "brightness_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "incomplete_circle": { "name": "incomplete_circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assistant_photo": { "name": "assistant_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_weak": { "name": "hdr_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_weak": { "name": "center_focus_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_normal": { "name": "auto_fix_normal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_enhanced_select": { "name": "hdr_enhanced_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_center_focus": { "name": "filter_center_focus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_off": { "name": "grid_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle": { "name": "panorama_wide_angle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant": { "name": "assistant", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections": { "name": "collections", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_next": { "name": "navigate_next", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_5_4": { "name": "crop_5_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grain": { "name": "grain", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_linear": { "name": "blur_linear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_lira": { "name": "currency_lira", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "24mp": { "name": "24mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_stories": { "name": "auto_stories", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "palette": { "name": "palette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "color_lens": { "name": "color_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_2": { "name": "exposure_neg_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "13mp": { "name": "13mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "7mp": { "name": "7mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_front": { "name": "video_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yuan": { "name": "currency_yuan", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "portrait": { "name": "portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_photos": { "name": "add_to_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point": { "name": "control_point", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_frames": { "name": "filter_frames", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "shutter_speed": { "name": "shutter_speed", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_tilt_shift": { "name": "filter_tilt_shift", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "logo_dev": { "name": "logo_dev", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leak_remove": { "name": "leak_remove", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle_select": { "name": "panorama_wide_angle_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_left": { "name": "rotate_left", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "gradient": { "name": "gradient", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_camera": { "name": "switch_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "animation": { "name": "animation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_high": { "name": "auto_fix_high", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_stable": { "name": "video_stable", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_left": { "name": "arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu": { "name": "menu", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_left": { "name": "switch_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "legend_toggle": { "name": "legend_toggle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_west": { "name": "south_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_upward": { "name": "arrow_upward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "waterfall_chart": { "name": "waterfall_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_circle_down": { "name": "expand_circle_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_drop_up": { "name": "arrow_drop_up", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "first_page": { "name": "first_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen": { "name": "fullscreen", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_left": { "name": "subdirectory_arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_right": { "name": "chevron_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home_work": { "name": "add_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps_outage": { "name": "apps_outage", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps": { "name": "apps", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "west": { "name": "west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_share": { "name": "offline_share", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right": { "name": "arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_right": { "name": "subdirectory_arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_downward": { "name": "arrow_downward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down_circle": { "name": "arrow_drop_down_circle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more": { "name": "unfold_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "cancel": { "name": "cancel", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "payments": { "name": "payments", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south_east": { "name": "south_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_work": { "name": "home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand_more": { "name": "expand_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "double_arrow": { "name": "double_arrow", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "north_west": { "name": "north_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_settings_alt": { "name": "app_settings_alt", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_less": { "name": "expand_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios": { "name": "arrow_back_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_open": { "name": "menu_open", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "campaign": { "name": "campaign", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "check": { "name": "check", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "refresh": { "name": "refresh", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south": { "name": "south", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_right": { "name": "switch_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_vert": { "name": "more_vert", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_less": { "name": "unfold_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "close": { "name": "close", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant_direction": { "name": "assistant_direction", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_left": { "name": "chevron_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back": { "name": "arrow_back", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "east": { "name": "east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north_east": { "name": "north_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "maps_home_work": { "name": "maps_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "pivot_table_chart": { "name": "pivot_table_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen_exit": { "name": "fullscreen_exit", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_horiz": { "name": "more_horiz", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_forward_ios": { "name": "arrow_forward_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "last_page": { "name": "last_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down": { "name": "arrow_drop_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios_new": { "name": "arrow_back_ios_new", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_forward": { "name": "arrow_forward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north": { "name": "north", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_movies": { "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "festival": { "name": "festival", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "traffic": { "name": "traffic", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "kebab_dining": { "name": "kebab_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrong_location": { "name": "wrong_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "my_location": { "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_scooter": { "name": "electric_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_railway_filled": { "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "crisis_alert": { "name": "crisis_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sailing": { "name": "sailing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "warehouse": { "name": "warehouse", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_share": { "name": "emergency_share", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_stops": { "name": "airline_stops", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nightlife": { "name": "nightlife", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diamond": { "name": "diamond", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant": { "name": "restaurant", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "attractions": { "name": "attractions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway": { "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "breakfast_dining": { "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_see": { "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "store_mall_directory": { "name": "store_mall_directory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_police": { "name": "local_police", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fort": { "name": "fort", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_right": { "name": "u_turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_atm": { "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_road": { "name": "edit_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_check": { "name": "safety_check", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transfer_within_a_station": { "name": "transfer_within_a_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ev_station": { "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hospital": { "name": "local_hospital", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "soup_kitchen": { "name": "soup_kitchen", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_meals": { "name": "no_meals", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "sos": { "name": "sos", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel": { "name": "hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_class": { "name": "flight_class", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "liquor": { "name": "liquor", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_information": { "name": "medical_information", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "plumbing": { "name": "plumbing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "place": { "name": "place", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "lunch_dining": { "name": "lunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_grocery_store": { "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_mall": { "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_right": { "name": "turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_attributes": { "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigation": { "name": "navigation", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_railway": { "name": "directions_railway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "layers_clear": { "name": "layers_clear", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moped": { "name": "moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "beenhere": { "name": "beenhere", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "trip_origin": { "name": "trip_origin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_shipping": { "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "minor_crash": { "name": "minor_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin": { "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "departure_board": { "name": "departure_board", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "agriculture": { "name": "agriculture", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "two_wheeler": { "name": "two_wheeler", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat": { "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_walk": { "name": "directions_walk", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_cafe": { "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "tram": { "name": "tram", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "celebration": { "name": "celebration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_left": { "name": "turn_sharp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_rickshaw": { "name": "electric_rickshaw", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "miscellaneous_services": { "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_listed_location": { "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_bike": { "name": "electric_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tire_repair": { "name": "tire_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry_cleaning": { "name": "dry_cleaning", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electrical_services": { "name": "electrical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_transfer": { "name": "no_transfer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "synagogue": { "name": "synagogue", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway_filled": { "name": "directions_subway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_book": { "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pest_control": { "name": "pest_control", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fork_left": { "name": "fork_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowmobile": { "name": "snowmobile", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_repair": { "name": "car_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "park": { "name": "park", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "church": { "name": "church", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hardware": { "name": "hardware", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bike_scooter": { "name": "bike_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compass_calibration": { "name": "compass_calibration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "dinner_dining": { "name": "dinner_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_taxi": { "name": "local_taxi", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_pizza": { "name": "local_pizza", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_parking": { "name": "local_parking", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me": { "name": "near_me", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in_map": { "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_phone": { "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_drink": { "name": "local_drink", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_right": { "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "maps_ugc": { "name": "maps_ugc", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car": { "name": "directions_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hotel": { "name": "local_hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fire_hydrant_alt": { "name": "fire_hydrant_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_printshop": { "name": "local_printshop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_business": { "name": "add_business", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_car": { "name": "electric_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin_circle": { "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation_alt": { "name": "screen_rotation_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_bar": { "name": "local_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "forest": { "name": "forest", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite": { "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_airport": { "name": "local_airport", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volunteer_activism": { "name": "volunteer_activism", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_fire_department": { "name": "local_fire_department", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "set_meal": { "name": "set_meal", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge": { "name": "merge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_car_wash": { "name": "local_car_wash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "atm": { "name": "atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_play": { "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moving": { "name": "moving", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "360": { "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight": { "name": "flight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "castle": { "name": "castle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "layers": { "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pedal_bike": { "name": "pedal_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_hindu": { "name": "temple_hindu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location_alt": { "name": "edit_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_services": { "name": "medical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_post_office": { "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "map": { "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hail": { "name": "hail", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "signpost": { "name": "signpost", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bakery_dining": { "name": "bakery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "zoom_out_map": { "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_repair_service": { "name": "home_repair_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wine_bar": { "name": "wine_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_left": { "name": "turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant_menu": { "name": "restaurant_menu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_left": { "name": "turn_slight_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "theater_comedy": { "name": "theater_comedy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramen_dining": { "name": "ramen_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_drop": { "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "transit_enterexit": { "name": "transit_enterexit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_crash": { "name": "no_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "egg_alt": { "name": "egg_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location": { "name": "edit_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_laundry_service": { "name": "local_laundry_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_dining": { "name": "local_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit_filled": { "name": "directions_transit_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "brunch_dining": { "name": "brunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "design_services": { "name": "design_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "run_circle": { "name": "run_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency": { "name": "emergency", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_road": { "name": "remove_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_run": { "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bus": { "name": "directions_bus", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_location_alt": { "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "streetview": { "name": "streetview", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "badge": { "name": "badge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_pharmacy": { "name": "local_pharmacy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fork_right": { "name": "fork_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_buddhist": { "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "factory": { "name": "factory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_location": { "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me_disabled": { "name": "near_me_disabled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "car_rental": { "name": "car_rental", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_right": { "name": "turn_sharp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "category": { "name": "category", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "taxi_alert": { "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "bus_alert": { "name": "bus_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "straight": { "name": "straight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rate_review": { "name": "rate_review", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "money": { "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ramp_left": { "name": "ramp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_left": { "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "railway_alert": { "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "cleaning_services": { "name": "cleaning_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "icecream": { "name": "icecream", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "multiple_stop": { "name": "multiple_stop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "handyman": { "name": "handyman", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_of_travel": { "name": "mode_of_travel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramp_right": { "name": "ramp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_right": { "name": "roundabout_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_truck": { "name": "fire_truck", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_bus_filled": { "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_offer": { "name": "local_offer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_moped": { "name": "electric_moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_recording": { "name": "emergency_recording", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_left": { "name": "u_turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_road": { "name": "add_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_gas_station": { "name": "local_gas_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "terrain": { "name": "terrain", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hvac": { "name": "hvac", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_library": { "name": "local_library", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car_filled": { "name": "directions_car_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "museum": { "name": "museum", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_convenience_store": { "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "airlines": { "name": "airlines", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fastfood": { "name": "fastfood", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "stadium": { "name": "stadium", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pest_control_rodent": { "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "route": { "name": "route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delivery_dining": { "name": "delivery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alt_route": { "name": "alt_route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subway": { "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "train": { "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_activity": { "name": "local_activity", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit": { "name": "directions_transit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "egg": { "name": "egg", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_crash": { "name": "car_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mosque": { "name": "mosque", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "takeout_dining": { "name": "takeout_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat_filled": { "name": "directions_boat_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bike": { "name": "directions_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "connecting_airports": { "name": "connecting_airports", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_florist": { "name": "local_florist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions": { "name": "directions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "savings": { "name": "savings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_outline": { "name": "label_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_left": { "name": "arrow_circle_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_bluetooth": { "name": "settings_bluetooth", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "alarm_off": { "name": "alarm_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_all": { "name": "done_all", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbox": { "name": "outbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "polymer": { "name": "polymer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "online_prediction": { "name": "online_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outlet": { "name": "outlet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pending": { "name": "pending", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quickreply": { "name": "quickreply", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "density_large": { "name": "density_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_week": { "name": "view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_exploration": { "name": "data_exploration", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report_problem": { "name": "report_problem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_accessibility": { "name": "settings_accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_scan_wifi": { "name": "perm_scan_wifi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "find_in_page": { "name": "find_in_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "3d_rotation": { "name": "3d_rotation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_outline": { "name": "lock_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "production_quantity_limits": { "name": "production_quantity_limits", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_flat": { "name": "trending_flat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_for_work": { "name": "play_for_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_full": { "name": "hourglass_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio": { "name": "spatial_audio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "token": { "name": "token", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flight_takeoff": { "name": "flight_takeoff", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label": { "name": "label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search": { "name": "search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio_off": { "name": "spatial_audio_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_add": { "name": "alarm_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_full": { "name": "join_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle": { "name": "check_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "get_app": { "name": "get_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension_off": { "name": "extension_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "find_replace": { "name": "find_replace", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_basket": { "name": "shopping_basket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "terminal": { "name": "terminal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_important_outline": { "name": "label_important_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_add": { "name": "bookmark_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "javascript": { "name": "javascript", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_schedule_send": { "name": "cancel_schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm": { "name": "alarm", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "plagiarism": { "name": "plagiarism", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compress": { "name": "compress", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_out": { "name": "zoom_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy_alt": { "name": "view_comfy_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_applications": { "name": "settings_applications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_ethernet": { "name": "settings_ethernet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angleup": { "name": "text_rotation_angleup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore_from_trash": { "name": "restore_from_trash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flaky": { "name": "flaky", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_form": { "name": "dynamic_form", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors_off": { "name": "sensors_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update_disabled": { "name": "update_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new_off": { "name": "open_in_new_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copyright": { "name": "copyright", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "room": { "name": "room", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "opacity": { "name": "opacity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "schedule_send": { "name": "schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_travel": { "name": "card_travel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lightbulb_circle": { "name": "lightbulb_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_return": { "name": "assignment_return", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_card": { "name": "add_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_full": { "name": "open_in_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home": { "name": "add_home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "browse_gallery": { "name": "browse_gallery", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unpublished": { "name": "unpublished", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_backup_restore": { "name": "settings_backup_restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab_unselected": { "name": "tab_unselected", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code_off": { "name": "code_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_vertical": { "name": "swipe_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility": { "name": "accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "addchart": { "name": "addchart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_exchange": { "name": "currency_exchange", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "css": { "name": "css", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_sidebar": { "name": "view_sidebar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pending_actions": { "name": "pending_actions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tour": { "name": "tour", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight_round": { "name": "nightlight_round", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_important": { "name": "label_important", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "theaters": { "name": "theaters", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "backup_table": { "name": "backup_table", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "youtube_searched_for": { "name": "youtube_searched_for", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_off": { "name": "edit_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_outline": { "name": "done_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_plan": { "name": "next_plan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rule": { "name": "rule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "paid": { "name": "paid", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark": { "name": "bookmark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_source": { "name": "hide_source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "loyalty": { "name": "loyalty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fingerprint": { "name": "fingerprint", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "store": { "name": "store", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down_off_alt": { "name": "thumb_down_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_left_alt": { "name": "swipe_left_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leaderboard": { "name": "leaderboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_contact_calendar": { "name": "perm_contact_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "api": { "name": "api", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assured_workload": { "name": "assured_workload", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contactless": { "name": "contactless", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pan_tool": { "name": "pan_tool", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread_mailbox": { "name": "markunread_mailbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "preview": { "name": "preview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_alt_off": { "name": "filter_alt_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_input_component": { "name": "settings_input_component", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbond": { "name": "outbond", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work": { "name": "work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down_alt": { "name": "swipe_down_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "saved_search": { "name": "saved_search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_month": { "name": "calendar_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "article": { "name": "article", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "display_settings": { "name": "display_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe": { "name": "swipe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pinch": { "name": "pinch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "balance": { "name": "balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help": { "name": "help", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_page": { "name": "request_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop_2": { "name": "shop_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "watch_later": { "name": "watch_later", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock": { "name": "lock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmarks": { "name": "bookmarks", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_kanban": { "name": "view_kanban", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "history": { "name": "history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "generating_tokens": { "name": "generating_tokens", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_day": { "name": "view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible": { "name": "accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_carousel": { "name": "view_carousel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "percent": { "name": "percent", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "private_connectivity": { "name": "private_connectivity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "table_view": { "name": "table_view", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "favorite": { "name": "favorite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fit_screen": { "name": "fit_screen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_down": { "name": "text_rotation_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "dashboard": { "name": "dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_support": { "name": "contact_support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_border": { "name": "bookmark_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_right": { "name": "arrow_circle_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "track_changes": { "name": "track_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible_forward": { "name": "accessible_forward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_left": { "name": "join_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified": { "name": "verified", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "android": { "name": "android", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "note_add": { "name": "note_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore": { "name": "restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_blocking": { "name": "app_blocking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gif_box": { "name": "gif_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility_new": { "name": "accessibility_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "reorder": { "name": "reorder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_turned_in": { "name": "assignment_turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_seat": { "name": "event_seat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_today": { "name": "calendar_today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart": { "name": "shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_button": { "name": "smart_button", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_composite": { "name": "settings_input_composite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up": { "name": "thumb_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "ads_click": { "name": "ads_click", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified_user": { "name": "verified_user", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_membership": { "name": "card_membership", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_overscan": { "name": "settings_overscan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in": { "name": "zoom_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code": { "name": "code", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_right": { "name": "join_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_task": { "name": "add_task", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_in_ar": { "name": "view_in_ar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_identity": { "name": "perm_identity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "install_mobile": { "name": "install_mobile", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turned_in": { "name": "turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_medium": { "name": "density_medium", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rocket": { "name": "rocket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_end": { "name": "pin_end", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle_outline": { "name": "check_circle_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_data_setting": { "name": "perm_data_setting", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_phone_msg": { "name": "perm_phone_msg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "http": { "name": "http", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_right_alt": { "name": "swipe_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_out": { "name": "all_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "exit_to_app": { "name": "exit_to_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "repartition": { "name": "repartition", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "euro_symbol": { "name": "euro_symbol", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "maximize": { "name": "maximize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_land": { "name": "flight_land", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "record_voice_over": { "name": "record_voice_over", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "login": { "name": "login", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_reset": { "name": "lock_reset", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "source": { "name": "source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tips_and_updates": { "name": "tips_and_updates", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_center": { "name": "help_center", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "eject": { "name": "eject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_column": { "name": "view_column", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_box": { "name": "account_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fax": { "name": "fax", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schedule": { "name": "schedule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab": { "name": "tab", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_ind": { "name": "assignment_ind", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "important_devices": { "name": "important_devices", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "face": { "name": "face", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors": { "name": "sensors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "commit": { "name": "commit", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "list": { "name": "list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_stream": { "name": "view_stream", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_left": { "name": "swipe_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_right": { "name": "swipe_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_full": { "name": "width_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_invoke": { "name": "pin_invoke", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand": { "name": "expand", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors": { "name": "invert_colors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "batch_prediction": { "name": "batch_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_aware": { "name": "noise_aware", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "eco": { "name": "eco", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_open": { "name": "lock_open", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_remove": { "name": "bookmark_remove", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_late": { "name": "assignment_late", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "upgrade": { "name": "upgrade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rowing": { "name": "rowing", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbound": { "name": "outbound", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_cell": { "name": "settings_cell", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_device_information": { "name": "perm_device_information", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_alt": { "name": "sync_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_browser": { "name": "open_in_browser", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "feedback": { "name": "feedback", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop": { "name": "shop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_shopping_cart": { "name": "add_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_tracking": { "name": "spatial_tracking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_outline": { "name": "help_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book": { "name": "book", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "launch": { "name": "launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_quilt": { "name": "view_quilt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "support": { "name": "support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_accounts": { "name": "no_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_day": { "name": "calendar_view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture_alt": { "name": "picture_in_picture_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_off": { "name": "work_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "https": { "name": "https", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility_off": { "name": "visibility_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_timeline": { "name": "view_timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_done": { "name": "remove_done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pageview": { "name": "pageview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info_outline": { "name": "info_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_access_shortcut_add": { "name": "switch_access_shortcut_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel_class": { "name": "hotel_class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hourglass_disabled": { "name": "hourglass_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_split": { "name": "horizontal_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture": { "name": "picture_in_picture", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grade": { "name": "grade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right_alt": { "name": "arrow_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "webhook": { "name": "webhook", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb": { "name": "lightbulb", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_history": { "name": "work_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb_outline": { "name": "lightbulb_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "close_fullscreen": { "name": "close_fullscreen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_translate": { "name": "g_translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_work": { "name": "group_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book_online": { "name": "book_online", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "published_with_changes": { "name": "published_with_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pets": { "name": "pets", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_pin": { "name": "offline_pin", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_toggle_off": { "name": "history_toggle_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_normal": { "name": "width_normal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "new_label": { "name": "new_label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_headline": { "name": "view_headline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "send_and_archive": { "name": "send_and_archive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_unlock": { "name": "face_unlock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flutter_dash": { "name": "flutter_dash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "speaker_notes_off": { "name": "speaker_notes_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_forever": { "name": "delete_forever", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart_checkout": { "name": "shopping_cart_checkout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "integration_instructions": { "name": "integration_instructions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "transcribe": { "name": "transcribe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "power_settings_new": { "name": "power_settings_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_empty": { "name": "hourglass_empty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "translate": { "name": "translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down": { "name": "thumb_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_off": { "name": "label_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_rate": { "name": "star_rate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "18": { "width": 18, "path": "" } } }, "view_module": { "name": "view_module", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "free_cancellation": { "name": "free_cancellation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_alt": { "name": "filter_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card_off": { "name": "credit_card_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "on_device_training": { "name": "on_device_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "date_range": { "name": "date_range", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_up": { "name": "arrow_circle_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "space_dashboard": { "name": "space_dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subtitles_off": { "name": "subtitles_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gif": { "name": "gif", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horizontal_circle": { "name": "swap_horizontal_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_hdmi": { "name": "settings_input_hdmi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_by_default": { "name": "disabled_by_default", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_page": { "name": "contact_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_large": { "name": "donut_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_list": { "name": "view_list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update": { "name": "update", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down": { "name": "swipe_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_access_shortcut": { "name": "switch_access_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "aspect_ratio": { "name": "aspect_ratio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_notes": { "name": "speaker_notes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_giftcard": { "name": "card_giftcard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_alt": { "name": "highlight_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_up": { "name": "swipe_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_back": { "name": "flip_to_back", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spellcheck": { "name": "spellcheck", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_repeat": { "name": "event_repeat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swap_vertical_circle": { "name": "swap_vertical_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "troubleshoot": { "name": "troubleshoot", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_protected_setup": { "name": "wifi_protected_setup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_cozy": { "name": "view_cozy", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "build_circle": { "name": "build_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unfold_less_double": { "name": "unfold_less_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shop_two": { "name": "shop_two", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension": { "name": "extension", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horiz": { "name": "swap_horiz", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervised_user_circle": { "name": "supervised_user_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore_off": { "name": "explore_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_down": { "name": "trending_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "segment": { "name": "segment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toc": { "name": "toc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_inner": { "name": "join_inner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_clock": { "name": "lock_clock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "analytics": { "name": "analytics", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "task_alt": { "name": "task_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_up": { "name": "text_rotate_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_bolt": { "name": "offline_bolt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "output": { "name": "output", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_inbox": { "name": "all_inbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "home": { "name": "home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_small": { "name": "density_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "abc": { "name": "abc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "install_desktop": { "name": "install_desktop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_on": { "name": "alarm_on", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete": { "name": "delete", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_agenda": { "name": "view_agenda", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autorenew": { "name": "autorenew", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angledown": { "name": "text_rotation_angledown", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_shortcut": { "name": "app_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "circle_notifications": { "name": "circle_notifications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gavel": { "name": "gavel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "minimize": { "name": "minimize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_array": { "name": "view_array", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dangerous": { "name": "dangerous", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_calendar": { "name": "edit_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "event": { "name": "event", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_accessible": { "name": "not_accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wysiwyg": { "name": "wysiwyg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grading": { "name": "grading", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "model_training": { "name": "model_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite_alt": { "name": "satellite_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cached": { "name": "cached", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore": { "name": "explore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info": { "name": "info", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fact_check": { "name": "fact_check", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_with": { "name": "open_with", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_split": { "name": "vertical_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "anchor": { "name": "anchor", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls_off": { "name": "hls_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_started": { "name": "not_started", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "favorite_border": { "name": "favorite_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "build": { "name": "build", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls": { "name": "hls", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "print": { "name": "print", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_camera_mic": { "name": "perm_camera_mic", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bug_report": { "name": "bug_report", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_added": { "name": "bookmark_added", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumbs_up_down": { "name": "thumbs_up_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more_double": { "name": "unfold_more_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "logout": { "name": "logout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_accounts": { "name": "manage_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "payment": { "name": "payment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rocket_launch": { "name": "rocket_launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_weight": { "name": "line_weight", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_over_off": { "name": "voice_over_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_off": { "name": "highlight_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_thresholding": { "name": "data_thresholding", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_front": { "name": "flip_to_front", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "today": { "name": "today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility": { "name": "visibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_as_unread": { "name": "mark_as_unread", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restore_page": { "name": "restore_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_mark": { "name": "question_mark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comment_bank": { "name": "comment_bank", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "input": { "name": "input", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_remote": { "name": "settings_remote", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_visible": { "name": "disabled_visible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delete_outline": { "name": "delete_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_vertical": { "name": "text_rotate_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_bag": { "name": "shopping_bag", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt": { "name": "receipt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_answer": { "name": "question_answer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toll": { "name": "toll", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_antenna": { "name": "settings_input_antenna", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "try": { "name": "try", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rounded_corner": { "name": "rounded_corner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "touch_app": { "name": "touch_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_drive": { "name": "add_to_drive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dashboard_customize": { "name": "dashboard_customize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done": { "name": "done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "php": { "name": "php", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_rotation_none": { "name": "text_rotation_none", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "admin_panel_settings": { "name": "admin_panel_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "backup": { "name": "backup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_outward": { "name": "arrow_outward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_control_off": { "name": "noise_control_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "query_builder": { "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_power": { "name": "settings_power", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_outline": { "name": "work_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_week": { "name": "calendar_view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_brightness": { "name": "settings_brightness", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance_wallet": { "name": "account_balance_wallet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "commute": { "name": "commute", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings": { "name": "settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "subject": { "name": "subject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "compare_arrows": { "name": "compare_arrows", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assessment": { "name": "assessment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "language": { "name": "language", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pregnant_woman": { "name": "pregnant_woman", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card": { "name": "credit_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_voice": { "name": "settings_voice", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_vert": { "name": "swap_vert", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "html": { "name": "html", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_style": { "name": "line_style", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pan_tool_alt": { "name": "pan_tool_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "description": { "name": "description", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_present": { "name": "file_present", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "stars": { "name": "stars", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment": { "name": "assignment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_enhance": { "name": "camera_enhance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up_off_alt": { "name": "thumb_up_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sticky_note_2": { "name": "sticky_note_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_history": { "name": "manage_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "announcement": { "name": "announcement", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_month": { "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_shopping_cart": { "name": "remove_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_history": { "name": "change_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "drag_indicator": { "name": "drag_indicator", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "privacy_tip": { "name": "privacy_tip", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_circle": { "name": "account_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chrome_reader_mode": { "name": "chrome_reader_mode", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_ping": { "name": "network_ping", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "perm_media": { "name": "perm_media", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "timeline": { "name": "timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search_off": { "name": "search_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_up_alt": { "name": "swipe_up_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "123": { "name": "123", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new": { "name": "open_in_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_returned": { "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_phone": { "name": "settings_phone", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance": { "name": "account_balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact_alt": { "name": "view_compact_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dns": { "name": "dns", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mediation": { "name": "mediation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_small": { "name": "donut_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "redeem": { "name": "redeem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "turned_in_not": { "name": "turned_in_not", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update_alt": { "name": "system_update_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "class": { "name": "class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_up": { "name": "trending_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_svideo": { "name": "settings_input_svideo", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervisor_account": { "name": "supervisor_account", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_person": { "name": "lock_person", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_circle_down": { "name": "arrow_circle_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_wide": { "name": "width_wide", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "desktop_mac": { "name": "desktop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_chromebook": { "name": "laptop_chromebook", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_down": { "name": "keyboard_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "mouse": { "name": "mouse", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_command_key": { "name": "keyboard_command_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_left": { "name": "keyboard_double_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_option_key": { "name": "keyboard_option_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_return": { "name": "keyboard_return", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_alt": { "name": "keyboard_alt", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "cast_for_education": { "name": "cast_for_education", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink": { "name": "phonelink", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_updated": { "name": "browser_updated", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "earbuds_battery": { "name": "earbuds_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board_off": { "name": "developer_board_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "start": { "name": "start", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "headset": { "name": "headset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset": { "name": "videogame_asset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor": { "name": "monitor", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_right": { "name": "keyboard_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "scanner": { "name": "scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch": { "name": "watch", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board": { "name": "developer_board", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_iphone": { "name": "phone_iphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_android": { "name": "tablet_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_mac": { "name": "tablet_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "router": { "name": "router", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones_battery": { "name": "headphones_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_backspace": { "name": "keyboard_backspace", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_toy": { "name": "smart_toy", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "gamepad": { "name": "gamepad", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "adf_scanner": { "name": "adf_scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "laptop_mac": { "name": "laptop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_not_supported": { "name": "browser_not_supported", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast_connected": { "name": "cast_connected", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv": { "name": "tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_windows": { "name": "laptop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_control_key": { "name": "keyboard_control_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "smart_display": { "name": "smart_display", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones": { "name": "headphones", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_android": { "name": "phone_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_up": { "name": "keyboard_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_max": { "name": "home_max", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smartphone": { "name": "smartphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_tab": { "name": "keyboard_tab", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch_off": { "name": "watch_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast": { "name": "cast", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "point_of_sale": { "name": "point_of_sale", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "computer": { "name": "computer", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "device_unknown": { "name": "device_unknown", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "memory": { "name": "memory", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_voice": { "name": "keyboard_voice", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard": { "name": "keyboard", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "earbuds": { "name": "earbuds", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "security": { "name": "security", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_hide": { "name": "keyboard_hide", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_input": { "name": "power_input", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_mini": { "name": "home_mini", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_other": { "name": "devices_other", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_mic": { "name": "headset_mic", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset_off": { "name": "videogame_asset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dock": { "name": "dock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_capslock": { "name": "keyboard_capslock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_off": { "name": "headset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_right": { "name": "keyboard_double_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_off": { "name": "phonelink_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card": { "name": "sim_card", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_left": { "name": "keyboard_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_up": { "name": "keyboard_double_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "toys": { "name": "toys", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_down": { "name": "keyboard_double_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_hub": { "name": "device_hub", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_group": { "name": "speaker_group", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_windows": { "name": "desktop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "connected_tv": { "name": "connected_tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet": { "name": "tablet", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop": { "name": "laptop", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker": { "name": "speaker", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_screen": { "name": "smart_screen", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "portable_wifi_off": { "name": "portable_wifi_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "textsms": { "name": "textsms", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_split": { "name": "call_split", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_export": { "name": "import_export", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone": { "name": "phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "3p": { "name": "3p", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "clear_all": { "name": "clear_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "dialpad": { "name": "dialpad", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat": { "name": "chat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_search": { "name": "person_search", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comments_disabled": { "name": "comments_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key": { "name": "vpn_key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "unsubscribe": { "name": "unsubscribe", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_setup": { "name": "phonelink_setup", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "live_help": { "name": "live_help", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "present_to_all": { "name": "present_to_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call": { "name": "call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "domain_disabled": { "name": "domain_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_portrait": { "name": "stay_current_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_access_disabled": { "name": "desktop_access_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_share": { "name": "screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_phone": { "name": "speaker_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_unread": { "name": "mark_email_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nat": { "name": "nat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_ring": { "name": "phonelink_ring", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_read": { "name": "mark_email_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "email": { "name": "email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "print_disabled": { "name": "print_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_chat_read": { "name": "mark_chat_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_made": { "name": "call_made", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_landscape": { "name": "stay_primary_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code": { "name": "qr_code", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_unread_chat_alt": { "name": "mark_unread_chat_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "spoke": { "name": "spoke", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chat_bubble": { "name": "chat_bubble", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "cell_tower": { "name": "cell_tower", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "document_scanner": { "name": "document_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key_off": { "name": "vpn_key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contacts": { "name": "contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "list_alt": { "name": "list_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_lock": { "name": "phonelink_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_enabled": { "name": "phone_enabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "co_present": { "name": "co_present", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_verification": { "name": "domain_verification", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied_alt": { "name": "sentiment_satisfied_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_disabled": { "name": "phone_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_ic_call": { "name": "add_ic_call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_on": { "name": "location_on", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_disabled": { "name": "person_add_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "business": { "name": "business", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_end": { "name": "call_end", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code_scanner": { "name": "qr_code_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_erase": { "name": "phonelink_erase", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed": { "name": "call_missed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_registration": { "name": "app_registration", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hub": { "name": "hub", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause_presentation": { "name": "pause_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop_screen_share": { "name": "stop_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "sip": { "name": "sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_lock": { "name": "mail_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_merge": { "name": "call_merge", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_bottom": { "name": "hourglass_bottom", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dialer_sip": { "name": "dialer_sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "comment": { "name": "comment", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_received": { "name": "call_received", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling": { "name": "wifi_calling", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forum": { "name": "forum", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "rtt": { "name": "rtt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_to_inbox": { "name": "forward_to_inbox", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_time_extension": { "name": "send_time_extension", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_presentation": { "name": "cancel_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_mail": { "name": "contact_mail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat_bubble_outline": { "name": "chat_bubble_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_phone": { "name": "contact_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_off": { "name": "location_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed_outgoing": { "name": "call_missed_outgoing", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_emergency": { "name": "contact_emergency", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "duo": { "name": "duo", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_portrait": { "name": "stay_primary_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_sim": { "name": "no_sim", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "message": { "name": "message", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "read_more": { "name": "read_more", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rss_feed": { "name": "rss_feed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_calls": { "name": "swap_calls", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_top": { "name": "hourglass_top", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "voicemail": { "name": "voicemail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_landscape": { "name": "stay_current_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_outline": { "name": "mail_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "ring_volume": { "name": "ring_volume", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors_off": { "name": "invert_colors_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cell_wifi": { "name": "cell_wifi", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_screen_share": { "name": "mobile_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_contacts": { "name": "import_contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "alternate_email": { "name": "alternate_email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "key_off": { "name": "key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_chat_unread": { "name": "mark_chat_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "key": { "name": "key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "qr_code_2": { "name": "qr_code_2", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_time": { "name": "more_time", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grass": { "name": "grass", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bento": { "name": "bento", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "backpack": { "name": "backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "other_houses": { "name": "other_houses", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iron": { "name": "iron", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "escalator_warning": { "name": "escalator_warning", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cottage": { "name": "cottage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "golf_course": { "name": "golf_course", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_touch": { "name": "do_not_touch", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cabin": { "name": "cabin", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_photography": { "name": "no_photography", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vaping_rooms": { "name": "vaping_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "room_preferences": { "name": "room_preferences", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "fitness_center": { "name": "fitness_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_drinks": { "name": "no_drinks", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathtub": { "name": "bathtub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hot_tub": { "name": "hot_tub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "night_shelter": { "name": "night_shelter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "desk": { "name": "desk", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wash": { "name": "wash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_friendly": { "name": "child_friendly", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "soap": { "name": "soap", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoke_free": { "name": "smoke_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "kitchen": { "name": "kitchen", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stroller": { "name": "stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "crib": { "name": "crib", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "umbrella": { "name": "umbrella", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "beach_access": { "name": "beach_access", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "pool": { "name": "pool", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "gite": { "name": "gite", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_extinguisher": { "name": "fire_extinguisher", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoking_rooms": { "name": "smoking_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rv_hookup": { "name": "rv_hookup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "all_inclusive": { "name": "all_inclusive", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "family_restroom": { "name": "family_restroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stairs": { "name": "stairs", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tty": { "name": "tty", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "escalator": { "name": "escalator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_meeting_room": { "name": "no_meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_step": { "name": "do_not_step", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "water_damage": { "name": "water_damage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "carpenter": { "name": "carpenter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "checkroom": { "name": "checkroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_flash": { "name": "no_flash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "meeting_room": { "name": "meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "food_bank": { "name": "food_bank", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tapas": { "name": "tapas", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "roofing": { "name": "roofing", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "storefront": { "name": "storefront", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "room_service": { "name": "room_service", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "balcony": { "name": "balcony", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "countertops": { "name": "countertops", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "foundation": { "name": "foundation", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "holiday_village": { "name": "holiday_village", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "charging_station": { "name": "charging_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "airport_shuttle": { "name": "airport_shuttle", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_food": { "name": "no_food", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "houseboat": { "name": "houseboat", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "elevator": { "name": "elevator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "ac_unit": { "name": "ac_unit", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "house_siding": { "name": "house_siding", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_care": { "name": "child_care", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "business_center": { "name": "business_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rice_bowl": { "name": "rice_bowl", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_backpack": { "name": "no_backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vape_free": { "name": "vape_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "house": { "name": "house", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "baby_changing_station": { "name": "baby_changing_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_stroller": { "name": "no_stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "microwave": { "name": "microwave", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_cell": { "name": "no_cell", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "wheelchair_pickup": { "name": "wheelchair_pickup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "casino": { "name": "casino", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bungalow": { "name": "bungalow", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chalet": { "name": "chalet", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry": { "name": "dry", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_bar": { "name": "sports_bar", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "villa": { "name": "villa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apartment": { "name": "apartment", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fence": { "name": "fence", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "corporate_fare": { "name": "corporate_fare", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "free_breakfast": { "name": "free_breakfast", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "spa": { "name": "spa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_done": { "name": "cloud_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "downloading": { "name": "downloading", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_quote": { "name": "request_quote", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_rename_outline": { "name": "drive_file_rename_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_zip": { "name": "folder_zip", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_circle": { "name": "cloud_circle", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "rule_folder": { "name": "rule_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder": { "name": "folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload_file": { "name": "upload_file", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_overline": { "name": "format_overline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_delete": { "name": "folder_delete", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drive_file_move": { "name": "drive_file_move", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_move_rtl": { "name": "drive_file_move_rtl", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_download": { "name": "cloud_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_upload": { "name": "cloud_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attachment": { "name": "attachment", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "newspaper": { "name": "newspaper", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "create_new_folder": { "name": "create_new_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud": { "name": "cloud", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_snippet": { "name": "text_snippet", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download": { "name": "file_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_copy": { "name": "folder_copy", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "difference": { "name": "difference", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_off": { "name": "cloud_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_sync": { "name": "cloud_sync", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_off": { "name": "folder_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_download_done": { "name": "file_download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_queue": { "name": "cloud_queue", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload": { "name": "upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_view": { "name": "grid_view", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_shared": { "name": "folder_shared", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download_done": { "name": "download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "topic": { "name": "topic", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_folder_upload": { "name": "drive_folder_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces": { "name": "workspaces", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "download_for_offline": { "name": "download_for_offline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_email": { "name": "attach_email", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_open": { "name": "folder_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download_off": { "name": "file_download_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "approval": { "name": "approval", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download": { "name": "download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_open": { "name": "file_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_upload": { "name": "file_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "snippet_folder": { "name": "snippet_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_full": { "name": "battery_charging_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "note_alt": { "name": "note_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_wifi": { "name": "network_wifi", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_medium": { "name": "brightness_medium", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_low": { "name": "brightness_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_usage": { "name": "data_usage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_off": { "name": "data_saver_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_20": { "name": "battery_20", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "share_location": { "name": "share_location", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_not_fixed": { "name": "gps_not_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_high": { "name": "edgesensor_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth": { "name": "bluetooth", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_3": { "name": "signal_wifi_statusbar_connected_no_internet_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "shortcut": { "name": "shortcut", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_std": { "name": "battery_std", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_1_bar": { "name": "signal_cellular_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_score": { "name": "sports_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarm": { "name": "access_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_4": { "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_0_bar": { "name": "signal_cellular_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_1_bar": { "name": "signal_cellular_connected_no_internet_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "restart_alt": { "name": "restart_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_2_bar": { "name": "wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grid_goldenratio": { "name": "grid_goldenratio", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error_rounded": { "name": "wifi_tethering_error_rounded", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "price_change": { "name": "price_change", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_30": { "name": "battery_charging_30", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_portrait": { "name": "screen_lock_portrait", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_4_bar": { "name": "signal_cellular_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_2": { "name": "wifi_calling_2", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_active": { "name": "airplanemode_active", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "price_check": { "name": "price_check", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt": { "name": "signal_cellular_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor_weight": { "name": "monitor_weight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "tungsten": { "name": "tungsten", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto": { "name": "hdr_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dvr": { "name": "dvr", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_90": { "name": "battery_90", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_fold": { "name": "devices_fold", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_night": { "name": "mode_night", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cameraswitch": { "name": "cameraswitch", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_2": { "name": "signal_wifi_connected_no_internet_2", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_2_bar": { "name": "battery_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_alt_1_bar": { "name": "signal_cellular_alt_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "punch_clock": { "name": "punch_clock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "e_mobiledata": { "name": "e_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storage": { "name": "storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "pin": { "name": "pin", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar_lock": { "name": "signal_wifi_4_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_standby": { "name": "mode_standby", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_80": { "name": "battery_charging_80", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_cell": { "name": "network_cell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps": { "name": "60fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_3x3": { "name": "grid_3x3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication_liquid": { "name": "medication_liquid", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_thermostat": { "name": "device_thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation": { "name": "screen_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_rotation": { "name": "screen_lock_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_searching": { "name": "location_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_off": { "name": "flashlight_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_mobiledata": { "name": "g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_4_bar": { "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_connected_no_internet_0": { "name": "signal_wifi_connected_no_internet_0", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "pattern": { "name": "pattern", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_searching": { "name": "bluetooth_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot_monitor": { "name": "screenshot_monitor", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quiz": { "name": "quiz", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "air": { "name": "air", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "phishing": { "name": "phishing", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "summarize": { "name": "summarize", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "password": { "name": "password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_4": { "name": "signal_wifi_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nfc": { "name": "nfc", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_1_bar": { "name": "battery_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reviews": { "name": "reviews", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_1": { "name": "signal_wifi_statusbar_connected_no_internet_1", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_good": { "name": "gpp_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_low": { "name": "edgesensor_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "macro_off": { "name": "macro_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hdr_off_select": { "name": "hdr_off_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot": { "name": "screenshot", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_suggest": { "name": "settings_suggest", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_error": { "name": "nearby_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "light_mode": { "name": "light_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_2_bar": { "name": "network_wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_alarm": { "name": "add_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sell": { "name": "sell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_score": { "name": "credit_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_plus_mobiledata": { "name": "lte_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_80": { "name": "battery_80", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_50": { "name": "battery_50", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_off": { "name": "gps_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_fixed": { "name": "gps_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_landscape": { "name": "screen_lock_landscape", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_mobiledata": { "name": "h_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering": { "name": "wifi_tethering", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_friendly": { "name": "mobile_friendly", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_off": { "name": "mobile_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarms": { "name": "access_alarms", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "3g_mobiledata": { "name": "3g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto_select": { "name": "hdr_auto_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_3_bar_lock": { "name": "signal_wifi_3_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_4_bar": { "name": "signal_wifi_statusbar_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_system_daydream": { "name": "settings_system_daydream", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_bad": { "name": "gpp_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_off": { "name": "media_bluetooth_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_disabled": { "name": "bluetooth_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_4_bar": { "name": "battery_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_3_bar": { "name": "network_wifi_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_1_bar": { "name": "network_wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ad_units": { "name": "ad_units", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps": { "name": "30fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "task": { "name": "task", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_warning": { "name": "security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication": { "name": "medication", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat": { "name": "thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dark_mode": { "name": "dark_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_1_bar": { "name": "wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fluorescent": { "name": "fluorescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_60": { "name": "battery_charging_60", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10_select": { "name": "timer_10_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_null": { "name": "signal_cellular_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_3_bar": { "name": "signal_cellular_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_saver": { "name": "battery_saver", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on_select": { "name": "hdr_on_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_bad": { "name": "signal_wifi_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bloodtype": { "name": "bloodtype", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_on": { "name": "data_saver_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_good": { "name": "security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_off": { "name": "signal_cellular_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_1": { "name": "wifi_calling_1", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_mode": { "name": "developer_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices": { "name": "devices", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update": { "name": "security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flourescent": { "name": "flourescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_inactive": { "name": "airplanemode_inactive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "4g_plus_mobiledata": { "name": "4g_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "rsvp": { "name": "rsvp", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_mobiledata": { "name": "lte_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cable": { "name": "cable", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wallpaper": { "name": "wallpaper", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_high": { "name": "brightness_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "remember_me": { "name": "remember_me", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_2_bar": { "name": "signal_cellular_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "splitscreen": { "name": "splitscreen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_lesson": { "name": "play_lesson", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_2_bar": { "name": "signal_wifi_statusbar_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_3": { "name": "wifi_calling_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb_off": { "name": "usb_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_0_bar": { "name": "signal_wifi_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_50": { "name": "battery_charging_50", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lan": { "name": "lan", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "monitor_heart": { "name": "monitor_heart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "do_not_disturb_on_total_silence": { "name": "do_not_disturb_on_total_silence", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_alert": { "name": "battery_alert", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_1": { "name": "signal_wifi_connected_no_internet_1", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_2_bar_lock": { "name": "signal_wifi_2_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "1x_mobiledata": { "name": "1x_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "aod": { "name": "aod", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_0_bar": { "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_disabled": { "name": "location_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_on": { "name": "flashlight_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_on": { "name": "media_bluetooth_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_storage": { "name": "sd_storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_30": { "name": "battery_30", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_6_bar": { "name": "battery_6_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_full": { "name": "battery_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_90": { "name": "battery_charging_90", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_nodata": { "name": "signal_cellular_nodata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_password": { "name": "wifi_password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "access_time_filled": { "name": "access_time_filled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_maybe": { "name": "gpp_maybe", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_2_bar": { "name": "signal_wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "ssid_chart": { "name": "ssid_chart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "widgets": { "name": "widgets", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_off": { "name": "nearby_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_3_bar": { "name": "signal_wifi_statusbar_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_3": { "name": "signal_wifi_connected_no_internet_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error": { "name": "wifi_tethering_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_channel": { "name": "wifi_channel", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reset_tv": { "name": "reset_tv", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_20": { "name": "battery_charging_20", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_time": { "name": "access_time", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight": { "name": "nightlight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt_2_bar": { "name": "signal_cellular_alt_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_1_bar": { "name": "signal_wifi_statusbar_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_0_bar": { "name": "battery_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_not_connected": { "name": "signal_wifi_statusbar_not_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_lock": { "name": "wifi_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_null": { "name": "signal_wifi_statusbar_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_off": { "name": "wifi_tethering_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb": { "name": "usb", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3_select": { "name": "timer_3_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_3_bar": { "name": "signal_cellular_connected_no_internet_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "water": { "name": "water", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_download": { "name": "sim_card_download", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_no_sim": { "name": "signal_cellular_no_sim", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_bad": { "name": "fmd_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update_warning": { "name": "system_security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dataset": { "name": "dataset", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_5_bar": { "name": "battery_5_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dataset_linked": { "name": "dataset_linked", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_to_mobile": { "name": "send_to_mobile", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobiledata_off": { "name": "mobiledata_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_unknown": { "name": "battery_unknown", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storm": { "name": "storm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_2_bar": { "name": "signal_cellular_connected_no_internet_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_plus_mobiledata": { "name": "h_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update": { "name": "system_security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens_blur": { "name": "lens_blur", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_connected": { "name": "bluetooth_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_drive": { "name": "bluetooth_drive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_auto": { "name": "brightness_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_good": { "name": "fmd_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_60": { "name": "battery_60", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "4g_mobiledata": { "name": "4g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_find": { "name": "wifi_find", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_3_bar": { "name": "battery_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplane_ticket": { "name": "airplane_ticket", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_1_bar": { "name": "signal_wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_3_bar": { "name": "signal_wifi_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar": { "name": "signal_wifi_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_home_screen": { "name": "add_to_home_screen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_search_desktop": { "name": "screen_search_desktop", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "discount": { "name": "discount", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "system_security_update_good": { "name": "system_security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_4x4": { "name": "grid_4x4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "r_mobiledata": { "name": "r_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_2": { "name": "signal_wifi_statusbar_connected_no_internet_2", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet": { "name": "signal_wifi_statusbar_connected_no_internet", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "graphic_eq": { "name": "graphic_eq", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "radar": { "name": "radar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_1_bar_lock": { "name": "signal_wifi_1_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_off": { "name": "signal_wifi_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_delete": { "name": "auto_delete", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "error_outline": { "name": "error_outline", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "notification_important": { "name": "notification_important", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_alert": { "name": "add_alert", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning": { "name": "warning", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "error": { "name": "error", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning_amber": { "name": "warning_amber", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "broadcast_on_home": { "name": "broadcast_on_home", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wind_power": { "name": "wind_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heat_pump": { "name": "heat_pump", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains_closed": { "name": "curtains_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane_tank": { "name": "propane_tank", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades_closed": { "name": "vertical_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades": { "name": "vertical_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield_moon": { "name": "shield_moon", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "broadcast_on_personal": { "name": "broadcast_on_personal", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nest_cam_wired_stand": { "name": "nest_cam_wired_stand", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_window": { "name": "sensor_window", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds": { "name": "blinds", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gas_meter": { "name": "gas_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "solar_power": { "name": "solar_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains": { "name": "curtains", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_occupied": { "name": "sensor_occupied", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades_closed": { "name": "roller_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "oil_barrel": { "name": "oil_barrel", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "energy_savings_leaf": { "name": "energy_savings_leaf", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_bolt": { "name": "electric_bolt", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane": { "name": "propane", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_meter": { "name": "electric_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds_closed": { "name": "blinds_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades": { "name": "roller_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_fan_off": { "name": "mode_fan_off", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_mode": { "name": "auto_mode", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_door": { "name": "sensor_door", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hiking": { "name": "hiking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "single_bed": { "name": "single_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_outline": { "name": "person_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "man": { "name": "man", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "male": { "name": "male", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "psychology_alt": { "name": "psychology_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tsunami": { "name": "tsunami", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pages": { "name": "pages", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "roller_skating": { "name": "roller_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano": { "name": "piano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scale": { "name": "scale", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "masks": { "name": "masks", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_symbols": { "name": "emoji_symbols", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_outline": { "name": "people_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "back_hand": { "name": "back_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatshot": { "name": "whatshot", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "diversity_3": { "name": "diversity_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hive": { "name": "hive", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_esports": { "name": "sports_esports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "precision_manufacturing": { "name": "precision_manufacturing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "real_estate_agent": { "name": "real_estate_agent", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cruelty_free": { "name": "cruelty_free", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_flags": { "name": "emoji_flags", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "follow_the_signs": { "name": "follow_the_signs", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly_woman": { "name": "elderly_woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_divider": { "name": "safety_divider", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt": { "name": "person_add_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_alt": { "name": "people_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "kitesurfing": { "name": "kitesurfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "waving_hand": { "name": "waving_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "woman": { "name": "woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scuba_diving": { "name": "scuba_diving", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person": { "name": "person", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "fireplace": { "name": "fireplace", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "deck": { "name": "deck", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "boy": { "name": "boy", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_account": { "name": "switch_account", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "woman_2": { "name": "woman_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_3": { "name": "man_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notification_add": { "name": "notification_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "luggage": { "name": "luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_golf": { "name": "sports_golf", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied": { "name": "sentiment_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "transgender": { "name": "transgender", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heart_broken": { "name": "heart_broken", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "landslide": { "name": "landslide", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_active": { "name": "notifications_active", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "skateboarding": { "name": "skateboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "handshake": { "name": "handshake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain": { "name": "domain", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_martial_arts": { "name": "sports_martial_arts", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_2": { "name": "person_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "co2": { "name": "co2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_hockey": { "name": "sports_hockey", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tornado": { "name": "tornado", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fitbit": { "name": "fitbit", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_rugby": { "name": "sports_rugby", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "female": { "name": "female", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_basketball": { "name": "sports_basketball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove": { "name": "person_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "military_tech": { "name": "military_tech", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recycling": { "name": "recycling", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "king_bed": { "name": "king_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group": { "name": "group", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly": { "name": "elderly", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_2": { "name": "face_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assist_walker": { "name": "assist_walker", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_reaction": { "name": "add_reaction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "travel_explore": { "name": "travel_explore", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_off": { "name": "notifications_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_gymnastics": { "name": "sports_gymnastics", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "6_ft_apart": { "name": "6_ft_apart", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "plus_one": { "name": "plus_one", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_remove": { "name": "group_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "construction": { "name": "construction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood_bad": { "name": "mood_bad", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ice_skating": { "name": "ice_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_5": { "name": "face_5", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wallet": { "name": "wallet", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "paragliding": { "name": "paragliding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_adult_content": { "name": "no_adult_content", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flood": { "name": "flood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people": { "name": "people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_6": { "name": "face_6", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "party_mode": { "name": "party_mode", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspace_premium": { "name": "workspace_premium", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_moderator": { "name": "add_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_events": { "name": "emoji_events", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pix": { "name": "pix", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowshoeing": { "name": "snowshoeing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outdoor_grill": { "name": "outdoor_grill", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_4": { "name": "man_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_moderator": { "name": "remove_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "reduce_capacity": { "name": "reduce_capacity", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nordic_walking": { "name": "nordic_walking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "interests": { "name": "interests", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_add": { "name": "group_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sanitizer": { "name": "sanitizer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_dissatisfied": { "name": "sentiment_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "cyclone": { "name": "cyclone", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "health_and_safety": { "name": "health_and_safety", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nights_stay": { "name": "nights_stay", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowboarding": { "name": "snowboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatsapp": { "name": "whatsapp", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_food_beverage": { "name": "emoji_food_beverage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_3": { "name": "person_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano_off": { "name": "piano_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_luggage": { "name": "no_luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_edu": { "name": "history_edu", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_mma": { "name": "sports_mma", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "social_distance": { "name": "social_distance", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_tennis": { "name": "sports_tennis", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_kabaddi": { "name": "sports_kabaddi", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_off": { "name": "group_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volcano": { "name": "volcano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sick": { "name": "sick", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "engineering": { "name": "engineering", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_emotions": { "name": "emoji_emotions", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_3": { "name": "face_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports": { "name": "sports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "downhill_skiing": { "name": "downhill_skiing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood": { "name": "mood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "thunderstorm": { "name": "thunderstorm", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cake": { "name": "cake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_satisfied": { "name": "sentiment_very_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_nature": { "name": "emoji_nature", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_paused": { "name": "notifications_paused", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_motorsports": { "name": "sports_motorsports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_soccer": { "name": "sports_soccer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "water_drop": { "name": "water_drop", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "architecture": { "name": "architecture", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_off": { "name": "person_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups_3": { "name": "groups_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_down_alt": { "name": "thumb_down_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sign_language": { "name": "sign_language", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "self_improvement": { "name": "self_improvement", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_2": { "name": "diversity_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_4": { "name": "face_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_1": { "name": "diversity_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "public": { "name": "public", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "blind": { "name": "blind", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "facebook": { "name": "facebook", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_dissatisfied": { "name": "sentiment_very_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_neutral": { "name": "sentiment_neutral", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "psychology": { "name": "psychology", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "catching_pokemon": { "name": "catching_pokemon", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_none": { "name": "notifications_none", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_volleyball": { "name": "sports_volleyball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sledding": { "name": "sledding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vaccines": { "name": "vaccines", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "poll": { "name": "poll", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "kayaking": { "name": "kayaking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "front_hand": { "name": "front_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_add": { "name": "person_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "notifications": { "name": "notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_notifications": { "name": "edit_notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clean_hands": { "name": "clean_hands", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "groups_2": { "name": "groups_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_city": { "name": "location_city", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ios_share": { "name": "ios_share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_cricket": { "name": "sports_cricket", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "girl": { "name": "girl", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_objects": { "name": "emoji_objects", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_4": { "name": "person_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scoreboard": { "name": "scoreboard", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_add": { "name": "domain_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_up_alt": { "name": "thumb_up_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "coronavirus": { "name": "coronavirus", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt_1": { "name": "person_add_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove_alt_1": { "name": "person_remove_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "share": { "name": "share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "surfing": { "name": "surfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "connect_without_contact": { "name": "connect_without_contact", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "public_off": { "name": "public_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_people": { "name": "emoji_people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups": { "name": "groups", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "severe_cold": { "name": "severe_cold", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_2": { "name": "man_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recommend": { "name": "recommend", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_transportation": { "name": "emoji_transportation", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_baseball": { "name": "sports_baseball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "school": { "name": "school", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_handball": { "name": "sports_handball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "18_up_rating": { "name": "18_up_rating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "personal_injury": { "name": "personal_injury", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compost": { "name": "compost", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_america": { "name": "south_america", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "science": { "name": "science", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cookie": { "name": "cookie", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_football": { "name": "sports_football", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_strikethrough": { "name": "format_strikethrough", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "horizontal_distribute": { "name": "horizontal_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "space_bar": { "name": "space_bar", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_left": { "name": "format_align_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_bottom": { "name": "vertical_align_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "height": { "name": "height", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_right": { "name": "align_horizontal_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_quote": { "name": "format_quote", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "show_chart": { "name": "show_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "numbers": { "name": "numbers", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_bold": { "name": "format_bold", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_distribute": { "name": "vertical_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_size": { "name": "format_size", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_chart": { "name": "insert_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_list_numbered_rtl": { "name": "format_list_numbered_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_bottom": { "name": "border_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_emoticon": { "name": "insert_emoticon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "hexagon": { "name": "hexagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "type_specimen": { "name": "type_specimen", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_justify": { "name": "format_align_justify", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "padding": { "name": "padding", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_bottom": { "name": "align_vertical_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_top": { "name": "vertical_align_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_outer": { "name": "border_outer", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off": { "name": "money_off", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge_type": { "name": "merge_type", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_chart": { "name": "table_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pentagon": { "name": "pentagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schema": { "name": "schema", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_edit_outline": { "name": "mode_edit_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_center": { "name": "align_horizontal_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_top": { "name": "border_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_comment": { "name": "mode_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_style": { "name": "border_style", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "polyline": { "name": "polyline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "highlight": { "name": "highlight", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "short_text": { "name": "short_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_clear": { "name": "format_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_decrease": { "name": "text_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "post_add": { "name": "post_add", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_numbered": { "name": "format_list_numbered", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_line_spacing": { "name": "format_line_spacing", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_fields": { "name": "text_fields", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "title": { "name": "title", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "square": { "name": "square", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bubble_chart": { "name": "bubble_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_left": { "name": "border_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist": { "name": "checklist", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_color": { "name": "border_color", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist_rtl": { "name": "checklist_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_array": { "name": "data_array", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_page_break": { "name": "insert_page_break", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_comment": { "name": "add_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "scatter_plot": { "name": "scatter_plot", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_down": { "name": "move_down", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrap_text": { "name": "wrap_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_money": { "name": "attach_money", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_up": { "name": "move_up", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_shapes": { "name": "format_shapes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart": { "name": "pie_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "publish": { "name": "publish", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_italic": { "name": "format_italic", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_reset": { "name": "format_color_reset", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_horizontal_left": { "name": "align_horizontal_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_drive_file": { "name": "insert_drive_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_all": { "name": "border_all", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "strikethrough_s": { "name": "strikethrough_s", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_center": { "name": "format_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_underlined": { "name": "format_underlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_edit": { "name": "mode_edit", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "multiline_chart": { "name": "multiline_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "line_axis": { "name": "line_axis", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drag_handle": { "name": "drag_handle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "superscript": { "name": "superscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_comment": { "name": "insert_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "bar_chart": { "name": "bar_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_photo": { "name": "insert_photo", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_clear": { "name": "border_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_r_to_l": { "name": "format_textdirection_r_to_l", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_horizontal": { "name": "border_horizontal", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_line_chart": { "name": "stacked_line_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_invitation": { "name": "insert_invitation", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "rectangle": { "name": "rectangle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subscript": { "name": "subscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_rule": { "name": "horizontal_rule", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_increase": { "name": "text_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_align_center": { "name": "vertical_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "margin": { "name": "margin", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_link": { "name": "insert_link", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_graph": { "name": "auto_graph", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_chart_outlined": { "name": "insert_chart_outlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart_outline": { "name": "pie_chart_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off_csred": { "name": "money_off_csred", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_note": { "name": "edit_note", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_vertical_top": { "name": "align_vertical_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode": { "name": "mode", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_fill": { "name": "format_color_fill", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_bulleted": { "name": "format_list_bulleted", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "linear_scale": { "name": "linear_scale", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_vertical": { "name": "border_vertical", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "functions": { "name": "functions", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "notes": { "name": "notes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_rows": { "name": "table_rows", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "area_chart": { "name": "area_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_inner": { "name": "border_inner", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_l_to_r": { "name": "format_textdirection_l_to_r", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_chart": { "name": "add_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_right": { "name": "border_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_center": { "name": "align_vertical_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "candlestick_chart": { "name": "candlestick_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_paint": { "name": "format_paint", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "monetization_on": { "name": "monetization_on", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_increase": { "name": "format_indent_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_text": { "name": "format_color_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "attach_file": { "name": "attach_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "score": { "name": "score", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_decrease": { "name": "format_indent_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_object": { "name": "data_object", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_right": { "name": "format_align_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "query_stats": { "name": "query_stats", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shape_line": { "name": "shape_line", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "draw": { "name": "draw", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report": { "name": "report", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "calculate": { "name": "calculate", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mail": { "name": "mail", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add": { "name": "add", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_to_inbox": { "name": "move_to_inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste": { "name": "content_paste", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_search": { "name": "content_paste_search", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_circle_outline": { "name": "add_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_bar_chart": { "name": "stacked_bar_chart", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_link": { "name": "add_link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "create": { "name": "create", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag": { "name": "flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "ballot": { "name": "ballot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag": { "name": "tag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "reply": { "name": "reply", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_week": { "name": "next_week", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_circle": { "name": "change_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_vote": { "name": "how_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_sweep": { "name": "delete_sweep", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "archive": { "name": "archive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link_off": { "name": "link_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_gmailerrorred": { "name": "report_gmailerrorred", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "redo": { "name": "redo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_off": { "name": "report_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "insights": { "name": "insights", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save_alt": { "name": "save_alt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_off": { "name": "content_paste_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "square_foot": { "name": "square_foot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "content_cut": { "name": "content_cut", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "amp_stories": { "name": "amp_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clear": { "name": "clear", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "deselect": { "name": "deselect", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_circle_outline": { "name": "remove_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "gesture": { "name": "gesture", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "outlined_flag": { "name": "outlined_flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_stories": { "name": "web_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_reg": { "name": "how_to_reg", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list": { "name": "filter_list", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "upcoming": { "name": "upcoming", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_format": { "name": "text_format", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "push_pin": { "name": "push_pin", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_feed": { "name": "dynamic_feed", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "inbox": { "name": "inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "font_download": { "name": "font_download", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list_off": { "name": "filter_list_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "block": { "name": "block", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "biotech": { "name": "biotech", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reply_all": { "name": "reply_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory": { "name": "inventory", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag_circle": { "name": "flag_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save": { "name": "save", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_circle": { "name": "remove_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "send": { "name": "send", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "weekend": { "name": "weekend", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "attribution": { "name": "attribution", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_copy": { "name": "file_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link": { "name": "link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "drafts": { "name": "drafts", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "select_all": { "name": "select_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort": { "name": "sort", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_copy": { "name": "content_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "bolt": { "name": "bolt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_box": { "name": "add_box", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory_2": { "name": "inventory_2", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "font_download_off": { "name": "font_download_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copy_all": { "name": "copy_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield": { "name": "shield", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "low_priority": { "name": "low_priority", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "undo": { "name": "undo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "backspace": { "name": "backspace", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread": { "name": "markunread", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "waves": { "name": "waves", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "where_to_vote": { "name": "where_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "save_as": { "name": "save_as", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stream": { "name": "stream", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_go": { "name": "content_paste_go", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unarchive": { "name": "unarchive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_circle": { "name": "add_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "policy": { "name": "policy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forward": { "name": "forward", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove": { "name": "remove", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } } } sphinx-design-0.5.0/sphinx_design/compiled/octicon_LICENSE000066400000000000000000000020541446046271500234670ustar00rootroot00000000000000MIT License Copyright (c) 2021 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. sphinx-design-0.5.0/sphinx_design/compiled/octicons.json000066400000000000000000010352561446046271500234730ustar00rootroot00000000000000{ "alert": { "name": "alert", "keywords": ["warning", "triangle", "exclamation", "point"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "alert-fill": { "name": "alert-fill", "keywords": [], "heights": { "12": { "width": 12, "path": "" } } }, "archive": { "name": "archive", "keywords": ["box", "catalog"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "arrow-both": { "name": "arrow-both", "keywords": ["point", "direction", "left", "right"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "arrow-down": { "name": "arrow-down", "keywords": ["point", "direction"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "arrow-down-left": { "name": "arrow-down-left", "keywords": [], "heights": { "24": { "width": 24, "path": "" } } }, "arrow-down-right": { "name": "arrow-down-right", "keywords": [], "heights": { "24": { "width": 24, "path": "" } } }, "arrow-left": { "name": "arrow-left", "keywords": ["point", "direction"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "arrow-right": { "name": "arrow-right", "keywords": ["point", "direction"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "arrow-switch": { "name": "arrow-switch", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "arrow-up": { "name": "arrow-up", "keywords": ["point", "direction"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "arrow-up-left": { "name": "arrow-up-left", "keywords": [], "heights": { "24": { "width": 24, "path": "" } } }, "arrow-up-right": { "name": "arrow-up-right", "keywords": [], "heights": { "24": { "width": 24, "path": "" } } }, "beaker": { "name": "beaker", "keywords": [ "experiment", "labs", "experimental", "feature", "test", "science", "education", "study", "development", "testing" ], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "bell": { "name": "bell", "keywords": ["notification"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "bell-fill": { "name": "bell-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "bell-slash": { "name": "bell-slash", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "blocked": { "name": "blocked", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "bold": { "name": "bold", "keywords": ["markdown", "bold", "text"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "book": { "name": "book", "keywords": ["book", "journal", "wiki", "readme"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "bookmark": { "name": "bookmark", "keywords": ["tab", "star"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "bookmark-fill": { "name": "bookmark-fill", "keywords": [], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark-slash": { "name": "bookmark-slash", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "bookmark-slash-fill": { "name": "bookmark-slash-fill", "keywords": [], "heights": { "24": { "width": 24, "path": "" } } }, "briefcase": { "name": "briefcase", "keywords": ["suitcase", "business"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "broadcast": { "name": "broadcast", "keywords": ["rss", "radio", "signal"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "browser": { "name": "browser", "keywords": ["window", "web"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "bug": { "name": "bug", "keywords": ["insect", "issue"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "calendar": { "name": "calendar", "keywords": ["time", "day", "month", "year", "date", "appointment"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "check": { "name": "check", "keywords": ["mark", "yes", "confirm", "accept", "ok", "success"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "check-circle": { "name": "check-circle", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "check-circle-fill": { "name": "check-circle-fill", "keywords": [], "heights": { "12": { "width": 12, "path": "" }, "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "checklist": { "name": "checklist", "keywords": ["todo", "tasks"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "chevron-down": { "name": "chevron-down", "keywords": ["triangle", "arrow"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "chevron-left": { "name": "chevron-left", "keywords": ["triangle", "arrow"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "chevron-right": { "name": "chevron-right", "keywords": ["triangle", "arrow"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "chevron-up": { "name": "chevron-up", "keywords": ["triangle", "arrow"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "circle": { "name": "circle", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "circle-slash": { "name": "circle-slash", "keywords": ["no", "deny", "fail", "failure", "error", "bad"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "clock": { "name": "clock", "keywords": ["time", "hour", "minute", "second", "watch"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "code": { "name": "code", "keywords": ["brackets"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "code-review": { "name": "code-review", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "code-square": { "name": "code-square", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "codescan": { "name": "codescan", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "codescan-checkmark": { "name": "codescan-checkmark", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "codespaces": { "name": "codespaces", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "columns": { "name": "columns", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "comment": { "name": "comment", "keywords": ["speak", "bubble"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "comment-discussion": { "name": "comment-discussion", "keywords": ["converse", "talk"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "commit": { "name": "commit", "keywords": [], "heights": { "24": { "width": 24, "path": "" } } }, "container": { "name": "container", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "copy": { "name": "copy", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "cpu": { "name": "cpu", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "credit-card": { "name": "credit-card", "keywords": ["money", "billing", "payments", "transactions"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "cross-reference": { "name": "cross-reference", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "dash": { "name": "dash", "keywords": ["hyphen", "range"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "database": { "name": "database", "keywords": ["disks", "data"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "dependabot": { "name": "dependabot", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "desktop-download": { "name": "desktop-download", "keywords": ["clone", "download"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "device-camera": { "name": "device-camera", "keywords": ["photo", "picture", "image", "snapshot"], "heights": { "16": { "width": 16, "path": "" } } }, "device-camera-video": { "name": "device-camera-video", "keywords": ["watch", "view", "media", "stream"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "device-desktop": { "name": "device-desktop", "keywords": ["computer", "monitor"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "device-mobile": { "name": "device-mobile", "keywords": ["phone", "iphone", "cellphone"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "diamond": { "name": "diamond", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "diff": { "name": "diff", "keywords": ["difference", "changes", "compare"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "diff-added": { "name": "diff-added", "keywords": ["new", "addition", "plus"], "heights": { "16": { "width": 16, "path": "" } } }, "diff-ignored": { "name": "diff-ignored", "keywords": ["slash"], "heights": { "16": { "width": 16, "path": "" } } }, "diff-modified": { "name": "diff-modified", "keywords": ["dot", "changed", "updated"], "heights": { "16": { "width": 16, "path": "" } } }, "diff-removed": { "name": "diff-removed", "keywords": ["deleted", "subtracted", "dash"], "heights": { "16": { "width": 16, "path": "" } } }, "diff-renamed": { "name": "diff-renamed", "keywords": ["moved", "arrow"], "heights": { "16": { "width": 16, "path": "" } } }, "dot": { "name": "dot", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "dot-fill": { "name": "dot-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "download": { "name": "download", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "duplicate": { "name": "duplicate", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "ellipsis": { "name": "ellipsis", "keywords": ["dot", "read", "more", "hidden", "expand"], "heights": { "16": { "width": 16, "path": "" } } }, "eye": { "name": "eye", "keywords": ["look", "watch", "see"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "eye-closed": { "name": "eye-closed", "keywords": ["hidden", "invisible", "concealed", ""], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "file": { "name": "file", "keywords": ["file", "text", "words"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "file-badge": { "name": "file-badge", "keywords": [], "heights": { "16": { "width": 16, "path": "" } } }, "file-binary": { "name": "file-binary", "keywords": ["image", "video", "word", "powerpoint", "excel"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "file-code": { "name": "file-code", "keywords": [ "text", "javascript", "html", "css", "php", "ruby", "coffeescript", "sass", "scss" ], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "file-diff": { "name": "file-diff", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "file-directory": { "name": "file-directory", "keywords": ["folder"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "file-directory-fill": { "name": "file-directory-fill", "keywords": [], "heights": { "24": { "width": 24, "path": "" } } }, "file-media": { "name": "file-media", "keywords": ["image", "video", "audio"], "heights": { "24": { "width": 24, "path": "" } } }, "file-submodule": { "name": "file-submodule", "keywords": ["folder"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "file-symlink-file": { "name": "file-symlink-file", "keywords": ["link", "alias"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "file-zip": { "name": "file-zip", "keywords": ["compress", "archive"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "filter": { "name": "filter", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "flame": { "name": "flame", "keywords": ["fire", "hot", "burn", "trending"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "fold": { "name": "fold", "keywords": ["unfold", "hide", "collapse"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "fold-down": { "name": "fold-down", "keywords": ["unfold", "hide", "collapse", "down"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "fold-up": { "name": "fold-up", "keywords": ["unfold", "hide", "collapse", "up"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "gear": { "name": "gear", "keywords": ["settings"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "gift": { "name": "gift", "keywords": ["package", "present", "skill", "craft", "freebie"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "git-branch": { "name": "git-branch", "keywords": ["fork", "branch", "git", "duplicate"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "git-commit": { "name": "git-commit", "keywords": ["save"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "git-compare": { "name": "git-compare", "keywords": ["difference", "changes"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "git-merge": { "name": "git-merge", "keywords": ["join"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "git-pull-request": { "name": "git-pull-request", "keywords": ["review"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "git-pull-request-closed": { "name": "git-pull-request-closed", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "git-pull-request-draft": { "name": "git-pull-request-draft", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "globe": { "name": "globe", "keywords": ["world", "earth", "planet"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "grabber": { "name": "grabber", "keywords": ["mover", "drap", "drop", "sort"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "graph": { "name": "graph", "keywords": ["trend", "stats", "statistics"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "hash": { "name": "hash", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "heading": { "name": "heading", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "heart": { "name": "heart", "keywords": ["love", "beat"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "heart-fill": { "name": "heart-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "history": { "name": "history", "keywords": ["time", "past", "revert", "back"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "home": { "name": "home", "keywords": ["welcome", "index", "house", "building"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "home-fill": { "name": "home-fill", "keywords": [], "heights": { "24": { "width": 24, "path": "" } } }, "horizontal-rule": { "name": "horizontal-rule", "keywords": ["hr"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "hourglass": { "name": "hourglass", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "hubot": { "name": "hubot", "keywords": ["robot", "bot"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "image": { "name": "image", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "inbox": { "name": "inbox", "keywords": ["mail", "todo", "new", "messages"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "infinity": { "name": "infinity", "keywords": ["unlimited", "infinite"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "info": { "name": "info", "keywords": ["help"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "issue-closed": { "name": "issue-closed", "keywords": ["done", "complete"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "issue-draft": { "name": "issue-draft", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "issue-opened": { "name": "issue-opened", "keywords": ["new"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "issue-reopened": { "name": "issue-reopened", "keywords": ["regression"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "italic": { "name": "italic", "keywords": ["font", "italic", "style"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "iterations": { "name": "iterations", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "kebab-horizontal": { "name": "kebab-horizontal", "keywords": ["kebab", "dot", "menu", "more"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "key": { "name": "key", "keywords": ["key", "lock", "secure", "safe"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "key-asterisk": { "name": "key-asterisk", "keywords": [], "heights": { "16": { "width": 16, "path": "" } } }, "law": { "name": "law", "keywords": ["legal", "bill"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "light-bulb": { "name": "light-bulb", "keywords": ["idea"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "link": { "name": "link", "keywords": ["connect", "hyperlink"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "link-external": { "name": "link-external", "keywords": ["out", "see", "more", "go", "to"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "list-ordered": { "name": "list-ordered", "keywords": ["numbers", "tasks", "todo", "items"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "list-unordered": { "name": "list-unordered", "keywords": ["bullet", "point", "tasks", "todo", "items"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "location": { "name": "location", "keywords": ["here", "marker"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "lock": { "name": "lock", "keywords": ["secure", "safe", "protected"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "logo-gist": { "name": "logo-gist", "keywords": ["brand", "github", "logo"], "heights": { "16": { "width": 25, "path": "" } } }, "logo-github": { "name": "logo-github", "keywords": ["brand", "github", "logo"], "heights": { "16": { "width": 45, "path": "" } } }, "mail": { "name": "mail", "keywords": ["email", "unread"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "mark-github": { "name": "mark-github", "keywords": ["octocat", "brand", "github", "logo"], "heights": { "16": { "width": 16, "path": "" } } }, "markdown": { "name": "markdown", "keywords": ["markup", "style"], "heights": { "16": { "width": 16, "path": "" } } }, "megaphone": { "name": "megaphone", "keywords": ["bullhorn", "loud", "shout", "broadcast"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "mention": { "name": "mention", "keywords": ["at", "ping"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "meter": { "name": "meter", "keywords": [], "heights": { "16": { "width": 16, "path": "" } } }, "milestone": { "name": "milestone", "keywords": ["marker"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "mirror": { "name": "mirror", "keywords": ["reflect"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "moon": { "name": "moon", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "mortar-board": { "name": "mortar-board", "keywords": ["education", "learn", "teach"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "multi-select": { "name": "multi-select", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "mute": { "name": "mute", "keywords": ["quiet", "sound", "audio", "turn", "off"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "no-entry": { "name": "no-entry", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "no-entry-fill": { "name": "no-entry-fill", "keywords": [], "heights": { "12": { "width": 12, "path": "" } } }, "north-star": { "name": "north-star", "keywords": ["star", "snowflake", "asterisk"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "note": { "name": "note", "keywords": ["card", "paper", "ticket"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "number": { "name": "number", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "organization": { "name": "organization", "keywords": ["people", "group", "team"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "package": { "name": "package", "keywords": ["box", "ship"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "package-dependencies": { "name": "package-dependencies", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "package-dependents": { "name": "package-dependents", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "paintbrush": { "name": "paintbrush", "keywords": [], "heights": { "16": { "width": 16, "path": "" } } }, "paper-airplane": { "name": "paper-airplane", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "paste": { "name": "paste", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "pencil": { "name": "pencil", "keywords": ["edit", "change", "update", "write"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "people": { "name": "people", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "person": { "name": "person", "keywords": ["people", "man", "woman", "human"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "person-add": { "name": "person-add", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "person-fill": { "name": "person-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "pin": { "name": "pin", "keywords": ["save", "star", "bookmark"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "play": { "name": "play", "keywords": ["play", "start", "begin", "action"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "plug": { "name": "plug", "keywords": ["hook", "webhook"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "plus": { "name": "plus", "keywords": ["add", "new", "more"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "plus-circle": { "name": "plus-circle", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "project": { "name": "project", "keywords": ["board", "kanban", "columns", "scrum"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "pulse": { "name": "pulse", "keywords": ["graph", "trend", "line", "activity"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "question": { "name": "question", "keywords": ["help", "explain"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "quote": { "name": "quote", "keywords": ["quotation"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "reply": { "name": "reply", "keywords": ["reply all", "back"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "repo": { "name": "repo", "keywords": ["book", "journal", "repository"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "repo-clone": { "name": "repo-clone", "keywords": ["book", "journal", "repository"], "heights": { "16": { "width": 16, "path": "" } } }, "repo-forked": { "name": "repo-forked", "keywords": ["book", "journal", "copy"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "repo-pull": { "name": "repo-pull", "keywords": ["book", "journal", "get"], "heights": { "16": { "width": 16, "path": "" } } }, "repo-push": { "name": "repo-push", "keywords": ["book", "journal", "repository", "put"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "repo-template": { "name": "repo-template", "keywords": ["book", "new", "add", "template"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "report": { "name": "report", "keywords": ["report", "abuse", "flag"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "rocket": { "name": "rocket", "keywords": [ "staff", "stafftools", "blast", "off", "space", "launch", "ship" ], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "rows": { "name": "rows", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "rss": { "name": "rss", "keywords": ["broadcast", "feed", "atom"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "ruby": { "name": "ruby", "keywords": ["code", "language"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "screen-full": { "name": "screen-full", "keywords": ["fullscreen", "expand"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "screen-normal": { "name": "screen-normal", "keywords": ["fullscreen", "expand", "exit"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "search": { "name": "search", "keywords": ["magnifying", "glass"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "server": { "name": "server", "keywords": ["computers", "racks", "ops"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "share": { "name": "share", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "share-android": { "name": "share-android", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "shield": { "name": "shield", "keywords": ["security", "shield", "protection"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "shield-check": { "name": "shield-check", "keywords": ["security", "shield", "protection", "check", "success"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "shield-lock": { "name": "shield-lock", "keywords": ["protect", "shield", "lock"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "shield-x": { "name": "shield-x", "keywords": ["security", "shield", "protection", "fail"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "sidebar-collapse": { "name": "sidebar-collapse", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "sidebar-expand": { "name": "sidebar-expand", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "sign-in": { "name": "sign-in", "keywords": ["door", "arrow", "direction", "enter", "log in"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "sign-out": { "name": "sign-out", "keywords": ["door", "arrow", "direction", "leave", "log out"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "single-select": { "name": "single-select", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "skip": { "name": "skip", "keywords": ["skip", "slash"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "smiley": { "name": "smiley", "keywords": ["emoji", "smile", "mood", "emotion"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "sort-asc": { "name": "sort-asc", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "sort-desc": { "name": "sort-desc", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "square": { "name": "square", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "square-fill": { "name": "square-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "squirrel": { "name": "squirrel", "keywords": ["ship", "shipit", "launch"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "stack": { "name": "stack", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "star": { "name": "star", "keywords": ["save", "remember", "like"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "star-fill": { "name": "star-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "stop": { "name": "stop", "keywords": ["block", "spam", "report"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "stopwatch": { "name": "stopwatch", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "strikethrough": { "name": "strikethrough", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "sun": { "name": "sun", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "sync": { "name": "sync", "keywords": ["cycle", "refresh", "loop"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "tab": { "name": "tab", "keywords": [], "heights": { "24": { "width": 24, "path": "" } } }, "table": { "name": "table", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "tag": { "name": "tag", "keywords": ["release"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "tasklist": { "name": "tasklist", "keywords": ["todo"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "telescope": { "name": "telescope", "keywords": ["science", "space", "look", "view", "explore"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "telescope-fill": { "name": "telescope-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "terminal": { "name": "terminal", "keywords": ["code", "ops", "shell"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "three-bars": { "name": "three-bars", "keywords": ["hamburger", "menu", "dropdown"], "heights": { "16": { "width": 16, "path": "" } } }, "thumbsdown": { "name": "thumbsdown", "keywords": ["thumb", "thumbsdown", "rejected", "dislike"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "thumbsup": { "name": "thumbsup", "keywords": ["thumb", "thumbsup", "prop", "ship", "like"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "tools": { "name": "tools", "keywords": ["screwdriver", "wrench", "settings"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "trash": { "name": "trash", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "triangle-down": { "name": "triangle-down", "keywords": ["arrow", "point", "direction"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "triangle-left": { "name": "triangle-left", "keywords": ["arrow", "point", "direction"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "triangle-right": { "name": "triangle-right", "keywords": ["arrow", "point", "direction"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "triangle-up": { "name": "triangle-up", "keywords": ["arrow", "point", "direction"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "typography": { "name": "typography", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "unfold": { "name": "unfold", "keywords": ["expand", "open", "reveal"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "unlock": { "name": "unlock", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "unmute": { "name": "unmute", "keywords": ["loud", "volume", "audio", "sound", "play"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "unverified": { "name": "unverified", "keywords": ["insecure", "untrusted", "signed"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "upload": { "name": "upload", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "verified": { "name": "verified", "keywords": ["trusted", "secure", "trustworthy", "signed"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "versions": { "name": "versions", "keywords": ["history", "commits"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "video": { "name": "video", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "workflow": { "name": "workflow", "keywords": ["workflow", "actions"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "x": { "name": "x", "keywords": ["remove", "close", "delete"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "x-circle": { "name": "x-circle", "keywords": [], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "x-circle-fill": { "name": "x-circle-fill", "keywords": [], "heights": { "12": { "width": 12, "path": "" }, "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } }, "zap": { "name": "zap", "keywords": ["electricity", "lightning", "props", "like", "star", "save"], "heights": { "16": { "width": 16, "path": "" }, "24": { "width": 24, "path": "" } } } } sphinx-design-0.5.0/sphinx_design/compiled/sd_tabs.js000066400000000000000000000014021446046271500227150ustar00rootroot00000000000000var sd_labels_by_text = {}; function ready() { const li = document.getElementsByClassName("sd-tab-label"); for (const label of li) { syncId = label.getAttribute("data-sync-id"); if (syncId) { label.onclick = onLabelClick; if (!sd_labels_by_text[syncId]) { sd_labels_by_text[syncId] = []; } sd_labels_by_text[syncId].push(label); } } } function onLabelClick() { // Activate other inputs with the same sync id. syncId = this.getAttribute("data-sync-id"); for (label of sd_labels_by_text[syncId]) { if (label === this) continue; label.previousElementSibling.checked = true; } window.localStorage.setItem("sphinx-design-last-tab", syncId); } document.addEventListener("DOMContentLoaded", ready, false); sphinx-design-0.5.0/sphinx_design/compiled/style.min.css000066400000000000000000001364411446046271500234100ustar00rootroot00000000000000.sd-bg-primary{background-color:var(--sd-color-primary) !important}.sd-bg-text-primary{color:var(--sd-color-primary-text) !important}button.sd-bg-primary:focus,button.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}a.sd-bg-primary:focus,a.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}.sd-bg-secondary{background-color:var(--sd-color-secondary) !important}.sd-bg-text-secondary{color:var(--sd-color-secondary-text) !important}button.sd-bg-secondary:focus,button.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}a.sd-bg-secondary:focus,a.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}.sd-bg-success{background-color:var(--sd-color-success) !important}.sd-bg-text-success{color:var(--sd-color-success-text) !important}button.sd-bg-success:focus,button.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}a.sd-bg-success:focus,a.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}.sd-bg-info{background-color:var(--sd-color-info) !important}.sd-bg-text-info{color:var(--sd-color-info-text) !important}button.sd-bg-info:focus,button.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}a.sd-bg-info:focus,a.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}.sd-bg-warning{background-color:var(--sd-color-warning) !important}.sd-bg-text-warning{color:var(--sd-color-warning-text) !important}button.sd-bg-warning:focus,button.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}a.sd-bg-warning:focus,a.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}.sd-bg-danger{background-color:var(--sd-color-danger) !important}.sd-bg-text-danger{color:var(--sd-color-danger-text) !important}button.sd-bg-danger:focus,button.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}a.sd-bg-danger:focus,a.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}.sd-bg-light{background-color:var(--sd-color-light) !important}.sd-bg-text-light{color:var(--sd-color-light-text) !important}button.sd-bg-light:focus,button.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}a.sd-bg-light:focus,a.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}.sd-bg-muted{background-color:var(--sd-color-muted) !important}.sd-bg-text-muted{color:var(--sd-color-muted-text) !important}button.sd-bg-muted:focus,button.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}a.sd-bg-muted:focus,a.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}.sd-bg-dark{background-color:var(--sd-color-dark) !important}.sd-bg-text-dark{color:var(--sd-color-dark-text) !important}button.sd-bg-dark:focus,button.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}a.sd-bg-dark:focus,a.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}.sd-bg-black{background-color:var(--sd-color-black) !important}.sd-bg-text-black{color:var(--sd-color-black-text) !important}button.sd-bg-black:focus,button.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}a.sd-bg-black:focus,a.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}.sd-bg-white{background-color:var(--sd-color-white) !important}.sd-bg-text-white{color:var(--sd-color-white-text) !important}button.sd-bg-white:focus,button.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}a.sd-bg-white:focus,a.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}.sd-text-primary,.sd-text-primary>p{color:var(--sd-color-primary) !important}a.sd-text-primary:focus,a.sd-text-primary:hover{color:var(--sd-color-primary-highlight) !important}.sd-text-secondary,.sd-text-secondary>p{color:var(--sd-color-secondary) !important}a.sd-text-secondary:focus,a.sd-text-secondary:hover{color:var(--sd-color-secondary-highlight) !important}.sd-text-success,.sd-text-success>p{color:var(--sd-color-success) !important}a.sd-text-success:focus,a.sd-text-success:hover{color:var(--sd-color-success-highlight) !important}.sd-text-info,.sd-text-info>p{color:var(--sd-color-info) !important}a.sd-text-info:focus,a.sd-text-info:hover{color:var(--sd-color-info-highlight) !important}.sd-text-warning,.sd-text-warning>p{color:var(--sd-color-warning) !important}a.sd-text-warning:focus,a.sd-text-warning:hover{color:var(--sd-color-warning-highlight) !important}.sd-text-danger,.sd-text-danger>p{color:var(--sd-color-danger) !important}a.sd-text-danger:focus,a.sd-text-danger:hover{color:var(--sd-color-danger-highlight) !important}.sd-text-light,.sd-text-light>p{color:var(--sd-color-light) !important}a.sd-text-light:focus,a.sd-text-light:hover{color:var(--sd-color-light-highlight) !important}.sd-text-muted,.sd-text-muted>p{color:var(--sd-color-muted) !important}a.sd-text-muted:focus,a.sd-text-muted:hover{color:var(--sd-color-muted-highlight) !important}.sd-text-dark,.sd-text-dark>p{color:var(--sd-color-dark) !important}a.sd-text-dark:focus,a.sd-text-dark:hover{color:var(--sd-color-dark-highlight) !important}.sd-text-black,.sd-text-black>p{color:var(--sd-color-black) !important}a.sd-text-black:focus,a.sd-text-black:hover{color:var(--sd-color-black-highlight) !important}.sd-text-white,.sd-text-white>p{color:var(--sd-color-white) !important}a.sd-text-white:focus,a.sd-text-white:hover{color:var(--sd-color-white-highlight) !important}.sd-outline-primary{border-color:var(--sd-color-primary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-primary:focus,a.sd-outline-primary:hover{border-color:var(--sd-color-primary-highlight) !important}.sd-outline-secondary{border-color:var(--sd-color-secondary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-secondary:focus,a.sd-outline-secondary:hover{border-color:var(--sd-color-secondary-highlight) !important}.sd-outline-success{border-color:var(--sd-color-success) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-success:focus,a.sd-outline-success:hover{border-color:var(--sd-color-success-highlight) !important}.sd-outline-info{border-color:var(--sd-color-info) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-info:focus,a.sd-outline-info:hover{border-color:var(--sd-color-info-highlight) !important}.sd-outline-warning{border-color:var(--sd-color-warning) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-warning:focus,a.sd-outline-warning:hover{border-color:var(--sd-color-warning-highlight) !important}.sd-outline-danger{border-color:var(--sd-color-danger) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-danger:focus,a.sd-outline-danger:hover{border-color:var(--sd-color-danger-highlight) !important}.sd-outline-light{border-color:var(--sd-color-light) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-light:focus,a.sd-outline-light:hover{border-color:var(--sd-color-light-highlight) !important}.sd-outline-muted{border-color:var(--sd-color-muted) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-muted:focus,a.sd-outline-muted:hover{border-color:var(--sd-color-muted-highlight) !important}.sd-outline-dark{border-color:var(--sd-color-dark) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-dark:focus,a.sd-outline-dark:hover{border-color:var(--sd-color-dark-highlight) !important}.sd-outline-black{border-color:var(--sd-color-black) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-black:focus,a.sd-outline-black:hover{border-color:var(--sd-color-black-highlight) !important}.sd-outline-white{border-color:var(--sd-color-white) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-white:focus,a.sd-outline-white:hover{border-color:var(--sd-color-white-highlight) !important}.sd-bg-transparent{background-color:transparent !important}.sd-outline-transparent{border-color:transparent !important}.sd-text-transparent{color:transparent !important}.sd-p-0{padding:0 !important}.sd-pt-0,.sd-py-0{padding-top:0 !important}.sd-pr-0,.sd-px-0{padding-right:0 !important}.sd-pb-0,.sd-py-0{padding-bottom:0 !important}.sd-pl-0,.sd-px-0{padding-left:0 !important}.sd-p-1{padding:.25rem !important}.sd-pt-1,.sd-py-1{padding-top:.25rem !important}.sd-pr-1,.sd-px-1{padding-right:.25rem !important}.sd-pb-1,.sd-py-1{padding-bottom:.25rem !important}.sd-pl-1,.sd-px-1{padding-left:.25rem !important}.sd-p-2{padding:.5rem !important}.sd-pt-2,.sd-py-2{padding-top:.5rem !important}.sd-pr-2,.sd-px-2{padding-right:.5rem !important}.sd-pb-2,.sd-py-2{padding-bottom:.5rem !important}.sd-pl-2,.sd-px-2{padding-left:.5rem !important}.sd-p-3{padding:1rem !important}.sd-pt-3,.sd-py-3{padding-top:1rem !important}.sd-pr-3,.sd-px-3{padding-right:1rem !important}.sd-pb-3,.sd-py-3{padding-bottom:1rem !important}.sd-pl-3,.sd-px-3{padding-left:1rem !important}.sd-p-4{padding:1.5rem !important}.sd-pt-4,.sd-py-4{padding-top:1.5rem !important}.sd-pr-4,.sd-px-4{padding-right:1.5rem !important}.sd-pb-4,.sd-py-4{padding-bottom:1.5rem !important}.sd-pl-4,.sd-px-4{padding-left:1.5rem !important}.sd-p-5{padding:3rem !important}.sd-pt-5,.sd-py-5{padding-top:3rem !important}.sd-pr-5,.sd-px-5{padding-right:3rem !important}.sd-pb-5,.sd-py-5{padding-bottom:3rem !important}.sd-pl-5,.sd-px-5{padding-left:3rem !important}.sd-m-auto{margin:auto !important}.sd-mt-auto,.sd-my-auto{margin-top:auto !important}.sd-mr-auto,.sd-mx-auto{margin-right:auto !important}.sd-mb-auto,.sd-my-auto{margin-bottom:auto !important}.sd-ml-auto,.sd-mx-auto{margin-left:auto !important}.sd-m-0{margin:0 !important}.sd-mt-0,.sd-my-0{margin-top:0 !important}.sd-mr-0,.sd-mx-0{margin-right:0 !important}.sd-mb-0,.sd-my-0{margin-bottom:0 !important}.sd-ml-0,.sd-mx-0{margin-left:0 !important}.sd-m-1{margin:.25rem !important}.sd-mt-1,.sd-my-1{margin-top:.25rem !important}.sd-mr-1,.sd-mx-1{margin-right:.25rem !important}.sd-mb-1,.sd-my-1{margin-bottom:.25rem !important}.sd-ml-1,.sd-mx-1{margin-left:.25rem !important}.sd-m-2{margin:.5rem !important}.sd-mt-2,.sd-my-2{margin-top:.5rem !important}.sd-mr-2,.sd-mx-2{margin-right:.5rem !important}.sd-mb-2,.sd-my-2{margin-bottom:.5rem !important}.sd-ml-2,.sd-mx-2{margin-left:.5rem !important}.sd-m-3{margin:1rem !important}.sd-mt-3,.sd-my-3{margin-top:1rem !important}.sd-mr-3,.sd-mx-3{margin-right:1rem !important}.sd-mb-3,.sd-my-3{margin-bottom:1rem !important}.sd-ml-3,.sd-mx-3{margin-left:1rem !important}.sd-m-4{margin:1.5rem !important}.sd-mt-4,.sd-my-4{margin-top:1.5rem !important}.sd-mr-4,.sd-mx-4{margin-right:1.5rem !important}.sd-mb-4,.sd-my-4{margin-bottom:1.5rem !important}.sd-ml-4,.sd-mx-4{margin-left:1.5rem !important}.sd-m-5{margin:3rem !important}.sd-mt-5,.sd-my-5{margin-top:3rem !important}.sd-mr-5,.sd-mx-5{margin-right:3rem !important}.sd-mb-5,.sd-my-5{margin-bottom:3rem !important}.sd-ml-5,.sd-mx-5{margin-left:3rem !important}.sd-w-25{width:25% !important}.sd-w-50{width:50% !important}.sd-w-75{width:75% !important}.sd-w-100{width:100% !important}.sd-w-auto{width:auto !important}.sd-h-25{height:25% !important}.sd-h-50{height:50% !important}.sd-h-75{height:75% !important}.sd-h-100{height:100% !important}.sd-h-auto{height:auto !important}.sd-d-none{display:none !important}.sd-d-inline{display:inline !important}.sd-d-inline-block{display:inline-block !important}.sd-d-block{display:block !important}.sd-d-grid{display:grid !important}.sd-d-flex-row{display:-ms-flexbox !important;display:flex !important;flex-direction:row !important}.sd-d-flex-column{display:-ms-flexbox !important;display:flex !important;flex-direction:column !important}.sd-d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media(min-width: 576px){.sd-d-sm-none{display:none !important}.sd-d-sm-inline{display:inline !important}.sd-d-sm-inline-block{display:inline-block !important}.sd-d-sm-block{display:block !important}.sd-d-sm-grid{display:grid !important}.sd-d-sm-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 768px){.sd-d-md-none{display:none !important}.sd-d-md-inline{display:inline !important}.sd-d-md-inline-block{display:inline-block !important}.sd-d-md-block{display:block !important}.sd-d-md-grid{display:grid !important}.sd-d-md-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 992px){.sd-d-lg-none{display:none !important}.sd-d-lg-inline{display:inline !important}.sd-d-lg-inline-block{display:inline-block !important}.sd-d-lg-block{display:block !important}.sd-d-lg-grid{display:grid !important}.sd-d-lg-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 1200px){.sd-d-xl-none{display:none !important}.sd-d-xl-inline{display:inline !important}.sd-d-xl-inline-block{display:inline-block !important}.sd-d-xl-block{display:block !important}.sd-d-xl-grid{display:grid !important}.sd-d-xl-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.sd-align-major-start{justify-content:flex-start !important}.sd-align-major-end{justify-content:flex-end !important}.sd-align-major-center{justify-content:center !important}.sd-align-major-justify{justify-content:space-between !important}.sd-align-major-spaced{justify-content:space-evenly !important}.sd-align-minor-start{align-items:flex-start !important}.sd-align-minor-end{align-items:flex-end !important}.sd-align-minor-center{align-items:center !important}.sd-align-minor-stretch{align-items:stretch !important}.sd-text-justify{text-align:justify !important}.sd-text-left{text-align:left !important}.sd-text-right{text-align:right !important}.sd-text-center{text-align:center !important}.sd-font-weight-light{font-weight:300 !important}.sd-font-weight-lighter{font-weight:lighter !important}.sd-font-weight-normal{font-weight:400 !important}.sd-font-weight-bold{font-weight:700 !important}.sd-font-weight-bolder{font-weight:bolder !important}.sd-font-italic{font-style:italic !important}.sd-text-decoration-none{text-decoration:none !important}.sd-text-lowercase{text-transform:lowercase !important}.sd-text-uppercase{text-transform:uppercase !important}.sd-text-capitalize{text-transform:capitalize !important}.sd-text-wrap{white-space:normal !important}.sd-text-nowrap{white-space:nowrap !important}.sd-text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sd-fs-1,.sd-fs-1>p{font-size:calc(1.375rem + 1.5vw) !important;line-height:unset !important}.sd-fs-2,.sd-fs-2>p{font-size:calc(1.325rem + 0.9vw) !important;line-height:unset !important}.sd-fs-3,.sd-fs-3>p{font-size:calc(1.3rem + 0.6vw) !important;line-height:unset !important}.sd-fs-4,.sd-fs-4>p{font-size:calc(1.275rem + 0.3vw) !important;line-height:unset !important}.sd-fs-5,.sd-fs-5>p{font-size:1.25rem !important;line-height:unset !important}.sd-fs-6,.sd-fs-6>p{font-size:1rem !important;line-height:unset !important}.sd-border-0{border:0 solid !important}.sd-border-top-0{border-top:0 solid !important}.sd-border-bottom-0{border-bottom:0 solid !important}.sd-border-right-0{border-right:0 solid !important}.sd-border-left-0{border-left:0 solid !important}.sd-border-1{border:1px solid !important}.sd-border-top-1{border-top:1px solid !important}.sd-border-bottom-1{border-bottom:1px solid !important}.sd-border-right-1{border-right:1px solid !important}.sd-border-left-1{border-left:1px solid !important}.sd-border-2{border:2px solid !important}.sd-border-top-2{border-top:2px solid !important}.sd-border-bottom-2{border-bottom:2px solid !important}.sd-border-right-2{border-right:2px solid !important}.sd-border-left-2{border-left:2px solid !important}.sd-border-3{border:3px solid !important}.sd-border-top-3{border-top:3px solid !important}.sd-border-bottom-3{border-bottom:3px solid !important}.sd-border-right-3{border-right:3px solid !important}.sd-border-left-3{border-left:3px solid !important}.sd-border-4{border:4px solid !important}.sd-border-top-4{border-top:4px solid !important}.sd-border-bottom-4{border-bottom:4px solid !important}.sd-border-right-4{border-right:4px solid !important}.sd-border-left-4{border-left:4px solid !important}.sd-border-5{border:5px solid !important}.sd-border-top-5{border-top:5px solid !important}.sd-border-bottom-5{border-bottom:5px solid !important}.sd-border-right-5{border-right:5px solid !important}.sd-border-left-5{border-left:5px solid !important}.sd-rounded-0{border-radius:0 !important}.sd-rounded-1{border-radius:.2rem !important}.sd-rounded-2{border-radius:.3rem !important}.sd-rounded-3{border-radius:.5rem !important}.sd-rounded-pill{border-radius:50rem !important}.sd-rounded-circle{border-radius:50% !important}.shadow-none{box-shadow:none !important}.sd-shadow-sm{box-shadow:0 .125rem .25rem var(--sd-color-shadow) !important}.sd-shadow-md{box-shadow:0 .5rem 1rem var(--sd-color-shadow) !important}.sd-shadow-lg{box-shadow:0 1rem 3rem var(--sd-color-shadow) !important}@keyframes sd-slide-from-left{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}@keyframes sd-slide-from-right{0%{transform:translateX(200%)}100%{transform:translateX(0)}}@keyframes sd-grow100{0%{transform:scale(0);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50{0%{transform:scale(0.5);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50-rot20{0%{transform:scale(0.5) rotateZ(-20deg);opacity:.5}75%{transform:scale(1) rotateZ(5deg);opacity:1}95%{transform:scale(1) rotateZ(-1deg);opacity:1}100%{transform:scale(1) rotateZ(0);opacity:1}}.sd-animate-slide-from-left{animation:1s ease-out 0s 1 normal none running sd-slide-from-left}.sd-animate-slide-from-right{animation:1s ease-out 0s 1 normal none running sd-slide-from-right}.sd-animate-grow100{animation:1s ease-out 0s 1 normal none running sd-grow100}.sd-animate-grow50{animation:1s ease-out 0s 1 normal none running sd-grow50}.sd-animate-grow50-rot20{animation:1s ease-out 0s 1 normal none running sd-grow50-rot20}.sd-badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.sd-badge:empty{display:none}a.sd-badge{text-decoration:none}.sd-btn .sd-badge{position:relative;top:-1px}.sd-btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;cursor:pointer;display:inline-block;font-weight:400;font-size:1rem;line-height:1.5;padding:.375rem .75rem;text-align:center;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:middle;user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none}.sd-btn:hover{text-decoration:none}@media(prefers-reduced-motion: reduce){.sd-btn{transition:none}}.sd-btn-primary,.sd-btn-outline-primary:hover,.sd-btn-outline-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-primary:hover,.sd-btn-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary-highlight) !important;border-color:var(--sd-color-primary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-primary{color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary,.sd-btn-outline-secondary:hover,.sd-btn-outline-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary:hover,.sd-btn-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary-highlight) !important;border-color:var(--sd-color-secondary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-secondary{color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success,.sd-btn-outline-success:hover,.sd-btn-outline-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success:hover,.sd-btn-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success-highlight) !important;border-color:var(--sd-color-success-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-success{color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info,.sd-btn-outline-info:hover,.sd-btn-outline-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info:hover,.sd-btn-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info-highlight) !important;border-color:var(--sd-color-info-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-info{color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning,.sd-btn-outline-warning:hover,.sd-btn-outline-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning:hover,.sd-btn-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning-highlight) !important;border-color:var(--sd-color-warning-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-warning{color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger,.sd-btn-outline-danger:hover,.sd-btn-outline-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger:hover,.sd-btn-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger-highlight) !important;border-color:var(--sd-color-danger-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-danger{color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light,.sd-btn-outline-light:hover,.sd-btn-outline-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light:hover,.sd-btn-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light-highlight) !important;border-color:var(--sd-color-light-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-light{color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted,.sd-btn-outline-muted:hover,.sd-btn-outline-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted:hover,.sd-btn-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted-highlight) !important;border-color:var(--sd-color-muted-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-muted{color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark,.sd-btn-outline-dark:hover,.sd-btn-outline-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark:hover,.sd-btn-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark-highlight) !important;border-color:var(--sd-color-dark-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-dark{color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black,.sd-btn-outline-black:hover,.sd-btn-outline-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black:hover,.sd-btn-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black-highlight) !important;border-color:var(--sd-color-black-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-black{color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white,.sd-btn-outline-white:hover,.sd-btn-outline-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white:hover,.sd-btn-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white-highlight) !important;border-color:var(--sd-color-white-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-white{color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.sd-hide-link-text{font-size:0}.sd-octicon,.sd-material-icon{display:inline-block;fill:currentColor;vertical-align:middle}.sd-avatar-xs{border-radius:50%;object-fit:cover;object-position:center;width:1rem;height:1rem}.sd-avatar-sm{border-radius:50%;object-fit:cover;object-position:center;width:3rem;height:3rem}.sd-avatar-md{border-radius:50%;object-fit:cover;object-position:center;width:5rem;height:5rem}.sd-avatar-lg{border-radius:50%;object-fit:cover;object-position:center;width:7rem;height:7rem}.sd-avatar-xl{border-radius:50%;object-fit:cover;object-position:center;width:10rem;height:10rem}.sd-avatar-inherit{border-radius:50%;object-fit:cover;object-position:center;width:inherit;height:inherit}.sd-avatar-initial{border-radius:50%;object-fit:cover;object-position:center;width:initial;height:initial}.sd-card{background-clip:border-box;background-color:var(--sd-color-card-background);border:1px solid var(--sd-color-card-border);border-radius:.25rem;color:var(--sd-color-card-text);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;position:relative;word-wrap:break-word}.sd-card>hr{margin-left:0;margin-right:0}.sd-card-hover:hover{border-color:var(--sd-color-card-border-hover);transform:scale(1.01)}.sd-card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem 1rem}.sd-card-title{margin-bottom:.5rem}.sd-card-subtitle{margin-top:-0.25rem;margin-bottom:0}.sd-card-text:last-child{margin-bottom:0}.sd-card-link:hover{text-decoration:none}.sd-card-link+.card-link{margin-left:1rem}.sd-card-header{padding:.5rem 1rem;margin-bottom:0;background-color:var(--sd-color-card-header);border-bottom:1px solid var(--sd-color-card-border)}.sd-card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.sd-card-footer{padding:.5rem 1rem;background-color:var(--sd-color-card-footer);border-top:1px solid var(--sd-color-card-border)}.sd-card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.sd-card-header-tabs{margin-right:-0.5rem;margin-bottom:-0.5rem;margin-left:-0.5rem;border-bottom:0}.sd-card-header-pills{margin-right:-0.5rem;margin-left:-0.5rem}.sd-card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom,.sd-card-img-top{width:100%}.sd-card-img,.sd-card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom{border-bottom-left-radius:calc(0.25rem - 1px);border-bottom-right-radius:calc(0.25rem - 1px)}.sd-cards-carousel{width:100%;display:flex;flex-wrap:nowrap;-ms-flex-direction:row;flex-direction:row;overflow-x:hidden;scroll-snap-type:x mandatory}.sd-cards-carousel.sd-show-scrollbar{overflow-x:auto}.sd-cards-carousel:hover,.sd-cards-carousel:focus{overflow-x:auto}.sd-cards-carousel>.sd-card{flex-shrink:0;scroll-snap-align:start}.sd-cards-carousel>.sd-card:not(:last-child){margin-right:3px}.sd-card-cols-1>.sd-card{width:90%}.sd-card-cols-2>.sd-card{width:45%}.sd-card-cols-3>.sd-card{width:30%}.sd-card-cols-4>.sd-card{width:22.5%}.sd-card-cols-5>.sd-card{width:18%}.sd-card-cols-6>.sd-card{width:15%}.sd-card-cols-7>.sd-card{width:12.8571428571%}.sd-card-cols-8>.sd-card{width:11.25%}.sd-card-cols-9>.sd-card{width:10%}.sd-card-cols-10>.sd-card{width:9%}.sd-card-cols-11>.sd-card{width:8.1818181818%}.sd-card-cols-12>.sd-card{width:7.5%}.sd-container,.sd-container-fluid,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container-xl{margin-left:auto;margin-right:auto;padding-left:var(--sd-gutter-x, 0.75rem);padding-right:var(--sd-gutter-x, 0.75rem);width:100%}@media(min-width: 576px){.sd-container-sm,.sd-container{max-width:540px}}@media(min-width: 768px){.sd-container-md,.sd-container-sm,.sd-container{max-width:720px}}@media(min-width: 992px){.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:960px}}@media(min-width: 1200px){.sd-container-xl,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:1140px}}.sd-row{--sd-gutter-x: 1.5rem;--sd-gutter-y: 0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:calc(var(--sd-gutter-y) * -1);margin-right:calc(var(--sd-gutter-x) * -0.5);margin-left:calc(var(--sd-gutter-x) * -0.5)}.sd-row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--sd-gutter-x) * 0.5);padding-left:calc(var(--sd-gutter-x) * 0.5);margin-top:var(--sd-gutter-y)}.sd-col{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-auto>*{flex:0 0 auto;width:auto}.sd-row-cols-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}@media(min-width: 576px){.sd-col-sm{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-sm-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-sm-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-sm-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-sm-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-sm-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-sm-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-sm-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-sm-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-sm-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-sm-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-sm-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-sm-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-sm-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 768px){.sd-col-md{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-md-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-md-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-md-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-md-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-md-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-md-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-md-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-md-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-md-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-md-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-md-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-md-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-md-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 992px){.sd-col-lg{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-lg-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-lg-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-lg-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-lg-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-lg-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-lg-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-lg-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-lg-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-lg-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-lg-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-lg-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-lg-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-lg-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 1200px){.sd-col-xl{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-xl-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-xl-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-xl-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-xl-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-xl-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-xl-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-xl-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-xl-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-xl-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-xl-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-xl-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-xl-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-xl-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}.sd-col-auto{flex:0 0 auto;-ms-flex:0 0 auto;width:auto}.sd-col-1{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}.sd-col-2{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-col-3{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-col-4{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-col-5{flex:0 0 auto;-ms-flex:0 0 auto;width:41.6666666667%}.sd-col-6{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-col-7{flex:0 0 auto;-ms-flex:0 0 auto;width:58.3333333333%}.sd-col-8{flex:0 0 auto;-ms-flex:0 0 auto;width:66.6666666667%}.sd-col-9{flex:0 0 auto;-ms-flex:0 0 auto;width:75%}.sd-col-10{flex:0 0 auto;-ms-flex:0 0 auto;width:83.3333333333%}.sd-col-11{flex:0 0 auto;-ms-flex:0 0 auto;width:91.6666666667%}.sd-col-12{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-g-0,.sd-gy-0{--sd-gutter-y: 0}.sd-g-0,.sd-gx-0{--sd-gutter-x: 0}.sd-g-1,.sd-gy-1{--sd-gutter-y: 0.25rem}.sd-g-1,.sd-gx-1{--sd-gutter-x: 0.25rem}.sd-g-2,.sd-gy-2{--sd-gutter-y: 0.5rem}.sd-g-2,.sd-gx-2{--sd-gutter-x: 0.5rem}.sd-g-3,.sd-gy-3{--sd-gutter-y: 1rem}.sd-g-3,.sd-gx-3{--sd-gutter-x: 1rem}.sd-g-4,.sd-gy-4{--sd-gutter-y: 1.5rem}.sd-g-4,.sd-gx-4{--sd-gutter-x: 1.5rem}.sd-g-5,.sd-gy-5{--sd-gutter-y: 3rem}.sd-g-5,.sd-gx-5{--sd-gutter-x: 3rem}@media(min-width: 576px){.sd-col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-sm-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-sm-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-sm-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-sm-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-sm-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-sm-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-sm-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-sm-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-sm-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-sm-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-sm-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-sm-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-sm-0,.sd-gy-sm-0{--sd-gutter-y: 0}.sd-g-sm-0,.sd-gx-sm-0{--sd-gutter-x: 0}.sd-g-sm-1,.sd-gy-sm-1{--sd-gutter-y: 0.25rem}.sd-g-sm-1,.sd-gx-sm-1{--sd-gutter-x: 0.25rem}.sd-g-sm-2,.sd-gy-sm-2{--sd-gutter-y: 0.5rem}.sd-g-sm-2,.sd-gx-sm-2{--sd-gutter-x: 0.5rem}.sd-g-sm-3,.sd-gy-sm-3{--sd-gutter-y: 1rem}.sd-g-sm-3,.sd-gx-sm-3{--sd-gutter-x: 1rem}.sd-g-sm-4,.sd-gy-sm-4{--sd-gutter-y: 1.5rem}.sd-g-sm-4,.sd-gx-sm-4{--sd-gutter-x: 1.5rem}.sd-g-sm-5,.sd-gy-sm-5{--sd-gutter-y: 3rem}.sd-g-sm-5,.sd-gx-sm-5{--sd-gutter-x: 3rem}}@media(min-width: 768px){.sd-col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-md-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-md-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-md-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-md-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-md-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-md-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-md-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-md-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-md-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-md-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-md-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-md-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-md-0,.sd-gy-md-0{--sd-gutter-y: 0}.sd-g-md-0,.sd-gx-md-0{--sd-gutter-x: 0}.sd-g-md-1,.sd-gy-md-1{--sd-gutter-y: 0.25rem}.sd-g-md-1,.sd-gx-md-1{--sd-gutter-x: 0.25rem}.sd-g-md-2,.sd-gy-md-2{--sd-gutter-y: 0.5rem}.sd-g-md-2,.sd-gx-md-2{--sd-gutter-x: 0.5rem}.sd-g-md-3,.sd-gy-md-3{--sd-gutter-y: 1rem}.sd-g-md-3,.sd-gx-md-3{--sd-gutter-x: 1rem}.sd-g-md-4,.sd-gy-md-4{--sd-gutter-y: 1.5rem}.sd-g-md-4,.sd-gx-md-4{--sd-gutter-x: 1.5rem}.sd-g-md-5,.sd-gy-md-5{--sd-gutter-y: 3rem}.sd-g-md-5,.sd-gx-md-5{--sd-gutter-x: 3rem}}@media(min-width: 992px){.sd-col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-lg-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-lg-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-lg-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-lg-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-lg-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-lg-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-lg-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-lg-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-lg-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-lg-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-lg-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-lg-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-lg-0,.sd-gy-lg-0{--sd-gutter-y: 0}.sd-g-lg-0,.sd-gx-lg-0{--sd-gutter-x: 0}.sd-g-lg-1,.sd-gy-lg-1{--sd-gutter-y: 0.25rem}.sd-g-lg-1,.sd-gx-lg-1{--sd-gutter-x: 0.25rem}.sd-g-lg-2,.sd-gy-lg-2{--sd-gutter-y: 0.5rem}.sd-g-lg-2,.sd-gx-lg-2{--sd-gutter-x: 0.5rem}.sd-g-lg-3,.sd-gy-lg-3{--sd-gutter-y: 1rem}.sd-g-lg-3,.sd-gx-lg-3{--sd-gutter-x: 1rem}.sd-g-lg-4,.sd-gy-lg-4{--sd-gutter-y: 1.5rem}.sd-g-lg-4,.sd-gx-lg-4{--sd-gutter-x: 1.5rem}.sd-g-lg-5,.sd-gy-lg-5{--sd-gutter-y: 3rem}.sd-g-lg-5,.sd-gx-lg-5{--sd-gutter-x: 3rem}}@media(min-width: 1200px){.sd-col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-xl-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-xl-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-xl-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-xl-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-xl-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-xl-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-xl-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-xl-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-xl-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-xl-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-xl-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-xl-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-xl-0,.sd-gy-xl-0{--sd-gutter-y: 0}.sd-g-xl-0,.sd-gx-xl-0{--sd-gutter-x: 0}.sd-g-xl-1,.sd-gy-xl-1{--sd-gutter-y: 0.25rem}.sd-g-xl-1,.sd-gx-xl-1{--sd-gutter-x: 0.25rem}.sd-g-xl-2,.sd-gy-xl-2{--sd-gutter-y: 0.5rem}.sd-g-xl-2,.sd-gx-xl-2{--sd-gutter-x: 0.5rem}.sd-g-xl-3,.sd-gy-xl-3{--sd-gutter-y: 1rem}.sd-g-xl-3,.sd-gx-xl-3{--sd-gutter-x: 1rem}.sd-g-xl-4,.sd-gy-xl-4{--sd-gutter-y: 1.5rem}.sd-g-xl-4,.sd-gx-xl-4{--sd-gutter-x: 1.5rem}.sd-g-xl-5,.sd-gy-xl-5{--sd-gutter-y: 3rem}.sd-g-xl-5,.sd-gx-xl-5{--sd-gutter-x: 3rem}}.sd-flex-row-reverse{flex-direction:row-reverse !important}details.sd-dropdown{position:relative}details.sd-dropdown .sd-summary-title{font-weight:700;padding-right:3em !important;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none}details.sd-dropdown:hover{cursor:pointer}details.sd-dropdown .sd-summary-content{cursor:default}details.sd-dropdown summary{list-style:none;padding:1em}details.sd-dropdown summary .sd-octicon.no-title{vertical-align:middle}details.sd-dropdown[open] summary .sd-octicon.no-title{visibility:hidden}details.sd-dropdown summary::-webkit-details-marker{display:none}details.sd-dropdown summary:focus{outline:none}details.sd-dropdown .sd-summary-icon{margin-right:.5em}details.sd-dropdown .sd-summary-icon svg{opacity:.8}details.sd-dropdown summary:hover .sd-summary-up svg,details.sd-dropdown summary:hover .sd-summary-down svg{opacity:1;transform:scale(1.1)}details.sd-dropdown .sd-summary-up svg,details.sd-dropdown .sd-summary-down svg{display:block;opacity:.6}details.sd-dropdown .sd-summary-up,details.sd-dropdown .sd-summary-down{pointer-events:none;position:absolute;right:1em;top:1em}details.sd-dropdown[open]>.sd-summary-title .sd-summary-down{visibility:hidden}details.sd-dropdown:not([open])>.sd-summary-title .sd-summary-up{visibility:hidden}details.sd-dropdown:not([open]).sd-card{border:none}details.sd-dropdown:not([open])>.sd-card-header{border:1px solid var(--sd-color-card-border);border-radius:.25rem}details.sd-dropdown.sd-fade-in[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out;animation:sd-fade-in .5s ease-in-out}details.sd-dropdown.sd-fade-in-slide-down[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out}.sd-col>.sd-dropdown{width:100%}.sd-summary-content>.sd-tab-set:first-child{margin-top:0}@keyframes sd-fade-in{0%{opacity:0}100%{opacity:1}}@keyframes sd-slide-down{0%{transform:translate(0, -10px)}100%{transform:translate(0, 0)}}.sd-tab-set{border-radius:.125rem;display:flex;flex-wrap:wrap;margin:1em 0;position:relative}.sd-tab-set>input{opacity:0;position:absolute}.sd-tab-set>input:checked+label{border-color:var(--sd-color-tabs-underline-active);color:var(--sd-color-tabs-label-active)}.sd-tab-set>input:checked+label+.sd-tab-content{display:block}.sd-tab-set>input:not(:checked)+label:hover{color:var(--sd-color-tabs-label-hover);border-color:var(--sd-color-tabs-underline-hover)}.sd-tab-set>input:focus+label{outline-style:auto}.sd-tab-set>input:not(.focus-visible)+label{outline:none;-webkit-tap-highlight-color:transparent}.sd-tab-set>label{border-bottom:.125rem solid transparent;margin-bottom:0;color:var(--sd-color-tabs-label-inactive);border-color:var(--sd-color-tabs-underline-inactive);cursor:pointer;font-size:var(--sd-fontsize-tabs-label);font-weight:700;padding:1em 1.25em .5em;transition:color 250ms;width:auto;z-index:1}html .sd-tab-set>label:hover{color:var(--sd-color-tabs-label-active)}.sd-col>.sd-tab-set{width:100%}.sd-tab-content{box-shadow:0 -0.0625rem var(--sd-color-tabs-overline),0 .0625rem var(--sd-color-tabs-underline);display:none;order:99;padding-bottom:.75rem;padding-top:.75rem;width:100%}.sd-tab-content>:first-child{margin-top:0 !important}.sd-tab-content>:last-child{margin-bottom:0 !important}.sd-tab-content>.sd-tab-set{margin:0}.sd-sphinx-override,.sd-sphinx-override *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sd-sphinx-override p{margin-top:0}:root{--sd-color-primary: #0071bc;--sd-color-secondary: #6c757d;--sd-color-success: #28a745;--sd-color-info: #17a2b8;--sd-color-warning: #f0b37e;--sd-color-danger: #dc3545;--sd-color-light: #f8f9fa;--sd-color-muted: #6c757d;--sd-color-dark: #212529;--sd-color-black: black;--sd-color-white: white;--sd-color-primary-highlight: #0060a0;--sd-color-secondary-highlight: #5c636a;--sd-color-success-highlight: #228e3b;--sd-color-info-highlight: #148a9c;--sd-color-warning-highlight: #cc986b;--sd-color-danger-highlight: #bb2d3b;--sd-color-light-highlight: #d3d4d5;--sd-color-muted-highlight: #5c636a;--sd-color-dark-highlight: #1c1f23;--sd-color-black-highlight: black;--sd-color-white-highlight: #d9d9d9;--sd-color-primary-text: #fff;--sd-color-secondary-text: #fff;--sd-color-success-text: #fff;--sd-color-info-text: #fff;--sd-color-warning-text: #212529;--sd-color-danger-text: #fff;--sd-color-light-text: #212529;--sd-color-muted-text: #fff;--sd-color-dark-text: #fff;--sd-color-black-text: #fff;--sd-color-white-text: #212529;--sd-color-shadow: rgba(0, 0, 0, 0.15);--sd-color-card-border: rgba(0, 0, 0, 0.125);--sd-color-card-border-hover: hsla(231, 99%, 66%, 1);--sd-color-card-background: transparent;--sd-color-card-text: inherit;--sd-color-card-header: transparent;--sd-color-card-footer: transparent;--sd-color-tabs-label-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-inactive: hsl(0, 0%, 66%);--sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62);--sd-color-tabs-underline-inactive: transparent;--sd-color-tabs-overline: rgb(222, 222, 222);--sd-color-tabs-underline: rgb(222, 222, 222);--sd-fontsize-tabs-label: 1rem} sphinx-design-0.5.0/sphinx_design/dropdown.py000066400000000000000000000172161446046271500213640ustar00rootroot00000000000000"""Originally Adapted from sphinxcontrib.details.directive """ from docutils import nodes from docutils.parsers.rst import directives from sphinx.application import Sphinx from sphinx.transforms.post_transforms import SphinxPostTransform from sphinx.util.docutils import SphinxDirective from sphinx_design.shared import ( SEMANTIC_COLORS, create_component, is_component, make_choice, margin_option, ) from ._compat import findall from .icons import get_octicon, list_octicons def setup_dropdown(app: Sphinx) -> None: app.add_node(dropdown_main, html=(visit_dropdown_main, depart_dropdown_main)) app.add_node(dropdown_title, html=(visit_dropdown_title, depart_dropdown_title)) app.add_directive("dropdown", DropdownDirective) app.add_post_transform(DropdownHtmlTransform) class dropdown_main(nodes.Element, nodes.General): pass class dropdown_title(nodes.TextElement, nodes.General): pass def visit_dropdown_main(self, node): if node.get("opened"): self.body.append(self.starttag(node, "details", open="open")) else: self.body.append(self.starttag(node, "details")) def depart_dropdown_main(self, node): self.body.append("") def visit_dropdown_title(self, node): self.body.append(self.starttag(node, "summary")) def depart_dropdown_title(self, node): self.body.append("") class DropdownDirective(SphinxDirective): """A directive to generate a collapsible container. Note: This directive generates a single container, for the title (optional) and content:: ...title nodes ...content nodes This allows for a default rendering in non-HTML outputs. The ``DropdownHtmlTransform`` then transforms this container into the HTML specific structure. """ optional_arguments = 1 # title of dropdown final_argument_whitespace = True has_content = True option_spec = { "open": directives.flag, # make open by default "color": make_choice(SEMANTIC_COLORS), "icon": make_choice(list_octicons()), "animate": make_choice(("fade-in", "fade-in-slide-down")), "margin": margin_option, "name": directives.unchanged, "class-container": directives.class_option, "class-title": directives.class_option, "class-body": directives.class_option, } def run(self): """Run the directive""" # default classes classes = { "container_classes": self.options.get("margin", ["sd-mb-3"]) + self.options.get("class-container", []), "title_classes": self.options.get("class-title", []), "body_classes": self.options.get("class-body", []), } # add color classes title_color = self.options.get("color") if title_color: classes["title_classes"].extend( [f"sd-bg-{title_color}", f"sd-bg-text-{title_color}"] ) # add animation classes if ( "animate" in self.options and ("sd-" + self.options["animate"]) not in classes["container_classes"] ): classes["container_classes"].append("sd-" + self.options["animate"]) container = create_component( "dropdown", opened="open" in self.options, type="dropdown", has_title=len(self.arguments) > 0, icon=self.options.get("icon"), **classes, ) self.set_source_info(container) if self.arguments: textnodes, messages = self.state.inline_text(self.arguments[0], self.lineno) title_node = nodes.rubric(self.arguments[0], "", *textnodes) container += title_node container += messages # where possible we add the target to the title node, # so that it can be used as the reference text self.add_name(title_node) else: self.add_name(container) self.state.nested_parse(self.content, self.content_offset, container) return [container] class DropdownHtmlTransform(SphinxPostTransform): """Transform dropdown containers into the HTML specific AST structures::
...title nodes
...content nodes """ default_priority = 199 formats = ("html",) def run(self): """Run the transform""" document: nodes.document = self.document for node in findall(document)(lambda node: is_component(node, "dropdown")): # TODO option to not have card css (but requires more formatting) use_card = True open_marker = create_component( "dropdown-open-marker", classes=["sd-summary-up"], children=[ nodes.raw( "", nodes.Text(get_octicon("chevron-up", height="1.5em")), format="html", ) ], ) closed_marker = create_component( "dropdown-closed-marker", classes=["sd-summary-down"], children=[ nodes.raw( "", nodes.Text(get_octicon("chevron-down", height="1.5em")), format="html", ) ], ) newnode = dropdown_main( opened=node["opened"], classes=["sd-sphinx-override", "sd-dropdown"] + (["sd-card"] if use_card else ["sd-d-flex-column"]) + node["container_classes"], ) if node["has_title"]: title_children = node[0].children if node[0].get("ids"): newnode["ids"] += node[0]["ids"] body_children = node[1:] else: title_children = [ nodes.raw( "...", nodes.Text(get_octicon("kebab-horizontal", height="1.5em")), format="html", ) ] body_children = node.children if node["icon"]: title_children.insert( 0, nodes.raw( "", nodes.Text(get_octicon(node["icon"], height="1em")), classes=["sd-summary-icon"], format="html", ), ) newnode += dropdown_title( "", "", *title_children, closed_marker, open_marker, classes=["sd-summary-title"] + (["sd-card-header"] if use_card else []) + node["title_classes"], ) body_node = create_component( "dropdown-body", classes=["sd-summary-content"] + (["sd-card-body"] if use_card else []) + node["body_classes"], children=body_children, ) if use_card: for para in findall(body_node)(nodes.paragraph): para["classes"] = ([] if "classes" in para else para["classes"]) + [ "sd-card-text" ] newnode += body_node # newnode += open_marker node.replace_self(newnode) sphinx-design-0.5.0/sphinx_design/extension.py000066400000000000000000000127561446046271500215500ustar00rootroot00000000000000import hashlib from pathlib import Path from docutils import nodes from docutils.parsers.rst import directives from sphinx.application import Sphinx from sphinx.environment import BuildEnvironment from sphinx.transforms import SphinxTransform from sphinx.util.docutils import SphinxDirective from . import compiled as static_module from ._compat import findall, read_text from .article_info import setup_article_info from .badges_buttons import setup_badges_and_buttons from .cards import setup_cards from .dropdown import setup_dropdown from .grids import setup_grids from .icons import setup_icons from .shared import PassthroughTextElement, create_component from .tabs import setup_tabs def setup_extension(app: Sphinx) -> None: """Set up the sphinx extension.""" app.connect("builder-inited", update_css_js) app.connect("env-updated", update_css_links) # we override container html visitors, to stop the default behaviour # of adding the `container` class to all nodes.container app.add_node( nodes.container, override=True, html=(visit_container, depart_container) ) app.add_node( PassthroughTextElement, html=(visit_depart_null, visit_depart_null), latex=(visit_depart_null, visit_depart_null), text=(visit_depart_null, visit_depart_null), man=(visit_depart_null, visit_depart_null), texinfo=(visit_depart_null, visit_depart_null), ) app.add_directive( "div", Div, override=True ) # override sphinx-panels implementation app.add_transform(AddFirstTitleCss) setup_badges_and_buttons(app) setup_cards(app) setup_grids(app) setup_dropdown(app) setup_icons(app) setup_tabs(app) setup_article_info(app) def update_css_js(app: Sphinx): """Copy the CSS to the build directory.""" # reset changed identifier app.env.sphinx_design_css_changed = False # setup up new static path in output dir static_path = (Path(app.outdir) / "_sphinx_design_static").absolute() static_existed = static_path.exists() static_path.mkdir(exist_ok=True) app.config.html_static_path.append(str(static_path)) # Copy JS to the build directory. js_path = static_path / "design-tabs.js" app.add_js_file(js_path.name) if not js_path.exists(): content = read_text(static_module, "sd_tabs.js") js_path.write_text(content) # Read the css content and hash it content = read_text(static_module, "style.min.css") hash = hashlib.md5(content.encode("utf8")).hexdigest() # Write the css file css_path = static_path / f"design-style.{hash}.min.css" app.add_css_file(css_path.name) if css_path.exists(): return if static_existed: app.env.sphinx_design_css_changed = True for path in static_path.glob("*.css"): path.unlink() css_path.write_text(content, encoding="utf8") def update_css_links(app: Sphinx, env: BuildEnvironment): """If CSS has changed, all files must be re-written, to include the correct stylesheets.""" if env.sphinx_design_css_changed: return list(env.all_docs.keys()) def visit_container(self, node: nodes.Node): classes = "docutils container" attrs = {} if node.get("is_div", False): # we don't want the CSS for container for these nodes classes = "docutils" if "style" in node: attrs["style"] = node["style"] self.body.append(self.starttag(node, "div", CLASS=classes, **attrs)) def depart_container(self, node: nodes.Node): self.body.append("
\n") def visit_depart_null(self, node: nodes.Element) -> None: """visit/depart passthrough""" class Div(SphinxDirective): """Same as the ``container`` directive, but does not add the ``container`` class in HTML outputs, which can interfere with Bootstrap CSS. """ optional_arguments = 1 # css classes final_argument_whitespace = True option_spec = {"style": directives.unchanged, "name": directives.unchanged} has_content = True def run(self): try: if self.arguments: classes = directives.class_option(self.arguments[0]) else: classes = [] except ValueError: raise self.error( 'Invalid class attribute value for "%s" directive: "%s".' % (self.name, self.arguments[0]) ) node = create_component("div", rawtext="\n".join(self.content), classes=classes) if "style" in self.options: node["style"] = self.options["style"] self.set_source_info(node) self.add_name(node) if self.content: self.state.nested_parse(self.content, self.content_offset, node) return [node] class AddFirstTitleCss(SphinxTransform): """Add a CSS class to to the first sections title.""" default_priority = 699 # priority main def apply(self): hide = False for docinfo in findall(self.document)(nodes.docinfo): for name in findall(docinfo)(nodes.field_name): if name.astext() == "sd_hide_title": hide = True break break if not hide: return for section in findall(self.document)(nodes.section): if isinstance(section.children[0], nodes.title): if "classes" in section.children[0]: section.children[0]["classes"].append("sd-d-none") else: section.children[0]["classes"] = ["sd-d-none"] break sphinx-design-0.5.0/sphinx_design/grids.py000066400000000000000000000231571446046271500206410ustar00rootroot00000000000000from typing import List, Optional from docutils import nodes from docutils.parsers.rst import directives from sphinx.application import Sphinx from sphinx.util.docutils import SphinxDirective from sphinx.util.logging import getLogger from .cards import CardDirective from .shared import ( WARNING_TYPE, create_component, is_component, make_choice, margin_option, padding_option, text_align, ) LOGGER = getLogger(__name__) DIRECTIVE_NAME_GRID = "grid" DIRECTIVE_NAME_GRID_ITEM = "grid-item" DIRECTIVE_NAME_GRID_ITEM_CARD = "grid-item-card" def setup_grids(app: Sphinx): """Setup the grid components.""" app.add_directive(DIRECTIVE_NAME_GRID, GridDirective) app.add_directive(DIRECTIVE_NAME_GRID_ITEM, GridItemDirective) app.add_directive(DIRECTIVE_NAME_GRID_ITEM_CARD, GridItemCardDirective) def _media_option( argument: Optional[str], prefix: str, *, allow_auto: bool = False, min_num: int = 1, max_num: int = 12, ) -> List[str]: """Validate the number of columns (out of 12). One or four integers (for "xs sm md lg") between 1 and 12. """ validate_error_msg = ( "argument must be 1 or 4 (xs sm md lg) values, and each value should be " f"{'either auto or ' if allow_auto else ''}an integer from {min_num} to {max_num}" ) if argument is None: raise ValueError(validate_error_msg) values = argument.strip().split() if len(values) == 1: values = [values[0], values[0], values[0], values[0]] if len(values) != 4: raise ValueError(validate_error_msg) for value in values: if allow_auto and value == "auto": continue try: int_value = int(value) except Exception: raise ValueError(validate_error_msg) if not (min_num <= int_value <= max_num): raise ValueError(validate_error_msg) return [f"{prefix}{values[0]}"] + [ f"{prefix}{size}-{value}" for size, value in zip(["xs", "sm", "md", "lg"], values) ] def row_columns_option(argument: Optional[str]) -> List[str]: """Validate the number of columns (out of 12) a grid row will have. One or four integers (for "xs sm md lg") between 1 and 12 (or 'auto'). """ return _media_option(argument, "sd-row-cols-", allow_auto=True) def item_columns_option(argument: Optional[str]) -> List[str]: """Validate the number of columns (out of 12) a grid-item will take up. One or four integers (for "xs sm md lg") between 1 and 12 (or 'auto'). """ return _media_option(argument, "sd-col-", allow_auto=True) def gutter_option(argument: Optional[str]) -> List[str]: """Validate the gutter size between grid items. One or four integers (for "xs sm md lg") between 0 and 5. """ return _media_option(argument, "sd-g-", min_num=0, max_num=5) class GridDirective(SphinxDirective): """A grid component, which is a container for grid items (i.e. columns).""" has_content = True required_arguments = 0 optional_arguments = 1 # columns final_argument_whitespace = True option_spec = { "gutter": gutter_option, "margin": margin_option, "padding": padding_option, "outline": directives.flag, "reverse": directives.flag, "class-container": directives.class_option, "class-row": directives.class_option, } def run(self) -> List[nodes.Node]: """Run the directive.""" try: column_classes = ( row_columns_option(self.arguments[0]) if self.arguments else [] ) except ValueError as exc: raise self.error(f"Invalid directive argument: {exc}") self.assert_has_content() # container-fluid is 100% width for all breakpoints, # rather than the fixed width of the breakpoint (like container) grid_classes = ["sd-container-fluid", "sd-sphinx-override"] container = create_component( "grid-container", grid_classes + self.options.get("margin", ["sd-mb-4"]) + self.options.get("padding", []) + (["sd-border-1"] if "outline" in self.options else []) + self.options.get("class-container", []), ) self.set_source_info(container) row = create_component( "grid-row", ["sd-row"] + column_classes + self.options.get("gutter", []) + (["sd-flex-row-reverse"] if "reverse" in self.options else []) + self.options.get("class-row", []), ) self.set_source_info(row) container += row self.state.nested_parse(self.content, self.content_offset, row) # each item in a row should be a column for item in row.children: if not is_component(item, "grid-item"): LOGGER.warning( f"All children of a 'grid-row' " f"should be 'grid-item' [{WARNING_TYPE}.grid]", location=item, type=WARNING_TYPE, subtype="grid", ) break return [container] class GridItemDirective(SphinxDirective): """An item within a grid row. Can "occupy" 1 to 12 columns. """ has_content = True option_spec = { "columns": item_columns_option, "margin": margin_option, "padding": padding_option, "child-direction": make_choice(["column", "row"]), "child-align": make_choice(["start", "end", "center", "justify", "spaced"]), "outline": directives.flag, "class": directives.class_option, } def run(self) -> List[nodes.Node]: """Run the directive.""" if not is_component(self.state_machine.node, "grid-row"): LOGGER.warning( f"The parent of a 'grid-item' should be a 'grid-row' [{WARNING_TYPE}.grid]", location=(self.env.docname, self.lineno), type=WARNING_TYPE, subtype="grid", ) column = create_component( "grid-item", [ "sd-col", f"sd-d-flex-{self.options.get('child-direction', 'column')}", ] + self.options.get("columns", []) + self.options.get("margin", []) + self.options.get("padding", []) + ( [f'sd-align-major-{self.options["child-align"]}'] if "child-align" in self.options else [] ) + (["sd-border-1"] if "outline" in self.options else []) + self.options.get("class", []), ) self.set_source_info(column) self.state.nested_parse(self.content, self.content_offset, column) return [column] class GridItemCardDirective(SphinxDirective): """An item within a grid row, with an internal card.""" has_content = True required_arguments = 0 optional_arguments = 1 # card title final_argument_whitespace = True option_spec = { "columns": item_columns_option, "margin": margin_option, "padding": padding_option, "class-item": directives.class_option, # The options below must be sync'ed with CardDirective.option_spec (minus margin). "width": make_choice(["auto", "25%", "50%", "75%", "100%"]), "text-align": text_align, "img-background": directives.uri, "img-top": directives.uri, "img-bottom": directives.uri, "img-alt": directives.unchanged, "link": directives.uri, "link-type": make_choice(["url", "any", "ref", "doc"]), "link-alt": directives.unchanged, "shadow": make_choice(["none", "sm", "md", "lg"]), "class-card": directives.class_option, "class-body": directives.class_option, "class-title": directives.class_option, "class-header": directives.class_option, "class-footer": directives.class_option, "class-img-top": directives.class_option, "class-img-bottom": directives.class_option, } def run(self) -> List[nodes.Node]: """Run the directive.""" if not is_component(self.state_machine.node, "grid-row"): LOGGER.warning( f"The parent of a 'grid-item' should be a 'grid-row' [{WARNING_TYPE}.grid]", location=(self.env.docname, self.lineno), type=WARNING_TYPE, subtype="grid", ) column = create_component( "grid-item", [ "sd-col", "sd-d-flex-row", ] + self.options.get("columns", []) + self.options.get("margin", []) + self.options.get("padding", []) + self.options.get("class-item", []), ) card_options = { key: value for key, value in self.options.items() if key in [ "width", "text-align", "img-background", "img-top", "img-bottom", "img-alt", "link", "link-type", "link-alt", "shadow", "class-card", "class-body", "class-title", "class-header", "class-footer", "class-img-top", "class-img-bottom", ] } if "width" not in card_options: card_options["width"] = "100%" card_options["margin"] = [] card = CardDirective.create_card(self, self.arguments, card_options) column += card return [column] sphinx-design-0.5.0/sphinx_design/icons.py000066400000000000000000000245741446046271500206500ustar00rootroot00000000000000from functools import lru_cache import json import re from typing import Any, Dict, List, Optional, Sequence, Tuple from docutils import nodes from docutils.parsers.rst import directives from sphinx.application import Sphinx from sphinx.util import logging from sphinx.util.docutils import SphinxDirective, SphinxRole from . import compiled from ._compat import read_text from .shared import WARNING_TYPE logger = logging.getLogger(__name__) OCTICON_VERSION = "v16.1.1" OCTICON_CSS = """\ .octicon { display: inline-block; vertical-align: text-top; fill: currentColor; }""" def setup_icons(app: Sphinx) -> None: app.add_role("octicon", OcticonRole()) app.add_directive("_all-octicon", AllOcticons) for style in ["fa", "fas", "fab", "far"]: # note: fa is deprecated in v5, fas is the default and fab is the other free option app.add_role(style, FontawesomeRole(style)) for style in ["regular", "outlined", "round", "sharp", "twotone"]: app.add_role("material-" + style, MaterialRole(style)) app.add_config_value("sd_fontawesome_latex", False, "env") app.connect("config-inited", add_fontawesome_pkg) app.add_node( fontawesome, html=(visit_fontawesome_html, depart_fontawesome_html), latex=(visit_fontawesome_latex, None), man=(visit_fontawesome_warning, None), text=(visit_fontawesome_warning, None), texinfo=(visit_fontawesome_warning, None), ) @lru_cache(1) def get_octicon_data() -> Dict[str, Any]: """Load all octicon data.""" content = read_text(compiled, "octicons.json") return json.loads(content) def list_octicons() -> List[str]: """List available octicon names.""" return list(get_octicon_data().keys()) HEIGHT_REGEX = re.compile(r"^(?P\d+(\.\d+)?)(?Ppx|em|rem)$") def get_octicon( name: str, height: str = "1em", classes: Sequence[str] = (), aria_label: Optional[str] = None, ) -> str: """Return the HTML for an GitHub octicon SVG icon. :height: the height of the octicon, with suffix unit 'px', 'em' or 'rem'. """ try: data = get_octicon_data()[name] except KeyError: raise KeyError(f"Unrecognised octicon: {name}") match = HEIGHT_REGEX.match(height) if not match: raise ValueError( f"Invalid height: '{height}', must be format " ) height_value = round(float(match.group("value")), 3) height_unit = match.group("unit") original_height = 16 if "16" not in data["heights"]: original_height = int(list(data["heights"].keys())[0]) elif "24" in data["heights"]: if height_unit == "px": if height_value >= 24: original_height = 24 elif height_value >= 1.5: original_height = 24 original_width = data["heights"][str(original_height)]["width"] width_value = round(original_width * height_value / original_height, 3) content = data["heights"][str(original_height)]["path"] options = { "version": "1.1", "width": f"{width_value}{height_unit}", "height": f"{height_value}{height_unit}", "class": " ".join(("sd-octicon", f"sd-octicon-{name}", *classes)), } options["viewBox"] = f"0 0 {original_width} {original_height}" if aria_label is not None: options["aria-label"] = aria_label options["role"] = "img" else: options["aria-hidden"] = "true" opt_string = " ".join(f'{k}="{v}"' for k, v in options.items()) return f"{content}" class OcticonRole(SphinxRole): """Role to display a GitHub octicon SVG. Additional classes can be added to the element after a semicolon. """ def run(self) -> Tuple[List[nodes.Node], List[nodes.system_message]]: """Run the role.""" values = self.text.split(";") if ";" in self.text else [self.text] icon = values[0] height = "1em" if len(values) < 2 else values[1] classes = "" if len(values) < 3 else values[2] icon = icon.strip() try: svg = get_octicon(icon, height=height, classes=classes.split()) except Exception as exc: msg = self.inliner.reporter.error( f"Invalid octicon content: {exc}", line=self.lineno, ) prb = self.inliner.problematic(self.rawtext, self.rawtext, msg) return [prb], [msg] node = nodes.raw("", nodes.Text(svg), format="html") self.set_source_info(node) return [node], [] class AllOcticons(SphinxDirective): """Directive to generate all octicon icons. Primarily for self documentation. """ option_spec = { "class": directives.class_option, } def run(self) -> List[nodes.Node]: """Run the directive.""" classes = self.options.get("class", []) list_node = nodes.bullet_list() for icon in list_octicons(): item_node = nodes.list_item() item_node.extend( ( nodes.literal(icon, icon), nodes.Text(": "), nodes.raw( "", nodes.Text(get_octicon(icon, classes=classes)), format="html", ), ) ) list_node += item_node return [list_node] class fontawesome(nodes.Element, nodes.General): """Node for rendering fontawesome icon.""" class FontawesomeRole(SphinxRole): """Role to display a Fontawesome icon. Additional classes can be added to the element after a semicolon. """ def __init__(self, style: str) -> None: super().__init__() self.style = style def run(self) -> Tuple[List[nodes.Node], List[nodes.system_message]]: """Run the role.""" icon, classes = self.text.split(";", 1) if ";" in self.text else [self.text, ""] icon = icon.strip() node = fontawesome( icon=icon, classes=[self.style, f"fa-{icon}"] + classes.split() ) self.set_source_info(node) return [node], [] def visit_fontawesome_html(self, node): self.body.append(self.starttag(node, "span", "")) def depart_fontawesome_html(self, node): self.body.append("") def add_fontawesome_pkg(app, config): if app.config.sd_fontawesome_latex: app.add_latex_package("fontawesome") def visit_fontawesome_latex(self, node): """Add latex fonteawesome icon, if configured, else warn.""" if self.config.sd_fontawesome_latex: self.body.append(f"\\faicon{{{node['icon']}}}") else: logger.warning( "Fontawesome icons not included in LaTeX output, " f"consider 'sd_fontawesome_latex=True' [{WARNING_TYPE}.fa-build]", location=node, type=WARNING_TYPE, subtype="fa-build", ) raise nodes.SkipNode def visit_fontawesome_warning(self, node: nodes.Element) -> None: """Warn that fontawesome is not supported for this builder.""" logger.warning( "Fontawesome icons not supported for builder: " f"{self.builder.name} [{WARNING_TYPE}.fa-build]", location=node, type=WARNING_TYPE, subtype="fa-build", ) raise nodes.SkipNode @lru_cache(1) def get_material_icon_data(style: str) -> Dict[str, Any]: """Load all octicon data.""" content = read_text(compiled, f"material_{style}.json") return json.loads(content) def get_material_icon( style: str, name: str, height: str = "1em", classes: Sequence[str] = (), aria_label: Optional[str] = None, ) -> str: """Return the HTML for an Google material icon SVG icon. :height: the height of the material icon, with suffix unit 'px', 'em' or 'rem'. """ try: data = get_material_icon_data(style)[name] except KeyError: raise KeyError(f"Unrecognised material-{style} icon: {name}") match = HEIGHT_REGEX.match(height) if not match: raise ValueError( f"Invalid height: '{height}', must be format " ) height_value = round(float(match.group("value")), 3) height_unit = match.group("unit") original_height = 20 if "20" not in data["heights"]: original_height = int(list(data["heights"].keys())[0]) elif "24" in data["heights"]: if height_unit == "px": if height_value >= 24: original_height = 24 elif height_value >= 1.5: original_height = 24 original_width = data["heights"][str(original_height)]["width"] width_value = round(original_width * height_value / original_height, 3) content = data["heights"][str(original_height)]["path"] options = { "version": "4.0.0.63c5cb3", "width": f"{width_value}{height_unit}", "height": f"{height_value}{height_unit}", "class": " ".join(("sd-material-icon", f"sd-material-icon-{name}", *classes)), } options["viewBox"] = f"0 0 {original_width} {original_height}" if aria_label is not None: options["aria-label"] = aria_label options["role"] = "img" else: options["aria-hidden"] = "true" opt_string = " ".join(f'{k}="{v}"' for k, v in options.items()) return f"{content}" class MaterialRole(SphinxRole): """Role to display a Material-* icon. Additional classes can be added to the element after a semicolon. """ def __init__(self, style: str) -> None: super().__init__() self.style = style def run(self) -> Tuple[List[nodes.Node], List[nodes.system_message]]: """Run the role.""" values = self.text.split(";") if ";" in self.text else [self.text] icon = values[0] height = "1em" if len(values) < 2 else values[1] classes = "" if len(values) < 3 else values[2] icon = icon.strip() try: svg = get_material_icon( self.style, icon, height=height, classes=classes.split() ) except Exception as exc: msg = self.inliner.reporter.error( f"Invalid material-{self.style} icon content: {type(exc)} {exc}", line=self.lineno, ) prb = self.inliner.problematic(self.rawtext, self.rawtext, msg) return [prb], [msg] node = nodes.raw("", nodes.Text(svg), format="html") self.set_source_info(node) return [node], [] sphinx-design-0.5.0/sphinx_design/py.typed000066400000000000000000000000321446046271500206410ustar00rootroot00000000000000# Marker file for PEP 561 sphinx-design-0.5.0/sphinx_design/shared.py000066400000000000000000000060551446046271500207750ustar00rootroot00000000000000"""Shared constants and functions.""" from typing import List, Optional, Sequence from docutils import nodes from docutils.parsers.rst import directives WARNING_TYPE = "design" SEMANTIC_COLORS = ( "primary", "secondary", "success", "info", "warning", "danger", "light", "muted", "dark", "white", "black", ) def create_component( name: str, classes: Sequence[str] = (), *, rawtext: str = "", children: Sequence[nodes.Node] = (), **attributes, ) -> nodes.container: """Create a container node for a design component.""" node = nodes.container( rawtext, is_div=True, design_component=name, classes=list(classes), **attributes ) node.extend(children) return node def is_component(node: nodes.Node, name: str): """Check if a node is a certain design component.""" try: return node.get("design_component") == name except AttributeError: return False def make_choice(choices: Sequence[str]): """Create a choice validator.""" return lambda argument: directives.choice(argument, choices) def _margin_or_padding_option( argument: Optional[str], class_prefix: str, allowed: Sequence[str], ) -> List[str]: """Validate the margin/padding is one (all) or four (top bottom left right) integers, between 0 and 5 or 'auto'. """ if argument is None: raise ValueError("argument required but none supplied") values = argument.split() for value in values: if value not in allowed: raise ValueError(f"{value} is not in: {allowed}") if len(values) == 1: return [f"{class_prefix}-{values[0]}"] if len(values) == 4: return [ f"{class_prefix}{side}-{value}" for side, value in zip(["t", "b", "l", "r"], values) ] raise ValueError( "argument must be one (all) or four (top bottom left right) integers" ) def margin_option(argument: Optional[str]) -> List[str]: """Validate the margin is one (all) or four (top bottom left right) integers, between 0 and 5 or 'auto'. """ return _margin_or_padding_option( argument, "sd-m", ("auto", "0", "1", "2", "3", "4", "5") ) def padding_option(argument: Optional[str]) -> List[str]: """Validate the padding is one (all) or four (top bottom left right) integers, between 0 and 5. """ return _margin_or_padding_option(argument, "sd-p", ("0", "1", "2", "3", "4", "5")) def text_align(argument: Optional[str]) -> List[str]: """Validate the text align is left, right, center or justify.""" value = directives.choice(argument, ["left", "right", "center", "justify"]) return [f"sd-text-{value}"] class PassthroughTextElement(nodes.TextElement): """A text element which will not render anything. This is required for reference node to render correctly outside of paragraphs. Since sphinx expects them to be within a ``TextElement``: https://github.com/sphinx-doc/sphinx/blob/068f802df90ea790f89319094e407c4d5f6c26ff/sphinx/writers/html5.py#L224 """ sphinx-design-0.5.0/sphinx_design/tabs.py000066400000000000000000000227211446046271500204560ustar00rootroot00000000000000from typing import List from docutils import nodes from docutils.parsers.rst import directives from sphinx.application import Sphinx from sphinx.transforms.post_transforms import SphinxPostTransform from sphinx.util.docutils import SphinxDirective from sphinx.util.logging import getLogger from ._compat import findall from .shared import WARNING_TYPE, create_component, is_component LOGGER = getLogger(__name__) def setup_tabs(app: Sphinx) -> None: app.add_directive("tab-set", TabSetDirective) app.add_directive("tab-item", TabItemDirective) app.add_directive("tab-set-code", TabSetCodeDirective) app.add_post_transform(TabSetHtmlTransform) app.add_node(sd_tab_input, html=(visit_tab_input, depart_tab_input)) app.add_node(sd_tab_label, html=(visit_tab_label, depart_tab_label)) class TabSetDirective(SphinxDirective): """A container for a set of tab items.""" has_content = True option_spec = { "class": directives.class_option, } def run(self) -> List[nodes.Node]: """Run the directive.""" self.assert_has_content() tab_set = create_component( "tab-set", classes=["sd-tab-set"] + self.options.get("class", []) ) self.set_source_info(tab_set) self.state.nested_parse(self.content, self.content_offset, tab_set) for item in tab_set.children: if not is_component(item, "tab-item"): LOGGER.warning( f"All children of a 'tab-set' " f"should be 'tab-item' [{WARNING_TYPE}.tab]", location=item, type=WARNING_TYPE, subtype="tab", ) break return [tab_set] class TabItemDirective(SphinxDirective): """A single tab item in a tab set. Note: This directive generates a single container, for the label and content:: ...title nodes ...content nodes This allows for a default rendering in non-HTML outputs. The ``TabHtmlTransform`` then transforms this container into the HTML specific structure. """ required_arguments = 1 # the tab label is the first argument final_argument_whitespace = True has_content = True option_spec = { "selected": directives.flag, "sync": directives.unchanged_required, "name": directives.unchanged, "class-container": directives.class_option, "class-label": directives.class_option, "class-content": directives.class_option, } def run(self) -> List[nodes.Node]: """Run the directive.""" self.assert_has_content() if not is_component(self.state_machine.node, "tab-set"): LOGGER.warning( f"The parent of a 'tab-item' should be a 'tab-set' [{WARNING_TYPE}.tab]", location=(self.env.docname, self.lineno), type=WARNING_TYPE, subtype="tab", ) tab_item = create_component( "tab-item", classes=["sd-tab-item"] + self.options.get("class-container", []), selected=("selected" in self.options), ) # add tab label textnodes, _ = self.state.inline_text(self.arguments[0], self.lineno) tab_label = nodes.rubric( self.arguments[0], *textnodes, classes=["sd-tab-label"] + self.options.get("class-label", []), ) if "sync" in self.options: tab_label["sync_id"] = self.options["sync"] self.add_name(tab_label) tab_item += tab_label # add tab content tab_content = create_component( "tab-content", classes=["sd-tab-content"] + self.options.get("class-content", []), ) self.state.nested_parse(self.content, self.content_offset, tab_content) tab_item += tab_content return [tab_item] class TabSetCodeDirective(SphinxDirective): """A container for a set of tab items, generated from code blocks.""" has_content = True option_spec = { "no-sync": directives.flag, "class-set": directives.class_option, "class-item": directives.class_option, } def run(self) -> List[nodes.Node]: """Run the directive.""" self.assert_has_content() tab_set = create_component( "tab-set", classes=["sd-tab-set"] + self.options.get("class-set", []) ) self.set_source_info(tab_set) self.state.nested_parse(self.content, self.content_offset, tab_set) new_children = [] for item in tab_set.children: if not isinstance(item, nodes.literal_block): LOGGER.warning( f"All children of a 'tab-code-set' " f"should be a 'literal_block' [{WARNING_TYPE}.tab_code]", location=tab_set, type=WARNING_TYPE, subtype="tab_code", ) continue language = item.get("language", "unknown") tab_label = nodes.rubric( language.upper(), nodes.Text(language.upper()), classes=["sd-tab-label"] + self.options.get("class-label", []), ) if "no-sync" not in self.options: tab_label["sync_id"] = f"tabcode-{language}" tab_content = create_component( "tab-content", children=[item], classes=["sd-tab-content"] + self.options.get("class-content", []), ) tab_item = create_component( "tab-item", children=[tab_label, tab_content], classes=["sd-tab-item"] + self.options.get("class-item", []), ) new_children.append(tab_item) tab_set.children = new_children return [tab_set] class sd_tab_input(nodes.Element, nodes.General): pass class sd_tab_label(nodes.TextElement, nodes.General): pass def visit_tab_input(self, node): attributes = {"ids": [node["id"]], "type": node["type"], "name": node["set_id"]} if node["checked"]: attributes["checked"] = "checked" self.body.append(self.starttag(node, "input", **attributes)) def depart_tab_input(self, node): self.body.append("") def visit_tab_label(self, node): attributes = {"for": node["input_id"]} if "sync_id" in node: attributes["data-sync-id"] = node["sync_id"] self.body.append(self.starttag(node, "label", **attributes)) def depart_tab_label(self, node): self.body.append("") class TabSetHtmlTransform(SphinxPostTransform): """Transform tab-set to HTML specific AST structure.""" default_priority = 200 formats = ("html",) def run(self) -> None: """Run the transform.""" # setup id generators tab_set_id_base = "sd-tab-set-" tab_set_id_num = 0 tab_item_id_base = "sd-tab-item-" tab_item_id_num = 0 for tab_set in findall(self.document)( lambda node: is_component(node, "tab-set") ): tab_set_identity = tab_set_id_base + str(tab_set_id_num) tab_set_id_num += 1 children = [] # get the first selected node selected_idx = None for idx, tab_item in enumerate(tab_set.children): if tab_item.get("selected", False): if selected_idx is None: selected_idx = idx else: LOGGER.warning( f"Multiple selected 'tab-item' directives [{WARNING_TYPE}.tab]", location=tab_item, type=WARNING_TYPE, subtype="tab", ) selected_idx = 0 if selected_idx is None else selected_idx for idx, tab_item in enumerate(tab_set.children): try: tab_label, tab_content = tab_item.children except ValueError: print(tab_item) raise tab_item_identity = tab_item_id_base + str(tab_item_id_num) tab_item_id_num += 1 # create: input_node = sd_tab_input( "", id=tab_item_identity, set_id=tab_set_identity, type="radio", checked=(idx == selected_idx), ) input_node.source, input_node.line = tab_item.source, tab_item.line children.append(input_node) # create: label_node = sd_tab_label( "", *tab_label.children, input_id=tab_item_identity, classes=tab_label["classes"], ) if tab_label.get("ids"): label_node["ids"] += tab_label["ids"] if "sync_id" in tab_label: label_node["sync_id"] = tab_label["sync_id"] label_node.source, label_node.line = tab_item.source, tab_item.line children.append(label_node) # add content children.append(tab_content) tab_set.children = children sphinx-design-0.5.0/style/000077500000000000000000000000001446046271500154455ustar00rootroot00000000000000sphinx-design-0.5.0/style/_animations.scss000066400000000000000000000026551446046271500206530ustar00rootroot00000000000000@keyframes sd-slide-from-left { 0% { transform: translateX(-100%); } 100% { transform: translateX(0); } } @keyframes sd-slide-from-right { 0% { transform: translateX(200%); } 100% { transform: translateX(0); } } @keyframes sd-grow100 { 0% { transform: scale(0); opacity: 0.5; } 100% { transform: scale(1); opacity: 1; } } @keyframes sd-grow50 { 0% { transform: scale(0.5); opacity: 0.5; } 100% { transform: scale(1); opacity: 1; } } @keyframes sd-grow50-rot20 { 0% { transform: scale(0.5) rotateZ(-20deg); opacity: 0.5; } 75% { transform: scale(1) rotateZ(5deg); opacity: 1; } 95% { transform: scale(1) rotateZ(-1deg); opacity: 1; } 100% { transform: scale(1) rotateZ(0); opacity: 1; } } // animation is shorthand for 'animation-' properties: // duration | easing-function | delay | iteration-count | direction | fill-mode | play-state | name .sd-animate-slide-from-left { animation: 1s ease-out 0s 1 normal none running sd-slide-from-left; } .sd-animate-slide-from-right { animation: 1s ease-out 0s 1 normal none running sd-slide-from-right; } .sd-animate-grow100 { animation: 1s ease-out 0s 1 normal none running sd-grow100; } .sd-animate-grow50 { animation: 1s ease-out 0s 1 normal none running sd-grow50; } .sd-animate-grow50-rot20 { animation: 1s ease-out 0s 1 normal none running sd-grow50-rot20; } sphinx-design-0.5.0/style/_badge.scss000066400000000000000000000013151446046271500175430ustar00rootroot00000000000000// Adapted from Bootstrap v5.0.2 (https://getbootstrap.com/) // Copyright 2011-2019 The Bootstrap Authors // Copyright 2011-2019 Twitter, Inc. // Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) .sd-badge { display: inline-block; padding: 0.35em 0.65em; font-size: 0.75em; font-weight: 700; line-height: 1; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem; // Empty badges collapse automatically &:empty { display: none; } } // Remove underline a.sd-badge { text-decoration: none; } // Quick fix for badges in buttons .sd-btn .sd-badge { position: relative; top: -1px; } // note badge colors were removed in v5 sphinx-design-0.5.0/style/_borders.scss000066400000000000000000000017271446046271500201500ustar00rootroot00000000000000$borders: ( 0: 0, 1: 1px, 2: 2px, 3: 3px, 4: 4px, 5: 5px, ); @each $name, $value in $borders { .sd-border-#{$name} { border: $value solid !important; } .sd-border-top-#{$name} { border-top: $value solid !important; } .sd-border-bottom-#{$name} { border-bottom: $value solid !important; } .sd-border-right-#{$name} { border-right: $value solid !important; } .sd-border-left-#{$name} { border-left: $value solid !important; } } $rounded: ( 0: 0, 1: 0.2rem, 2: 0.3rem, 3: 0.5rem, pill: 50rem, circle: 50%, ); @each $name, $value in $rounded { .sd-rounded-#{$name} { border-radius: $value !important; } } // shadows .shadow-none { box-shadow: none !important; } .sd-shadow-sm { box-shadow: 0 .125rem 0.25rem var(--sd-color-shadow) !important; } .sd-shadow-md { box-shadow: 0 .5rem 1rem var(--sd-color-shadow) !important; } .sd-shadow-lg { box-shadow: 0 1rem 3rem var(--sd-color-shadow) !important; } sphinx-design-0.5.0/style/_button.scss000066400000000000000000000045271446046271500200240ustar00rootroot00000000000000// Adapted from Bootstrap v5.0.2 (https://getbootstrap.com/) // Copyright 2011-2019 The Bootstrap Authors // Copyright 2011-2019 Twitter, Inc. // Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) .sd-btn { background-color: transparent; border: 1px solid transparent; border-radius: 0.25rem; // color: var(--sd-color-dark); cursor: pointer; display: inline-block; font-weight: 400; font-size: 1rem; line-height: 1.5; padding: 0.375rem 0.75rem; text-align: center; text-decoration: none; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; vertical-align: middle; user-select: none; -moz-user-select: none; -ms-user-select: none; -webkit-user-select: none; &:hover { text-decoration: none; } // &:focus { // box-shadow: 0 0 0 0.2rem rgba(mix($blue, $blue, 15%), .25); // outline: 0; // } // &:visited { // color: var(--sd-color-dark); // } // // override alabaster theme // &.reference { // border-bottom: inherit; // } // &.reference:hover { // border-bottom: inherit; // } } @media (prefers-reduced-motion: reduce) { .sd-btn { transition: none; } } @each $color, $value in $semantic-colors { .sd-btn-#{$color}, .sd-btn-outline-#{$color}:hover, .sd-btn-outline-#{$color}:focus { color: var(--sd-color-#{$color}-text) !important; background-color: var(--sd-color-#{$color}) !important; border-color: var(--sd-color-#{$color}) !important; border-width: 1px !important; border-style: solid !important; } .sd-btn-#{$color}:hover, .sd-btn-#{$color}:focus { color: var(--sd-color-#{$color}-text) !important; background-color: var(--sd-color-#{$color}-highlight) !important; border-color: var(--sd-color-#{$color}-highlight) !important; border-width: 1px !important; border-style: solid !important; } .sd-btn-outline-#{$color} { color: var(--sd-color-#{$color}) !important; border-color: var(--sd-color-#{$color}) !important; border-width: 1px !important; border-style: solid !important; } } // make parent clickable .sd-stretched-link::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; content: ""; } .sd-hide-link-text { font-size: 0; } sphinx-design-0.5.0/style/_cards.scss000066400000000000000000000062171446046271500176030ustar00rootroot00000000000000// Adapted from Bootstrap v5.0.2 (https://getbootstrap.com/) // Copyright 2011-2019 The Bootstrap Authors // Copyright 2011-2019 Twitter, Inc. // Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) @use 'sass:math'; .sd-card { background-clip: border-box; background-color: var(--sd-color-card-background); border: 1px solid var(--sd-color-card-border); border-radius: 0.25rem; color: var(--sd-color-card-text); display: -ms-flexbox; display: flex; -ms-flex-direction: column; flex-direction: column; min-width: 0; position: relative; word-wrap: break-word; > hr { margin-left: 0; margin-right: 0; } } .sd-card-hover:hover { border-color: var(--sd-color-card-border-hover); transform: scale(1.01); } .sd-card-body { -ms-flex: 1 1 auto; flex: 1 1 auto; padding: 1rem 1rem; } .sd-card-title { margin-bottom: 0.5rem; } .sd-card-subtitle { margin-top: -0.25rem; margin-bottom: 0; } .sd-card-text:last-child { margin-bottom: 0; } .sd-card-link:hover { text-decoration: none; } .sd-card-link + .card-link { margin-left: 1rem; } .sd-card-header { padding: 0.5rem 1rem; margin-bottom: 0; background-color: var(--sd-color-card-header); border-bottom: 1px solid var(--sd-color-card-border); } .sd-card-header:first-child { border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } .sd-card-footer { padding: 0.5rem 1rem; background-color: var(--sd-color-card-footer); border-top: 1px solid var(--sd-color-card-border); } .sd-card-footer:last-child { border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } .sd-card-header-tabs { margin-right: -0.5rem; margin-bottom: -0.5rem; margin-left: -0.5rem; border-bottom: 0; } .sd-card-header-pills { margin-right: -0.5rem; margin-left: -0.5rem; } .sd-card-img-overlay { position: absolute; top: 0; right: 0; bottom: 0; left: 0; padding: 1rem; border-radius: calc(0.25rem - 1px); } .sd-card-img, .sd-card-img-bottom, .sd-card-img-top { width: 100%; } .sd-card-img, .sd-card-img-top { border-top-left-radius: calc(0.25rem - 1px); border-top-right-radius: calc(0.25rem - 1px); } .sd-card-img, .sd-card-img-bottom { border-bottom-left-radius: calc(0.25rem - 1px); border-bottom-right-radius: calc(0.25rem - 1px); } // sd-cards-carousel is not part of bootstrap // it is intended to create a single row of scrollable cards // with a standard width for each card .sd-cards-carousel { width: 100%; display: flex; flex-wrap: nowrap; -ms-flex-direction: row; flex-direction: row; overflow-x: hidden; scroll-snap-type: x mandatory; } // use to always show the scroll bar .sd-cards-carousel.sd-show-scrollbar { overflow-x: auto; } .sd-cards-carousel:hover, .sd-cards-carousel:focus { overflow-x: auto; } .sd-cards-carousel > .sd-card { flex-shrink: 0; scroll-snap-align: start; } .sd-cards-carousel > .sd-card:not(:last-child) { margin-right: 3px; } @for $i from 1 through 12 { .sd-card-cols-#{$i} > .sd-card { // we use less than 100% here, so that the (i+1)th card will be slightly visible, // so the user is aware that there are more cards available width: math.div(90%, $i); } } sphinx-design-0.5.0/style/_colors.scss000066400000000000000000000050101446046271500177760ustar00rootroot00000000000000$white: #fff !default; $white-50: rgba(255, 255, 255, .5) !default; $gray-100: #f8f9fa !default; $gray-200: #e9ecef !default; $gray-300: #dee2e6 !default; $gray-400: #ced4da !default; $gray-500: #adb5bd !default; $gray-600: #6c757d !default; $gray-700: #495057 !default; $gray-800: #343a40 !default; $gray-900: #212529 !default; $black: #000 !default; $black-0: rgba(0, 0, 0, 0) !default; $black-3: rgba(0, 0, 0, .03) !default; $black-12-5: rgba(0, 0, 0, .125) !default; $black-15: rgba(0, 0, 0, .15) !default; $black-25: rgba(0, 0, 0, .25) !default; $black-50: rgba(0, 0, 0, .5) !default; $blue: #0071bc !default; $indigo: #6610f2 !default; $purple: #6f42c1 !default; $pink: #d63384 !default; $red: #dc3545 !default; $orange: #fd7e14 !default; $yellow: #ffc107 !default; $green: #28a745 !default; $teal: #20c997 !default; $cyan: #17a2b8 !default; $semantic-colors: ( "primary": $blue, "secondary": $gray-600, "success": $green, "info": $cyan, "warning": #f0b37e, "danger": $red, "light": $gray-100, "muted": $gray-600, "dark": $gray-900, "black": black, "white": white, ) !default; @function text-color($value) { @return if(lightness($value) > 70, $gray-900, $white); } @each $color, $value in $semantic-colors { .sd-bg-#{$color} { background-color: var(--sd-color-#{$color}) !important; } .sd-bg-text-#{$color} { color: var(--sd-color-#{$color}-text) !important; } button { &.sd-bg-#{$color}:focus, &.sd-bg-#{$color}:hover { background-color: var(--sd-color-#{$color}-highlight) !important; } } a { &.sd-bg-#{$color}:focus, &.sd-bg-#{$color}:hover { background-color: var(--sd-color-#{$color}-highlight) !important; } } } @each $color, $value in $semantic-colors { .sd-text-#{$color}, .sd-text-#{$color} > p { color: var(--sd-color-#{$color}) !important; } a { &.sd-text-#{$color}:focus, &.sd-text-#{$color}:hover { color: var(--sd-color-#{$color}-highlight) !important; } } } @each $color, $value in $semantic-colors { .sd-outline-#{$color} { border-color: var(--sd-color-#{$color}) !important; border-style: solid !important; border-width: 1px !important; } a { &.sd-outline-#{$color}:focus, &.sd-outline-#{$color}:hover { border-color: var(--sd-color-#{$color}-highlight) !important; } } } // transparent color .sd-bg-transparent { background-color: transparent !important; } .sd-outline-transparent { border-color: transparent !important; } .sd-text-transparent { color: transparent !important; } sphinx-design-0.5.0/style/_display.scss000066400000000000000000000035621446046271500201540ustar00rootroot00000000000000.sd-d-none { display: none !important; } .sd-d-inline { display: inline !important; } .sd-d-inline-block { display: inline-block !important; } .sd-d-block { display: block !important; } .sd-d-grid { display: grid !important; } .sd-d-flex-row { display: -ms-flexbox !important; display: flex !important; flex-direction: row !important; } .sd-d-flex-column { display: -ms-flexbox !important; display: flex !important; flex-direction: column !important; } .sd-d-inline-flex { display: -ms-inline-flexbox !important; display: inline-flex !important; } @each $cat, $width in $media-widths { @media (min-width: $width) { .sd-d-#{$cat}-none { display: none !important; } .sd-d-#{$cat}-inline { display: inline !important; } .sd-d-#{$cat}-inline-block { display: inline-block !important; } .sd-d-#{$cat}-block { display: block !important; } .sd-d-#{$cat}-grid { display: grid !important; } .sd-d-#{$cat}-flex { display: -ms-flexbox !important; display: flex !important; } .sd-d-#{$cat}-inline-flex { display: -ms-inline-flexbox !important; display: inline-flex !important; } } } // will align on major axis of flex .sd-align-major-start { justify-content: flex-start !important; } .sd-align-major-end { justify-content: flex-end !important; } .sd-align-major-center { justify-content: center !important; } .sd-align-major-justify { justify-content: space-between !important; } .sd-align-major-spaced { justify-content: space-evenly !important; } // will align on minor axis of flex .sd-align-minor-start { align-items: flex-start !important; } .sd-align-minor-end { align-items: flex-end !important; } .sd-align-minor-center { align-items: center !important; } // default .sd-align-minor-stretch { align-items: stretch !important; } sphinx-design-0.5.0/style/_dropdown.scss000066400000000000000000000045511446046271500203420ustar00rootroot00000000000000details.sd-dropdown { position: relative; .sd-summary-title { font-weight: 700; // don't overlap the chevron padding-right: 3em !important; -moz-user-select: none; -ms-user-select: none; -webkit-user-select: none; user-select: none; } &:hover { cursor: pointer; } .sd-summary-content { cursor: default; } summary { // hide the default triangle marker list-style: none; padding: 1em; // Ellipsis added when no title .sd-octicon.no-title { vertical-align: middle; } } &[open] summary .sd-octicon.no-title { visibility: hidden; } // chrome doesn't yet support list-style summary::-webkit-details-marker { display: none; } summary:focus { outline: none; } .sd-summary-icon { margin-right: 0.5em; } .sd-summary-icon svg { opacity: 0.8; } summary:hover .sd-summary-up svg, summary:hover .sd-summary-down svg { opacity: 1; transform: scale(1.1); } .sd-summary-up svg, .sd-summary-down svg { display: block; opacity: 0.6; } .sd-summary-up, .sd-summary-down { pointer-events: none; position: absolute; right: 1em; top: 1em; } &[open] > .sd-summary-title .sd-summary-down { visibility: hidden; } &:not([open]) > .sd-summary-title .sd-summary-up { visibility: hidden; } // Hide the card body border when not open &:not([open]).sd-card { border: none; } &:not([open]) > .sd-card-header { border: 1px solid var(--sd-color-card-border); border-radius: 0.25rem; } // Transition animation &.sd-fade-in[open] summary ~ * { -moz-animation: sd-fade-in 0.5s ease-in-out; -webkit-animation: sd-fade-in 0.5s ease-in-out; animation: sd-fade-in 0.5s ease-in-out; } &.sd-fade-in-slide-down[open] summary ~ * { -moz-animation: sd-fade-in 0.5s ease-in-out, sd-slide-down 0.5s ease-in-out; -webkit-animation: sd-fade-in 0.5s ease-in-out, sd-slide-down 0.5s ease-in-out; animation: sd-fade-in 0.5s ease-in-out, sd-slide-down 0.5s ease-in-out; } } .sd-col > .sd-dropdown { width: 100%; } .sd-summary-content > .sd-tab-set:first-child { margin-top: 0; } @keyframes sd-fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes sd-slide-down { 0% { transform: translate(0, -10px); } 100% { transform: translate(0, 0); } } sphinx-design-0.5.0/style/_grids.scss000066400000000000000000000065271446046271500176230ustar00rootroot00000000000000// Adapted from Bootstrap v5.0.2 (https://getbootstrap.com/) // See: dist/css/bootstrap-grid.css // Copyright 2011-2021 The Bootstrap Authors // Copyright 2011-2019 Twitter, Inc. // Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) @use 'sass:math'; $gutter-widths: $spacings; .sd-container, .sd-container-fluid, .sd-container-lg, .sd-container-md, .sd-container-sm, .sd-container-xl { margin-left: auto; margin-right: auto; padding-left: var(--sd-gutter-x, 0.75rem); padding-right: var(--sd-gutter-x, 0.75rem); width: 100%; } @media (min-width: $media-min-sm) { .sd-container-sm, .sd-container { max-width: $media-max-sm; } } @media (min-width: $media-min-md) { .sd-container-md, .sd-container-sm, .sd-container { max-width: $media-max-md; } } @media (min-width: $media-min-lg) { .sd-container-lg, .sd-container-md, .sd-container-sm, .sd-container { max-width: $media-max-lg; } } @media (min-width: $media-min-xl) { .sd-container-xl, .sd-container-lg, .sd-container-md, .sd-container-sm, .sd-container { max-width: $media-max-xl; } } .sd-row { --sd-gutter-x: 1.5rem; --sd-gutter-y: 0; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-top: calc(var(--sd-gutter-y) * -1); margin-right: calc(var(--sd-gutter-x) * -0.5); margin-left: calc(var(--sd-gutter-x) * -0.5); } .sd-row > * { box-sizing: border-box; flex-shrink: 0; width: 100%; max-width: 100%; padding-right: calc(var(--sd-gutter-x) * 0.5); padding-left: calc(var(--sd-gutter-x) * 0.5); margin-top: var(--sd-gutter-y); } .sd-col { flex: 1 0 0%; -ms-flex: 1 0 0%; } .sd-row-cols-auto > * { flex: 0 0 auto; width: auto; } @for $i from 1 through 12 { .sd-row-cols-#{$i} { > * { flex: 0 0 auto; -ms-flex: 0 0 auto; width: math.div(100%, $i); } } } @each $cat, $width in $media-widths { @media (min-width: $width) { .sd-col-#{$cat} { flex: 1 0 0%; -ms-flex: 1 0 0%; } .sd-row-cols-#{$cat}-auto { flex: 1 0 auto; -ms-flex: 1 0 auto; width: 100%; } @for $i from 1 through 12 { .sd-row-cols-#{$cat}-#{$i} { > * { flex: 0 0 auto; -ms-flex: 0 0 auto; width: math.div(100%, $i); } } } } } .sd-col-auto { flex: 0 0 auto; -ms-flex: 0 0 auto; width: auto; } @for $i from 1 through 12 { .sd-col-#{$i} { flex: 0 0 auto; -ms-flex: 0 0 auto; width: 100% * math.div($i, 12); } } @each $cat, $width in $gutter-widths { .sd-g-#{$cat}, .sd-gy-#{$cat} { --sd-gutter-y: #{$width}; } .sd-g-#{$cat}, .sd-gx-#{$cat} { --sd-gutter-x: #{$width}; } } @each $cat, $width in $media-widths { @media (min-width: $width) { .sd-col-#{$cat}-auto { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } @for $i from 1 through 12 { .sd-col-#{$cat}-#{$i} { -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100% * math.div($i, 12); } } @each $gcat, $gwidth in $gutter-widths { .sd-g-#{$cat}-#{$gcat}, .sd-gy-#{$cat}-#{$gcat} { --sd-gutter-y: #{$gwidth}; } .sd-g-#{$cat}-#{$gcat}, .sd-gx-#{$cat}-#{$gcat} { --sd-gutter-x: #{$gwidth}; } } } } .sd-flex-row-reverse { flex-direction: row-reverse !important; } sphinx-design-0.5.0/style/_icons.scss000066400000000000000000000007521446046271500176200ustar00rootroot00000000000000.sd-octicon, .sd-material-icon { display: inline-block; fill: currentColor; vertical-align: middle; } $avatar-sizes: ( xs: 1rem, sm: 3rem, md: 5rem, lg: 7rem, xl: 10rem, inherit: inherit, initial: initial ); @each $size, $value in $avatar-sizes { .sd-avatar-#{$size} { border-radius: 50%; object-fit: cover; /* Keep the image aspect ratio */ object-position: center; /* Center the image within the element */ width: $value; height: $value; } } sphinx-design-0.5.0/style/_overrides.scss000066400000000000000000000003611446046271500205030ustar00rootroot00000000000000// Overrides for non-bootstrap themes (such as alabaster) .sd-sphinx-override, .sd-sphinx-override * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .sd-sphinx-override p { margin-top: 0; } sphinx-design-0.5.0/style/_sizing.scss000066400000000000000000000004001446046271500177760ustar00rootroot00000000000000// Width and height $sizes: ( 25: 25%, 50: 50%, 75: 75%, 100: 100%, auto: auto, ); @each $prop, $abbrev in (width: w, height: h) { @each $size, $length in $sizes { .sd-#{$abbrev}-#{$size} { #{$prop}: $length !important; } } } sphinx-design-0.5.0/style/_spacing.scss000066400000000000000000000027711446046271500201340ustar00rootroot00000000000000$spacer: 1rem; $spacings: ( 0: 0, 1: $spacer * 0.25, 2: $spacer * 0.5, 3: $spacer, 4: $spacer * 1.5, 5: $spacer * 3, ) !default; $media-min-sm: 576px; $media-min-md: 768px; $media-min-lg: 992px; $media-min-xl: 1200px; $media-max-sm: 540px; $media-max-md: 720px; $media-max-lg: 960px; $media-max-xl: 1140px; $media-widths: ( "sm": $media-min-sm, "md": $media-min-md, "lg": $media-min-lg, "xl": $media-min-xl, ) !default; @each $id, $value in $spacings { .sd-p-#{$id} { padding: $value !important; } .sd-pt-#{$id}, .sd-py-#{$id} { padding-top: $value !important; } .sd-pr-#{$id}, .sd-px-#{$id} { padding-right: $value !important; } .sd-pb-#{$id}, .sd-py-#{$id} { padding-bottom: $value !important; } .sd-pl-#{$id}, .sd-px-#{$id} { padding-left: $value !important; } } .sd-m-auto { margin: auto !important; } .sd-mt-auto, .sd-my-auto { margin-top: auto !important; } .sd-mr-auto, .sd-mx-auto { margin-right: auto !important; } .sd-mb-auto, .sd-my-auto { margin-bottom: auto !important; } .sd-ml-auto, .sd-mx-auto { margin-left: auto !important; } @each $id, $value in $spacings { .sd-m-#{$id} { margin: $value !important; } .sd-mt-#{$id}, .sd-my-#{$id} { margin-top: $value !important; } .sd-mr-#{$id}, .sd-mx-#{$id} { margin-right: $value !important; } .sd-mb-#{$id}, .sd-my-#{$id} { margin-bottom: $value !important; } .sd-ml-#{$id}, .sd-mx-#{$id} { margin-left: $value !important; } } sphinx-design-0.5.0/style/_tabs.scss000066400000000000000000000034241446046271500174350ustar00rootroot00000000000000// Tabbed block container .sd-tab-set { border-radius: 0.125rem; display: flex; flex-wrap: wrap; margin: 1em 0; position: relative; // Hide radio buttons > input { opacity: 0; position: absolute; // Active tab label &:checked + label { border-color: var(--sd-color-tabs-underline-active); color: var(--sd-color-tabs-label-active); // Show tabbed block content + .sd-tab-content { display: block; } } &:not(:checked) + label:hover { color: var(--sd-color-tabs-label-hover); border-color: var(--sd-color-tabs-underline-hover); } // Focused tab label &:focus + label { outline-style: auto; } // Disable focus indicator for pointer devices &:not(.focus-visible) + label { outline: none; -webkit-tap-highlight-color: transparent; } } // Tab label > label { border-bottom: 0.125rem solid transparent; margin-bottom: 0; color: var(--sd-color-tabs-label-inactive); border-color: var(--sd-color-tabs-underline-inactive); cursor: pointer; font-size: var(--sd-fontsize-tabs-label); font-weight: 700; padding: 1em 1.25em 0.5em; transition: color 250ms; width: auto; z-index: 1; // Hovered label html &:hover { color: var(--sd-color-tabs-label-active); } } } .sd-col > .sd-tab-set { width: 100%; } // Tabbed block content .sd-tab-content { box-shadow: 0 -0.0625rem var(--sd-color-tabs-overline), 0 0.0625rem var(--sd-color-tabs-underline); display: none; order: 99; padding-bottom: 0.75rem; padding-top: 0.75rem; width: 100%; > :first-child { margin-top: 0 !important; } > :last-child { margin-bottom: 0 !important; } // Nested tabs > .sd-tab-set { margin: 0; } } sphinx-design-0.5.0/style/_text.scss000066400000000000000000000025531446046271500174720ustar00rootroot00000000000000.sd-text-justify { text-align: justify !important; } .sd-text-left { text-align: left !important; } .sd-text-right { text-align: right !important; } .sd-text-center { text-align: center !important; } .sd-font-weight-light { font-weight: 300 !important; } .sd-font-weight-lighter { font-weight: lighter !important; } .sd-font-weight-normal { font-weight: 400 !important; } .sd-font-weight-bold { font-weight: 700 !important; } .sd-font-weight-bolder { font-weight: bolder !important; } .sd-font-italic { font-style: italic !important; } .sd-text-decoration-none { text-decoration: none !important; } .sd-text-lowercase { text-transform: lowercase !important; } .sd-text-uppercase { text-transform: uppercase !important; } .sd-text-capitalize { text-transform: capitalize !important; } .sd-text-wrap { white-space: normal !important; } .sd-text-nowrap { white-space: nowrap !important; } // requires `display: inline-block` or `display: block` .sd-text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } $font-sizes: ( 1: calc(1.375rem + 1.5vw), 2: calc(1.325rem + 0.9vw), 3: calc(1.3rem + 0.6vw), 4: calc(1.275rem + 0.3vw), 5: 1.25rem, 6: 1rem ); @each $id, $value in $font-sizes { .sd-fs-#{$id}, .sd-fs-#{$id} > p { font-size: $value !important; line-height: unset !important; } } sphinx-design-0.5.0/style/_variables.scss000066400000000000000000000023231446046271500204510ustar00rootroot00000000000000:root { // semantic colors @each $color, $value in $semantic-colors { --sd-color-#{$color}: #{$value}; } // semantic colors for highlighting (e.g. focus/hover) @each $color, $value in $semantic-colors { --sd-color-#{$color}-highlight: #{mix(black, $value, 15%)}; } // colors for text on top of a semantic color background @each $color, $value in $semantic-colors { --sd-color-#{$color}-text: #{text-color($value)}; } // shadow --sd-color-shadow: #{$black-15}; // cards --sd-color-card-border: #{$black-12-5}; --sd-color-card-border-hover: hsla(231, 99%, 66%, 1); --sd-color-card-background: transparent; --sd-color-card-text: inherit; --sd-color-card-header: transparent; --sd-color-card-footer: transparent; // tabs --sd-color-tabs-label-active: hsla(231, 99%, 66%, 1); --sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1); --sd-color-tabs-label-inactive: hsl(0, 0%, 66%); --sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1); --sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62); --sd-color-tabs-underline-inactive: transparent; --sd-color-tabs-overline: rgb(222, 222, 222); --sd-color-tabs-underline: rgb(222, 222, 222); --sd-fontsize-tabs-label: 1rem; } sphinx-design-0.5.0/style/index.scss000066400000000000000000000005061446046271500174520ustar00rootroot00000000000000@import './colors'; @import './spacing'; @import './sizing'; @import './display'; @import './text'; @import './borders'; @import './animations'; @import './badge'; @import './button'; @import './icons'; @import './cards'; @import './grids'; @import './dropdown'; @import './tabs'; @import './overrides'; @import './variables' sphinx-design-0.5.0/tests/000077500000000000000000000000001446046271500154475ustar00rootroot00000000000000sphinx-design-0.5.0/tests/__init__.py000066400000000000000000000000001446046271500175460ustar00rootroot00000000000000sphinx-design-0.5.0/tests/conftest.py000066400000000000000000000051551446046271500176540ustar00rootroot00000000000000import os from pathlib import Path from typing import Any, Dict, Optional from docutils import nodes import pytest from sphinx.testing.path import path as sphinx_path from sphinx.testing.util import SphinxTestApp from sphinx_design._compat import findall pytest_plugins = "sphinx.testing.fixtures" class SphinxBuilder: def __init__(self, app: SphinxTestApp, src_path: Path): self.app = app self._src_path = src_path @property def src_path(self) -> Path: return self._src_path @property def out_path(self) -> Path: return Path(self.app.outdir) def build(self, assert_pass=True): self.app.build() if assert_pass: assert self.warnings == "", self.status return self @property def status(self): return self.app._status.getvalue() @property def warnings(self): return self.app._warning.getvalue() def get_doctree( self, docname: str, post_transforms: bool = False ) -> nodes.document: doctree = self.app.env.get_doctree(docname) if post_transforms: self.app.env.apply_post_transforms(doctree, docname) # make source path consistent for test comparisons for node in findall(doctree)(include_self=True): if not ("source" in node and node["source"]): continue node["source"] = Path(node["source"]).relative_to(self.src_path).as_posix() if node["source"].endswith(".rst"): node["source"] = node["source"][:-4] elif node["source"].endswith(".md"): node["source"] = node["source"][:-3] # remove mathjax classes added by myst parser if doctree.children and isinstance(doctree.children[0], nodes.section): doctree.children[0]["classes"] = [] return doctree @pytest.fixture() def sphinx_builder(tmp_path: Path, make_app, monkeypatch): def _create_project( buildername: str = "html", conf_kwargs: Optional[Dict[str, Any]] = None ): src_path = tmp_path / "srcdir" src_path.mkdir() conf_kwargs = conf_kwargs or { "extensions": ["myst_parser", "sphinx_design"], "myst_enable_extensions": ["colon_fence"], } content = "\n".join( [f"{key} = {value!r}" for key, value in conf_kwargs.items()] ) src_path.joinpath("conf.py").write_text(content, encoding="utf8") app = make_app( srcdir=sphinx_path(os.path.abspath(str(src_path))), buildername=buildername ) return SphinxBuilder(app, src_path) yield _create_project sphinx-design-0.5.0/tests/test_snippets.py000066400000000000000000000126051446046271500207310ustar00rootroot00000000000000"""Test the documented snippets run correctly, and are the same for both RST and MyST.""" from pathlib import Path from typing import Callable import pytest from .conftest import SphinxBuilder SNIPPETS_PATH = Path(__file__).parent.parent / "docs" / "snippets" SNIPPETS_GLOB_RST = list((SNIPPETS_PATH / "rst").glob("[!_]*")) SNIPPETS_GLOB_MYST = list((SNIPPETS_PATH / "myst").glob("[!_]*")) def write_assets(src_path: Path): """Write additional assets to the src directory.""" src_path.joinpath("snippet.py").write_text("a = 1") src_path.joinpath("images").mkdir() src_path.joinpath("images", "ebp-logo.png").touch() src_path.joinpath("images", "particle_background.jpg").touch() @pytest.mark.parametrize( "path", SNIPPETS_GLOB_RST, ids=[path.name[: -len(path.suffix)] for path in SNIPPETS_GLOB_RST], ) def test_snippets_rst( sphinx_builder: Callable[..., SphinxBuilder], path: Path, file_regression ): """Test snippets written in RestructuredText (before post-transforms).""" builder = sphinx_builder() content = "Heading\n-------" + "\n\n" + path.read_text(encoding="utf8") builder.src_path.joinpath("index.rst").write_text(content, encoding="utf8") write_assets(builder.src_path) builder.build() doctree = builder.get_doctree("index", post_transforms=False) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename=f"snippet_pre_{path.name[:-len(path.suffix)]}", extension=".xml", encoding="utf8", ) @pytest.mark.parametrize( "path", SNIPPETS_GLOB_MYST, ids=[path.name[: -len(path.suffix)] for path in SNIPPETS_GLOB_MYST], ) def test_snippets_myst( sphinx_builder: Callable[..., SphinxBuilder], path: Path, file_regression ): """Test snippets written in MyST Markdown (before post-transforms).""" builder = sphinx_builder() content = "# Heading" + "\n\n\n" + path.read_text(encoding="utf8") builder.src_path.joinpath("index.md").write_text(content, encoding="utf8") write_assets(builder.src_path) builder.build() doctree = builder.get_doctree("index", post_transforms=False) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename=f"snippet_pre_{path.name[:-len(path.suffix)]}", extension=".xml", encoding="utf8", ) @pytest.mark.parametrize( "path", SNIPPETS_GLOB_RST, ids=[path.name[: -len(path.suffix)] for path in SNIPPETS_GLOB_RST], ) def test_snippets_rst_post( sphinx_builder: Callable[..., SphinxBuilder], path: Path, file_regression ): """Test snippets written in RestructuredText (after HTML post-transforms).""" builder = sphinx_builder() content = "Heading\n-------" + "\n\n" + path.read_text(encoding="utf8") builder.src_path.joinpath("index.rst").write_text(content, encoding="utf8") write_assets(builder.src_path) builder.build() doctree = builder.get_doctree("index", post_transforms=True) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename=f"snippet_post_{path.name[:-len(path.suffix)]}", extension=".xml", encoding="utf8", ) @pytest.mark.parametrize( "path", SNIPPETS_GLOB_MYST, ids=[path.name[: -len(path.suffix)] for path in SNIPPETS_GLOB_MYST], ) def test_snippets_myst_post( sphinx_builder: Callable[..., SphinxBuilder], path: Path, file_regression ): """Test snippets written in MyST Markdown (after HTML post-transforms).""" builder = sphinx_builder() content = "# Heading" + "\n\n\n" + path.read_text(encoding="utf8") builder.src_path.joinpath("index.md").write_text(content, encoding="utf8") write_assets(builder.src_path) builder.build() doctree = builder.get_doctree("index", post_transforms=True) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename=f"snippet_post_{path.name[:-len(path.suffix)]}", extension=".xml", encoding="utf8", ) def test_sd_hide_title_rst( sphinx_builder: Callable[..., SphinxBuilder], file_regression ): """Test that the root title is hidden.""" builder = sphinx_builder() content = ":sd_hide_title:\n\nHeading\n-------\n\ncontent" builder.src_path.joinpath("index.rst").write_text(content, encoding="utf8") builder.build() doctree = builder.get_doctree("index", post_transforms=False) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename="sd_hide_title", extension=".xml", encoding="utf8", ) def test_sd_hide_title_myst( sphinx_builder: Callable[..., SphinxBuilder], file_regression ): """Test that the root title is hidden.""" builder = sphinx_builder() content = "---\nsd_hide_title: true\n---\n\n# Heading\n\ncontent" builder.src_path.joinpath("index.md").write_text(content, encoding="utf8") builder.build() doctree = builder.get_doctree("index", post_transforms=False) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename="sd_hide_title", extension=".xml", encoding="utf8", ) sphinx-design-0.5.0/tests/test_snippets/000077500000000000000000000000001446046271500203535ustar00rootroot00000000000000sphinx-design-0.5.0/tests/test_snippets/sd_hide_title.xml000066400000000000000000000002461446046271500236770ustar00rootroot00000000000000
Heading <paragraph> content ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_article-info.xml�������������������������������0000664�0000000�0000000�00000006017�14460462715�0026264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-p-0 sd-mt-2 sd-mb-4 sd-p-2 sd-outline-muted sd-rounded-1" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-gx-2 sd-gy-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <reference refuri="https://executablebooks.org/"> <image alt="" candidates="{'*': 'images/ebp-logo.png'}" classes="sd-avatar-sm sd-outline-muted" uri="images/ebp-logo.png"> <container classes="sd-col sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <container classes="sd-container-fluid sd-sphinx-override" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-3 sd-row-cols-md-3 sd-row-cols-lg-3 sd-gx-3 sd-gy-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <paragraph classes="sd-p-0 sd-m-0"> Executable Books <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <paragraph classes="sd-p-0 sd-m-0"> <raw classes="sd-pr-2" format="html" xml:space="preserve"> <svg version="1.1" width="16.0px" height="16.0px" class="sd-octicon sd-octicon-calendar" viewBox="0 0 16 16" aria-hidden="true"><path fill-rule="evenodd" d="M4.75 0a.75.75 0 01.75.75V2h5V.75a.75.75 0 011.5 0V2h1.25c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0113.25 16H2.75A1.75 1.75 0 011 14.25V3.75C1 2.784 1.784 2 2.75 2H4V.75A.75.75 0 014.75 0zm0 3.5h8.5a.25.25 0 01.25.25V6h-11V3.75a.25.25 0 01.25-.25h2zm-2.25 4v6.75c0 .138.112.25.25.25h10.5a.25.25 0 00.25-.25V7.5h-11z"></path></svg> Jul 24, 2021 <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <paragraph classes="sd-p-0 sd-m-0"> <raw classes="sd-pr-2" format="html" xml:space="preserve"> <svg version="1.1" width="16.0px" height="16.0px" class="sd-octicon sd-octicon-clock" viewBox="0 0 16 16" aria-hidden="true"><path fill-rule="evenodd" d="M1.5 8a6.5 6.5 0 1113 0 6.5 6.5 0 01-13 0zM8 0a8 8 0 100 16A8 8 0 008 0zm.5 4.75a.75.75 0 00-1.5 0v3.5a.75.75 0 00.471.696l2.5 1a.75.75 0 00.557-1.392L8.5 7.742V4.75z"></path></svg> 5 min read �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_badge-basic.xml��������������������������������0000664�0000000�0000000�00000004473�14460462715�0026035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> <inline classes="sd-sphinx-override sd-badge"> plain badge <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-primary sd-bg-text-primary"> primary , <inline classes="sd-sphinx-override sd-badge sd-outline-primary sd-text-primary"> primary-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-secondary sd-bg-text-secondary"> secondary , <inline classes="sd-sphinx-override sd-badge sd-outline-secondary sd-text-secondary"> secondary-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-success sd-bg-text-success"> success , <inline classes="sd-sphinx-override sd-badge sd-outline-success sd-text-success"> success-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-info sd-bg-text-info"> info , <inline classes="sd-sphinx-override sd-badge sd-outline-info sd-text-info"> info-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-warning sd-bg-text-warning"> warning , <inline classes="sd-sphinx-override sd-badge sd-outline-warning sd-text-warning"> warning-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-danger sd-bg-text-danger"> danger , <inline classes="sd-sphinx-override sd-badge sd-outline-danger sd-text-danger"> danger-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-light sd-bg-text-light"> light , <inline classes="sd-sphinx-override sd-badge sd-outline-light sd-text-light"> light-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-dark sd-bg-text-dark"> dark , <inline classes="sd-sphinx-override sd-badge sd-outline-dark sd-text-dark"> dark-line �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_badge-link.xml���������������������������������0000664�0000000�0000000�00000001011�14460462715�0025672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> <reference classes="sd-sphinx-override sd-badge sd-bg-primary sd-bg-text-primary" refuri="https://example.com"> <inline> https://example.com <paragraph> <reference classes="sd-sphinx-override sd-badge sd-outline-primary sd-text-primary" refuri="https://example.com"> <inline> explicit title �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_button-link.xml��������������������������������0000664�0000000�0000000�00000002202�14460462715�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap" refuri="https://example.com"> <inline> https://example.com <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap" refuri="https://example.com"> <inline> Button text <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap sd-btn-primary sd-shadow-sm" refuri="https://example.com"> <inline> https://example.com <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap sd-btn-outline-primary" refuri="https://example.com"> <inline> https://example.com <paragraph> <inline classes="sd-d-grid"> <reference classes="sd-sphinx-override sd-btn sd-text-wrap sd-btn-secondary" refuri="https://example.com"> <inline> https://example.com ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_card-basic.xml���������������������������������0000664�0000000�0000000�00000001120�14460462715�0025666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Card Title <paragraph classes="sd-card-text"> Card content ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_card-carousel.xml������������������������������0000664�0000000�0000000�00000005673�14460462715�0026443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-sphinx-override sd-cards-carousel sd-card-cols-2" design_component="card-carousel" is_div="True"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 1 <paragraph classes="sd-card-text"> content <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 2 <paragraph classes="sd-card-text"> Longer <paragraph classes="sd-card-text"> content <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 3 <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 4 <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 5 <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 6 ���������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_card-head-foot.xml�����������������������������0000664�0000000�0000000�00000001650�14460462715�0026463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-header" design_component="card-header" is_div="True"> <paragraph classes="sd-card-text"> Header <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Card Title <paragraph classes="sd-card-text"> Card content <container classes="sd-card-footer" design_component="card-footer" is_div="True"> <paragraph classes="sd-card-text"> Footer ����������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_card-images.xml��������������������������������0000664�0000000�0000000�00000007374�14460462715�0026073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-3 sd-row-cols-md-3 sd-row-cols-lg-4" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-text-black" design_component="card" is_div="True"> <image alt="my text" candidates="{'*': 'images/particle_background.jpg'}" classes="sd-card-img" uri="images/particle_background.jpg"> <container classes="sd-card-img-overlay" design_component="card-overlay" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title <paragraph classes="sd-card-text"> Text <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <image alt="" candidates="{'*': 'images/particle_background.jpg'}" classes="sd-card-img-top" uri="images/particle_background.jpg"> <container classes="sd-card-header" design_component="card-header" is_div="True"> <paragraph classes="sd-card-text"> Header <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title <paragraph classes="sd-card-text"> Content <container classes="sd-card-footer" design_component="card-footer" is_div="True"> <paragraph classes="sd-card-text"> Footer <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-header" design_component="card-header" is_div="True"> <paragraph classes="sd-card-text"> Header <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title <paragraph classes="sd-card-text"> Content <container classes="sd-card-footer" design_component="card-footer" is_div="True"> <paragraph classes="sd-card-text"> Footer <image alt="" candidates="{'*': 'images/particle_background.jpg'}" classes="sd-card-img-bottom" uri="images/particle_background.jpg"> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_card-link.xml����������������������������������0000664�0000000�0000000�00000003742�14460462715�0025556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <target refid="cards-clickable"> <section ids="cards-clickable id1" names="cards\ clickable cards-clickable"> <title> Cards Clickable <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Clickable Card (external) <paragraph classes="sd-card-text"> The entire card can be clicked to navigate to <reference refuri="https://example.com"> https://example.com . <PassthroughTextElement> <reference classes="sd-stretched-link" refuri="https://example.com"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Clickable Card (internal) <paragraph classes="sd-card-text"> The entire card can be clicked to navigate to the <literal> cards reference target. <PassthroughTextElement> <reference classes="sd-stretched-link" internal="True" refid="cards-clickable"> <inline classes="std std-ref"> ������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_card-title-link.xml����������������������������0000664�0000000�0000000�00000001673�14460462715�0026676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <target refid="target"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" ids="target" is_div="True" names="target"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Card Title <reference refuri="https://example.com"> https://example.com <reference internal="True" refid="target"> <inline classes="std std-ref"> link <paragraph classes="sd-card-text"> Card content ���������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_div-basic.xml����������������������������������0000664�0000000�0000000�00000000430�14460462715�0025542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-text-center sd-font-italic sd-text-primary" design_component="div" is_div="True"> <paragraph> Some CSS styled text ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_dropdown-basic.xml�����������������������������0000664�0000000�0000000�00000010752�14460462715�0026624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <dropdown_main classes="sd-sphinx-override sd-dropdown sd-card sd-mb-3" opened="False"> <dropdown_title classes="sd-summary-title sd-card-header"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-kebab-horizontal" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M6 12a2 2 0 11-4 0 2 2 0 014 0zm8 0a2 2 0 11-4 0 2 2 0 014 0zm6 2a2 2 0 100-4 2 2 0 000 4z"></path></svg> <container classes="sd-summary-down" design_component="dropdown-closed-marker" is_div="True"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-down" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M5.22 8.72a.75.75 0 000 1.06l6.25 6.25a.75.75 0 001.06 0l6.25-6.25a.75.75 0 00-1.06-1.06L12 14.44 6.28 8.72a.75.75 0 00-1.06 0z"></path></svg> <container classes="sd-summary-up" design_component="dropdown-open-marker" is_div="True"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-up" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M18.78 15.28a.75.75 0 000-1.06l-6.25-6.25a.75.75 0 00-1.06 0l-6.25 6.25a.75.75 0 101.06 1.06L12 9.56l5.72 5.72a.75.75 0 001.06 0z"></path></svg> <container classes="sd-summary-content sd-card-body" design_component="dropdown-body" is_div="True"> <paragraph classes="sd-card-text"> Dropdown content <dropdown_main classes="sd-sphinx-override sd-dropdown sd-card sd-mb-3" opened="False"> <dropdown_title classes="sd-summary-title sd-card-header"> Dropdown title <container classes="sd-summary-down" design_component="dropdown-closed-marker" is_div="True"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-down" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M5.22 8.72a.75.75 0 000 1.06l6.25 6.25a.75.75 0 001.06 0l6.25-6.25a.75.75 0 00-1.06-1.06L12 14.44 6.28 8.72a.75.75 0 00-1.06 0z"></path></svg> <container classes="sd-summary-up" design_component="dropdown-open-marker" is_div="True"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-up" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M18.78 15.28a.75.75 0 000-1.06l-6.25-6.25a.75.75 0 00-1.06 0l-6.25 6.25a.75.75 0 101.06 1.06L12 9.56l5.72 5.72a.75.75 0 001.06 0z"></path></svg> <container classes="sd-summary-content sd-card-body" design_component="dropdown-body" is_div="True"> <paragraph classes="sd-card-text"> Dropdown content <dropdown_main classes="sd-sphinx-override sd-dropdown sd-card sd-mb-3" opened="True"> <dropdown_title classes="sd-summary-title sd-card-header"> Open dropdown <container classes="sd-summary-down" design_component="dropdown-closed-marker" is_div="True"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-down" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M5.22 8.72a.75.75 0 000 1.06l6.25 6.25a.75.75 0 001.06 0l6.25-6.25a.75.75 0 00-1.06-1.06L12 14.44 6.28 8.72a.75.75 0 00-1.06 0z"></path></svg> <container classes="sd-summary-up" design_component="dropdown-open-marker" is_div="True"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-up" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M18.78 15.28a.75.75 0 000-1.06l-6.25-6.25a.75.75 0 00-1.06 0l-6.25 6.25a.75.75 0 101.06 1.06L12 9.56l5.72 5.72a.75.75 0 001.06 0z"></path></svg> <container classes="sd-summary-content sd-card-body" design_component="dropdown-body" is_div="True"> <paragraph classes="sd-card-text"> Dropdown content ����������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_dropdown-options.xml���������������������������0000664�0000000�0000000�00000004605�14460462715�0027236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <dropdown_main classes="sd-sphinx-override sd-dropdown sd-card sd-m-1 class-container" ids="target" opened="False"> <dropdown_title classes="sd-summary-title sd-card-header class-title sd-bg-info sd-bg-text-info"> <raw classes="sd-summary-icon" format="html" xml:space="preserve"> <svg version="1.1" width="1.0em" height="1.0em" class="sd-octicon sd-octicon-alert" viewBox="0 0 16 16" aria-hidden="true"><path fill-rule="evenodd" d="M8.22 1.754a.25.25 0 00-.44 0L1.698 13.132a.25.25 0 00.22.368h12.164a.25.25 0 00.22-.368L8.22 1.754zm-1.763-.707c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0114.082 15H1.918a1.75 1.75 0 01-1.543-2.575L6.457 1.047zM9 11a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path></svg> Title <container classes="sd-summary-down" design_component="dropdown-closed-marker" is_div="True"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-down" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M5.22 8.72a.75.75 0 000 1.06l6.25 6.25a.75.75 0 001.06 0l6.25-6.25a.75.75 0 00-1.06-1.06L12 14.44 6.28 8.72a.75.75 0 00-1.06 0z"></path></svg> <container classes="sd-summary-up" design_component="dropdown-open-marker" is_div="True"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-up" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M18.78 15.28a.75.75 0 000-1.06l-6.25-6.25a.75.75 0 00-1.06 0l-6.25 6.25a.75.75 0 101.06 1.06L12 9.56l5.72 5.72a.75.75 0 001.06 0z"></path></svg> <container classes="sd-summary-content sd-card-body class-body" design_component="dropdown-body" is_div="True"> <paragraph classes="sd-card-text"> Dropdown content <paragraph> <reference internal="True" refid="target"> <inline classes="std std-ref"> Title , <reference internal="True" refid="target"> <inline classes="std std-ref"> text ���������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_grid-basic.xml���������������������������������0000664�0000000�0000000�00000002043�14460462715�0025707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4 sd-border-1" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-2 sd-row-cols-md-3 sd-row-cols-lg-4" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> A <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> B <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> C <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> D ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_grid-card-columns.xml��������������������������0000664�0000000�0000000�00000003526�14460462715�0027224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row sd-col-auto sd-col-xs-auto sd-col-sm-auto sd-col-md-auto sd-col-lg-auto" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row sd-col-12 sd-col-xs-12 sd-col-sm-6 sd-col-md-6 sd-col-lg-6" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> B <container classes="sd-col sd-d-flex-row sd-col-12 sd-col-xs-12 sd-col-sm-12 sd-col-md-12 sd-col-lg-12" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> C ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_grid-card.xml����������������������������������0000664�0000000�0000000�00000003261�14460462715�0025542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title 1 <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title 2 <paragraph classes="sd-card-text"> B �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_grid-gutter.xml��������������������������������0000664�0000000�0000000�00000004702�14460462715�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> B <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-3 sd-g-xs-3 sd-g-sm-3 sd-g-md-4 sd-g-lg-5" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> B ��������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_grid-nested.xml��������������������������������0000664�0000000�0000000�00000012300�14460462715�0026105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-1 sd-row-cols-lg-1 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 1.1 <paragraph classes="sd-card-text"> Multi-line <paragraph classes="sd-card-text"> content <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 1.2 <paragraph classes="sd-card-text"> Content <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-1 sd-row-cols-lg-1 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 2.1 <paragraph classes="sd-card-text"> Content <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 2.2 <paragraph classes="sd-card-text"> Content <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 2.3 <paragraph classes="sd-card-text"> Content ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_icon-fontawesome.xml���������������������������0000664�0000000�0000000�00000000424�14460462715�0027161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> An icon <fontawesome classes="fas fa-spinner sd-bg-primary sd-bg-text-primary" icon="spinner"> , some more text. ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_icon-material-design.xml�����������������������0000664�0000000�0000000�00000022131�14460462715�0027676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <bullet_list bullet="-"> <list_item> <paragraph> A regular icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="2.0em" height="2.0em" class="sd-material-icon sd-material-icon-data_exploration" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none" height="24" width="24"></rect><path d="M12,2C6.48,2,2,6.48,2,12c0,1.33,0.26,2.61,0.74,3.77L8,10.5l3.3,2.78L14.58,10H13V8h5v5h-2v-1.58L11.41,16l-3.29-2.79 l-4.4,4.4C5.52,20.26,8.56,22,12,22h8c1.1,0,2-0.9,2-2v-8C22,6.48,17.52,2,12,2z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S20.05,20.5,19.5,20.5z"></path></svg> , some more text <list_item> <paragraph> A coloured regular icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><g><path d="M0,0h24v24H0V0z" fill="none"></path><path d="M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z"></path></g></svg> , some more text. <list_item> <paragraph> A coloured outline icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"></path></svg> , some more text. <list_item> <paragraph> A coloured sharp icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M19.44 12.99l-.01.02c.04-.33.08-.67.08-1.01 0-.34-.03-.66-.07-.99l.01.02 2.44-1.92-2.43-4.22-2.87 1.16.01.01c-.52-.4-1.09-.74-1.71-1h.01L14.44 2H9.57l-.44 3.07h.01c-.62.26-1.19.6-1.71 1l.01-.01-2.88-1.17-2.44 4.22 2.44 1.92.01-.02c-.04.33-.07.65-.07.99 0 .34.03.68.08 1.01l-.01-.02-2.1 1.65-.33.26 2.43 4.2 2.88-1.15-.02-.04c.53.41 1.1.75 1.73 1.01h-.03L9.58 22h4.85s.03-.18.06-.42l.38-2.65h-.01c.62-.26 1.2-.6 1.73-1.01l-.02.04 2.88 1.15 2.43-4.2s-.14-.12-.33-.26l-2.11-1.66zM12 15.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.5z"></path></svg> , some more text. <list_item> <paragraph> A coloured round icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none" height="24" width="24"></rect><path d="M19.5,12c0-0.23-0.01-0.45-0.03-0.68l1.86-1.41c0.4-0.3,0.51-0.86,0.26-1.3l-1.87-3.23c-0.25-0.44-0.79-0.62-1.25-0.42 l-2.15,0.91c-0.37-0.26-0.76-0.49-1.17-0.68l-0.29-2.31C14.8,2.38,14.37,2,13.87,2h-3.73C9.63,2,9.2,2.38,9.14,2.88L8.85,5.19 c-0.41,0.19-0.8,0.42-1.17,0.68L5.53,4.96c-0.46-0.2-1-0.02-1.25,0.42L2.41,8.62c-0.25,0.44-0.14,0.99,0.26,1.3l1.86,1.41 C4.51,11.55,4.5,11.77,4.5,12s0.01,0.45,0.03,0.68l-1.86,1.41c-0.4,0.3-0.51,0.86-0.26,1.3l1.87,3.23c0.25,0.44,0.79,0.62,1.25,0.42 l2.15-0.91c0.37,0.26,0.76,0.49,1.17,0.68l0.29,2.31C9.2,21.62,9.63,22,10.13,22h3.73c0.5,0,0.93-0.38,0.99-0.88l0.29-2.31 c0.41-0.19,0.8-0.42,1.17-0.68l2.15,0.91c0.46,0.2,1,0.02,1.25-0.42l1.87-3.23c0.25-0.44,0.14-0.99-0.26-1.3l-1.86-1.41 C19.49,12.45,19.5,12.23,19.5,12z M12.04,15.5c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S13.97,15.5,12.04,15.5z"></path></svg> , some more text. <list_item> <paragraph> A coloured two-tone icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M19.28 8.6l-.7-1.21-1.27.51-1.06.43-.91-.7c-.39-.3-.8-.54-1.23-.71l-1.06-.43-.16-1.13L12.7 4h-1.4l-.19 1.35-.16 1.13-1.06.44c-.41.17-.82.41-1.25.73l-.9.68-1.05-.42-1.27-.52-.7 1.21 1.08.84.89.7-.14 1.13c-.03.3-.05.53-.05.73s.02.43.05.73l.14 1.13-.89.7-1.08.84.7 1.21 1.27-.51 1.06-.43.91.7c.39.3.8.54 1.23.71l1.06.43.16 1.13.19 1.36h1.39l.19-1.35.16-1.13 1.06-.43c.41-.17.82-.41 1.25-.73l.9-.68 1.04.42 1.27.51.7-1.21-1.08-.84-.89-.7.14-1.13c.04-.31.05-.52.05-.73 0-.21-.02-.43-.05-.73l-.14-1.13.89-.7 1.1-.84zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" opacity=".3"></path><path d="M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"></path></svg> , some more text. <list_item> <paragraph> A fixed size icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="24.0px" height="24.0px" class="sd-material-icon sd-material-icon-data_exploration" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none" height="24" width="24"></rect><path d="M12,2C6.48,2,2,6.48,2,12c0,1.33,0.26,2.61,0.74,3.77L8,10.5l3.3,2.78L14.58,10H13V8h5v5h-2v-1.58L11.41,16l-3.29-2.79 l-4.4,4.4C5.52,20.26,8.56,22,12,22h8c1.1,0,2-0.9,2-2v-8C22,6.48,17.52,2,12,2z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S20.05,20.5,19.5,20.5z"></path></svg> , some more text. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_icon-octicon.xml�������������������������������0000664�0000000�0000000�00000001515�14460462715�0026272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> A coloured icon: <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.0em" height="1.0em" class="sd-octicon sd-octicon-report sd-text-info" viewBox="0 0 16 16" aria-hidden="true"><path fill-rule="evenodd" d="M1.75 1.5a.25.25 0 00-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 01.75.75v2.19l2.72-2.72a.75.75 0 01.53-.22h6.5a.25.25 0 00.25-.25v-9.5a.25.25 0 00-.25-.25H1.75zM0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0114.25 13H8.06l-2.573 2.573A1.457 1.457 0 013 14.543V13H1.75A1.75 1.75 0 010 11.25v-9.5zM9 9a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path></svg> , some more text. �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_tab-basic.xml����������������������������������0000664�0000000�0000000�00000001561�14460462715�0025534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <sd_tab_input checked="True" id="sd-tab-item-0" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-0"> Label1 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 1 <sd_tab_input checked="False" id="sd-tab-item-1" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-1"> Label2 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 2 �����������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_tab-code-set.xml�������������������������������0000664�0000000�0000000�00000002206�14460462715�0026153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <sd_tab_input checked="True" id="sd-tab-item-0" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-0" sync_id="tabcode-python"> PYTHON <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <literal_block force="False" highlight_args="{'linenostart': 1}" language="python" linenos="False" source="snippet.py" xml:space="preserve"> a = 1 <sd_tab_input checked="False" id="sd-tab-item-1" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-1" sync_id="tabcode-javascript"> JAVASCRIPT <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <literal_block force="False" highlight_args="{}" language="javascript" linenos="False" xml:space="preserve"> a = 1; ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_tab-options.xml��������������������������������0000664�0000000�0000000�00000001546�14460462715�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set class-set" design_component="tab-set" is_div="True"> <sd_tab_input checked="True" id="sd-tab-item-0" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label class-label" ids="target" input_id="sd-tab-item-0"> Label <container classes="sd-tab-content class-content" design_component="tab-content" is_div="True"> <paragraph> Content <paragraph> <reference internal="True" refid="target"> <inline classes="std std-ref"> Label , <reference internal="True" refid="target"> <inline classes="std std-ref"> text ����������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_post_tab-sync.xml�����������������������������������0000664�0000000�0000000�00000003264�14460462715�0025431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <sd_tab_input checked="True" id="sd-tab-item-0" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-0" sync_id="key1"> Label1 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 1 <sd_tab_input checked="False" id="sd-tab-item-1" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-1" sync_id="key2"> Label2 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 2 <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <sd_tab_input checked="True" id="sd-tab-item-2" set_id="sd-tab-set-1" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-2" sync_id="key1"> Label1 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 1 <sd_tab_input checked="False" id="sd-tab-item-3" set_id="sd-tab-set-1" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-3" sync_id="key2"> Label2 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 2 ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_article-info.xml��������������������������������0000664�0000000�0000000�00000006017�14460462715�0026065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-p-0 sd-mt-2 sd-mb-4 sd-p-2 sd-outline-muted sd-rounded-1" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-gx-2 sd-gy-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <reference refuri="https://executablebooks.org/"> <image alt="" candidates="{'*': 'images/ebp-logo.png'}" classes="sd-avatar-sm sd-outline-muted" uri="images/ebp-logo.png"> <container classes="sd-col sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <container classes="sd-container-fluid sd-sphinx-override" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-3 sd-row-cols-md-3 sd-row-cols-lg-3 sd-gx-3 sd-gy-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <paragraph classes="sd-p-0 sd-m-0"> Executable Books <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <paragraph classes="sd-p-0 sd-m-0"> <raw classes="sd-pr-2" format="html" xml:space="preserve"> <svg version="1.1" width="16.0px" height="16.0px" class="sd-octicon sd-octicon-calendar" viewBox="0 0 16 16" aria-hidden="true"><path fill-rule="evenodd" d="M4.75 0a.75.75 0 01.75.75V2h5V.75a.75.75 0 011.5 0V2h1.25c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0113.25 16H2.75A1.75 1.75 0 011 14.25V3.75C1 2.784 1.784 2 2.75 2H4V.75A.75.75 0 014.75 0zm0 3.5h8.5a.25.25 0 01.25.25V6h-11V3.75a.25.25 0 01.25-.25h2zm-2.25 4v6.75c0 .138.112.25.25.25h10.5a.25.25 0 00.25-.25V7.5h-11z"></path></svg> Jul 24, 2021 <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <paragraph classes="sd-p-0 sd-m-0"> <raw classes="sd-pr-2" format="html" xml:space="preserve"> <svg version="1.1" width="16.0px" height="16.0px" class="sd-octicon sd-octicon-clock" viewBox="0 0 16 16" aria-hidden="true"><path fill-rule="evenodd" d="M1.5 8a6.5 6.5 0 1113 0 6.5 6.5 0 01-13 0zM8 0a8 8 0 100 16A8 8 0 008 0zm.5 4.75a.75.75 0 00-1.5 0v3.5a.75.75 0 00.471.696l2.5 1a.75.75 0 00.557-1.392L8.5 7.742V4.75z"></path></svg> 5 min read �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_badge-basic.xml���������������������������������0000664�0000000�0000000�00000004473�14460462715�0025636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> <inline classes="sd-sphinx-override sd-badge"> plain badge <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-primary sd-bg-text-primary"> primary , <inline classes="sd-sphinx-override sd-badge sd-outline-primary sd-text-primary"> primary-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-secondary sd-bg-text-secondary"> secondary , <inline classes="sd-sphinx-override sd-badge sd-outline-secondary sd-text-secondary"> secondary-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-success sd-bg-text-success"> success , <inline classes="sd-sphinx-override sd-badge sd-outline-success sd-text-success"> success-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-info sd-bg-text-info"> info , <inline classes="sd-sphinx-override sd-badge sd-outline-info sd-text-info"> info-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-warning sd-bg-text-warning"> warning , <inline classes="sd-sphinx-override sd-badge sd-outline-warning sd-text-warning"> warning-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-danger sd-bg-text-danger"> danger , <inline classes="sd-sphinx-override sd-badge sd-outline-danger sd-text-danger"> danger-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-light sd-bg-text-light"> light , <inline classes="sd-sphinx-override sd-badge sd-outline-light sd-text-light"> light-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-dark sd-bg-text-dark"> dark , <inline classes="sd-sphinx-override sd-badge sd-outline-dark sd-text-dark"> dark-line �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_badge-link.xml����������������������������������0000664�0000000�0000000�00000001011�14460462715�0025473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> <reference classes="sd-sphinx-override sd-badge sd-bg-primary sd-bg-text-primary" refuri="https://example.com"> <inline> https://example.com <paragraph> <reference classes="sd-sphinx-override sd-badge sd-outline-primary sd-text-primary" refuri="https://example.com"> <inline> explicit title �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_button-link.xml���������������������������������0000664�0000000�0000000�00000002202�14460462715�0025747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap" refuri="https://example.com"> <inline> https://example.com <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap" refuri="https://example.com"> <inline> Button text <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap sd-btn-primary sd-shadow-sm" refuri="https://example.com"> <inline> https://example.com <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap sd-btn-outline-primary" refuri="https://example.com"> <inline> https://example.com <paragraph> <inline classes="sd-d-grid"> <reference classes="sd-sphinx-override sd-btn sd-text-wrap sd-btn-secondary" refuri="https://example.com"> <inline> https://example.com ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_card-basic.xml����������������������������������0000664�0000000�0000000�00000001120�14460462715�0025467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Card Title <paragraph classes="sd-card-text"> Card content ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_card-carousel.xml�������������������������������0000664�0000000�0000000�00000005673�14460462715�0026244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-sphinx-override sd-cards-carousel sd-card-cols-2" design_component="card-carousel" is_div="True"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 1 <paragraph classes="sd-card-text"> content <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 2 <paragraph classes="sd-card-text"> Longer <paragraph classes="sd-card-text"> content <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 3 <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 4 <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 5 <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 6 ���������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_card-head-foot.xml������������������������������0000664�0000000�0000000�00000001650�14460462715�0026264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-header" design_component="card-header" is_div="True"> <paragraph classes="sd-card-text"> Header <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Card Title <paragraph classes="sd-card-text"> Card content <container classes="sd-card-footer" design_component="card-footer" is_div="True"> <paragraph classes="sd-card-text"> Footer ����������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_card-images.xml���������������������������������0000664�0000000�0000000�00000007374�14460462715�0025674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-3 sd-row-cols-md-3 sd-row-cols-lg-4" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-text-black" design_component="card" is_div="True"> <image alt="my text" candidates="{'*': 'images/particle_background.jpg'}" classes="sd-card-img" uri="images/particle_background.jpg"> <container classes="sd-card-img-overlay" design_component="card-overlay" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title <paragraph classes="sd-card-text"> Text <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <image alt="" candidates="{'*': 'images/particle_background.jpg'}" classes="sd-card-img-top" uri="images/particle_background.jpg"> <container classes="sd-card-header" design_component="card-header" is_div="True"> <paragraph classes="sd-card-text"> Header <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title <paragraph classes="sd-card-text"> Content <container classes="sd-card-footer" design_component="card-footer" is_div="True"> <paragraph classes="sd-card-text"> Footer <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-header" design_component="card-header" is_div="True"> <paragraph classes="sd-card-text"> Header <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title <paragraph classes="sd-card-text"> Content <container classes="sd-card-footer" design_component="card-footer" is_div="True"> <paragraph classes="sd-card-text"> Footer <image alt="" candidates="{'*': 'images/particle_background.jpg'}" classes="sd-card-img-bottom" uri="images/particle_background.jpg"> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_card-link.xml�����������������������������������0000664�0000000�0000000�00000004022�14460462715�0025347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <target refid="cards-clickable"> <section ids="cards-clickable id1" names="cards\ clickable cards-clickable"> <title> Cards Clickable <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Clickable Card (external) <paragraph classes="sd-card-text"> The entire card can be clicked to navigate to <reference refuri="https://example.com"> https://example.com . <PassthroughTextElement> <reference classes="sd-stretched-link" refuri="https://example.com"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Clickable Card (internal) <paragraph classes="sd-card-text"> The entire card can be clicked to navigate to the <literal> cards reference target. <PassthroughTextElement> <pending_xref classes="sd-stretched-link" refdoc="index" refdomain="std" refexplicit="True" reftarget="cards-clickable" reftype="ref" refwarn="True"> <inline> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_card-title-link.xml�����������������������������0000664�0000000�0000000�00000002006�14460462715�0026466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <target refid="target"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" ids="target" is_div="True" names="target"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Card Title <reference refuri="https://example.com"> https://example.com <pending_xref refdoc="index" refdomain="std" refexplicit="True" reftarget="target" reftype="ref" refwarn="True"> <inline classes="xref std std-ref"> link <paragraph classes="sd-card-text"> Card content ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_div-basic.xml�����������������������������������0000664�0000000�0000000�00000000430�14460462715�0025343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-text-center sd-font-italic sd-text-primary" design_component="div" is_div="True"> <paragraph> Some CSS styled text ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_dropdown-basic.xml������������������������������0000664�0000000�0000000�00000001641�14460462715�0026422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container body_classes="" container_classes="sd-mb-3" design_component="dropdown" has_title="False" icon="True" is_div="True" opened="False" title_classes="" type="dropdown"> <paragraph> Dropdown content <container body_classes="" container_classes="sd-mb-3" design_component="dropdown" has_title="True" icon="True" is_div="True" opened="False" title_classes="" type="dropdown"> <rubric> Dropdown title <paragraph> Dropdown content <container body_classes="" container_classes="sd-mb-3" design_component="dropdown" has_title="True" icon="True" is_div="True" opened="True" title_classes="" type="dropdown"> <rubric> Open dropdown <paragraph> Dropdown content �����������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_dropdown-options.xml����������������������������0000664�0000000�0000000�00000001633�14460462715�0027035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container body_classes="class-body" container_classes="sd-m-1 class-container" design_component="dropdown" has_title="True" icon="alert" is_div="True" opened="False" title_classes="class-title sd-bg-info sd-bg-text-info" type="dropdown"> <rubric ids="target" names="target"> Title <paragraph> Dropdown content <paragraph> <pending_xref refdoc="index" refdomain="std" refexplicit="False" reftarget="target" reftype="ref" refwarn="True"> <inline classes="xref std std-ref"> target , <pending_xref refdoc="index" refdomain="std" refexplicit="True" reftarget="target" reftype="ref" refwarn="True"> <inline classes="xref std std-ref"> text �����������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_grid-basic.xml����������������������������������0000664�0000000�0000000�00000002043�14460462715�0025510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4 sd-border-1" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-2 sd-row-cols-md-3 sd-row-cols-lg-4" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> A <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> B <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> C <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> D ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_grid-card-columns.xml���������������������������0000664�0000000�0000000�00000003526�14460462715�0027025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row sd-col-auto sd-col-xs-auto sd-col-sm-auto sd-col-md-auto sd-col-lg-auto" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row sd-col-12 sd-col-xs-12 sd-col-sm-6 sd-col-md-6 sd-col-lg-6" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> B <container classes="sd-col sd-d-flex-row sd-col-12 sd-col-xs-12 sd-col-sm-12 sd-col-md-12 sd-col-lg-12" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> C ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_grid-card.xml�����������������������������������0000664�0000000�0000000�00000003261�14460462715�0025343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title 1 <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title 2 <paragraph classes="sd-card-text"> B �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_grid-gutter.xml���������������������������������0000664�0000000�0000000�00000004702�14460462715�0025745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> B <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-3 sd-g-xs-3 sd-g-sm-3 sd-g-md-4 sd-g-lg-5" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> B ��������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_grid-nested.xml���������������������������������0000664�0000000�0000000�00000012300�14460462715�0025706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-1 sd-row-cols-lg-1 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 1.1 <paragraph classes="sd-card-text"> Multi-line <paragraph classes="sd-card-text"> content <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 1.2 <paragraph classes="sd-card-text"> Content <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-1 sd-row-cols-lg-1 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 2.1 <paragraph classes="sd-card-text"> Content <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 2.2 <paragraph classes="sd-card-text"> Content <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 2.3 <paragraph classes="sd-card-text"> Content ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_icon-fontawesome.xml����������������������������0000664�0000000�0000000�00000000424�14460462715�0026762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> An icon <fontawesome classes="fas fa-spinner sd-bg-primary sd-bg-text-primary" icon="spinner"> , some more text. ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_icon-material-design.xml������������������������0000664�0000000�0000000�00000022131�14460462715�0027477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <bullet_list bullet="-"> <list_item> <paragraph> A regular icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="2.0em" height="2.0em" class="sd-material-icon sd-material-icon-data_exploration" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none" height="24" width="24"></rect><path d="M12,2C6.48,2,2,6.48,2,12c0,1.33,0.26,2.61,0.74,3.77L8,10.5l3.3,2.78L14.58,10H13V8h5v5h-2v-1.58L11.41,16l-3.29-2.79 l-4.4,4.4C5.52,20.26,8.56,22,12,22h8c1.1,0,2-0.9,2-2v-8C22,6.48,17.52,2,12,2z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S20.05,20.5,19.5,20.5z"></path></svg> , some more text <list_item> <paragraph> A coloured regular icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><g><path d="M0,0h24v24H0V0z" fill="none"></path><path d="M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z"></path></g></svg> , some more text. <list_item> <paragraph> A coloured outline icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"></path></svg> , some more text. <list_item> <paragraph> A coloured sharp icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M19.44 12.99l-.01.02c.04-.33.08-.67.08-1.01 0-.34-.03-.66-.07-.99l.01.02 2.44-1.92-2.43-4.22-2.87 1.16.01.01c-.52-.4-1.09-.74-1.71-1h.01L14.44 2H9.57l-.44 3.07h.01c-.62.26-1.19.6-1.71 1l.01-.01-2.88-1.17-2.44 4.22 2.44 1.92.01-.02c-.04.33-.07.65-.07.99 0 .34.03.68.08 1.01l-.01-.02-2.1 1.65-.33.26 2.43 4.2 2.88-1.15-.02-.04c.53.41 1.1.75 1.73 1.01h-.03L9.58 22h4.85s.03-.18.06-.42l.38-2.65h-.01c.62-.26 1.2-.6 1.73-1.01l-.02.04 2.88 1.15 2.43-4.2s-.14-.12-.33-.26l-2.11-1.66zM12 15.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.5z"></path></svg> , some more text. <list_item> <paragraph> A coloured round icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none" height="24" width="24"></rect><path d="M19.5,12c0-0.23-0.01-0.45-0.03-0.68l1.86-1.41c0.4-0.3,0.51-0.86,0.26-1.3l-1.87-3.23c-0.25-0.44-0.79-0.62-1.25-0.42 l-2.15,0.91c-0.37-0.26-0.76-0.49-1.17-0.68l-0.29-2.31C14.8,2.38,14.37,2,13.87,2h-3.73C9.63,2,9.2,2.38,9.14,2.88L8.85,5.19 c-0.41,0.19-0.8,0.42-1.17,0.68L5.53,4.96c-0.46-0.2-1-0.02-1.25,0.42L2.41,8.62c-0.25,0.44-0.14,0.99,0.26,1.3l1.86,1.41 C4.51,11.55,4.5,11.77,4.5,12s0.01,0.45,0.03,0.68l-1.86,1.41c-0.4,0.3-0.51,0.86-0.26,1.3l1.87,3.23c0.25,0.44,0.79,0.62,1.25,0.42 l2.15-0.91c0.37,0.26,0.76,0.49,1.17,0.68l0.29,2.31C9.2,21.62,9.63,22,10.13,22h3.73c0.5,0,0.93-0.38,0.99-0.88l0.29-2.31 c0.41-0.19,0.8-0.42,1.17-0.68l2.15,0.91c0.46,0.2,1,0.02,1.25-0.42l1.87-3.23c0.25-0.44,0.14-0.99-0.26-1.3l-1.86-1.41 C19.49,12.45,19.5,12.23,19.5,12z M12.04,15.5c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S13.97,15.5,12.04,15.5z"></path></svg> , some more text. <list_item> <paragraph> A coloured two-tone icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M19.28 8.6l-.7-1.21-1.27.51-1.06.43-.91-.7c-.39-.3-.8-.54-1.23-.71l-1.06-.43-.16-1.13L12.7 4h-1.4l-.19 1.35-.16 1.13-1.06.44c-.41.17-.82.41-1.25.73l-.9.68-1.05-.42-1.27-.52-.7 1.21 1.08.84.89.7-.14 1.13c-.03.3-.05.53-.05.73s.02.43.05.73l.14 1.13-.89.7-1.08.84.7 1.21 1.27-.51 1.06-.43.91.7c.39.3.8.54 1.23.71l1.06.43.16 1.13.19 1.36h1.39l.19-1.35.16-1.13 1.06-.43c.41-.17.82-.41 1.25-.73l.9-.68 1.04.42 1.27.51.7-1.21-1.08-.84-.89-.7.14-1.13c.04-.31.05-.52.05-.73 0-.21-.02-.43-.05-.73l-.14-1.13.89-.7 1.1-.84zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" opacity=".3"></path><path d="M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"></path></svg> , some more text. <list_item> <paragraph> A fixed size icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="24.0px" height="24.0px" class="sd-material-icon sd-material-icon-data_exploration" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none" height="24" width="24"></rect><path d="M12,2C6.48,2,2,6.48,2,12c0,1.33,0.26,2.61,0.74,3.77L8,10.5l3.3,2.78L14.58,10H13V8h5v5h-2v-1.58L11.41,16l-3.29-2.79 l-4.4,4.4C5.52,20.26,8.56,22,12,22h8c1.1,0,2-0.9,2-2v-8C22,6.48,17.52,2,12,2z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S20.05,20.5,19.5,20.5z"></path></svg> , some more text. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_icon-octicon.xml��������������������������������0000664�0000000�0000000�00000001515�14460462715�0026073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> A coloured icon: <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.0em" height="1.0em" class="sd-octicon sd-octicon-report sd-text-info" viewBox="0 0 16 16" aria-hidden="true"><path fill-rule="evenodd" d="M1.75 1.5a.25.25 0 00-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 01.75.75v2.19l2.72-2.72a.75.75 0 01.53-.22h6.5a.25.25 0 00.25-.25v-9.5a.25.25 0 00-.25-.25H1.75zM0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0114.25 13H8.06l-2.573 2.573A1.457 1.457 0 013 14.543V13H1.75A1.75 1.75 0 010 11.25v-9.5zM9 9a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path></svg> , some more text. �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_tab-basic.xml�����������������������������������0000664�0000000�0000000�00000001554�14460462715�0025337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <container classes="sd-tab-item" design_component="tab-item" is_div="True" selected="False"> <rubric classes="sd-tab-label"> Label1 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 1 <container classes="sd-tab-item" design_component="tab-item" is_div="True" selected="False"> <rubric classes="sd-tab-label"> Label2 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 2 ����������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_tab-code-set.xml��������������������������������0000664�0000000�0000000�00000002077�14460462715�0025762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <container classes="sd-tab-item" design_component="tab-item" is_div="True"> <rubric classes="sd-tab-label" sync_id="tabcode-python"> PYTHON <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <literal_block force="False" highlight_args="{'linenostart': 1}" language="python" source="snippet.py" xml:space="preserve"> a = 1 <container classes="sd-tab-item" design_component="tab-item" is_div="True"> <rubric classes="sd-tab-label" sync_id="tabcode-javascript"> JAVASCRIPT <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <literal_block force="False" highlight_args="{}" language="javascript" xml:space="preserve"> a = 1; �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_tab-options.xml���������������������������������0000664�0000000�0000000�00000002032�14460462715�0025741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set class-set" design_component="tab-set" is_div="True"> <container classes="sd-tab-item class-container" design_component="tab-item" is_div="True" selected="True"> <rubric classes="sd-tab-label class-label" ids="target" names="target"> Label <container classes="sd-tab-content class-content" design_component="tab-content" is_div="True"> <paragraph> Content <paragraph> <pending_xref refdoc="index" refdomain="std" refexplicit="False" reftarget="target" reftype="ref" refwarn="True"> <inline classes="xref std std-ref"> target , <pending_xref refdoc="index" refdomain="std" refexplicit="True" reftarget="target" reftype="ref" refwarn="True"> <inline classes="xref std std-ref"> text ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tests/test_snippets/snippet_pre_tab-sync.xml������������������������������������0000664�0000000�0000000�00000003252�14460462715�0025227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <container classes="sd-tab-item" design_component="tab-item" is_div="True" selected="False"> <rubric classes="sd-tab-label" sync_id="key1"> Label1 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 1 <container classes="sd-tab-item" design_component="tab-item" is_div="True" selected="False"> <rubric classes="sd-tab-label" sync_id="key2"> Label2 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 2 <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <container classes="sd-tab-item" design_component="tab-item" is_div="True" selected="False"> <rubric classes="sd-tab-label" sync_id="key1"> Label1 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 1 <container classes="sd-tab-item" design_component="tab-item" is_div="True" selected="False"> <rubric classes="sd-tab-label" sync_id="key2"> Label2 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 2 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.5.0/tox.ini�������������������������������������������������������������������������0000664�0000000�0000000�00000003776�14460462715�0015635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# To use tox, see https://tox.readthedocs.io # Simply pip or conda install tox # If you use conda, you may also want to install tox-conda # then run `tox` or `tox -- {pytest args}` # run in parallel using `tox -p` [tox] envlist = py38 [testenv] usedevelop = true [testenv:py{38,39,310,311}] description = Run unit tests with this Python version extras = testing commands = pytest {posargs} [testenv:docs-{update,clean}-{alabaster,rtd,pydata,sbt,furo}] description = clean: Run documentation build for this theme (removing existing builds) update: Run documentation build for this theme (reusing existing builds) extras = rtd rtd: theme_rtd pydata: theme_pydata sbt: theme_sbt furo: theme_furo whitelist_externals = clean: rm echo setenv = update: SKIP_APIDOC = true alabaster: SPHINX_THEME = alabaster rtd: SPHINX_THEME = sphinx_rtd_theme pydata: SPHINX_THEME = pydata_sphinx_theme sbt: SPHINX_THEME = sphinx_book_theme furo: SPHINX_THEME = furo commands = clean: rm -rf docs/_build/{posargs:html} sphinx-build -nW --keep-going -b {posargs:html} docs/ docs/_build/{posargs:html} commands_post = echo "open docs/_build/{posargs:html}/index.html" [testenv:docs-live-{alabaster,rtd,pydata,sbt,furo}] description = Start documentation autobuild for this theme extras = rtd rtd: theme_rtd pydata: theme_pydata sbt: theme_sbt furo: theme_furo deps = pre-commit sphinx-autobuild setenv = alabaster: SPHINX_THEME = alabaster rtd: SPHINX_THEME = sphinx_rtd_theme pydata: SPHINX_THEME = pydata_sphinx_theme sbt: SPHINX_THEME = sphinx_book_theme furo: SPHINX_THEME = furo commands = sphinx-autobuild \ --watch sphinx_design \ --watch style \ --pre-build "npm run css" \ --re-ignore sphinx_design/compiled/.* \ --re-ignore docs/_build/.* \ --port 0 --open-browser \ -n -b {posargs:html} docs/ docs/_build/{posargs:html} [flake8] max-line-length = 100 extend-ignore = E203 ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������