From 36cb898085474fed29a8f4eedcda28a81f768eef Mon Sep 17 00:00:00 2001 From: 2bndy5 <2bndy5@gmail.com> Date: Fri, 12 Nov 2021 17:10:39 -0800 Subject: [PATCH 01/12] support material design icons --- MANIFEST.in | 6 + docs/badges_buttons.md | 35 +- docs/snippets/myst/icon-material-design.txt | 5 + docs/snippets/rst/icon-material-design.txt | 5 + sphinx_design/compiled/material-icons_LICENSE | 13 + sphinx_design/compiled/material_outlined.json | 22838 +++++++++++++++ sphinx_design/compiled/material_regular.json | 23086 +++++++++++++++ sphinx_design/compiled/material_round.json | 22898 +++++++++++++++ sphinx_design/compiled/material_sharp.json | 22898 +++++++++++++++ sphinx_design/compiled/material_twotone.json | 23354 ++++++++++++++++ sphinx_design/compiled/style.min.css | 2 +- sphinx_design/icons.py | 96 + style/_icons.scss | 3 +- 13 files changed, 115235 insertions(+), 4 deletions(-) create mode 100644 docs/snippets/myst/icon-material-design.txt create mode 100644 docs/snippets/rst/icon-material-design.txt create mode 100644 sphinx_design/compiled/material-icons_LICENSE create mode 100644 sphinx_design/compiled/material_outlined.json create mode 100644 sphinx_design/compiled/material_regular.json create mode 100644 sphinx_design/compiled/material_round.json create mode 100644 sphinx_design/compiled/material_sharp.json create mode 100644 sphinx_design/compiled/material_twotone.json diff --git a/MANIFEST.in b/MANIFEST.in index d459a78..f0a777a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -22,3 +22,9 @@ include sphinx_design/compiled/style.min.css include sphinx_design/compiled/sd_tabs.js include sphinx_design/compiled/octicon_LICENSE include sphinx_design/compiled/octicons.json +include sphinx_design/compiled/material_outlined.json +include sphinx_design/compiled/material_regular.json +include sphinx_design/compiled/material_round.json +include sphinx_design/compiled/material_sharp.json +include sphinx_design/compiled/material_twotone.json +include sphinx_design/compiled/material-icons_LICENSE diff --git a/docs/badges_buttons.md b/docs/badges_buttons.md index ac748b5..e84d444 100644 --- a/docs/badges_buttons.md +++ b/docs/badges_buttons.md @@ -175,14 +175,16 @@ class ## Inline Icons -Inline icon roles are available for both the [GitHub octicon](https://octicons-git-v2.primer.now.sh/octicons/) or [FontAwesome](https://fontawesome.com/icons?d=gallery&m=free) libraries. +Inline icon roles are available for the [GitHub octicon](https://octicons-git-v2.primer.now.sh/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 are added as SVG's directly into the page with the `octicon` role. +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} @@ -201,6 +203,35 @@ A coloured icon: {octicon}`report;1em;sd-text-info`, some more text. ``` ```` +### 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 [Materia Design Icons' showcase](https://fonts.google.com/icons) hosted by Google. + +- A coloured icon: {material-regular}`settings;3em;sd-text-success`, some more text. +- A coloured icon: {material-outlined}`settings;3em;sd-text-success`, some more text. +- A coloured icon: {material-sharp}`settings;3em;sd-text-success`, some more text. +- A coloured icon: {material-round}`settings;3em;sd-text-success`, some more text. +- A coloured 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.: diff --git a/docs/snippets/myst/icon-material-design.txt b/docs/snippets/myst/icon-material-design.txt new file mode 100644 index 0000000..e1d2b95 --- /dev/null +++ b/docs/snippets/myst/icon-material-design.txt @@ -0,0 +1,5 @@ +- A coloured icon: {material-regular}`settings;3em;sd-text-success`, some more text. +- A coloured icon: {material-outlined}`settings;3em;sd-text-success`, some more text. +- A coloured icon: {material-sharp}`settings;3em;sd-text-success`, some more text. +- A coloured icon: {material-round}`settings;3em;sd-text-success`, some more text. +- A coloured icon: {material-twotone}`settings;3em;sd-text-success`, some more text. diff --git a/docs/snippets/rst/icon-material-design.txt b/docs/snippets/rst/icon-material-design.txt new file mode 100644 index 0000000..bcb49d7 --- /dev/null +++ b/docs/snippets/rst/icon-material-design.txt @@ -0,0 +1,5 @@ +- A coloured icon: :material-regular:`settings;3em;sd-text-success`, some more text. +- A coloured icon: :material-outlined:`settings;3em;sd-text-success`, some more text. +- A coloured icon: :material-sharp:`settings;3em;sd-text-success`, some more text. +- A coloured icon: :material-round:`settings;3em;sd-text-success`, some more text. +- A coloured icon: :material-twotone:`settings;3em;sd-text-success`, some more text. diff --git a/sphinx_design/compiled/material-icons_LICENSE b/sphinx_design/compiled/material-icons_LICENSE new file mode 100644 index 0000000..cdf26ce --- /dev/null +++ b/sphinx_design/compiled/material-icons_LICENSE @@ -0,0 +1,13 @@ +Copyright 2021 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. diff --git a/sphinx_design/compiled/material_outlined.json b/sphinx_design/compiled/material_outlined.json new file mode 100644 index 0000000..4199232 --- /dev/null +++ b/sphinx_design/compiled/material_outlined.json @@ -0,0 +1,22838 @@ +{ + "3d_rotation": { + "name": "3d_rotation", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessibility": { + "name": "accessibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessibility_new": { + "name": "accessibility_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessible": { + "name": "accessible", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessible_forward": { + "name": "accessible_forward", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_balance": { + "name": "account_balance", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_balance_wallet": { + "name": "account_balance_wallet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_box": { + "name": "account_box", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_circle": { + "name": "account_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "addchart": { + "name": "addchart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_shopping_cart": { + "name": "add_shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_task": { + "name": "add_task", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_drive": { + "name": "add_to_drive", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "admin_panel_settings": { + "name": "admin_panel_settings", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ads_click": { + "name": "ads_click", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm": { + "name": "alarm", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_add": { + "name": "alarm_add", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_off": { + "name": "alarm_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_on": { + "name": "alarm_on", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_inbox": { + "name": "all_inbox", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_out": { + "name": "all_out", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "analytics": { + "name": "analytics", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "anchor": { + "name": "anchor", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "android": { + "name": "android", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "announcement": { + "name": "announcement", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "api": { + "name": "api", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_blocking": { + "name": "app_blocking", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_circle_down": { + "name": "arrow_circle_down", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_circle_up": { + "name": "arrow_circle_up", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right_alt": { + "name": "arrow_right_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "article": { + "name": "article", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "aspect_ratio": { + "name": "aspect_ratio", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assessment": { + "name": "assessment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment": { + "name": "assignment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_ind": { + "name": "assignment_ind", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_late": { + "name": "assignment_late", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_return": { + "name": "assignment_return", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_returned": { + "name": "assignment_returned", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_turned_in": { + "name": "assignment_turned_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "autorenew": { + "name": "autorenew", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backup": { + "name": "backup", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backup_table": { + "name": "backup_table", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "batch_prediction": { + "name": "batch_prediction", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "book": { + "name": "book", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark": { + "name": "bookmark", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmarks": { + "name": "bookmarks", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_add": { + "name": "bookmark_add", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_added": { + "name": "bookmark_added", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_border": { + "name": "bookmark_border", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_remove": { + "name": "bookmark_remove", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "book_online": { + "name": "book_online", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bug_report": { + "name": "bug_report", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "build": { + "name": "build", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "build_circle": { + "name": "build_circle", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cached": { + "name": "cached", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_today": { + "name": "calendar_today", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_day": { + "name": "calendar_view_day", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_month": { + "name": "calendar_view_month", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_week": { + "name": "calendar_view_week", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_enhance": { + "name": "camera_enhance", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel_schedule_send": { + "name": "cancel_schedule_send", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "card_giftcard": { + "name": "card_giftcard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "card_membership": { + "name": "card_membership", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "card_travel": { + "name": "card_travel", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "change_history": { + "name": "change_history", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_circle": { + "name": "check_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_circle_outline": { + "name": "check_circle_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chrome_reader_mode": { + "name": "chrome_reader_mode", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "circle_notifications": { + "name": "circle_notifications", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "class": { + "name": "class", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close_fullscreen": { + "name": "close_fullscreen", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "code": { + "name": "code", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "code_off": { + "name": "code_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "comment_bank": { + "name": "comment_bank", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "commute": { + "name": "commute", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compare_arrows": { + "name": "compare_arrows", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compress": { + "name": "compress", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contactless": { + "name": "contactless", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_page": { + "name": "contact_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_support": { + "name": "contact_support", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "copyright": { + "name": "copyright", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_card": { + "name": "credit_card", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_card_off": { + "name": "credit_card_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dangerous": { + "name": "dangerous", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dashboard": { + "name": "dashboard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dashboard_customize": { + "name": "dashboard_customize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_exploration": { + "name": "data_exploration", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "date_range": { + "name": "date_range", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete": { + "name": "delete", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_forever": { + "name": "delete_forever", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_outline": { + "name": "delete_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "description": { + "name": "description", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disabled_by_default": { + "name": "disabled_by_default", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disabled_visible": { + "name": "disabled_visible", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dns": { + "name": "dns", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done": { + "name": "done", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done_all": { + "name": "done_all", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done_outline": { + "name": "done_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "donut_large": { + "name": "donut_large", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "donut_small": { + "name": "donut_small", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drag_indicator": { + "name": "drag_indicator", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dynamic_form": { + "name": "dynamic_form", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "eco": { + "name": "eco", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_calendar": { + "name": "edit_calendar", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_off": { + "name": "edit_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "eject": { + "name": "eject", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "euro_symbol": { + "name": "euro_symbol", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event": { + "name": "event", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_seat": { + "name": "event_seat", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exit_to_app": { + "name": "exit_to_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand": { + "name": "expand", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explore": { + "name": "explore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explore_off": { + "name": "explore_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "extension": { + "name": "extension", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "extension_off": { + "name": "extension_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "face": { + "name": "face", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_unlock": { + "name": "face_unlock", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fact_check": { + "name": "fact_check", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "favorite": { + "name": "favorite", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "favorite_border": { + "name": "favorite_border", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "feedback": { + "name": "feedback", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_present": { + "name": "file_present", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_alt": { + "name": "filter_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "find_in_page": { + "name": "find_in_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "find_replace": { + "name": "find_replace", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fingerprint": { + "name": "fingerprint", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fit_screen": { + "name": "fit_screen", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flaky": { + "name": "flaky", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flight_land": { + "name": "flight_land", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flight_takeoff": { + "name": "flight_takeoff", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_to_back": { + "name": "flip_to_back", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_to_front": { + "name": "flip_to_front", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flutter_dash": { + "name": "flutter_dash", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "free_cancellation": { + "name": "free_cancellation", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "gavel": { + "name": "gavel", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "generating_tokens": { + "name": "generating_tokens", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "get_app": { + "name": "get_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gif": { + "name": "gif", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grade": { + "name": "grade", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grading": { + "name": "grading", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "group_work": { + "name": "group_work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "g_translate": { + "name": "g_translate", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help": { + "name": "help", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help_center": { + "name": "help_center", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help_outline": { + "name": "help_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hide_source": { + "name": "hide_source", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight_alt": { + "name": "highlight_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight_off": { + "name": "highlight_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "history": { + "name": "history", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "history_toggle_off": { + "name": "history_toggle_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home": { + "name": "home", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_split": { + "name": "horizontal_split", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hotel_class": { + "name": "hotel_class", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_disabled": { + "name": "hourglass_disabled", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_empty": { + "name": "hourglass_empty", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_full": { + "name": "hourglass_full", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "http": { + "name": "http", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "https": { + "name": "https", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "important_devices": { + "name": "important_devices", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "info": { + "name": "info", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "input": { + "name": "input", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "integration_instructions": { + "name": "integration_instructions", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "invert_colors": { + "name": "invert_colors", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "label": { + "name": "label", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_important": { + "name": "label_important", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_off": { + "name": "label_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "language": { + "name": "language", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "launch": { + "name": "launch", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leaderboard": { + "name": "leaderboard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lightbulb": { + "name": "lightbulb", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "line_style": { + "name": "line_style", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "line_weight": { + "name": "line_weight", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "list": { + "name": "list", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock": { + "name": "lock", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_clock": { + "name": "lock_clock", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_open": { + "name": "lock_open", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "login": { + "name": "login", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "logout": { + "name": "logout", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loyalty": { + "name": "loyalty", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "manage_accounts": { + "name": "manage_accounts", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "markunread_mailbox": { + "name": "markunread_mailbox", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_as_unread": { + "name": "mark_as_unread", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "maximize": { + "name": "maximize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mediation": { + "name": "mediation", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "minimize": { + "name": "minimize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "model_training": { + "name": "model_training", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "new_label": { + "name": "new_label", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "next_plan": { + "name": "next_plan", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlight_round": { + "name": "nightlight_round", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note_add": { + "name": "note_add", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "not_accessible": { + "name": "not_accessible", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "not_started": { + "name": "not_started", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_accounts": { + "name": "no_accounts", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_bolt": { + "name": "offline_bolt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_pin": { + "name": "offline_pin", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "online_prediction": { + "name": "online_prediction", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "opacity": { + "name": "opacity", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_browser": { + "name": "open_in_browser", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_full": { + "name": "open_in_full", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_new": { + "name": "open_in_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_new_off": { + "name": "open_in_new_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "open_with": { + "name": "open_with", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbond": { + "name": "outbond", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbound": { + "name": "outbound", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbox": { + "name": "outbox", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "outlet": { + "name": "outlet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pageview": { + "name": "pageview", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "paid": { + "name": "paid", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pan_tool": { + "name": "pan_tool", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payment": { + "name": "payment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pending": { + "name": "pending", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pending_actions": { + "name": "pending_actions", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_camera_mic": { + "name": "perm_camera_mic", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_contact_calendar": { + "name": "perm_contact_calendar", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_data_setting": { + "name": "perm_data_setting", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_device_information": { + "name": "perm_device_information", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_identity": { + "name": "perm_identity", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_media": { + "name": "perm_media", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_phone_msg": { + "name": "perm_phone_msg", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_scan_wifi": { + "name": "perm_scan_wifi", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pets": { + "name": "pets", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_in_picture": { + "name": "picture_in_picture", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_in_picture_alt": { + "name": "picture_in_picture_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_end": { + "name": "pin_end", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_invoke": { + "name": "pin_invoke", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "plagiarism": { + "name": "plagiarism", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_for_work": { + "name": "play_for_work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "polymer": { + "name": "polymer", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_settings_new": { + "name": "power_settings_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pregnant_woman": { + "name": "pregnant_woman", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "preview": { + "name": "preview", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "print": { + "name": "print", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "privacy_tip": { + "name": "privacy_tip", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "private_connectivity": { + "name": "private_connectivity", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "production_quantity_limits": { + "name": "production_quantity_limits", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "published_with_changes": { + "name": "published_with_changes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "query_builder": { + "name": "query_builder", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "question_answer": { + "name": "question_answer", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "quickreply": { + "name": "quickreply", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "receipt": { + "name": "receipt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "record_voice_over": { + "name": "record_voice_over", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "redeem": { + "name": "redeem", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_done": { + "name": "remove_done", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_shopping_cart": { + "name": "remove_shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reorder": { + "name": "reorder", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_problem": { + "name": "report_problem", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_page": { + "name": "request_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore": { + "name": "restore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore_from_trash": { + "name": "restore_from_trash", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore_page": { + "name": "restore_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room": { + "name": "room", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rounded_corner": { + "name": "rounded_corner", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rowing": { + "name": "rowing", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule": { + "name": "rule", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "saved_search": { + "name": "saved_search", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "savings": { + "name": "savings", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "schedule": { + "name": "schedule", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "schedule_send": { + "name": "schedule_send", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "search": { + "name": "search", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "search_off": { + "name": "search_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "segment": { + "name": "segment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send_and_archive": { + "name": "send_and_archive", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensors": { + "name": "sensors", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensors_off": { + "name": "sensors_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "settings": { + "name": "settings", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_accessibility": { + "name": "settings_accessibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_applications": { + "name": "settings_applications", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_backup_restore": { + "name": "settings_backup_restore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_bluetooth": { + "name": "settings_bluetooth", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_brightness": { + "name": "settings_brightness", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_cell": { + "name": "settings_cell", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_ethernet": { + "name": "settings_ethernet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_antenna": { + "name": "settings_input_antenna", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_component": { + "name": "settings_input_component", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_composite": { + "name": "settings_input_composite", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_hdmi": { + "name": "settings_input_hdmi", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_svideo": { + "name": "settings_input_svideo", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_overscan": { + "name": "settings_overscan", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_phone": { + "name": "settings_phone", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_power": { + "name": "settings_power", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_remote": { + "name": "settings_remote", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_voice": { + "name": "settings_voice", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shop": { + "name": "shop", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_bag": { + "name": "shopping_bag", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_basket": { + "name": "shopping_basket", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_cart": { + "name": "shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shop_2": { + "name": "shop_2", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "shop_two": { + "name": "shop_two", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_button": { + "name": "smart_button", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "source": { + "name": "source", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "space_dashboard": { + "name": "space_dashboard", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_notes": { + "name": "speaker_notes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_notes_off": { + "name": "speaker_notes_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "spellcheck": { + "name": "spellcheck", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stars": { + "name": "stars", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_rate": { + "name": "star_rate", + "keywords": [ + "action" + ], + "heights": { + "18": { + "width": 18, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sticky_note_2": { + "name": "sticky_note_2", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "store": { + "name": "store", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subject": { + "name": "subject", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subtitles_off": { + "name": "subtitles_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "supervised_user_circle": { + "name": "supervised_user_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "supervisor_account": { + "name": "supervisor_account", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "support": { + "name": "support", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_horiz": { + "name": "swap_horiz", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_horizontal_circle": { + "name": "swap_horizontal_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_vert": { + "name": "swap_vert", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_vertical_circle": { + "name": "swap_vertical_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swipe": { + "name": "swipe", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_alt": { + "name": "sync_alt", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update_alt": { + "name": "system_update_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tab": { + "name": "tab", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "table_view": { + "name": "table_view", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tab_unselected": { + "name": "tab_unselected", + "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": "" + } + } + }, + "text_rotate_vertical": { + "name": "text_rotate_vertical", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_angledown": { + "name": "text_rotation_angledown", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_angleup": { + "name": "text_rotation_angleup", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_down": { + "name": "text_rotation_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_none": { + "name": "text_rotation_none", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "theaters": { + "name": "theaters", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumbs_up_down": { + "name": "thumbs_up_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down": { + "name": "thumb_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down_off_alt": { + "name": "thumb_down_off_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up": { + "name": "thumb_up", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up_off_alt": { + "name": "thumb_up_off_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timeline": { + "name": "timeline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tips_and_updates": { + "name": "tips_and_updates", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "toc": { + "name": "toc", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "today": { + "name": "today", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toll": { + "name": "toll", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "touch_app": { + "name": "touch_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tour": { + "name": "tour", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "track_changes": { + "name": "track_changes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "translate": { + "name": "translate", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_down": { + "name": "trending_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_flat": { + "name": "trending_flat", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_up": { + "name": "trending_up", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "try": { + "name": "try", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "turned_in": { + "name": "turned_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "turned_in_not": { + "name": "turned_in_not", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unpublished": { + "name": "unpublished", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "update": { + "name": "update", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "update_disabled": { + "name": "update_disabled", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "upgrade": { + "name": "upgrade", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "verified": { + "name": "verified", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "verified_user": { + "name": "verified_user", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_split": { + "name": "vertical_split", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_agenda": { + "name": "view_agenda", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_array": { + "name": "view_array", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_carousel": { + "name": "view_carousel", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_column": { + "name": "view_column", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_day": { + "name": "view_day", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_headline": { + "name": "view_headline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_in_ar": { + "name": "view_in_ar", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_list": { + "name": "view_list", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_module": { + "name": "view_module", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_quilt": { + "name": "view_quilt", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_sidebar": { + "name": "view_sidebar", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_stream": { + "name": "view_stream", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_week": { + "name": "view_week", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "visibility": { + "name": "visibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "visibility_off": { + "name": "visibility_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_over_off": { + "name": "voice_over_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "watch_later": { + "name": "watch_later", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_protected_setup": { + "name": "wifi_protected_setup", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "work": { + "name": "work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "work_off": { + "name": "work_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "work_outline": { + "name": "work_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wysiwyg": { + "name": "wysiwyg", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "youtube_searched_for": { + "name": "youtube_searched_for", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_in": { + "name": "zoom_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_out": { + "name": "zoom_out", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alert": { + "name": "add_alert", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_delete": { + "name": "auto_delete", + "keywords": [ + "alert" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "error": { + "name": "error", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "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": "" + } + } + }, + "warning": { + "name": "warning", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "warning_amber": { + "name": "warning_amber", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "10k": { + "name": "10k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1k": { + "name": "1k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1k_plus": { + "name": "1k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2k": { + "name": "2k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2k_plus": { + "name": "2k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3k": { + "name": "3k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3k_plus": { + "name": "3k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4k": { + "name": "4k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4k_plus": { + "name": "4k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5g": { + "name": "5g", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "5k": { + "name": "5k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5k_plus": { + "name": "5k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6k": { + "name": "6k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6k_plus": { + "name": "6k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7k": { + "name": "7k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7k_plus": { + "name": "7k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8k": { + "name": "8k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8k_plus": { + "name": "8k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9k": { + "name": "9k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9k_plus": { + "name": "9k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_queue": { + "name": "add_to_queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airplay": { + "name": "airplay", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "album": { + "name": "album", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "art_track": { + "name": "art_track", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "av_timer": { + "name": "av_timer", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "branding_watermark": { + "name": "branding_watermark", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_to_action": { + "name": "call_to_action", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption": { + "name": "closed_caption", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption_disabled": { + "name": "closed_caption_disabled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption_off": { + "name": "closed_caption_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_camera": { + "name": "control_camera", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "equalizer": { + "name": "equalizer", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explicit": { + "name": "explicit", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fast_forward": { + "name": "fast_forward", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fast_rewind": { + "name": "fast_rewind", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "featured_play_list": { + "name": "featured_play_list", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "featured_video": { + "name": "featured_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_dvr": { + "name": "fiber_dvr", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_manual_record": { + "name": "fiber_manual_record", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_new": { + "name": "fiber_new", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_pin": { + "name": "fiber_pin", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_smart_record": { + "name": "fiber_smart_record", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_10": { + "name": "forward_10", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_30": { + "name": "forward_30", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_5": { + "name": "forward_5", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "games": { + "name": "games", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hd": { + "name": "hd", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hearing": { + "name": "hearing", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hearing_disabled": { + "name": "hearing_disabled", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "high_quality": { + "name": "high_quality", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_add": { + "name": "library_add", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_add_check": { + "name": "library_add_check", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "library_books": { + "name": "library_books", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_music": { + "name": "library_music", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loop": { + "name": "loop", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic": { + "name": "mic", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_none": { + "name": "mic_none", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_off": { + "name": "mic_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "missed_video_call": { + "name": "missed_video_call", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie": { + "name": "movie", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_video": { + "name": "music_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "new_releases": { + "name": "new_releases", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note": { + "name": "note", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "not_interested": { + "name": "not_interested", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause": { + "name": "pause", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle": { + "name": "pause_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle_filled": { + "name": "pause_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle_outline": { + "name": "pause_circle_outline", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_add": { + "name": "playlist_add", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_add_check": { + "name": "playlist_add_check", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_play": { + "name": "playlist_play", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_arrow": { + "name": "play_arrow", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle": { + "name": "play_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle_filled": { + "name": "play_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle_outline": { + "name": "play_circle_outline", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_disabled": { + "name": "play_disabled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "queue": { + "name": "queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "queue_music": { + "name": "queue_music", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "queue_play_next": { + "name": "queue_play_next", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio": { + "name": "radio", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "recent_actors": { + "name": "recent_actors", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_from_queue": { + "name": "remove_from_queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat": { + "name": "repeat", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_on": { + "name": "repeat_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_one": { + "name": "repeat_one", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_one_on": { + "name": "repeat_one_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay": { + "name": "replay", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_10": { + "name": "replay_10", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_30": { + "name": "replay_30", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_5": { + "name": "replay_5", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_circle_filled": { + "name": "replay_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd": { + "name": "sd", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shuffle": { + "name": "shuffle", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shuffle_on": { + "name": "shuffle_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "skip_next": { + "name": "skip_next", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "skip_previous": { + "name": "skip_previous", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "slow_motion_video": { + "name": "slow_motion_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snooze": { + "name": "snooze", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sort_by_alpha": { + "name": "sort_by_alpha", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speed": { + "name": "speed", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop": { + "name": "stop", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop_circle": { + "name": "stop_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "subscriptions": { + "name": "subscriptions", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subtitles": { + "name": "subtitles", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "surround_sound": { + "name": "surround_sound", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videocam": { + "name": "videocam", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videocam_off": { + "name": "videocam_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_call": { + "name": "video_call", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_label": { + "name": "video_label", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_library": { + "name": "video_library", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_settings": { + "name": "video_settings", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_down": { + "name": "volume_down", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_mute": { + "name": "volume_mute", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_off": { + "name": "volume_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_up": { + "name": "volume_up", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web": { + "name": "web", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web_asset": { + "name": "web_asset", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web_asset_off": { + "name": "web_asset_off", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "3p": { + "name": "3p", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_ic_call": { + "name": "add_ic_call", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alternate_email": { + "name": "alternate_email", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_registration": { + "name": "app_registration", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "business": { + "name": "business", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call": { + "name": "call", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_end": { + "name": "call_end", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_made": { + "name": "call_made", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_merge": { + "name": "call_merge", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_missed": { + "name": "call_missed", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_missed_outgoing": { + "name": "call_missed_outgoing", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_received": { + "name": "call_received", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_split": { + "name": "call_split", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel_presentation": { + "name": "cancel_presentation", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cell_wifi": { + "name": "cell_wifi", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat": { + "name": "chat", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat_bubble": { + "name": "chat_bubble", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat_bubble_outline": { + "name": "chat_bubble_outline", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "clear_all": { + "name": "clear_all", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "comment": { + "name": "comment", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contacts": { + "name": "contacts", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_mail": { + "name": "contact_mail", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_phone": { + "name": "contact_phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_access_disabled": { + "name": "desktop_access_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dialer_sip": { + "name": "dialer_sip", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dialpad": { + "name": "dialpad", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "document_scanner": { + "name": "document_scanner", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "domain_disabled": { + "name": "domain_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "domain_verification": { + "name": "domain_verification", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "duo": { + "name": "duo", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "email": { + "name": "email", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forum": { + "name": "forum", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_to_inbox": { + "name": "forward_to_inbox", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_bottom": { + "name": "hourglass_bottom", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_top": { + "name": "hourglass_top", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "import_contacts": { + "name": "import_contacts", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "import_export": { + "name": "import_export", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "invert_colors_off": { + "name": "invert_colors_off", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "list_alt": { + "name": "list_alt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_help": { + "name": "live_help", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_off": { + "name": "location_off", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_on": { + "name": "location_on", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mail_outline": { + "name": "mail_outline", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_chat_read": { + "name": "mark_chat_read", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_chat_unread": { + "name": "mark_chat_unread", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_email_read": { + "name": "mark_email_read", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_email_unread": { + "name": "mark_email_unread", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "message": { + "name": "message", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mobile_screen_share": { + "name": "mobile_screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_time": { + "name": "more_time", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nat": { + "name": "nat", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_sim": { + "name": "no_sim", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_presentation": { + "name": "pause_presentation", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_disabled": { + "name": "person_add_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_search": { + "name": "person_search", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "phone": { + "name": "phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_erase": { + "name": "phonelink_erase", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_lock": { + "name": "phonelink_lock", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_ring": { + "name": "phonelink_ring", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_setup": { + "name": "phonelink_setup", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_disabled": { + "name": "phone_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_enabled": { + "name": "phone_enabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "portable_wifi_off": { + "name": "portable_wifi_off", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "present_to_all": { + "name": "present_to_all", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "print_disabled": { + "name": "print_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code": { + "name": "qr_code", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code_2": { + "name": "qr_code_2", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code_scanner": { + "name": "qr_code_scanner", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "read_more": { + "name": "read_more", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ring_volume": { + "name": "ring_volume", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rss_feed": { + "name": "rss_feed", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rtt": { + "name": "rtt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_share": { + "name": "screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_satisfied_alt": { + "name": "sentiment_satisfied_alt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sip": { + "name": "sip", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_phone": { + "name": "speaker_phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_current_landscape": { + "name": "stay_current_landscape", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_current_portrait": { + "name": "stay_current_portrait", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_primary_landscape": { + "name": "stay_primary_landscape", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_primary_portrait": { + "name": "stay_primary_portrait", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop_screen_share": { + "name": "stop_screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_calls": { + "name": "swap_calls", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "textsms": { + "name": "textsms", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unsubscribe": { + "name": "unsubscribe", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voicemail": { + "name": "voicemail", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vpn_key": { + "name": "vpn_key", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_calling": { + "name": "wifi_calling", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add": { + "name": "add", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_box": { + "name": "add_box", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_circle": { + "name": "add_circle", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_circle_outline": { + "name": "add_circle_outline", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_link": { + "name": "add_link", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "amp_stories": { + "name": "amp_stories", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "archive": { + "name": "archive", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attribution": { + "name": "attribution", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backspace": { + "name": "backspace", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ballot": { + "name": "ballot", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "biotech": { + "name": "biotech", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "block": { + "name": "block", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bolt": { + "name": "bolt", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calculate": { + "name": "calculate", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "change_circle": { + "name": "change_circle", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "clear": { + "name": "clear", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_copy": { + "name": "content_copy", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_cut": { + "name": "content_cut", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_paste": { + "name": "content_paste", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_paste_off": { + "name": "content_paste_off", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "copy_all": { + "name": "copy_all", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "create": { + "name": "create", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_sweep": { + "name": "delete_sweep", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drafts": { + "name": "drafts", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dynamic_feed": { + "name": "dynamic_feed", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "file_copy": { + "name": "file_copy", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_list": { + "name": "filter_list", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flag": { + "name": "flag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "font_download": { + "name": "font_download", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "font_download_off": { + "name": "font_download_off", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "forward": { + "name": "forward", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gesture": { + "name": "gesture", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "how_to_reg": { + "name": "how_to_reg", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "how_to_vote": { + "name": "how_to_vote", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "inbox": { + "name": "inbox", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insights": { + "name": "insights", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "inventory": { + "name": "inventory", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "inventory_2": { + "name": "inventory_2", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "link": { + "name": "link", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "link_off": { + "name": "link_off", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "low_priority": { + "name": "low_priority", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mail": { + "name": "mail", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "markunread": { + "name": "markunread", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "move_to_inbox": { + "name": "move_to_inbox", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "next_week": { + "name": "next_week", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outlined_flag": { + "name": "outlined_flag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "policy": { + "name": "policy", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "push_pin": { + "name": "push_pin", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "redo": { + "name": "redo", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove": { + "name": "remove", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_circle": { + "name": "remove_circle", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_circle_outline": { + "name": "remove_circle_outline", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reply": { + "name": "reply", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reply_all": { + "name": "reply_all", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report": { + "name": "report", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_gmailerrorred": { + "name": "report_gmailerrorred", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_off": { + "name": "report_off", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "save": { + "name": "save", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "save_alt": { + "name": "save_alt", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "select_all": { + "name": "select_all", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send": { + "name": "send", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shield": { + "name": "shield", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sort": { + "name": "sort", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "square_foot": { + "name": "square_foot", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "stacked_bar_chart": { + "name": "stacked_bar_chart", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stream": { + "name": "stream", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tag": { + "name": "tag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_format": { + "name": "text_format", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unarchive": { + "name": "unarchive", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "undo": { + "name": "undo", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upcoming": { + "name": "upcoming", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waves": { + "name": "waves", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "weekend": { + "name": "weekend", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "where_to_vote": { + "name": "where_to_vote", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1x_mobiledata": { + "name": "1x_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "30fps": { + "name": "30fps", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3g_mobiledata": { + "name": "3g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4g_mobiledata": { + "name": "4g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4g_plus_mobiledata": { + "name": "4g_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "60fps": { + "name": "60fps", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_alarm": { + "name": "access_alarm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_alarms": { + "name": "access_alarms", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_time": { + "name": "access_time", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_time_filled": { + "name": "access_time_filled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alarm": { + "name": "add_alarm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_home_screen": { + "name": "add_to_home_screen", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ad_units": { + "name": "ad_units", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "air": { + "name": "air", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airplanemode_active": { + "name": "airplanemode_active", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airplanemode_inactive": { + "name": "airplanemode_inactive", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airplane_ticket": { + "name": "airplane_ticket", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "aod": { + "name": "aod", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_alert": { + "name": "battery_alert", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_charging_full": { + "name": "battery_charging_full", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_full": { + "name": "battery_full", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_saver": { + "name": "battery_saver", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_std": { + "name": "battery_std", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_unknown": { + "name": "battery_unknown", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bloodtype": { + "name": "bloodtype", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth": { + "name": "bluetooth", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_connected": { + "name": "bluetooth_connected", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_disabled": { + "name": "bluetooth_disabled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_drive": { + "name": "bluetooth_drive", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_searching": { + "name": "bluetooth_searching", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_auto": { + "name": "brightness_auto", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_high": { + "name": "brightness_high", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_low": { + "name": "brightness_low", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_medium": { + "name": "brightness_medium", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cable": { + "name": "cable", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cameraswitch": { + "name": "cameraswitch", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_score": { + "name": "credit_score", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dark_mode": { + "name": "dark_mode", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "data_saver_off": { + "name": "data_saver_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_saver_on": { + "name": "data_saver_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_usage": { + "name": "data_usage", + "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": "" + } + } + }, + "device_thermostat": { + "name": "device_thermostat", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on_total_silence": { + "name": "do_not_disturb_on_total_silence", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dvr": { + "name": "dvr", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edgesensor_high": { + "name": "edgesensor_high", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edgesensor_low": { + "name": "edgesensor_low", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "e_mobiledata": { + "name": "e_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flashlight_off": { + "name": "flashlight_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flashlight_on": { + "name": "flashlight_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flourescent": { + "name": "flourescent", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fmd_bad": { + "name": "fmd_bad", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fmd_good": { + "name": "fmd_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_bad": { + "name": "gpp_bad", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_good": { + "name": "gpp_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_maybe": { + "name": "gpp_maybe", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_fixed": { + "name": "gps_fixed", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_not_fixed": { + "name": "gps_not_fixed", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_off": { + "name": "gps_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "graphic_eq": { + "name": "graphic_eq", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_3x3": { + "name": "grid_3x3", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_4x4": { + "name": "grid_4x4", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_goldenratio": { + "name": "grid_goldenratio", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "g_mobiledata": { + "name": "g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_auto": { + "name": "hdr_auto", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_auto_select": { + "name": "hdr_auto_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_off_select": { + "name": "hdr_off_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_on_select": { + "name": "hdr_on_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "h_mobiledata": { + "name": "h_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "h_plus_mobiledata": { + "name": "h_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lens_blur": { + "name": "lens_blur", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "light_mode": { + "name": "light_mode", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "location_disabled": { + "name": "location_disabled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_searching": { + "name": "location_searching", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lte_mobiledata": { + "name": "lte_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lte_plus_mobiledata": { + "name": "lte_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "media_bluetooth_off": { + "name": "media_bluetooth_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "media_bluetooth_on": { + "name": "media_bluetooth_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "medication": { + "name": "medication", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mobiledata_off": { + "name": "mobiledata_off", + "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": "" + } + } + }, + "mode_night": { + "name": "mode_night", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_standby": { + "name": "mode_standby", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor_weight": { + "name": "monitor_weight", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nearby_error": { + "name": "nearby_error", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nearby_off": { + "name": "nearby_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_cell": { + "name": "network_cell", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_wifi": { + "name": "network_wifi", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nfc": { + "name": "nfc", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlight": { + "name": "nightlight", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note_alt": { + "name": "note_alt", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "password": { + "name": "password", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pattern": { + "name": "pattern", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pin": { + "name": "pin", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_lesson": { + "name": "play_lesson", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "price_change": { + "name": "price_change", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "price_check": { + "name": "price_check", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "quiz": { + "name": "quiz", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radar": { + "name": "radar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remember_me": { + "name": "remember_me", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reset_tv": { + "name": "reset_tv", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restart_alt": { + "name": "restart_alt", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reviews": { + "name": "reviews", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rsvp": { + "name": "rsvp", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "r_mobiledata": { + "name": "r_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screenshot": { + "name": "screenshot", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_landscape": { + "name": "screen_lock_landscape", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_portrait": { + "name": "screen_lock_portrait", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_rotation": { + "name": "screen_lock_rotation", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_rotation": { + "name": "screen_rotation", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_search_desktop": { + "name": "screen_search_desktop", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_storage": { + "name": "sd_storage", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update": { + "name": "security_update", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update_good": { + "name": "security_update_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update_warning": { + "name": "security_update_warning", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sell": { + "name": "sell", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send_to_mobile": { + "name": "send_to_mobile", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_suggest": { + "name": "settings_suggest", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_system_daydream": { + "name": "settings_system_daydream", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "share_location": { + "name": "share_location", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shortcut": { + "name": "shortcut", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_0_bar": { + "name": "signal_cellular_0_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_4_bar": { + "name": "signal_cellular_4_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_alt": { + "name": "signal_cellular_alt", + "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": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_connected_no_internet_4_bar": { + "name": "signal_cellular_connected_no_internet_4_bar", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_nodata": { + "name": "signal_cellular_nodata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_no_sim": { + "name": "signal_cellular_no_sim", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_null": { + "name": "signal_cellular_null", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_off": { + "name": "signal_cellular_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_0_bar": { + "name": "signal_wifi_0_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_4_bar": { + "name": "signal_wifi_4_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_4_bar_lock": { + "name": "signal_wifi_4_bar_lock", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_bad": { + "name": "signal_wifi_bad", + "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": "" + } + } + }, + "signal_wifi_off": { + "name": "signal_wifi_off", + "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": "" + } + } + }, + "signal_wifi_statusbar_connected_no_internet_4": { + "name": "signal_wifi_statusbar_connected_no_internet_4", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_statusbar_null": { + "name": "signal_wifi_statusbar_null", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_download": { + "name": "sim_card_download", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "splitscreen": { + "name": "splitscreen", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_score": { + "name": "sports_score", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storage": { + "name": "storage", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storm": { + "name": "storm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "summarize": { + "name": "summarize", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update": { + "name": "system_security_update", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update_good": { + "name": "system_security_update_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update_warning": { + "name": "system_security_update_warning", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "task": { + "name": "task", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thermostat": { + "name": "thermostat", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_10_select": { + "name": "timer_10_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_3_select": { + "name": "timer_3_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tungsten": { + "name": "tungsten", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "usb": { + "name": "usb", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "usb_off": { + "name": "usb_off", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wallpaper": { + "name": "wallpaper", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "water": { + "name": "water", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "widgets": { + "name": "widgets", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_calling_3": { + "name": "wifi_calling_3", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_lock": { + "name": "wifi_lock", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering": { + "name": "wifi_tethering", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering_error_rounded": { + "name": "wifi_tethering_error_rounded", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering_off": { + "name": "wifi_tethering_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_chart": { + "name": "add_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_comment": { + "name": "add_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_center": { + "name": "align_horizontal_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_left": { + "name": "align_horizontal_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_right": { + "name": "align_horizontal_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_bottom": { + "name": "align_vertical_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_center": { + "name": "align_vertical_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_top": { + "name": "align_vertical_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "area_chart": { + "name": "area_chart", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_file": { + "name": "attach_file", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_money": { + "name": "attach_money", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_graph": { + "name": "auto_graph", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bar_chart": { + "name": "bar_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_all": { + "name": "border_all", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_bottom": { + "name": "border_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_clear": { + "name": "border_clear", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_color": { + "name": "border_color", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_horizontal": { + "name": "border_horizontal", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_inner": { + "name": "border_inner", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_left": { + "name": "border_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_outer": { + "name": "border_outer", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_right": { + "name": "border_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_style": { + "name": "border_style", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_top": { + "name": "border_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_vertical": { + "name": "border_vertical", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bubble_chart": { + "name": "bubble_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "checklist": { + "name": "checklist", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "checklist_rtl": { + "name": "checklist_rtl", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drag_handle": { + "name": "drag_handle", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "draw": { + "name": "draw", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_note": { + "name": "edit_note", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_center": { + "name": "format_align_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_justify": { + "name": "format_align_justify", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_left": { + "name": "format_align_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_right": { + "name": "format_align_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_bold": { + "name": "format_bold", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_clear": { + "name": "format_clear", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_fill": { + "name": "format_color_fill", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_reset": { + "name": "format_color_reset", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_text": { + "name": "format_color_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_indent_decrease": { + "name": "format_indent_decrease", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_indent_increase": { + "name": "format_indent_increase", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_italic": { + "name": "format_italic", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_line_spacing": { + "name": "format_line_spacing", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_bulleted": { + "name": "format_list_bulleted", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_numbered": { + "name": "format_list_numbered", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_numbered_rtl": { + "name": "format_list_numbered_rtl", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_paint": { + "name": "format_paint", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_quote": { + "name": "format_quote", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_shapes": { + "name": "format_shapes", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_size": { + "name": "format_size", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_strikethrough": { + "name": "format_strikethrough", + "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": "" + } + } + }, + "format_textdirection_r_to_l": { + "name": "format_textdirection_r_to_l", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_underlined": { + "name": "format_underlined", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "functions": { + "name": "functions", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "height": { + "name": "height", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight": { + "name": "highlight", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_distribute": { + "name": "horizontal_distribute", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_rule": { + "name": "horizontal_rule", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_chart": { + "name": "insert_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_chart_outlined": { + "name": "insert_chart_outlined", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_comment": { + "name": "insert_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_drive_file": { + "name": "insert_drive_file", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_emoticon": { + "name": "insert_emoticon", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_invitation": { + "name": "insert_invitation", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_link": { + "name": "insert_link", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_photo": { + "name": "insert_photo", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "linear_scale": { + "name": "linear_scale", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "margin": { + "name": "margin", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "merge_type": { + "name": "merge_type", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode": { + "name": "mode", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_comment": { + "name": "mode_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_edit": { + "name": "mode_edit", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_edit_outline": { + "name": "mode_edit_outline", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "monetization_on": { + "name": "monetization_on", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "money_off": { + "name": "money_off", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "money_off_csred": { + "name": "money_off_csred", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "multiline_chart": { + "name": "multiline_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notes": { + "name": "notes", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "padding": { + "name": "padding", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pie_chart": { + "name": "pie_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pie_chart_outline": { + "name": "pie_chart_outline", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "post_add": { + "name": "post_add", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "publish": { + "name": "publish", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "query_stats": { + "name": "query_stats", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "scatter_plot": { + "name": "scatter_plot", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "schema": { + "name": "schema", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "score": { + "name": "score", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "short_text": { + "name": "short_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "show_chart": { + "name": "show_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "space_bar": { + "name": "space_bar", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stacked_line_chart": { + "name": "stacked_line_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "strikethrough_s": { + "name": "strikethrough_s", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subscript": { + "name": "subscript", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "superscript": { + "name": "superscript", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "table_chart": { + "name": "table_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "table_rows": { + "name": "table_rows", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "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": "" + } + } + }, + "vertical_align_bottom": { + "name": "vertical_align_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_align_center": { + "name": "vertical_align_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_align_top": { + "name": "vertical_align_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_distribute": { + "name": "vertical_distribute", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wrap_text": { + "name": "wrap_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "approval": { + "name": "approval", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attachment": { + "name": "attachment", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_email": { + "name": "attach_email", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud": { + "name": "cloud", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_circle": { + "name": "cloud_circle", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_done": { + "name": "cloud_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_download": { + "name": "cloud_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_off": { + "name": "cloud_off", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_queue": { + "name": "cloud_queue", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_upload": { + "name": "cloud_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "create_new_folder": { + "name": "create_new_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download": { + "name": "download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "downloading": { + "name": "downloading", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_done": { + "name": "download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_for_offline": { + "name": "download_for_offline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "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": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_rename_outline": { + "name": "drive_file_rename_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_folder_upload": { + "name": "drive_folder_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download": { + "name": "file_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_done": { + "name": "file_download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_off": { + "name": "file_download_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "file_upload": { + "name": "file_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder": { + "name": "folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_open": { + "name": "folder_open", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_shared": { + "name": "folder_shared", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_view": { + "name": "grid_view", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_quote": { + "name": "request_quote", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule_folder": { + "name": "rule_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snippet_folder": { + "name": "snippet_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_snippet": { + "name": "text_snippet", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "topic": { + "name": "topic", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload": { + "name": "upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload_file": { + "name": "upload_file", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces": { + "name": "workspaces", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "browser_not_supported": { + "name": "browser_not_supported", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cast": { + "name": "cast", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_connected": { + "name": "cast_connected", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_for_education": { + "name": "cast_for_education", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "computer": { + "name": "computer", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "connected_tv": { + "name": "connected_tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_mac": { + "name": "desktop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_windows": { + "name": "desktop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board": { + "name": "developer_board", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board_off": { + "name": "developer_board_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "devices_other": { + "name": "devices_other", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_hub": { + "name": "device_hub", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_unknown": { + "name": "device_unknown", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dock": { + "name": "dock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "earbuds": { + "name": "earbuds", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "earbuds_battery": { + "name": "earbuds_battery", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gamepad": { + "name": "gamepad", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones": { + "name": "headphones", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones_battery": { + "name": "headphones_battery", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset": { + "name": "headset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_mic": { + "name": "headset_mic", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_off": { + "name": "headset_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_max": { + "name": "home_max", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_mini": { + "name": "home_mini", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard": { + "name": "keyboard", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_alt": { + "name": "keyboard_alt", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_down": { + "name": "keyboard_arrow_down", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_left": { + "name": "keyboard_arrow_left", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_right": { + "name": "keyboard_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_up": { + "name": "keyboard_arrow_up", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_backspace": { + "name": "keyboard_backspace", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_capslock": { + "name": "keyboard_capslock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_hide": { + "name": "keyboard_hide", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_return": { + "name": "keyboard_return", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_tab": { + "name": "keyboard_tab", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_voice": { + "name": "keyboard_voice", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop": { + "name": "laptop", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_chromebook": { + "name": "laptop_chromebook", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_mac": { + "name": "laptop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_windows": { + "name": "laptop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "memory": { + "name": "memory", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor": { + "name": "monitor", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mouse": { + "name": "mouse", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink": { + "name": "phonelink", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_off": { + "name": "phonelink_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_android": { + "name": "phone_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_iphone": { + "name": "phone_iphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "point_of_sale": { + "name": "point_of_sale", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "power_input": { + "name": "power_input", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "router": { + "name": "router", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "scanner": { + "name": "scanner", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security": { + "name": "security", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card": { + "name": "sim_card", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smartphone": { + "name": "smartphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_display": { + "name": "smart_display", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_screen": { + "name": "smart_screen", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_toy": { + "name": "smart_toy", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker": { + "name": "speaker", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_group": { + "name": "speaker_group", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet": { + "name": "tablet", + "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": "" + } + } + }, + "toys": { + "name": "toys", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "tv": { + "name": "tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset": { + "name": "videogame_asset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset_off": { + "name": "videogame_asset_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "watch": { + "name": "watch", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sensor_door": { + "name": "sensor_door", + "keywords": [ + "home" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensor_window": { + "name": "sensor_window", + "keywords": [ + "home" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "10mp": { + "name": "10mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "11mp": { + "name": "11mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "12mp": { + "name": "12mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "13mp": { + "name": "13mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "14mp": { + "name": "14mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "15mp": { + "name": "15mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "16mp": { + "name": "16mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "17mp": { + "name": "17mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "18mp": { + "name": "18mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "19mp": { + "name": "19mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "20mp": { + "name": "20mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "21mp": { + "name": "21mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "22mp": { + "name": "22mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "23mp": { + "name": "23mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "24mp": { + "name": "24mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2mp": { + "name": "2mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "30fps_select": { + "name": "30fps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3mp": { + "name": "3mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4mp": { + "name": "4mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5mp": { + "name": "5mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "60fps_select": { + "name": "60fps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6mp": { + "name": "6mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7mp": { + "name": "7mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8mp": { + "name": "8mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9mp": { + "name": "9mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_a_photo": { + "name": "add_a_photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_photo_alternate": { + "name": "add_photo_alternate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_photos": { + "name": "add_to_photos", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adjust": { + "name": "adjust", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "animation": { + "name": "animation", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant": { + "name": "assistant", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_photo": { + "name": "assistant_photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "audiotrack": { + "name": "audiotrack", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "autofps_select": { + "name": "autofps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome": { + "name": "auto_awesome", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome_mosaic": { + "name": "auto_awesome_mosaic", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome_motion": { + "name": "auto_awesome_motion", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_high": { + "name": "auto_fix_high", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_normal": { + "name": "auto_fix_normal", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_off": { + "name": "auto_fix_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_stories": { + "name": "auto_stories", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedtime": { + "name": "bedtime", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_circular": { + "name": "blur_circular", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_linear": { + "name": "blur_linear", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_off": { + "name": "blur_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_on": { + "name": "blur_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_1": { + "name": "brightness_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_2": { + "name": "brightness_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_3": { + "name": "brightness_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_4": { + "name": "brightness_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_5": { + "name": "brightness_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_6": { + "name": "brightness_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_7": { + "name": "brightness_7", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "broken_image": { + "name": "broken_image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brush": { + "name": "brush", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "burst_mode": { + "name": "burst_mode", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera": { + "name": "camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_alt": { + "name": "camera_alt", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_front": { + "name": "camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_rear": { + "name": "camera_rear", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_roll": { + "name": "camera_roll", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cases": { + "name": "cases", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "center_focus_strong": { + "name": "center_focus_strong", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "center_focus_weak": { + "name": "center_focus_weak", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "circle": { + "name": "circle", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "collections": { + "name": "collections", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "collections_bookmark": { + "name": "collections_bookmark", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "colorize": { + "name": "colorize", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "color_lens": { + "name": "color_lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compare": { + "name": "compare", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_point": { + "name": "control_point", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_point_duplicate": { + "name": "control_point_duplicate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop": { + "name": "crop", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_16_9": { + "name": "crop_16_9", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_3_2": { + "name": "crop_3_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_5_4": { + "name": "crop_5_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_7_5": { + "name": "crop_7_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_din": { + "name": "crop_din", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_free": { + "name": "crop_free", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_landscape": { + "name": "crop_landscape", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_original": { + "name": "crop_original", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_portrait": { + "name": "crop_portrait", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_rotate": { + "name": "crop_rotate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_square": { + "name": "crop_square", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dehaze": { + "name": "dehaze", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "details": { + "name": "details", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dirty_lens": { + "name": "dirty_lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit": { + "name": "edit", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "euro": { + "name": "euro", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure": { + "name": "exposure", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_neg_1": { + "name": "exposure_neg_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_neg_2": { + "name": "exposure_neg_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_plus_1": { + "name": "exposure_plus_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_plus_2": { + "name": "exposure_plus_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_zero": { + "name": "exposure_zero", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_retouching_natural": { + "name": "face_retouching_natural", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_retouching_off": { + "name": "face_retouching_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter": { + "name": "filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_1": { + "name": "filter_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_2": { + "name": "filter_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_3": { + "name": "filter_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_4": { + "name": "filter_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_5": { + "name": "filter_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_6": { + "name": "filter_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_7": { + "name": "filter_7", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_8": { + "name": "filter_8", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_9": { + "name": "filter_9", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_9_plus": { + "name": "filter_9_plus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_b_and_w": { + "name": "filter_b_and_w", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_center_focus": { + "name": "filter_center_focus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_drama": { + "name": "filter_drama", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_frames": { + "name": "filter_frames", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_hdr": { + "name": "filter_hdr", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_none": { + "name": "filter_none", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_tilt_shift": { + "name": "filter_tilt_shift", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_vintage": { + "name": "filter_vintage", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flare": { + "name": "flare", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_auto": { + "name": "flash_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_off": { + "name": "flash_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_on": { + "name": "flash_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip": { + "name": "flip", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_camera_android": { + "name": "flip_camera_android", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_camera_ios": { + "name": "flip_camera_ios", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "gradient": { + "name": "gradient", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grain": { + "name": "grain", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_off": { + "name": "grid_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_on": { + "name": "grid_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_enhanced_select": { + "name": "hdr_enhanced_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_off": { + "name": "hdr_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_on": { + "name": "hdr_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_plus": { + "name": "hdr_plus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_strong": { + "name": "hdr_strong", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_weak": { + "name": "hdr_weak", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "healing": { + "name": "healing", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hevc": { + "name": "hevc", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hide_image": { + "name": "hide_image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image": { + "name": "image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image_aspect_ratio": { + "name": "image_aspect_ratio", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image_not_supported": { + "name": "image_not_supported", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "image_search": { + "name": "image_search", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "incomplete_circle": { + "name": "incomplete_circle", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "iso": { + "name": "iso", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "landscape": { + "name": "landscape", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leak_add": { + "name": "leak_add", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leak_remove": { + "name": "leak_remove", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lens": { + "name": "lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "linked_camera": { + "name": "linked_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks": { + "name": "looks", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_3": { + "name": "looks_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_4": { + "name": "looks_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_5": { + "name": "looks_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_6": { + "name": "looks_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_one": { + "name": "looks_one", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_two": { + "name": "looks_two", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loupe": { + "name": "loupe", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_external_off": { + "name": "mic_external_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_external_on": { + "name": "mic_external_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monochrome_photos": { + "name": "monochrome_photos", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_auto": { + "name": "motion_photos_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_off": { + "name": "motion_photos_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_on": { + "name": "motion_photos_on", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_pause": { + "name": "motion_photos_pause", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_paused": { + "name": "motion_photos_paused", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie_creation": { + "name": "movie_creation", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie_filter": { + "name": "movie_filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mp": { + "name": "mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_note": { + "name": "music_note", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_off": { + "name": "music_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nature": { + "name": "nature", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nature_people": { + "name": "nature_people", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigate_before": { + "name": "navigate_before", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigate_next": { + "name": "navigate_next", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "palette": { + "name": "palette", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama": { + "name": "panorama", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_fish_eye": { + "name": "panorama_fish_eye", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_horizontal": { + "name": "panorama_horizontal", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_horizontal_select": { + "name": "panorama_horizontal_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_photosphere": { + "name": "panorama_photosphere", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_photosphere_select": { + "name": "panorama_photosphere_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_vertical": { + "name": "panorama_vertical", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_vertical_select": { + "name": "panorama_vertical_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_wide_angle": { + "name": "panorama_wide_angle", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_wide_angle_select": { + "name": "panorama_wide_angle_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo": { + "name": "photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_album": { + "name": "photo_album", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera": { + "name": "photo_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera_back": { + "name": "photo_camera_back", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera_front": { + "name": "photo_camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_filter": { + "name": "photo_filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_library": { + "name": "photo_library", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_actual": { + "name": "photo_size_select_actual", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_large": { + "name": "photo_size_select_large", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_small": { + "name": "photo_size_select_small", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_as_pdf": { + "name": "picture_as_pdf", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "portrait": { + "name": "portrait", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "raw_off": { + "name": "raw_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "raw_on": { + "name": "raw_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "receipt_long": { + "name": "receipt_long", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_red_eye": { + "name": "remove_red_eye", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_90_degrees_ccw": { + "name": "rotate_90_degrees_ccw", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_left": { + "name": "rotate_left", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_right": { + "name": "rotate_right", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shutter_speed": { + "name": "shutter_speed", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "slideshow": { + "name": "slideshow", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "straighten": { + "name": "straighten", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "style": { + "name": "style", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_camera": { + "name": "switch_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_video": { + "name": "switch_video", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tag_faces": { + "name": "tag_faces", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "texture": { + "name": "texture", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thermostat_auto": { + "name": "thermostat_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timelapse": { + "name": "timelapse", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer": { + "name": "timer", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_10": { + "name": "timer_10", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_3": { + "name": "timer_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_off": { + "name": "timer_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tonality": { + "name": "tonality", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transform": { + "name": "transform", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tune": { + "name": "tune", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_camera_back": { + "name": "video_camera_back", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_camera_front": { + "name": "video_camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_stable": { + "name": "video_stable", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_comfy": { + "name": "view_comfy", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_compact": { + "name": "view_compact", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vignette": { + "name": "vignette", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vrpano": { + "name": "vrpano", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_auto": { + "name": "wb_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_cloudy": { + "name": "wb_cloudy", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_incandescent": { + "name": "wb_incandescent", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_iridescent": { + "name": "wb_iridescent", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_shade": { + "name": "wb_shade", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_sunny": { + "name": "wb_sunny", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_twilight": { + "name": "wb_twilight", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "360": { + "name": "360", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_business": { + "name": "add_business", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add_location": { + "name": "add_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_location_alt": { + "name": "add_location_alt", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_road": { + "name": "add_road", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "agriculture": { + "name": "agriculture", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "alt_route": { + "name": "alt_route", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "atm": { + "name": "atm", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attractions": { + "name": "attractions", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "badge": { + "name": "badge", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bakery_dining": { + "name": "bakery_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "beenhere": { + "name": "beenhere", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bike_scooter": { + "name": "bike_scooter", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "breakfast_dining": { + "name": "breakfast_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "brunch_dining": { + "name": "brunch_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bus_alert": { + "name": "bus_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "car_rental": { + "name": "car_rental", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "car_repair": { + "name": "car_repair", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "category": { + "name": "category", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "celebration": { + "name": "celebration", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cleaning_services": { + "name": "cleaning_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "compass_calibration": { + "name": "compass_calibration", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delivery_dining": { + "name": "delivery_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "departure_board": { + "name": "departure_board", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "design_services": { + "name": "design_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dinner_dining": { + "name": "dinner_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "directions": { + "name": "directions", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bike": { + "name": "directions_bike", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_boat": { + "name": "directions_boat", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_boat_filled": { + "name": "directions_boat_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bus": { + "name": "directions_bus", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bus_filled": { + "name": "directions_bus_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_car": { + "name": "directions_car", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_car_filled": { + "name": "directions_car_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_railway": { + "name": "directions_railway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_railway_filled": { + "name": "directions_railway_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_run": { + "name": "directions_run", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_subway": { + "name": "directions_subway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_subway_filled": { + "name": "directions_subway_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_transit": { + "name": "directions_transit", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_transit_filled": { + "name": "directions_transit_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_walk": { + "name": "directions_walk", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dry_cleaning": { + "name": "dry_cleaning", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_attributes": { + "name": "edit_attributes", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_location": { + "name": "edit_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_location_alt": { + "name": "edit_location_alt", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_road": { + "name": "edit_road", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electrical_services": { + "name": "electrical_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_bike": { + "name": "electric_bike", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_car": { + "name": "electric_car", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_moped": { + "name": "electric_moped", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_rickshaw": { + "name": "electric_rickshaw", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_scooter": { + "name": "electric_scooter", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emergency": { + "name": "emergency", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ev_station": { + "name": "ev_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fastfood": { + "name": "fastfood", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "festival": { + "name": "festival", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flight": { + "name": "flight", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hail": { + "name": "hail", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "handyman": { + "name": "handyman", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hardware": { + "name": "hardware", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home_repair_service": { + "name": "home_repair_service", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hotel": { + "name": "hotel", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hvac": { + "name": "hvac", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "icecream": { + "name": "icecream", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "layers": { + "name": "layers", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "layers_clear": { + "name": "layers_clear", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "liquor": { + "name": "liquor", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "local_activity": { + "name": "local_activity", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_airport": { + "name": "local_airport", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "local_atm": { + "name": "local_atm", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_bar": { + "name": "local_bar", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_cafe": { + "name": "local_cafe", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_car_wash": { + "name": "local_car_wash", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_convenience_store": { + "name": "local_convenience_store", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_dining": { + "name": "local_dining", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_drink": { + "name": "local_drink", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_fire_department": { + "name": "local_fire_department", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_florist": { + "name": "local_florist", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_gas_station": { + "name": "local_gas_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_grocery_store": { + "name": "local_grocery_store", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_hospital": { + "name": "local_hospital", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_hotel": { + "name": "local_hotel", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_laundry_service": { + "name": "local_laundry_service", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_library": { + "name": "local_library", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_mall": { + "name": "local_mall", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_movies": { + "name": "local_movies", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_offer": { + "name": "local_offer", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_parking": { + "name": "local_parking", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_pharmacy": { + "name": "local_pharmacy", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_phone": { + "name": "local_phone", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_pizza": { + "name": "local_pizza", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_play": { + "name": "local_play", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_police": { + "name": "local_police", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_post_office": { + "name": "local_post_office", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_printshop": { + "name": "local_printshop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_see": { + "name": "local_see", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_shipping": { + "name": "local_shipping", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_taxi": { + "name": "local_taxi", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lunch_dining": { + "name": "lunch_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "map": { + "name": "map", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_ugc": { + "name": "maps_ugc", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "medical_services": { + "name": "medical_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_book": { + "name": "menu_book", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "miscellaneous_services": { + "name": "miscellaneous_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "money": { + "name": "money", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "moped": { + "name": "moped", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "moving": { + "name": "moving", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "multiple_stop": { + "name": "multiple_stop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "museum": { + "name": "museum", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "my_location": { + "name": "my_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigation": { + "name": "navigation", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "near_me": { + "name": "near_me", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "near_me_disabled": { + "name": "near_me_disabled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlife": { + "name": "nightlife", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "not_listed_location": { + "name": "not_listed_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_meals": { + "name": "no_meals", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_transfer": { + "name": "no_transfer", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "park": { + "name": "park", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pedal_bike": { + "name": "pedal_bike", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_pin": { + "name": "person_pin", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_pin_circle": { + "name": "person_pin_circle", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pest_control": { + "name": "pest_control", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pest_control_rodent": { + "name": "pest_control_rodent", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_drop": { + "name": "pin_drop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "place": { + "name": "place", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "plumbing": { + "name": "plumbing", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "railway_alert": { + "name": "railway_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ramen_dining": { + "name": "ramen_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "rate_review": { + "name": "rate_review", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restaurant": { + "name": "restaurant", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restaurant_menu": { + "name": "restaurant_menu", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "run_circle": { + "name": "run_circle", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sailing": { + "name": "sailing", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "satellite": { + "name": "satellite", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "set_meal": { + "name": "set_meal", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snowmobile": { + "name": "snowmobile", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "store_mall_directory": { + "name": "store_mall_directory", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "streetview": { + "name": "streetview", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subway": { + "name": "subway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "takeout_dining": { + "name": "takeout_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "taxi_alert": { + "name": "taxi_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "terrain": { + "name": "terrain", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "theater_comedy": { + "name": "theater_comedy", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "traffic": { + "name": "traffic", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "train": { + "name": "train", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tram": { + "name": "tram", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transfer_within_a_station": { + "name": "transfer_within_a_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transit_enterexit": { + "name": "transit_enterexit", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trip_origin": { + "name": "trip_origin", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "two_wheeler": { + "name": "two_wheeler", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "volunteer_activism": { + "name": "volunteer_activism", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wine_bar": { + "name": "wine_bar", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wrong_location": { + "name": "wrong_location", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_out_map": { + "name": "zoom_out_map", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps": { + "name": "apps", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_settings_alt": { + "name": "app_settings_alt", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back": { + "name": "arrow_back", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios": { + "name": "arrow_back_ios", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios_new": { + "name": "arrow_back_ios_new", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_downward": { + "name": "arrow_downward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down": { + "name": "arrow_drop_down", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down_circle": { + "name": "arrow_drop_down_circle", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_up": { + "name": "arrow_drop_up", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward": { + "name": "arrow_forward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward_ios": { + "name": "arrow_forward_ios", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_left": { + "name": "arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right": { + "name": "arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_upward": { + "name": "arrow_upward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_direction": { + "name": "assistant_direction", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "campaign": { + "name": "campaign", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel": { + "name": "cancel", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check": { + "name": "check", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_left": { + "name": "chevron_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_right": { + "name": "chevron_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close": { + "name": "close", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "double_arrow": { + "name": "double_arrow", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "east": { + "name": "east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_less": { + "name": "expand_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_more": { + "name": "expand_more", + "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": "" + } + } + }, + "fullscreen_exit": { + "name": "fullscreen_exit", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_work": { + "name": "home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "last_page": { + "name": "last_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "legend_toggle": { + "name": "legend_toggle", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_home_work": { + "name": "maps_home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu": { + "name": "menu", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_open": { + "name": "menu_open", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_horiz": { + "name": "more_horiz", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_vert": { + "name": "more_vert", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north": { + "name": "north", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_east": { + "name": "north_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_west": { + "name": "north_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_share": { + "name": "offline_share", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payments": { + "name": "payments", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pivot_table_chart": { + "name": "pivot_table_chart", + "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": "" + } + } + }, + "south_east": { + "name": "south_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_west": { + "name": "south_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_left": { + "name": "subdirectory_arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_right": { + "name": "subdirectory_arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_left": { + "name": "switch_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_right": { + "name": "switch_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_less": { + "name": "unfold_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_more": { + "name": "unfold_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waterfall_chart": { + "name": "waterfall_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "west": { + "name": "west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_tree": { + "name": "account_tree", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adb": { + "name": "adb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat": { + "name": "airline_seat_flat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat_angled": { + "name": "airline_seat_flat_angled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_individual_suite": { + "name": "airline_seat_individual_suite", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_extra": { + "name": "airline_seat_legroom_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_normal": { + "name": "airline_seat_legroom_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_reduced": { + "name": "airline_seat_legroom_reduced", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_extra": { + "name": "airline_seat_recline_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_normal": { + "name": "airline_seat_recline_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_audio": { + "name": "bluetooth_audio", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "confirmation_number": { + "name": "confirmation_number", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_off": { + "name": "directions_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disc_full": { + "name": "disc_full", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb": { + "name": "do_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_alt": { + "name": "do_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_off": { + "name": "do_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_on": { + "name": "do_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb": { + "name": "do_not_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_alt": { + "name": "do_not_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_off": { + "name": "do_not_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on": { + "name": "do_not_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_eta": { + "name": "drive_eta", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "enhanced_encryption": { + "name": "enhanced_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_available": { + "name": "event_available", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_busy": { + "name": "event_busy", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_note": { + "name": "event_note", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_special": { + "name": "folder_special", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "imagesearch_roller": { + "name": "imagesearch_roller", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_tv": { + "name": "live_tv", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mms": { + "name": "mms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more": { + "name": "more", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_check": { + "name": "network_check", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_locked": { + "name": "network_locked", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption": { + "name": "no_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption_gmailerrorred": { + "name": "no_encryption_gmailerrorred", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ondemand_video": { + "name": "ondemand_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_video": { + "name": "personal_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_bluetooth_speaker": { + "name": "phone_bluetooth_speaker", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_callback": { + "name": "phone_callback", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_forwarded": { + "name": "phone_forwarded", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_in_talk": { + "name": "phone_in_talk", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_locked": { + "name": "phone_locked", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_missed": { + "name": "phone_missed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_paused": { + "name": "phone_paused", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power": { + "name": "power", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_off": { + "name": "power_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "priority_high": { + "name": "priority_high", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "running_with_errors": { + "name": "running_with_errors", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card": { + "name": "sd_card", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card_alert": { + "name": "sd_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_alert": { + "name": "sim_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms": { + "name": "sms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms_failed": { + "name": "sms_failed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "support_agent": { + "name": "support_agent", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sync": { + "name": "sync", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_disabled": { + "name": "sync_disabled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_problem": { + "name": "sync_problem", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update": { + "name": "system_update", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tap_and_play": { + "name": "tap_and_play", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "time_to_leave": { + "name": "time_to_leave", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv_off": { + "name": "tv_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vibration": { + "name": "vibration", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_chat": { + "name": "voice_chat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vpn_lock": { + "name": "vpn_lock", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wc": { + "name": "wc", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi": { + "name": "wifi", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_off": { + "name": "wifi_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ac_unit": { + "name": "ac_unit", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airport_shuttle": { + "name": "airport_shuttle", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_inclusive": { + "name": "all_inclusive", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apartment": { + "name": "apartment", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "baby_changing_station": { + "name": "baby_changing_station", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backpack": { + "name": "backpack", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "balcony": { + "name": "balcony", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bathtub": { + "name": "bathtub", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "beach_access": { + "name": "beach_access", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bento": { + "name": "bento", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bungalow": { + "name": "bungalow", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "business_center": { + "name": "business_center", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cabin": { + "name": "cabin", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "carpenter": { + "name": "carpenter", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "casino": { + "name": "casino", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chalet": { + "name": "chalet", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "charging_station": { + "name": "charging_station", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "checkroom": { + "name": "checkroom", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "child_care": { + "name": "child_care", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "child_friendly": { + "name": "child_friendly", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "corporate_fare": { + "name": "corporate_fare", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cottage": { + "name": "cottage", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "countertops": { + "name": "countertops", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crib": { + "name": "crib", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_step": { + "name": "do_not_step", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_touch": { + "name": "do_not_touch", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dry": { + "name": "dry", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "elevator": { + "name": "elevator", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "escalator": { + "name": "escalator", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "escalator_warning": { + "name": "escalator_warning", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "family_restroom": { + "name": "family_restroom", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fence": { + "name": "fence", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fire_extinguisher": { + "name": "fire_extinguisher", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fitness_center": { + "name": "fitness_center", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "food_bank": { + "name": "food_bank", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "foundation": { + "name": "foundation", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "free_breakfast": { + "name": "free_breakfast", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gite": { + "name": "gite", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "golf_course": { + "name": "golf_course", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grass": { + "name": "grass", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "holiday_village": { + "name": "holiday_village", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hot_tub": { + "name": "hot_tub", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "house": { + "name": "house", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "houseboat": { + "name": "houseboat", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "house_siding": { + "name": "house_siding", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "iron": { + "name": "iron", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "kitchen": { + "name": "kitchen", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "meeting_room": { + "name": "meeting_room", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "microwave": { + "name": "microwave", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "night_shelter": { + "name": "night_shelter", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_backpack": { + "name": "no_backpack", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_cell": { + "name": "no_cell", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_drinks": { + "name": "no_drinks", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_flash": { + "name": "no_flash", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_food": { + "name": "no_food", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_meeting_room": { + "name": "no_meeting_room", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_photography": { + "name": "no_photography", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_stroller": { + "name": "no_stroller", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "other_houses": { + "name": "other_houses", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pool": { + "name": "pool", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rice_bowl": { + "name": "rice_bowl", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "roofing": { + "name": "roofing", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room_preferences": { + "name": "room_preferences", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room_service": { + "name": "room_service", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rv_hookup": { + "name": "rv_hookup", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smoke_free": { + "name": "smoke_free", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smoking_rooms": { + "name": "smoking_rooms", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "soap": { + "name": "soap", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "spa": { + "name": "spa", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_bar": { + "name": "sports_bar", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stairs": { + "name": "stairs", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storefront": { + "name": "storefront", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stroller": { + "name": "stroller", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tapas": { + "name": "tapas", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tty": { + "name": "tty", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "umbrella": { + "name": "umbrella", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "villa": { + "name": "villa", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wash": { + "name": "wash", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "water_damage": { + "name": "water_damage", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wheelchair_pickup": { + "name": "wheelchair_pickup", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bathroom": { + "name": "bathroom", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bed": { + "name": "bed", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_baby": { + "name": "bedroom_baby", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_child": { + "name": "bedroom_child", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_parent": { + "name": "bedroom_parent", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blender": { + "name": "blender", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_indoor": { + "name": "camera_indoor", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_outdoor": { + "name": "camera_outdoor", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chair": { + "name": "chair", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chair_alt": { + "name": "chair_alt", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "coffee": { + "name": "coffee", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "coffee_maker": { + "name": "coffee_maker", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dining": { + "name": "dining", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "doorbell": { + "name": "doorbell", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_back": { + "name": "door_back", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_front": { + "name": "door_front", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_sliding": { + "name": "door_sliding", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "feed": { + "name": "feed", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flatware": { + "name": "flatware", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "garage": { + "name": "garage", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "light": { + "name": "light", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "living": { + "name": "living", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "manage_search": { + "name": "manage_search", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "podcasts": { + "name": "podcasts", + "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": "" + } + } + }, + "yard": { + "name": "yard", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6_ft_apart": { + "name": "6_ft_apart", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_moderator": { + "name": "add_moderator", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_reaction": { + "name": "add_reaction", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "architecture": { + "name": "architecture", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "back_hand": { + "name": "back_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cake": { + "name": "cake", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "catching_pokemon": { + "name": "catching_pokemon", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "clean_hands": { + "name": "clean_hands", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compost": { + "name": "compost", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "connect_without_contact": { + "name": "connect_without_contact", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "construction": { + "name": "construction", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "coronavirus": { + "name": "coronavirus", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cruelty_free": { + "name": "cruelty_free", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "deck": { + "name": "deck", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "domain": { + "name": "domain", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "downhill_skiing": { + "name": "downhill_skiing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_notifications": { + "name": "edit_notifications", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "elderly": { + "name": "elderly", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_emotions": { + "name": "emoji_emotions", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_events": { + "name": "emoji_events", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_flags": { + "name": "emoji_flags", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_food_beverage": { + "name": "emoji_food_beverage", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_nature": { + "name": "emoji_nature", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_objects": { + "name": "emoji_objects", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_people": { + "name": "emoji_people", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_symbols": { + "name": "emoji_symbols", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_transportation": { + "name": "emoji_transportation", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "engineering": { + "name": "engineering", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "facebook": { + "name": "facebook", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "female": { + "name": "female", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "fireplace": { + "name": "fireplace", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "follow_the_signs": { + "name": "follow_the_signs", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "front_hand": { + "name": "front_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "group": { + "name": "group", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "groups": { + "name": "groups", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "group_add": { + "name": "group_add", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "group_off": { + "name": "group_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "health_and_safety": { + "name": "health_and_safety", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hiking": { + "name": "hiking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "history_edu": { + "name": "history_edu", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ice_skating": { + "name": "ice_skating", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ios_share": { + "name": "ios_share", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "kayaking": { + "name": "kayaking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "king_bed": { + "name": "king_bed", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "kitesurfing": { + "name": "kitesurfing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "location_city": { + "name": "location_city", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "luggage": { + "name": "luggage", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "male": { + "name": "male", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "masks": { + "name": "masks", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "military_tech": { + "name": "military_tech", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mood": { + "name": "mood", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mood_bad": { + "name": "mood_bad", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nights_stay": { + "name": "nights_stay", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nordic_walking": { + "name": "nordic_walking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications": { + "name": "notifications", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_active": { + "name": "notifications_active", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_none": { + "name": "notifications_none", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_off": { + "name": "notifications_off", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_paused": { + "name": "notifications_paused", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notification_add": { + "name": "notification_add", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_luggage": { + "name": "no_luggage", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outdoor_grill": { + "name": "outdoor_grill", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pages": { + "name": "pages", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "paragliding": { + "name": "paragliding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "party_mode": { + "name": "party_mode", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "people": { + "name": "people", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "people_alt": { + "name": "people_alt", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "people_outline": { + "name": "people_outline", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person": { + "name": "person", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_injury": { + "name": "personal_injury", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add": { + "name": "person_add", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_alt": { + "name": "person_add_alt", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_alt_1": { + "name": "person_add_alt_1", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_off": { + "name": "person_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_outline": { + "name": "person_outline", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_remove": { + "name": "person_remove", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_remove_alt_1": { + "name": "person_remove_alt_1", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "piano": { + "name": "piano", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "piano_off": { + "name": "piano_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "plus_one": { + "name": "plus_one", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "poll": { + "name": "poll", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "precision_manufacturing": { + "name": "precision_manufacturing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "psychology": { + "name": "psychology", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "public": { + "name": "public", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "public_off": { + "name": "public_off", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "real_estate_agent": { + "name": "real_estate_agent", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "recommend": { + "name": "recommend", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "recycling": { + "name": "recycling", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "reduce_capacity": { + "name": "reduce_capacity", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_moderator": { + "name": "remove_moderator", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "safety_divider": { + "name": "safety_divider", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sanitizer": { + "name": "sanitizer", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "school": { + "name": "school", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "science": { + "name": "science", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "self_improvement": { + "name": "self_improvement", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_dissatisfied": { + "name": "sentiment_dissatisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_neutral": { + "name": "sentiment_neutral", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_satisfied": { + "name": "sentiment_satisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_very_dissatisfied": { + "name": "sentiment_very_dissatisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_very_satisfied": { + "name": "sentiment_very_satisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "share": { + "name": "share", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sick": { + "name": "sick", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "single_bed": { + "name": "single_bed", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "skateboarding": { + "name": "skateboarding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sledding": { + "name": "sledding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snowboarding": { + "name": "snowboarding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snowshoeing": { + "name": "snowshoeing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "social_distance": { + "name": "social_distance", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports": { + "name": "sports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_baseball": { + "name": "sports_baseball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_basketball": { + "name": "sports_basketball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_cricket": { + "name": "sports_cricket", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_esports": { + "name": "sports_esports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_football": { + "name": "sports_football", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_golf": { + "name": "sports_golf", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_handball": { + "name": "sports_handball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_hockey": { + "name": "sports_hockey", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_kabaddi": { + "name": "sports_kabaddi", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_mma": { + "name": "sports_mma", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_motorsports": { + "name": "sports_motorsports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_rugby": { + "name": "sports_rugby", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_soccer": { + "name": "sports_soccer", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_tennis": { + "name": "sports_tennis", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_volleyball": { + "name": "sports_volleyball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "surfing": { + "name": "surfing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_account": { + "name": "switch_account", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down_alt": { + "name": "thumb_down_alt", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up_alt": { + "name": "thumb_up_alt", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transgender": { + "name": "transgender", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "travel_explore": { + "name": "travel_explore", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "water_drop": { + "name": "water_drop", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "waving_hand": { + "name": "waving_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "whatshot": { + "name": "whatshot", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_box": { + "name": "check_box", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_box_outline_blank": { + "name": "check_box_outline_blank", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "indeterminate_check_box": { + "name": "indeterminate_check_box", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio_button_checked": { + "name": "radio_button_checked", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio_button_unchecked": { + "name": "radio_button_unchecked", + "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": "" + } + } + }, + "star_border_purple500": { + "name": "star_border_purple500", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_half": { + "name": "star_half", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_outline": { + "name": "star_outline", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_purple500": { + "name": "star_purple500", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toggle_off": { + "name": "toggle_off", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toggle_on": { + "name": "toggle_on", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + } +} \ No newline at end of file diff --git a/sphinx_design/compiled/material_regular.json b/sphinx_design/compiled/material_regular.json new file mode 100644 index 0000000..0f2bf50 --- /dev/null +++ b/sphinx_design/compiled/material_regular.json @@ -0,0 +1,23086 @@ +{ + "3d_rotation": { + "name": "3d_rotation", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessibility": { + "name": "accessibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessibility_new": { + "name": "accessibility_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessible": { + "name": "accessible", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessible_forward": { + "name": "accessible_forward", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_balance": { + "name": "account_balance", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_balance_wallet": { + "name": "account_balance_wallet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_box": { + "name": "account_box", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_circle": { + "name": "account_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "addchart": { + "name": "addchart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_shopping_cart": { + "name": "add_shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_task": { + "name": "add_task", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_drive": { + "name": "add_to_drive", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "admin_panel_settings": { + "name": "admin_panel_settings", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ads_click": { + "name": "ads_click", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm": { + "name": "alarm", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_add": { + "name": "alarm_add", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_off": { + "name": "alarm_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_on": { + "name": "alarm_on", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_inbox": { + "name": "all_inbox", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_out": { + "name": "all_out", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "analytics": { + "name": "analytics", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "anchor": { + "name": "anchor", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "android": { + "name": "android", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "announcement": { + "name": "announcement", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "api": { + "name": "api", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_blocking": { + "name": "app_blocking", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_circle_down": { + "name": "arrow_circle_down", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_circle_up": { + "name": "arrow_circle_up", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right_alt": { + "name": "arrow_right_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "article": { + "name": "article", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "aspect_ratio": { + "name": "aspect_ratio", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assessment": { + "name": "assessment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment": { + "name": "assignment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_ind": { + "name": "assignment_ind", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_late": { + "name": "assignment_late", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_return": { + "name": "assignment_return", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_returned": { + "name": "assignment_returned", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_turned_in": { + "name": "assignment_turned_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "autorenew": { + "name": "autorenew", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backup": { + "name": "backup", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backup_table": { + "name": "backup_table", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "batch_prediction": { + "name": "batch_prediction", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "book": { + "name": "book", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark": { + "name": "bookmark", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmarks": { + "name": "bookmarks", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_add": { + "name": "bookmark_add", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_added": { + "name": "bookmark_added", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_border": { + "name": "bookmark_border", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_remove": { + "name": "bookmark_remove", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "book_online": { + "name": "book_online", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bug_report": { + "name": "bug_report", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "build": { + "name": "build", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "build_circle": { + "name": "build_circle", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cached": { + "name": "cached", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_today": { + "name": "calendar_today", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_day": { + "name": "calendar_view_day", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_month": { + "name": "calendar_view_month", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_week": { + "name": "calendar_view_week", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_enhance": { + "name": "camera_enhance", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel_schedule_send": { + "name": "cancel_schedule_send", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "card_giftcard": { + "name": "card_giftcard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "card_membership": { + "name": "card_membership", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "card_travel": { + "name": "card_travel", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "change_history": { + "name": "change_history", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_circle": { + "name": "check_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_circle_outline": { + "name": "check_circle_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chrome_reader_mode": { + "name": "chrome_reader_mode", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "circle_notifications": { + "name": "circle_notifications", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "class": { + "name": "class", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close_fullscreen": { + "name": "close_fullscreen", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "code": { + "name": "code", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "code_off": { + "name": "code_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "comment_bank": { + "name": "comment_bank", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "commute": { + "name": "commute", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compare_arrows": { + "name": "compare_arrows", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compress": { + "name": "compress", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contactless": { + "name": "contactless", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_page": { + "name": "contact_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_support": { + "name": "contact_support", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "copyright": { + "name": "copyright", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_card": { + "name": "credit_card", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_card_off": { + "name": "credit_card_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dangerous": { + "name": "dangerous", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dashboard": { + "name": "dashboard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dashboard_customize": { + "name": "dashboard_customize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_exploration": { + "name": "data_exploration", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "date_range": { + "name": "date_range", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete": { + "name": "delete", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_forever": { + "name": "delete_forever", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_outline": { + "name": "delete_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "description": { + "name": "description", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disabled_by_default": { + "name": "disabled_by_default", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disabled_visible": { + "name": "disabled_visible", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dns": { + "name": "dns", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done": { + "name": "done", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done_all": { + "name": "done_all", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done_outline": { + "name": "done_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "donut_large": { + "name": "donut_large", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "donut_small": { + "name": "donut_small", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drag_indicator": { + "name": "drag_indicator", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dynamic_form": { + "name": "dynamic_form", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "eco": { + "name": "eco", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_calendar": { + "name": "edit_calendar", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_off": { + "name": "edit_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "ic_edit_off_24px" + } + } + }, + "eject": { + "name": "eject", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "euro_symbol": { + "name": "euro_symbol", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event": { + "name": "event", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_seat": { + "name": "event_seat", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exit_to_app": { + "name": "exit_to_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand": { + "name": "expand", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explore": { + "name": "explore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explore_off": { + "name": "explore_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "extension": { + "name": "extension", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "extension_off": { + "name": "extension_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "face": { + "name": "face", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fact_check": { + "name": "fact_check", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "favorite": { + "name": "favorite", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "favorite_border": { + "name": "favorite_border", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "feedback": { + "name": "feedback", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_present": { + "name": "file_present", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_alt": { + "name": "filter_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_list_alt": { + "name": "filter_list_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "find_in_page": { + "name": "find_in_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "find_replace": { + "name": "find_replace", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fingerprint": { + "name": "fingerprint", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fit_screen": { + "name": "fit_screen", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flaky": { + "name": "flaky", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flight_land": { + "name": "flight_land", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flight_takeoff": { + "name": "flight_takeoff", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_to_back": { + "name": "flip_to_back", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_to_front": { + "name": "flip_to_front", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flutter_dash": { + "name": "flutter_dash", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "free_cancellation": { + "name": "free_cancellation", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "gavel": { + "name": "gavel", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "generating_tokens": { + "name": "generating_tokens", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "get_app": { + "name": "get_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gif": { + "name": "gif", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grade": { + "name": "grade", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grading": { + "name": "grading", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "group_work": { + "name": "group_work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "g_translate": { + "name": "g_translate", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help": { + "name": "help", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help_center": { + "name": "help_center", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help_outline": { + "name": "help_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hide_source": { + "name": "hide_source", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight_alt": { + "name": "highlight_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight_off": { + "name": "highlight_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "history": { + "name": "history", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "history_toggle_off": { + "name": "history_toggle_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home": { + "name": "home", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_filled": { + "name": "home_filled", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_split": { + "name": "horizontal_split", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hotel_class": { + "name": "hotel_class", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_disabled": { + "name": "hourglass_disabled", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_empty": { + "name": "hourglass_empty", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_full": { + "name": "hourglass_full", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "http": { + "name": "http", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "https": { + "name": "https", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "important_devices": { + "name": "important_devices", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "info": { + "name": "info", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "info_outline": { + "name": "info_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "input": { + "name": "input", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "integration_instructions": { + "name": "integration_instructions", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "invert_colors": { + "name": "invert_colors", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "label": { + "name": "label", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_important": { + "name": "label_important", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_important_outline": { + "name": "label_important_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_off": { + "name": "label_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_outline": { + "name": "label_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "language": { + "name": "language", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "launch": { + "name": "launch", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leaderboard": { + "name": "leaderboard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lightbulb": { + "name": "lightbulb", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lightbulb_outline": { + "name": "lightbulb_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "line_style": { + "name": "line_style", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "line_weight": { + "name": "line_weight", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "list": { + "name": "list", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock": { + "name": "lock", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_clock": { + "name": "lock_clock", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_open": { + "name": "lock_open", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_outline": { + "name": "lock_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "login": { + "name": "login", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "logout": { + "name": "logout", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loyalty": { + "name": "loyalty", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "manage_accounts": { + "name": "manage_accounts", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "markunread_mailbox": { + "name": "markunread_mailbox", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_as_unread": { + "name": "mark_as_unread", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "maximize": { + "name": "maximize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mediation": { + "name": "mediation", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "minimize": { + "name": "minimize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "model_training": { + "name": "model_training", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "new_label": { + "name": "new_label", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "next_plan": { + "name": "next_plan", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlight_round": { + "name": "nightlight_round", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note_add": { + "name": "note_add", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "not_accessible": { + "name": "not_accessible", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "not_started": { + "name": "not_started", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_accounts": { + "name": "no_accounts", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_bolt": { + "name": "offline_bolt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_pin": { + "name": "offline_pin", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "online_prediction": { + "name": "online_prediction", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "opacity": { + "name": "opacity", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_browser": { + "name": "open_in_browser", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_full": { + "name": "open_in_full", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_new": { + "name": "open_in_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_new_off": { + "name": "open_in_new_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "open_with": { + "name": "open_with", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbond": { + "name": "outbond", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbound": { + "name": "outbound", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbox": { + "name": "outbox", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "outgoing_mail": { + "name": "outgoing_mail", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "outlet": { + "name": "outlet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pageview": { + "name": "pageview", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "paid": { + "name": "paid", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pan_tool": { + "name": "pan_tool", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payment": { + "name": "payment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pending": { + "name": "pending", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pending_actions": { + "name": "pending_actions", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_camera_mic": { + "name": "perm_camera_mic", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_contact_calendar": { + "name": "perm_contact_calendar", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_data_setting": { + "name": "perm_data_setting", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_device_information": { + "name": "perm_device_information", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_identity": { + "name": "perm_identity", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_media": { + "name": "perm_media", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_phone_msg": { + "name": "perm_phone_msg", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_scan_wifi": { + "name": "perm_scan_wifi", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pets": { + "name": "pets", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_in_picture": { + "name": "picture_in_picture", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_in_picture_alt": { + "name": "picture_in_picture_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_end": { + "name": "pin_end", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_invoke": { + "name": "pin_invoke", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "plagiarism": { + "name": "plagiarism", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_for_work": { + "name": "play_for_work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "polymer": { + "name": "polymer", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_settings_new": { + "name": "power_settings_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pregnant_woman": { + "name": "pregnant_woman", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "preview": { + "name": "preview", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "print": { + "name": "print", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "privacy_tip": { + "name": "privacy_tip", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "private_connectivity": { + "name": "private_connectivity", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "production_quantity_limits": { + "name": "production_quantity_limits", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "published_with_changes": { + "name": "published_with_changes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "query_builder": { + "name": "query_builder", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "question_answer": { + "name": "question_answer", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "quickreply": { + "name": "quickreply", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "receipt": { + "name": "receipt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "record_voice_over": { + "name": "record_voice_over", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "redeem": { + "name": "redeem", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_done": { + "name": "remove_done", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_shopping_cart": { + "name": "remove_shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reorder": { + "name": "reorder", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_problem": { + "name": "report_problem", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_page": { + "name": "request_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore": { + "name": "restore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore_from_trash": { + "name": "restore_from_trash", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore_page": { + "name": "restore_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room": { + "name": "room", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rounded_corner": { + "name": "rounded_corner", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rowing": { + "name": "rowing", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule": { + "name": "rule", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "saved_search": { + "name": "saved_search", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "savings": { + "name": "savings", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "schedule": { + "name": "schedule", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "schedule_send": { + "name": "schedule_send", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "search": { + "name": "search", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "search_off": { + "name": "search_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "segment": { + "name": "segment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send_and_archive": { + "name": "send_and_archive", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensors": { + "name": "sensors", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensors_off": { + "name": "sensors_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "settings": { + "name": "settings", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_accessibility": { + "name": "settings_accessibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_applications": { + "name": "settings_applications", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_backup_restore": { + "name": "settings_backup_restore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_bluetooth": { + "name": "settings_bluetooth", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_brightness": { + "name": "settings_brightness", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_cell": { + "name": "settings_cell", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_ethernet": { + "name": "settings_ethernet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_antenna": { + "name": "settings_input_antenna", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_component": { + "name": "settings_input_component", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_composite": { + "name": "settings_input_composite", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_hdmi": { + "name": "settings_input_hdmi", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_svideo": { + "name": "settings_input_svideo", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_overscan": { + "name": "settings_overscan", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_phone": { + "name": "settings_phone", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_power": { + "name": "settings_power", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_remote": { + "name": "settings_remote", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_voice": { + "name": "settings_voice", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shop": { + "name": "shop", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_bag": { + "name": "shopping_bag", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_basket": { + "name": "shopping_basket", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_cart": { + "name": "shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shop_2": { + "name": "shop_2", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "shop_two": { + "name": "shop_two", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_button": { + "name": "smart_button", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "source": { + "name": "source", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "space_dashboard": { + "name": "space_dashboard", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_notes": { + "name": "speaker_notes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_notes_off": { + "name": "speaker_notes_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "spellcheck": { + "name": "spellcheck", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stars": { + "name": "stars", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_rate": { + "name": "star_rate", + "keywords": [ + "action" + ], + "heights": { + "18": { + "width": 18, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sticky_note_2": { + "name": "sticky_note_2", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "store": { + "name": "store", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subject": { + "name": "subject", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subtitles_off": { + "name": "subtitles_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "supervised_user_circle": { + "name": "supervised_user_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "supervisor_account": { + "name": "supervisor_account", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "support": { + "name": "support", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_horiz": { + "name": "swap_horiz", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_horizontal_circle": { + "name": "swap_horizontal_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_vert": { + "name": "swap_vert", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_vertical_circle": { + "name": "swap_vertical_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swipe": { + "name": "swipe", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_alt": { + "name": "sync_alt", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update_alt": { + "name": "system_update_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tab": { + "name": "tab", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "table_view": { + "name": "table_view", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tab_unselected": { + "name": "tab_unselected", + "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": "" + } + } + }, + "text_rotate_vertical": { + "name": "text_rotate_vertical", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_angledown": { + "name": "text_rotation_angledown", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_angleup": { + "name": "text_rotation_angleup", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_down": { + "name": "text_rotation_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_none": { + "name": "text_rotation_none", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "theaters": { + "name": "theaters", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumbs_up_down": { + "name": "thumbs_up_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down": { + "name": "thumb_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down_off_alt": { + "name": "thumb_down_off_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up": { + "name": "thumb_up", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up_off_alt": { + "name": "thumb_up_off_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timeline": { + "name": "timeline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tips_and_updates": { + "name": "tips_and_updates", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "toc": { + "name": "toc", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "today": { + "name": "today", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toll": { + "name": "toll", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "touch_app": { + "name": "touch_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tour": { + "name": "tour", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "track_changes": { + "name": "track_changes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "translate": { + "name": "translate", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_down": { + "name": "trending_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_flat": { + "name": "trending_flat", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_up": { + "name": "trending_up", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "try": { + "name": "try", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "turned_in": { + "name": "turned_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "turned_in_not": { + "name": "turned_in_not", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unpublished": { + "name": "unpublished", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "update": { + "name": "update", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "update_disabled": { + "name": "update_disabled", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "upgrade": { + "name": "upgrade", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "verified": { + "name": "verified", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "verified_user": { + "name": "verified_user", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_split": { + "name": "vertical_split", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_agenda": { + "name": "view_agenda", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_array": { + "name": "view_array", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_carousel": { + "name": "view_carousel", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_column": { + "name": "view_column", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_day": { + "name": "view_day", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_headline": { + "name": "view_headline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_in_ar": { + "name": "view_in_ar", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_list": { + "name": "view_list", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_module": { + "name": "view_module", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_quilt": { + "name": "view_quilt", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_sidebar": { + "name": "view_sidebar", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_stream": { + "name": "view_stream", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_week": { + "name": "view_week", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "visibility": { + "name": "visibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "visibility_off": { + "name": "visibility_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_over_off": { + "name": "voice_over_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "watch_later": { + "name": "watch_later", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_protected_setup": { + "name": "wifi_protected_setup", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "work": { + "name": "work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "work_off": { + "name": "work_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "work_outline": { + "name": "work_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wysiwyg": { + "name": "wysiwyg", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "youtube_searched_for": { + "name": "youtube_searched_for", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_in": { + "name": "zoom_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_out": { + "name": "zoom_out", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alert": { + "name": "add_alert", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_delete": { + "name": "auto_delete", + "keywords": [ + "alert" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "error": { + "name": "error", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "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": "" + } + } + }, + "warning": { + "name": "warning", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "warning_amber": { + "name": "warning_amber", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "10k": { + "name": "10k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1k": { + "name": "1k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1k_plus": { + "name": "1k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2k": { + "name": "2k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2k_plus": { + "name": "2k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3k": { + "name": "3k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3k_plus": { + "name": "3k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4k": { + "name": "4k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4k_plus": { + "name": "4k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5g": { + "name": "5g", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "5k": { + "name": "5k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5k_plus": { + "name": "5k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6k": { + "name": "6k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6k_plus": { + "name": "6k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7k": { + "name": "7k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7k_plus": { + "name": "7k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8k": { + "name": "8k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8k_plus": { + "name": "8k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9k": { + "name": "9k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9k_plus": { + "name": "9k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_queue": { + "name": "add_to_queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airplay": { + "name": "airplay", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "album": { + "name": "album", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "art_track": { + "name": "art_track", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "av_timer": { + "name": "av_timer", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "branding_watermark": { + "name": "branding_watermark", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_to_action": { + "name": "call_to_action", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption": { + "name": "closed_caption", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption_disabled": { + "name": "closed_caption_disabled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption_off": { + "name": "closed_caption_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_camera": { + "name": "control_camera", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "equalizer": { + "name": "equalizer", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explicit": { + "name": "explicit", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fast_forward": { + "name": "fast_forward", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fast_rewind": { + "name": "fast_rewind", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "featured_play_list": { + "name": "featured_play_list", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "featured_video": { + "name": "featured_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_dvr": { + "name": "fiber_dvr", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_manual_record": { + "name": "fiber_manual_record", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_new": { + "name": "fiber_new", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_pin": { + "name": "fiber_pin", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_smart_record": { + "name": "fiber_smart_record", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_10": { + "name": "forward_10", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_30": { + "name": "forward_30", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_5": { + "name": "forward_5", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "games": { + "name": "games", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hd": { + "name": "hd", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hearing": { + "name": "hearing", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hearing_disabled": { + "name": "hearing_disabled", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "high_quality": { + "name": "high_quality", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_add": { + "name": "library_add", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_add_check": { + "name": "library_add_check", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "library_books": { + "name": "library_books", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_music": { + "name": "library_music", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loop": { + "name": "loop", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic": { + "name": "mic", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_none": { + "name": "mic_none", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_off": { + "name": "mic_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "missed_video_call": { + "name": "missed_video_call", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie": { + "name": "movie", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_video": { + "name": "music_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "new_releases": { + "name": "new_releases", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note": { + "name": "note", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "not_interested": { + "name": "not_interested", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause": { + "name": "pause", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle": { + "name": "pause_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle_filled": { + "name": "pause_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle_outline": { + "name": "pause_circle_outline", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_add": { + "name": "playlist_add", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_add_check": { + "name": "playlist_add_check", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_play": { + "name": "playlist_play", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_arrow": { + "name": "play_arrow", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle": { + "name": "play_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle_filled": { + "name": "play_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle_outline": { + "name": "play_circle_outline", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_disabled": { + "name": "play_disabled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "queue": { + "name": "queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "queue_music": { + "name": "queue_music", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "queue_play_next": { + "name": "queue_play_next", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio": { + "name": "radio", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "recent_actors": { + "name": "recent_actors", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_from_queue": { + "name": "remove_from_queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat": { + "name": "repeat", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_on": { + "name": "repeat_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_one": { + "name": "repeat_one", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_one_on": { + "name": "repeat_one_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay": { + "name": "replay", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_10": { + "name": "replay_10", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_30": { + "name": "replay_30", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_5": { + "name": "replay_5", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_circle_filled": { + "name": "replay_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + }, + "36": { + "width": 36, + "path": "" + } + } + }, + "sd": { + "name": "sd", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shuffle": { + "name": "shuffle", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shuffle_on": { + "name": "shuffle_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "skip_next": { + "name": "skip_next", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "skip_previous": { + "name": "skip_previous", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "slow_motion_video": { + "name": "slow_motion_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snooze": { + "name": "snooze", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sort_by_alpha": { + "name": "sort_by_alpha", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speed": { + "name": "speed", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop": { + "name": "stop", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop_circle": { + "name": "stop_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "subscriptions": { + "name": "subscriptions", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subtitles": { + "name": "subtitles", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "surround_sound": { + "name": "surround_sound", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videocam": { + "name": "videocam", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videocam_off": { + "name": "videocam_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_call": { + "name": "video_call", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_label": { + "name": "video_label", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_library": { + "name": "video_library", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_settings": { + "name": "video_settings", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_down": { + "name": "volume_down", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_down_alt": { + "name": "volume_down_alt", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_mute": { + "name": "volume_mute", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_off": { + "name": "volume_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_up": { + "name": "volume_up", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web": { + "name": "web", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web_asset": { + "name": "web_asset", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web_asset_off": { + "name": "web_asset_off", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "3p": { + "name": "3p", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_ic_call": { + "name": "add_ic_call", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alternate_email": { + "name": "alternate_email", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_registration": { + "name": "app_registration", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "business": { + "name": "business", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call": { + "name": "call", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_end": { + "name": "call_end", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_made": { + "name": "call_made", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_merge": { + "name": "call_merge", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_missed": { + "name": "call_missed", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_missed_outgoing": { + "name": "call_missed_outgoing", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_received": { + "name": "call_received", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_split": { + "name": "call_split", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel_presentation": { + "name": "cancel_presentation", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cell_wifi": { + "name": "cell_wifi", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat": { + "name": "chat", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat_bubble": { + "name": "chat_bubble", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat_bubble_outline": { + "name": "chat_bubble_outline", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "clear_all": { + "name": "clear_all", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "comment": { + "name": "comment", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contacts": { + "name": "contacts", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_mail": { + "name": "contact_mail", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_phone": { + "name": "contact_phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_access_disabled": { + "name": "desktop_access_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dialer_sip": { + "name": "dialer_sip", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dialpad": { + "name": "dialpad", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "document_scanner": { + "name": "document_scanner", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "domain_disabled": { + "name": "domain_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "domain_verification": { + "name": "domain_verification", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "duo": { + "name": "duo", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "email": { + "name": "email", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forum": { + "name": "forum", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_to_inbox": { + "name": "forward_to_inbox", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_bottom": { + "name": "hourglass_bottom", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_top": { + "name": "hourglass_top", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "import_contacts": { + "name": "import_contacts", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "import_export": { + "name": "import_export", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "invert_colors_off": { + "name": "invert_colors_off", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "list_alt": { + "name": "list_alt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_help": { + "name": "live_help", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_off": { + "name": "location_off", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_on": { + "name": "location_on", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mail_outline": { + "name": "mail_outline", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_chat_read": { + "name": "mark_chat_read", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_chat_unread": { + "name": "mark_chat_unread", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_email_read": { + "name": "mark_email_read", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_email_unread": { + "name": "mark_email_unread", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "message": { + "name": "message", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mobile_screen_share": { + "name": "mobile_screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_time": { + "name": "more_time", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nat": { + "name": "nat", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_sim": { + "name": "no_sim", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_presentation": { + "name": "pause_presentation", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_disabled": { + "name": "person_add_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_search": { + "name": "person_search", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "phone": { + "name": "phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_erase": { + "name": "phonelink_erase", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_lock": { + "name": "phonelink_lock", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_ring": { + "name": "phonelink_ring", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_setup": { + "name": "phonelink_setup", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_disabled": { + "name": "phone_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_enabled": { + "name": "phone_enabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "portable_wifi_off": { + "name": "portable_wifi_off", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "present_to_all": { + "name": "present_to_all", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "print_disabled": { + "name": "print_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code": { + "name": "qr_code", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code_2": { + "name": "qr_code_2", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code_scanner": { + "name": "qr_code_scanner", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "read_more": { + "name": "read_more", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ring_volume": { + "name": "ring_volume", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rss_feed": { + "name": "rss_feed", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rtt": { + "name": "rtt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "ic_dialer_rtt_revised_24px" + } + } + }, + "screen_share": { + "name": "screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_satisfied_alt": { + "name": "sentiment_satisfied_alt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sip": { + "name": "sip", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_phone": { + "name": "speaker_phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_current_landscape": { + "name": "stay_current_landscape", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_current_portrait": { + "name": "stay_current_portrait", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_primary_landscape": { + "name": "stay_primary_landscape", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_primary_portrait": { + "name": "stay_primary_portrait", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop_screen_share": { + "name": "stop_screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_calls": { + "name": "swap_calls", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "textsms": { + "name": "textsms", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unsubscribe": { + "name": "unsubscribe", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voicemail": { + "name": "voicemail", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vpn_key": { + "name": "vpn_key", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_calling": { + "name": "wifi_calling", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add": { + "name": "add", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_box": { + "name": "add_box", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_circle": { + "name": "add_circle", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_circle_outline": { + "name": "add_circle_outline", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_link": { + "name": "add_link", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "amp_stories": { + "name": "amp_stories", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "archive": { + "name": "archive", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attribution": { + "name": "attribution", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backspace": { + "name": "backspace", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ballot": { + "name": "ballot", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "biotech": { + "name": "biotech", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "block": { + "name": "block", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "block_flipped": { + "name": "block_flipped", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bolt": { + "name": "bolt", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calculate": { + "name": "calculate", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "change_circle": { + "name": "change_circle", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "clear": { + "name": "clear", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_copy": { + "name": "content_copy", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_cut": { + "name": "content_cut", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_paste": { + "name": "content_paste", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_paste_off": { + "name": "content_paste_off", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "copy_all": { + "name": "copy_all", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "create": { + "name": "create", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_sweep": { + "name": "delete_sweep", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drafts": { + "name": "drafts", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dynamic_feed": { + "name": "dynamic_feed", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "file_copy": { + "name": "file_copy", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_list": { + "name": "filter_list", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flag": { + "name": "flag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "font_download": { + "name": "font_download", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "font_download_off": { + "name": "font_download_off", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "forward": { + "name": "forward", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gesture": { + "name": "gesture", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "how_to_reg": { + "name": "how_to_reg", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "how_to_vote": { + "name": "how_to_vote", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "inbox": { + "name": "inbox", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insights": { + "name": "insights", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "inventory": { + "name": "inventory", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "inventory_2": { + "name": "inventory_2", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "link": { + "name": "link", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "link_off": { + "name": "link_off", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "low_priority": { + "name": "low_priority", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mail": { + "name": "mail", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "markunread": { + "name": "markunread", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "move_to_inbox": { + "name": "move_to_inbox", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "next_week": { + "name": "next_week", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outlined_flag": { + "name": "outlined_flag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "policy": { + "name": "policy", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "push_pin": { + "name": "push_pin", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "redo": { + "name": "redo", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove": { + "name": "remove", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_circle": { + "name": "remove_circle", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_circle_outline": { + "name": "remove_circle_outline", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reply": { + "name": "reply", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reply_all": { + "name": "reply_all", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report": { + "name": "report", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_gmailerrorred": { + "name": "report_gmailerrorred", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_off": { + "name": "report_off", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "save": { + "name": "save", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "save_alt": { + "name": "save_alt", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "select_all": { + "name": "select_all", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send": { + "name": "send", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shield": { + "name": "shield", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sort": { + "name": "sort", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "square_foot": { + "name": "square_foot", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "stacked_bar_chart": { + "name": "stacked_bar_chart", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stream": { + "name": "stream", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tag": { + "name": "tag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_format": { + "name": "text_format", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unarchive": { + "name": "unarchive", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "undo": { + "name": "undo", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upcoming": { + "name": "upcoming", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waves": { + "name": "waves", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web_stories": { + "name": "web_stories", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "weekend": { + "name": "weekend", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "where_to_vote": { + "name": "where_to_vote", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1x_mobiledata": { + "name": "1x_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "30fps": { + "name": "30fps", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3g_mobiledata": { + "name": "3g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4g_mobiledata": { + "name": "4g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4g_plus_mobiledata": { + "name": "4g_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "60fps": { + "name": "60fps", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_alarm": { + "name": "access_alarm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_alarms": { + "name": "access_alarms", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_time": { + "name": "access_time", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_time_filled": { + "name": "access_time_filled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alarm": { + "name": "add_alarm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_home_screen": { + "name": "add_to_home_screen", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ad_units": { + "name": "ad_units", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "air": { + "name": "air", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airplanemode_active": { + "name": "airplanemode_active", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airplanemode_inactive": { + "name": "airplanemode_inactive", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airplane_ticket": { + "name": "airplane_ticket", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "aod": { + "name": "aod", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_alert": { + "name": "battery_alert", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_charging_full": { + "name": "battery_charging_full", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_full": { + "name": "battery_full", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_saver": { + "name": "battery_saver", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_std": { + "name": "battery_std", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_unknown": { + "name": "battery_unknown", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bloodtype": { + "name": "bloodtype", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth": { + "name": "bluetooth", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_connected": { + "name": "bluetooth_connected", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_disabled": { + "name": "bluetooth_disabled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_drive": { + "name": "bluetooth_drive", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_searching": { + "name": "bluetooth_searching", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_auto": { + "name": "brightness_auto", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_high": { + "name": "brightness_high", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_low": { + "name": "brightness_low", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_medium": { + "name": "brightness_medium", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cable": { + "name": "cable", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cameraswitch": { + "name": "cameraswitch", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_score": { + "name": "credit_score", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dark_mode": { + "name": "dark_mode", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "data_saver_off": { + "name": "data_saver_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_saver_on": { + "name": "data_saver_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_usage": { + "name": "data_usage", + "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": "" + } + } + }, + "device_thermostat": { + "name": "device_thermostat", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on_total_silence": { + "name": "do_not_disturb_on_total_silence", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dvr": { + "name": "dvr", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edgesensor_high": { + "name": "edgesensor_high", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edgesensor_low": { + "name": "edgesensor_low", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "e_mobiledata": { + "name": "e_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flashlight_off": { + "name": "flashlight_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flashlight_on": { + "name": "flashlight_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flourescent": { + "name": "flourescent", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fmd_bad": { + "name": "fmd_bad", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fmd_good": { + "name": "fmd_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_bad": { + "name": "gpp_bad", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_good": { + "name": "gpp_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_maybe": { + "name": "gpp_maybe", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_fixed": { + "name": "gps_fixed", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_not_fixed": { + "name": "gps_not_fixed", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_off": { + "name": "gps_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "graphic_eq": { + "name": "graphic_eq", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_3x3": { + "name": "grid_3x3", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_4x4": { + "name": "grid_4x4", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_goldenratio": { + "name": "grid_goldenratio", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "g_mobiledata": { + "name": "g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_auto": { + "name": "hdr_auto", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_auto_select": { + "name": "hdr_auto_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_off_select": { + "name": "hdr_off_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_on_select": { + "name": "hdr_on_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "h_mobiledata": { + "name": "h_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "h_plus_mobiledata": { + "name": "h_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lens_blur": { + "name": "lens_blur", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "light_mode": { + "name": "light_mode", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "location_disabled": { + "name": "location_disabled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_searching": { + "name": "location_searching", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lte_mobiledata": { + "name": "lte_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lte_plus_mobiledata": { + "name": "lte_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "media_bluetooth_off": { + "name": "media_bluetooth_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "media_bluetooth_on": { + "name": "media_bluetooth_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "medication": { + "name": "medication", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mobiledata_off": { + "name": "mobiledata_off", + "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": "" + } + } + }, + "mode_night": { + "name": "mode_night", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_standby": { + "name": "mode_standby", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor_weight": { + "name": "monitor_weight", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nearby_error": { + "name": "nearby_error", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nearby_off": { + "name": "nearby_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_cell": { + "name": "network_cell", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_wifi": { + "name": "network_wifi", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nfc": { + "name": "nfc", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlight": { + "name": "nightlight", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note_alt": { + "name": "note_alt", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "password": { + "name": "password", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pattern": { + "name": "pattern", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pin": { + "name": "pin", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_lesson": { + "name": "play_lesson", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "price_change": { + "name": "price_change", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "price_check": { + "name": "price_check", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "quiz": { + "name": "quiz", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radar": { + "name": "radar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remember_me": { + "name": "remember_me", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reset_tv": { + "name": "reset_tv", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restart_alt": { + "name": "restart_alt", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reviews": { + "name": "reviews", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rsvp": { + "name": "rsvp", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "r_mobiledata": { + "name": "r_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screenshot": { + "name": "screenshot", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_landscape": { + "name": "screen_lock_landscape", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_portrait": { + "name": "screen_lock_portrait", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_rotation": { + "name": "screen_lock_rotation", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_rotation": { + "name": "screen_rotation", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_search_desktop": { + "name": "screen_search_desktop", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_storage": { + "name": "sd_storage", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update": { + "name": "security_update", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update_good": { + "name": "security_update_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update_warning": { + "name": "security_update_warning", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sell": { + "name": "sell", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send_to_mobile": { + "name": "send_to_mobile", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_suggest": { + "name": "settings_suggest", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_system_daydream": { + "name": "settings_system_daydream", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "share_location": { + "name": "share_location", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shortcut": { + "name": "shortcut", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_0_bar": { + "name": "signal_cellular_0_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_4_bar": { + "name": "signal_cellular_4_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_alt": { + "name": "signal_cellular_alt", + "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": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_connected_no_internet_4_bar": { + "name": "signal_cellular_connected_no_internet_4_bar", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_nodata": { + "name": "signal_cellular_nodata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_no_sim": { + "name": "signal_cellular_no_sim", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_null": { + "name": "signal_cellular_null", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_off": { + "name": "signal_cellular_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_0_bar": { + "name": "signal_wifi_0_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_4_bar": { + "name": "signal_wifi_4_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_4_bar_lock": { + "name": "signal_wifi_4_bar_lock", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_bad": { + "name": "signal_wifi_bad", + "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": "" + } + } + }, + "signal_wifi_off": { + "name": "signal_wifi_off", + "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": "" + } + } + }, + "signal_wifi_statusbar_connected_no_internet_4": { + "name": "signal_wifi_statusbar_connected_no_internet_4", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_statusbar_null": { + "name": "signal_wifi_statusbar_null", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_download": { + "name": "sim_card_download", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "splitscreen": { + "name": "splitscreen", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_score": { + "name": "sports_score", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storage": { + "name": "storage", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storm": { + "name": "storm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "summarize": { + "name": "summarize", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update": { + "name": "system_security_update", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update_good": { + "name": "system_security_update_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update_warning": { + "name": "system_security_update_warning", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "task": { + "name": "task", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thermostat": { + "name": "thermostat", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_10_select": { + "name": "timer_10_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_3_select": { + "name": "timer_3_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tungsten": { + "name": "tungsten", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "usb": { + "name": "usb", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "usb_off": { + "name": "usb_off", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wallpaper": { + "name": "wallpaper", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "water": { + "name": "water", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "widgets": { + "name": "widgets", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_calling_3": { + "name": "wifi_calling_3", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_lock": { + "name": "wifi_lock", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering": { + "name": "wifi_tethering", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering_error_rounded": { + "name": "wifi_tethering_error_rounded", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering_off": { + "name": "wifi_tethering_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_chart": { + "name": "add_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_comment": { + "name": "add_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_center": { + "name": "align_horizontal_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_left": { + "name": "align_horizontal_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_right": { + "name": "align_horizontal_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_bottom": { + "name": "align_vertical_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_center": { + "name": "align_vertical_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_top": { + "name": "align_vertical_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "area_chart": { + "name": "area_chart", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_file": { + "name": "attach_file", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_money": { + "name": "attach_money", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_graph": { + "name": "auto_graph", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bar_chart": { + "name": "bar_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_all": { + "name": "border_all", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_bottom": { + "name": "border_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_clear": { + "name": "border_clear", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_color": { + "name": "border_color", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_horizontal": { + "name": "border_horizontal", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_inner": { + "name": "border_inner", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_left": { + "name": "border_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_outer": { + "name": "border_outer", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_right": { + "name": "border_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_style": { + "name": "border_style", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_top": { + "name": "border_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_vertical": { + "name": "border_vertical", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bubble_chart": { + "name": "bubble_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "checklist": { + "name": "checklist", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "checklist_rtl": { + "name": "checklist_rtl", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drag_handle": { + "name": "drag_handle", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "draw": { + "name": "draw", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_note": { + "name": "edit_note", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_center": { + "name": "format_align_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_justify": { + "name": "format_align_justify", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_left": { + "name": "format_align_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_right": { + "name": "format_align_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_bold": { + "name": "format_bold", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_clear": { + "name": "format_clear", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_fill": { + "name": "format_color_fill", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_reset": { + "name": "format_color_reset", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_text": { + "name": "format_color_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_indent_decrease": { + "name": "format_indent_decrease", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_indent_increase": { + "name": "format_indent_increase", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_italic": { + "name": "format_italic", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_line_spacing": { + "name": "format_line_spacing", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_bulleted": { + "name": "format_list_bulleted", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_numbered": { + "name": "format_list_numbered", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_numbered_rtl": { + "name": "format_list_numbered_rtl", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_paint": { + "name": "format_paint", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_quote": { + "name": "format_quote", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_shapes": { + "name": "format_shapes", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_size": { + "name": "format_size", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_strikethrough": { + "name": "format_strikethrough", + "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": "" + } + } + }, + "format_textdirection_r_to_l": { + "name": "format_textdirection_r_to_l", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_underlined": { + "name": "format_underlined", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "functions": { + "name": "functions", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "height": { + "name": "height", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight": { + "name": "highlight", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_distribute": { + "name": "horizontal_distribute", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_rule": { + "name": "horizontal_rule", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_chart": { + "name": "insert_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_chart_outlined": { + "name": "insert_chart_outlined", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_comment": { + "name": "insert_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_drive_file": { + "name": "insert_drive_file", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_emoticon": { + "name": "insert_emoticon", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_invitation": { + "name": "insert_invitation", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_link": { + "name": "insert_link", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_photo": { + "name": "insert_photo", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "linear_scale": { + "name": "linear_scale", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "margin": { + "name": "margin", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "merge_type": { + "name": "merge_type", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode": { + "name": "mode", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_comment": { + "name": "mode_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_edit": { + "name": "mode_edit", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_edit_outline": { + "name": "mode_edit_outline", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "monetization_on": { + "name": "monetization_on", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "money_off": { + "name": "money_off", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "money_off_csred": { + "name": "money_off_csred", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "multiline_chart": { + "name": "multiline_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notes": { + "name": "notes", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "padding": { + "name": "padding", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pie_chart": { + "name": "pie_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pie_chart_outline": { + "name": "pie_chart_outline", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pie_chart_outlined": { + "name": "pie_chart_outlined", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "post_add": { + "name": "post_add", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "publish": { + "name": "publish", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "query_stats": { + "name": "query_stats", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "scatter_plot": { + "name": "scatter_plot", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "schema": { + "name": "schema", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "score": { + "name": "score", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "short_text": { + "name": "short_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "show_chart": { + "name": "show_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "space_bar": { + "name": "space_bar", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stacked_line_chart": { + "name": "stacked_line_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "strikethrough_s": { + "name": "strikethrough_s", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subscript": { + "name": "subscript", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "superscript": { + "name": "superscript", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "table_chart": { + "name": "table_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "table_rows": { + "name": "table_rows", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "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": "" + } + } + }, + "vertical_align_bottom": { + "name": "vertical_align_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_align_center": { + "name": "vertical_align_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_align_top": { + "name": "vertical_align_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_distribute": { + "name": "vertical_distribute", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wrap_text": { + "name": "wrap_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "approval": { + "name": "approval", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attachment": { + "name": "attachment", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_email": { + "name": "attach_email", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud": { + "name": "cloud", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_circle": { + "name": "cloud_circle", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_done": { + "name": "cloud_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_download": { + "name": "cloud_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_off": { + "name": "cloud_off", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_queue": { + "name": "cloud_queue", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_upload": { + "name": "cloud_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "create_new_folder": { + "name": "create_new_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download": { + "name": "download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "downloading": { + "name": "downloading", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_done": { + "name": "download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_for_offline": { + "name": "download_for_offline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_move": { + "name": "drive_file_move", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_move_outline": { + "name": "drive_file_move_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_move_rtl": { + "name": "drive_file_move_rtl", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_rename_outline": { + "name": "drive_file_rename_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_folder_upload": { + "name": "drive_folder_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download": { + "name": "file_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_done": { + "name": "file_download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_off": { + "name": "file_download_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "file_upload": { + "name": "file_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder": { + "name": "folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_open": { + "name": "folder_open", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_shared": { + "name": "folder_shared", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_view": { + "name": "grid_view", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_quote": { + "name": "request_quote", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule_folder": { + "name": "rule_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snippet_folder": { + "name": "snippet_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_snippet": { + "name": "text_snippet", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "topic": { + "name": "topic", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload": { + "name": "upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload_file": { + "name": "upload_file", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces": { + "name": "workspaces", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces_filled": { + "name": "workspaces_filled", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces_outline": { + "name": "workspaces_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "browser_not_supported": { + "name": "browser_not_supported", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cast": { + "name": "cast", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_connected": { + "name": "cast_connected", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_for_education": { + "name": "cast_for_education", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "computer": { + "name": "computer", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "connected_tv": { + "name": "connected_tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_mac": { + "name": "desktop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_windows": { + "name": "desktop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board": { + "name": "developer_board", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board_off": { + "name": "developer_board_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "devices_other": { + "name": "devices_other", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_hub": { + "name": "device_hub", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_unknown": { + "name": "device_unknown", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dock": { + "name": "dock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "earbuds": { + "name": "earbuds", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "earbuds_battery": { + "name": "earbuds_battery", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gamepad": { + "name": "gamepad", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones": { + "name": "headphones", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones_battery": { + "name": "headphones_battery", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset": { + "name": "headset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_mic": { + "name": "headset_mic", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_off": { + "name": "headset_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_max": { + "name": "home_max", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_mini": { + "name": "home_mini", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard": { + "name": "keyboard", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_alt": { + "name": "keyboard_alt", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_down": { + "name": "keyboard_arrow_down", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_left": { + "name": "keyboard_arrow_left", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_right": { + "name": "keyboard_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_up": { + "name": "keyboard_arrow_up", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_backspace": { + "name": "keyboard_backspace", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_capslock": { + "name": "keyboard_capslock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_hide": { + "name": "keyboard_hide", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_return": { + "name": "keyboard_return", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_tab": { + "name": "keyboard_tab", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_voice": { + "name": "keyboard_voice", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop": { + "name": "laptop", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_chromebook": { + "name": "laptop_chromebook", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_mac": { + "name": "laptop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_windows": { + "name": "laptop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "memory": { + "name": "memory", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor": { + "name": "monitor", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mouse": { + "name": "mouse", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink": { + "name": "phonelink", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_off": { + "name": "phonelink_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_android": { + "name": "phone_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_iphone": { + "name": "phone_iphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "point_of_sale": { + "name": "point_of_sale", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "power_input": { + "name": "power_input", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "router": { + "name": "router", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "scanner": { + "name": "scanner", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security": { + "name": "security", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card": { + "name": "sim_card", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smartphone": { + "name": "smartphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_display": { + "name": "smart_display", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_screen": { + "name": "smart_screen", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_toy": { + "name": "smart_toy", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker": { + "name": "speaker", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_group": { + "name": "speaker_group", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet": { + "name": "tablet", + "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": "" + } + } + }, + "toys": { + "name": "toys", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "tv": { + "name": "tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset": { + "name": "videogame_asset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset_off": { + "name": "videogame_asset_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "watch": { + "name": "watch", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sensor_door": { + "name": "sensor_door", + "keywords": [ + "home" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensor_window": { + "name": "sensor_window", + "keywords": [ + "home" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "10mp": { + "name": "10mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "11mp": { + "name": "11mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "12mp": { + "name": "12mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "13mp": { + "name": "13mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "14mp": { + "name": "14mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "15mp": { + "name": "15mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "16mp": { + "name": "16mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "17mp": { + "name": "17mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "18mp": { + "name": "18mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "19mp": { + "name": "19mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "20mp": { + "name": "20mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "21mp": { + "name": "21mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "22mp": { + "name": "22mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "23mp": { + "name": "23mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "24mp": { + "name": "24mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2mp": { + "name": "2mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "30fps_select": { + "name": "30fps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3mp": { + "name": "3mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4mp": { + "name": "4mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5mp": { + "name": "5mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "60fps_select": { + "name": "60fps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6mp": { + "name": "6mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7mp": { + "name": "7mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8mp": { + "name": "8mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9mp": { + "name": "9mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_a_photo": { + "name": "add_a_photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_photo_alternate": { + "name": "add_photo_alternate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_photos": { + "name": "add_to_photos", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adjust": { + "name": "adjust", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "animation": { + "name": "animation", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant": { + "name": "assistant", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_photo": { + "name": "assistant_photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "audiotrack": { + "name": "audiotrack", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "autofps_select": { + "name": "autofps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome": { + "name": "auto_awesome", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome_mosaic": { + "name": "auto_awesome_mosaic", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome_motion": { + "name": "auto_awesome_motion", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_high": { + "name": "auto_fix_high", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_normal": { + "name": "auto_fix_normal", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_off": { + "name": "auto_fix_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_stories": { + "name": "auto_stories", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedtime": { + "name": "bedtime", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_circular": { + "name": "blur_circular", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_linear": { + "name": "blur_linear", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_off": { + "name": "blur_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_on": { + "name": "blur_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_1": { + "name": "brightness_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_2": { + "name": "brightness_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_3": { + "name": "brightness_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_4": { + "name": "brightness_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_5": { + "name": "brightness_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_6": { + "name": "brightness_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_7": { + "name": "brightness_7", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "broken_image": { + "name": "broken_image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brush": { + "name": "brush", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "burst_mode": { + "name": "burst_mode", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera": { + "name": "camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_alt": { + "name": "camera_alt", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_front": { + "name": "camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_rear": { + "name": "camera_rear", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_roll": { + "name": "camera_roll", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cases": { + "name": "cases", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "center_focus_strong": { + "name": "center_focus_strong", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "center_focus_weak": { + "name": "center_focus_weak", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "circle": { + "name": "circle", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "collections": { + "name": "collections", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "collections_bookmark": { + "name": "collections_bookmark", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "colorize": { + "name": "colorize", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "color_lens": { + "name": "color_lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compare": { + "name": "compare", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_point": { + "name": "control_point", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_point_duplicate": { + "name": "control_point_duplicate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop": { + "name": "crop", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_16_9": { + "name": "crop_16_9", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_3_2": { + "name": "crop_3_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_5_4": { + "name": "crop_5_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_7_5": { + "name": "crop_7_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_din": { + "name": "crop_din", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_free": { + "name": "crop_free", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_landscape": { + "name": "crop_landscape", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_original": { + "name": "crop_original", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_portrait": { + "name": "crop_portrait", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_rotate": { + "name": "crop_rotate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_square": { + "name": "crop_square", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dehaze": { + "name": "dehaze", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "details": { + "name": "details", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dirty_lens": { + "name": "dirty_lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit": { + "name": "edit", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "euro": { + "name": "euro", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure": { + "name": "exposure", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_neg_1": { + "name": "exposure_neg_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_neg_2": { + "name": "exposure_neg_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_plus_1": { + "name": "exposure_plus_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_plus_2": { + "name": "exposure_plus_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_zero": { + "name": "exposure_zero", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_retouching_natural": { + "name": "face_retouching_natural", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_retouching_off": { + "name": "face_retouching_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter": { + "name": "filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_1": { + "name": "filter_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_2": { + "name": "filter_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_3": { + "name": "filter_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_4": { + "name": "filter_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_5": { + "name": "filter_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_6": { + "name": "filter_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_7": { + "name": "filter_7", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_8": { + "name": "filter_8", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_9": { + "name": "filter_9", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_9_plus": { + "name": "filter_9_plus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_b_and_w": { + "name": "filter_b_and_w", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_center_focus": { + "name": "filter_center_focus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_drama": { + "name": "filter_drama", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_frames": { + "name": "filter_frames", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_hdr": { + "name": "filter_hdr", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_none": { + "name": "filter_none", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_tilt_shift": { + "name": "filter_tilt_shift", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_vintage": { + "name": "filter_vintage", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flare": { + "name": "flare", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_auto": { + "name": "flash_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_off": { + "name": "flash_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_on": { + "name": "flash_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip": { + "name": "flip", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_camera_android": { + "name": "flip_camera_android", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_camera_ios": { + "name": "flip_camera_ios", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "gradient": { + "name": "gradient", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grain": { + "name": "grain", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_off": { + "name": "grid_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_on": { + "name": "grid_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_enhanced_select": { + "name": "hdr_enhanced_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_off": { + "name": "hdr_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_on": { + "name": "hdr_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_plus": { + "name": "hdr_plus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_strong": { + "name": "hdr_strong", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_weak": { + "name": "hdr_weak", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "healing": { + "name": "healing", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hevc": { + "name": "hevc", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hide_image": { + "name": "hide_image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image": { + "name": "image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image_aspect_ratio": { + "name": "image_aspect_ratio", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image_not_supported": { + "name": "image_not_supported", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "image_search": { + "name": "image_search", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "incomplete_circle": { + "name": "incomplete_circle", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "iso": { + "name": "iso", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "landscape": { + "name": "landscape", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leak_add": { + "name": "leak_add", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leak_remove": { + "name": "leak_remove", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lens": { + "name": "lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "linked_camera": { + "name": "linked_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks": { + "name": "looks", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_3": { + "name": "looks_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_4": { + "name": "looks_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_5": { + "name": "looks_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_6": { + "name": "looks_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_one": { + "name": "looks_one", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_two": { + "name": "looks_two", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loupe": { + "name": "loupe", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_external_off": { + "name": "mic_external_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_external_on": { + "name": "mic_external_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monochrome_photos": { + "name": "monochrome_photos", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_auto": { + "name": "motion_photos_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_off": { + "name": "motion_photos_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_on": { + "name": "motion_photos_on", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_pause": { + "name": "motion_photos_pause", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_paused": { + "name": "motion_photos_paused", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie_creation": { + "name": "movie_creation", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie_filter": { + "name": "movie_filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mp": { + "name": "mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_note": { + "name": "music_note", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_off": { + "name": "music_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nature": { + "name": "nature", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nature_people": { + "name": "nature_people", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigate_before": { + "name": "navigate_before", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigate_next": { + "name": "navigate_next", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "palette": { + "name": "palette", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama": { + "name": "panorama", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_fish_eye": { + "name": "panorama_fish_eye", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_horizontal": { + "name": "panorama_horizontal", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_horizontal_select": { + "name": "panorama_horizontal_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_photosphere": { + "name": "panorama_photosphere", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_photosphere_select": { + "name": "panorama_photosphere_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_vertical": { + "name": "panorama_vertical", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_vertical_select": { + "name": "panorama_vertical_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_wide_angle": { + "name": "panorama_wide_angle", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_wide_angle_select": { + "name": "panorama_wide_angle_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo": { + "name": "photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_album": { + "name": "photo_album", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera": { + "name": "photo_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera_back": { + "name": "photo_camera_back", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera_front": { + "name": "photo_camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_filter": { + "name": "photo_filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_library": { + "name": "photo_library", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_actual": { + "name": "photo_size_select_actual", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_large": { + "name": "photo_size_select_large", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_small": { + "name": "photo_size_select_small", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_as_pdf": { + "name": "picture_as_pdf", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "portrait": { + "name": "portrait", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "raw_off": { + "name": "raw_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "raw_on": { + "name": "raw_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "receipt_long": { + "name": "receipt_long", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_red_eye": { + "name": "remove_red_eye", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_90_degrees_ccw": { + "name": "rotate_90_degrees_ccw", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_left": { + "name": "rotate_left", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_right": { + "name": "rotate_right", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shutter_speed": { + "name": "shutter_speed", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "slideshow": { + "name": "slideshow", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "straighten": { + "name": "straighten", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "style": { + "name": "style", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_camera": { + "name": "switch_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_video": { + "name": "switch_video", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tag_faces": { + "name": "tag_faces", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "texture": { + "name": "texture", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thermostat_auto": { + "name": "thermostat_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timelapse": { + "name": "timelapse", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer": { + "name": "timer", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_10": { + "name": "timer_10", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_3": { + "name": "timer_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_off": { + "name": "timer_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tonality": { + "name": "tonality", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transform": { + "name": "transform", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tune": { + "name": "tune", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_camera_back": { + "name": "video_camera_back", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_camera_front": { + "name": "video_camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_stable": { + "name": "video_stable", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_comfy": { + "name": "view_comfy", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_compact": { + "name": "view_compact", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vignette": { + "name": "vignette", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vrpano": { + "name": "vrpano", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_auto": { + "name": "wb_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_cloudy": { + "name": "wb_cloudy", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_incandescent": { + "name": "wb_incandescent", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_iridescent": { + "name": "wb_iridescent", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_shade": { + "name": "wb_shade", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_sunny": { + "name": "wb_sunny", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_twighlight": { + "name": "wb_twighlight", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_twilight": { + "name": "wb_twilight", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "360": { + "name": "360", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_business": { + "name": "add_business", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add_location": { + "name": "add_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_location_alt": { + "name": "add_location_alt", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_road": { + "name": "add_road", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "agriculture": { + "name": "agriculture", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "alt_route": { + "name": "alt_route", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "atm": { + "name": "atm", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attractions": { + "name": "attractions", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "badge": { + "name": "badge", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bakery_dining": { + "name": "bakery_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "beenhere": { + "name": "beenhere", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bike_scooter": { + "name": "bike_scooter", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "breakfast_dining": { + "name": "breakfast_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "brunch_dining": { + "name": "brunch_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bus_alert": { + "name": "bus_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "car_rental": { + "name": "car_rental", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "car_repair": { + "name": "car_repair", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "category": { + "name": "category", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "celebration": { + "name": "celebration", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cleaning_services": { + "name": "cleaning_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "compass_calibration": { + "name": "compass_calibration", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delivery_dining": { + "name": "delivery_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "departure_board": { + "name": "departure_board", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "design_services": { + "name": "design_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dinner_dining": { + "name": "dinner_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "directions": { + "name": "directions", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bike": { + "name": "directions_bike", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_boat": { + "name": "directions_boat", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_boat_filled": { + "name": "directions_boat_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bus": { + "name": "directions_bus", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bus_filled": { + "name": "directions_bus_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_car": { + "name": "directions_car", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_car_filled": { + "name": "directions_car_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_railway": { + "name": "directions_railway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_railway_filled": { + "name": "directions_railway_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_run": { + "name": "directions_run", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_subway": { + "name": "directions_subway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_subway_filled": { + "name": "directions_subway_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_transit": { + "name": "directions_transit", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_transit_filled": { + "name": "directions_transit_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_walk": { + "name": "directions_walk", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dry_cleaning": { + "name": "dry_cleaning", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_attributes": { + "name": "edit_attributes", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_location": { + "name": "edit_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_location_alt": { + "name": "edit_location_alt", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_road": { + "name": "edit_road", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electrical_services": { + "name": "electrical_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_bike": { + "name": "electric_bike", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_car": { + "name": "electric_car", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_moped": { + "name": "electric_moped", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_rickshaw": { + "name": "electric_rickshaw", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_scooter": { + "name": "electric_scooter", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emergency": { + "name": "emergency", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ev_station": { + "name": "ev_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fastfood": { + "name": "fastfood", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "festival": { + "name": "festival", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flight": { + "name": "flight", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hail": { + "name": "hail", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "handyman": { + "name": "handyman", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hardware": { + "name": "hardware", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home_repair_service": { + "name": "home_repair_service", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hotel": { + "name": "hotel", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hvac": { + "name": "hvac", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "icecream": { + "name": "icecream", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "layers": { + "name": "layers", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "layers_clear": { + "name": "layers_clear", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "liquor": { + "name": "liquor", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "local_activity": { + "name": "local_activity", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_airport": { + "name": "local_airport", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "local_atm": { + "name": "local_atm", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_bar": { + "name": "local_bar", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_cafe": { + "name": "local_cafe", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_car_wash": { + "name": "local_car_wash", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_convenience_store": { + "name": "local_convenience_store", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_dining": { + "name": "local_dining", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_drink": { + "name": "local_drink", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_fire_department": { + "name": "local_fire_department", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_florist": { + "name": "local_florist", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_gas_station": { + "name": "local_gas_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_grocery_store": { + "name": "local_grocery_store", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_hospital": { + "name": "local_hospital", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_hotel": { + "name": "local_hotel", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_laundry_service": { + "name": "local_laundry_service", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_library": { + "name": "local_library", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_mall": { + "name": "local_mall", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_movies": { + "name": "local_movies", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_offer": { + "name": "local_offer", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_parking": { + "name": "local_parking", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_pharmacy": { + "name": "local_pharmacy", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_phone": { + "name": "local_phone", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_pizza": { + "name": "local_pizza", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_play": { + "name": "local_play", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_police": { + "name": "local_police", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_post_office": { + "name": "local_post_office", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_printshop": { + "name": "local_printshop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_see": { + "name": "local_see", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_shipping": { + "name": "local_shipping", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_taxi": { + "name": "local_taxi", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_pin": { + "name": "location_pin", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lunch_dining": { + "name": "lunch_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "map": { + "name": "map", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_ugc": { + "name": "maps_ugc", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "medical_services": { + "name": "medical_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_book": { + "name": "menu_book", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "miscellaneous_services": { + "name": "miscellaneous_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "money": { + "name": "money", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "moped": { + "name": "moped", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "moving": { + "name": "moving", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "multiple_stop": { + "name": "multiple_stop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "museum": { + "name": "museum", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "my_location": { + "name": "my_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigation": { + "name": "navigation", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "near_me": { + "name": "near_me", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "near_me_disabled": { + "name": "near_me_disabled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlife": { + "name": "nightlife", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "not_listed_location": { + "name": "not_listed_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_meals": { + "name": "no_meals", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_meals_ouline": { + "name": "no_meals_ouline", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_transfer": { + "name": "no_transfer", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "park": { + "name": "park", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pedal_bike": { + "name": "pedal_bike", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_pin": { + "name": "person_pin", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_pin_circle": { + "name": "person_pin_circle", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pest_control": { + "name": "pest_control", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pest_control_rodent": { + "name": "pest_control_rodent", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_drop": { + "name": "pin_drop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "place": { + "name": "place", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "plumbing": { + "name": "plumbing", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "railway_alert": { + "name": "railway_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ramen_dining": { + "name": "ramen_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "rate_review": { + "name": "rate_review", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restaurant": { + "name": "restaurant", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restaurant_menu": { + "name": "restaurant_menu", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "run_circle": { + "name": "run_circle", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sailing": { + "name": "sailing", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "satellite": { + "name": "satellite", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "set_meal": { + "name": "set_meal", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snowmobile": { + "name": "snowmobile", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "store_mall_directory": { + "name": "store_mall_directory", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "streetview": { + "name": "streetview", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subway": { + "name": "subway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "takeout_dining": { + "name": "takeout_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "taxi_alert": { + "name": "taxi_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "terrain": { + "name": "terrain", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "theater_comedy": { + "name": "theater_comedy", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "traffic": { + "name": "traffic", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "train": { + "name": "train", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tram": { + "name": "tram", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transfer_within_a_station": { + "name": "transfer_within_a_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transit_enterexit": { + "name": "transit_enterexit", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trip_origin": { + "name": "trip_origin", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "two_wheeler": { + "name": "two_wheeler", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "volunteer_activism": { + "name": "volunteer_activism", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wine_bar": { + "name": "wine_bar", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wrong_location": { + "name": "wrong_location", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_out_map": { + "name": "zoom_out_map", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps": { + "name": "apps", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_settings_alt": { + "name": "app_settings_alt", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back": { + "name": "arrow_back", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios": { + "name": "arrow_back_ios", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios_new": { + "name": "arrow_back_ios_new", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_downward": { + "name": "arrow_downward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down": { + "name": "arrow_drop_down", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down_circle": { + "name": "arrow_drop_down_circle", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_up": { + "name": "arrow_drop_up", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward": { + "name": "arrow_forward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward_ios": { + "name": "arrow_forward_ios", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_left": { + "name": "arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right": { + "name": "arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_upward": { + "name": "arrow_upward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_direction": { + "name": "assistant_direction", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "Asset 1" + } + } + }, + "assistant_navigation": { + "name": "assistant_navigation", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "campaign": { + "name": "campaign", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel": { + "name": "cancel", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check": { + "name": "check", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_left": { + "name": "chevron_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_right": { + "name": "chevron_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close": { + "name": "close", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "double_arrow": { + "name": "double_arrow", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "east": { + "name": "east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_less": { + "name": "expand_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_more": { + "name": "expand_more", + "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": "" + } + } + }, + "fullscreen_exit": { + "name": "fullscreen_exit", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_work": { + "name": "home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "last_page": { + "name": "last_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "legend_toggle": { + "name": "legend_toggle", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_home_work": { + "name": "maps_home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu": { + "name": "menu", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_open": { + "name": "menu_open", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_horiz": { + "name": "more_horiz", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_vert": { + "name": "more_vert", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north": { + "name": "north", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_east": { + "name": "north_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_west": { + "name": "north_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_share": { + "name": "offline_share", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payments": { + "name": "payments", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pivot_table_chart": { + "name": "pivot_table_chart", + "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": "" + } + } + }, + "south_east": { + "name": "south_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_west": { + "name": "south_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_left": { + "name": "subdirectory_arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_right": { + "name": "subdirectory_arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_left": { + "name": "switch_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_right": { + "name": "switch_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_less": { + "name": "unfold_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_more": { + "name": "unfold_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waterfall_chart": { + "name": "waterfall_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "west": { + "name": "west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_tree": { + "name": "account_tree", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adb": { + "name": "adb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_call": { + "name": "add_call", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat": { + "name": "airline_seat_flat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat_angled": { + "name": "airline_seat_flat_angled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_individual_suite": { + "name": "airline_seat_individual_suite", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_extra": { + "name": "airline_seat_legroom_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_normal": { + "name": "airline_seat_legroom_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_reduced": { + "name": "airline_seat_legroom_reduced", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_extra": { + "name": "airline_seat_recline_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_normal": { + "name": "airline_seat_recline_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_audio": { + "name": "bluetooth_audio", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "confirmation_number": { + "name": "confirmation_number", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_off": { + "name": "directions_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disc_full": { + "name": "disc_full", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb": { + "name": "do_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_alt": { + "name": "do_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_off": { + "name": "do_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_on": { + "name": "do_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb": { + "name": "do_not_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_alt": { + "name": "do_not_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_off": { + "name": "do_not_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on": { + "name": "do_not_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_eta": { + "name": "drive_eta", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "enhanced_encryption": { + "name": "enhanced_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_available": { + "name": "event_available", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_busy": { + "name": "event_busy", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_note": { + "name": "event_note", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_special": { + "name": "folder_special", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "imagesearch_roller": { + "name": "imagesearch_roller", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_tv": { + "name": "live_tv", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mms": { + "name": "mms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more": { + "name": "more", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_check": { + "name": "network_check", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_locked": { + "name": "network_locked", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption": { + "name": "no_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption_gmailerrorred": { + "name": "no_encryption_gmailerrorred", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ondemand_video": { + "name": "ondemand_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_video": { + "name": "personal_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_bluetooth_speaker": { + "name": "phone_bluetooth_speaker", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_callback": { + "name": "phone_callback", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_forwarded": { + "name": "phone_forwarded", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_in_talk": { + "name": "phone_in_talk", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_locked": { + "name": "phone_locked", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_missed": { + "name": "phone_missed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_paused": { + "name": "phone_paused", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power": { + "name": "power", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_off": { + "name": "power_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "priority_high": { + "name": "priority_high", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "running_with_errors": { + "name": "running_with_errors", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card": { + "name": "sd_card", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card_alert": { + "name": "sd_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_alert": { + "name": "sim_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms": { + "name": "sms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms_failed": { + "name": "sms_failed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "support_agent": { + "name": "support_agent", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sync": { + "name": "sync", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_disabled": { + "name": "sync_disabled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_problem": { + "name": "sync_problem", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update": { + "name": "system_update", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tap_and_play": { + "name": "tap_and_play", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "time_to_leave": { + "name": "time_to_leave", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv_off": { + "name": "tv_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vibration": { + "name": "vibration", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_chat": { + "name": "voice_chat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vpn_lock": { + "name": "vpn_lock", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wc": { + "name": "wc", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi": { + "name": "wifi", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_off": { + "name": "wifi_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ac_unit": { + "name": "ac_unit", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airport_shuttle": { + "name": "airport_shuttle", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_inclusive": { + "name": "all_inclusive", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apartment": { + "name": "apartment", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "baby_changing_station": { + "name": "baby_changing_station", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backpack": { + "name": "backpack", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "balcony": { + "name": "balcony", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bathtub": { + "name": "bathtub", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "beach_access": { + "name": "beach_access", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bento": { + "name": "bento", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bungalow": { + "name": "bungalow", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "business_center": { + "name": "business_center", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cabin": { + "name": "cabin", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "carpenter": { + "name": "carpenter", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "casino": { + "name": "casino", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chalet": { + "name": "chalet", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "charging_station": { + "name": "charging_station", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "checkroom": { + "name": "checkroom", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "child_care": { + "name": "child_care", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "child_friendly": { + "name": "child_friendly", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "corporate_fare": { + "name": "corporate_fare", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cottage": { + "name": "cottage", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "countertops": { + "name": "countertops", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crib": { + "name": "crib", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_step": { + "name": "do_not_step", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_touch": { + "name": "do_not_touch", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dry": { + "name": "dry", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "elevator": { + "name": "elevator", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "escalator": { + "name": "escalator", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "escalator_warning": { + "name": "escalator_warning", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "family_restroom": { + "name": "family_restroom", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fence": { + "name": "fence", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fire_extinguisher": { + "name": "fire_extinguisher", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fitness_center": { + "name": "fitness_center", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "food_bank": { + "name": "food_bank", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "foundation": { + "name": "foundation", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "free_breakfast": { + "name": "free_breakfast", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gite": { + "name": "gite", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "golf_course": { + "name": "golf_course", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grass": { + "name": "grass", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "holiday_village": { + "name": "holiday_village", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hot_tub": { + "name": "hot_tub", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "house": { + "name": "house", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "houseboat": { + "name": "houseboat", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "house_siding": { + "name": "house_siding", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "iron": { + "name": "iron", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "kitchen": { + "name": "kitchen", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "meeting_room": { + "name": "meeting_room", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "microwave": { + "name": "microwave", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "night_shelter": { + "name": "night_shelter", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_backpack": { + "name": "no_backpack", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_cell": { + "name": "no_cell", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_drinks": { + "name": "no_drinks", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_flash": { + "name": "no_flash", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_food": { + "name": "no_food", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_meeting_room": { + "name": "no_meeting_room", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_photography": { + "name": "no_photography", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_stroller": { + "name": "no_stroller", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "other_houses": { + "name": "other_houses", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pool": { + "name": "pool", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rice_bowl": { + "name": "rice_bowl", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "roofing": { + "name": "roofing", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room_preferences": { + "name": "room_preferences", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room_service": { + "name": "room_service", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rv_hookup": { + "name": "rv_hookup", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smoke_free": { + "name": "smoke_free", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smoking_rooms": { + "name": "smoking_rooms", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "soap": { + "name": "soap", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "spa": { + "name": "spa", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_bar": { + "name": "sports_bar", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stairs": { + "name": "stairs", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storefront": { + "name": "storefront", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stroller": { + "name": "stroller", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tapas": { + "name": "tapas", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tty": { + "name": "tty", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "umbrella": { + "name": "umbrella", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "villa": { + "name": "villa", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wash": { + "name": "wash", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "water_damage": { + "name": "water_damage", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wheelchair_pickup": { + "name": "wheelchair_pickup", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bathroom": { + "name": "bathroom", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bed": { + "name": "bed", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_baby": { + "name": "bedroom_baby", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_child": { + "name": "bedroom_child", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_parent": { + "name": "bedroom_parent", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blender": { + "name": "blender", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_indoor": { + "name": "camera_indoor", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_outdoor": { + "name": "camera_outdoor", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chair": { + "name": "chair", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chair_alt": { + "name": "chair_alt", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "coffee": { + "name": "coffee", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "coffee_maker": { + "name": "coffee_maker", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dining": { + "name": "dining", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "doorbell": { + "name": "doorbell", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_back": { + "name": "door_back", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_front": { + "name": "door_front", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_sliding": { + "name": "door_sliding", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "feed": { + "name": "feed", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flatware": { + "name": "flatware", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "garage": { + "name": "garage", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "light": { + "name": "light", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "living": { + "name": "living", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "manage_search": { + "name": "manage_search", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "podcasts": { + "name": "podcasts", + "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": "" + } + } + }, + "yard": { + "name": "yard", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6_ft_apart": { + "name": "6_ft_apart", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_moderator": { + "name": "add_moderator", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_reaction": { + "name": "add_reaction", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "architecture": { + "name": "architecture", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "back_hand": { + "name": "back_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cake": { + "name": "cake", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "catching_pokemon": { + "name": "catching_pokemon", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "clean_hands": { + "name": "clean_hands", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compost": { + "name": "compost", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "connect_without_contact": { + "name": "connect_without_contact", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "construction": { + "name": "construction", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "coronavirus": { + "name": "coronavirus", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cruelty_free": { + "name": "cruelty_free", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "deck": { + "name": "deck", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "domain": { + "name": "domain", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "downhill_skiing": { + "name": "downhill_skiing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_notifications": { + "name": "edit_notifications", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "elderly": { + "name": "elderly", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_emotions": { + "name": "emoji_emotions", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_events": { + "name": "emoji_events", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_flags": { + "name": "emoji_flags", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_food_beverage": { + "name": "emoji_food_beverage", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_nature": { + "name": "emoji_nature", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_objects": { + "name": "emoji_objects", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_people": { + "name": "emoji_people", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_symbols": { + "name": "emoji_symbols", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_transportation": { + "name": "emoji_transportation", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "engineering": { + "name": "engineering", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "facebook": { + "name": "facebook", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "female": { + "name": "female", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "fireplace": { + "name": "fireplace", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "follow_the_signs": { + "name": "follow_the_signs", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "front_hand": { + "name": "front_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "group": { + "name": "group", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "groups": { + "name": "groups", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "group_add": { + "name": "group_add", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "group_off": { + "name": "group_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "health_and_safety": { + "name": "health_and_safety", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hiking": { + "name": "hiking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "history_edu": { + "name": "history_edu", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ice_skating": { + "name": "ice_skating", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ios_share": { + "name": "ios_share", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "kayaking": { + "name": "kayaking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "king_bed": { + "name": "king_bed", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "kitesurfing": { + "name": "kitesurfing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "location_city": { + "name": "location_city", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "luggage": { + "name": "luggage", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "male": { + "name": "male", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "masks": { + "name": "masks", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "military_tech": { + "name": "military_tech", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mood": { + "name": "mood", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mood_bad": { + "name": "mood_bad", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nights_stay": { + "name": "nights_stay", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nordic_walking": { + "name": "nordic_walking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications": { + "name": "notifications", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_active": { + "name": "notifications_active", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_none": { + "name": "notifications_none", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_off": { + "name": "notifications_off", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_paused": { + "name": "notifications_paused", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notification_add": { + "name": "notification_add", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_luggage": { + "name": "no_luggage", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outdoor_grill": { + "name": "outdoor_grill", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pages": { + "name": "pages", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "paragliding": { + "name": "paragliding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "party_mode": { + "name": "party_mode", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "people": { + "name": "people", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "people_alt": { + "name": "people_alt", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "people_outline": { + "name": "people_outline", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person": { + "name": "person", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_injury": { + "name": "personal_injury", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add": { + "name": "person_add", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_alt": { + "name": "person_add_alt", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_alt_1": { + "name": "person_add_alt_1", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_off": { + "name": "person_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_outline": { + "name": "person_outline", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_remove": { + "name": "person_remove", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_remove_alt_1": { + "name": "person_remove_alt_1", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "piano": { + "name": "piano", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "piano_off": { + "name": "piano_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "plus_one": { + "name": "plus_one", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "poll": { + "name": "poll", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "precision_manufacturing": { + "name": "precision_manufacturing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "psychology": { + "name": "psychology", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "public": { + "name": "public", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "public_off": { + "name": "public_off", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "real_estate_agent": { + "name": "real_estate_agent", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "recommend": { + "name": "recommend", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "ic_recommend_24px" + } + } + }, + "recycling": { + "name": "recycling", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "reduce_capacity": { + "name": "reduce_capacity", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_moderator": { + "name": "remove_moderator", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "safety_divider": { + "name": "safety_divider", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sanitizer": { + "name": "sanitizer", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "school": { + "name": "school", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "science": { + "name": "science", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "self_improvement": { + "name": "self_improvement", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_dissatisfied": { + "name": "sentiment_dissatisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_neutral": { + "name": "sentiment_neutral", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_satisfied": { + "name": "sentiment_satisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_very_dissatisfied": { + "name": "sentiment_very_dissatisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_very_satisfied": { + "name": "sentiment_very_satisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "share": { + "name": "share", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sick": { + "name": "sick", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "single_bed": { + "name": "single_bed", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "skateboarding": { + "name": "skateboarding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sledding": { + "name": "sledding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snowboarding": { + "name": "snowboarding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snowshoeing": { + "name": "snowshoeing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "social_distance": { + "name": "social_distance", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports": { + "name": "sports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_baseball": { + "name": "sports_baseball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_basketball": { + "name": "sports_basketball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_cricket": { + "name": "sports_cricket", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_esports": { + "name": "sports_esports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_football": { + "name": "sports_football", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_golf": { + "name": "sports_golf", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_handball": { + "name": "sports_handball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_hockey": { + "name": "sports_hockey", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_kabaddi": { + "name": "sports_kabaddi", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_mma": { + "name": "sports_mma", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_motorsports": { + "name": "sports_motorsports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_rugby": { + "name": "sports_rugby", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_soccer": { + "name": "sports_soccer", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_tennis": { + "name": "sports_tennis", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_volleyball": { + "name": "sports_volleyball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "surfing": { + "name": "surfing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_account": { + "name": "switch_account", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down_alt": { + "name": "thumb_down_alt", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up_alt": { + "name": "thumb_up_alt", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transgender": { + "name": "transgender", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "travel_explore": { + "name": "travel_explore", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "water_drop": { + "name": "water_drop", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "waving_hand": { + "name": "waving_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "whatshot": { + "name": "whatshot", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_box": { + "name": "check_box", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_box_outline_blank": { + "name": "check_box_outline_blank", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "indeterminate_check_box": { + "name": "indeterminate_check_box", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio_button_checked": { + "name": "radio_button_checked", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio_button_unchecked": { + "name": "radio_button_unchecked", + "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": "" + } + } + }, + "star_border_purple500": { + "name": "star_border_purple500", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_half": { + "name": "star_half", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_outline": { + "name": "star_outline", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_purple500": { + "name": "star_purple500", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toggle_off": { + "name": "toggle_off", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toggle_on": { + "name": "toggle_on", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + } +} \ No newline at end of file diff --git a/sphinx_design/compiled/material_round.json b/sphinx_design/compiled/material_round.json new file mode 100644 index 0000000..5266f48 --- /dev/null +++ b/sphinx_design/compiled/material_round.json @@ -0,0 +1,22898 @@ +{ + "3d_rotation": { + "name": "3d_rotation", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessibility": { + "name": "accessibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessibility_new": { + "name": "accessibility_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessible": { + "name": "accessible", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessible_forward": { + "name": "accessible_forward", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_balance": { + "name": "account_balance", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_balance_wallet": { + "name": "account_balance_wallet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_box": { + "name": "account_box", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_circle": { + "name": "account_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "addchart": { + "name": "addchart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_shopping_cart": { + "name": "add_shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_task": { + "name": "add_task", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_drive": { + "name": "add_to_drive", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "admin_panel_settings": { + "name": "admin_panel_settings", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ads_click": { + "name": "ads_click", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm": { + "name": "alarm", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_add": { + "name": "alarm_add", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_off": { + "name": "alarm_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_on": { + "name": "alarm_on", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_inbox": { + "name": "all_inbox", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_out": { + "name": "all_out", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "analytics": { + "name": "analytics", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "anchor": { + "name": "anchor", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "android": { + "name": "android", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "announcement": { + "name": "announcement", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "api": { + "name": "api", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_blocking": { + "name": "app_blocking", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_circle_down": { + "name": "arrow_circle_down", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_circle_up": { + "name": "arrow_circle_up", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right_alt": { + "name": "arrow_right_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "article": { + "name": "article", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "aspect_ratio": { + "name": "aspect_ratio", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assessment": { + "name": "assessment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment": { + "name": "assignment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_ind": { + "name": "assignment_ind", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_late": { + "name": "assignment_late", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_return": { + "name": "assignment_return", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_returned": { + "name": "assignment_returned", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_turned_in": { + "name": "assignment_turned_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "autorenew": { + "name": "autorenew", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backup": { + "name": "backup", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backup_table": { + "name": "backup_table", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "batch_prediction": { + "name": "batch_prediction", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "book": { + "name": "book", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark": { + "name": "bookmark", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmarks": { + "name": "bookmarks", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_add": { + "name": "bookmark_add", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_added": { + "name": "bookmark_added", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_border": { + "name": "bookmark_border", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_remove": { + "name": "bookmark_remove", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "book_online": { + "name": "book_online", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bug_report": { + "name": "bug_report", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "build": { + "name": "build", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "build_circle": { + "name": "build_circle", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cached": { + "name": "cached", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_today": { + "name": "calendar_today", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_day": { + "name": "calendar_view_day", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_month": { + "name": "calendar_view_month", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_week": { + "name": "calendar_view_week", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_enhance": { + "name": "camera_enhance", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel_schedule_send": { + "name": "cancel_schedule_send", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "card_giftcard": { + "name": "card_giftcard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "card_membership": { + "name": "card_membership", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "card_travel": { + "name": "card_travel", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "change_history": { + "name": "change_history", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_circle": { + "name": "check_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_circle_outline": { + "name": "check_circle_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chrome_reader_mode": { + "name": "chrome_reader_mode", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "circle_notifications": { + "name": "circle_notifications", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "class": { + "name": "class", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close_fullscreen": { + "name": "close_fullscreen", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "code": { + "name": "code", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "code_off": { + "name": "code_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "comment_bank": { + "name": "comment_bank", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "commute": { + "name": "commute", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compare_arrows": { + "name": "compare_arrows", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compress": { + "name": "compress", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contactless": { + "name": "contactless", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_page": { + "name": "contact_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_support": { + "name": "contact_support", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "copyright": { + "name": "copyright", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_card": { + "name": "credit_card", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_card_off": { + "name": "credit_card_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dangerous": { + "name": "dangerous", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dashboard": { + "name": "dashboard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dashboard_customize": { + "name": "dashboard_customize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_exploration": { + "name": "data_exploration", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "date_range": { + "name": "date_range", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete": { + "name": "delete", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_forever": { + "name": "delete_forever", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_outline": { + "name": "delete_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "description": { + "name": "description", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disabled_by_default": { + "name": "disabled_by_default", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disabled_visible": { + "name": "disabled_visible", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dns": { + "name": "dns", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done": { + "name": "done", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done_all": { + "name": "done_all", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done_outline": { + "name": "done_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "donut_large": { + "name": "donut_large", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "donut_small": { + "name": "donut_small", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drag_indicator": { + "name": "drag_indicator", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dynamic_form": { + "name": "dynamic_form", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "eco": { + "name": "eco", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_calendar": { + "name": "edit_calendar", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_off": { + "name": "edit_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "eject": { + "name": "eject", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "euro_symbol": { + "name": "euro_symbol", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event": { + "name": "event", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_seat": { + "name": "event_seat", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exit_to_app": { + "name": "exit_to_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand": { + "name": "expand", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explore": { + "name": "explore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explore_off": { + "name": "explore_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "extension": { + "name": "extension", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "extension_off": { + "name": "extension_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "face": { + "name": "face", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_unlock": { + "name": "face_unlock", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fact_check": { + "name": "fact_check", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "favorite": { + "name": "favorite", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "favorite_border": { + "name": "favorite_border", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "feedback": { + "name": "feedback", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_present": { + "name": "file_present", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_alt": { + "name": "filter_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "find_in_page": { + "name": "find_in_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "find_replace": { + "name": "find_replace", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fingerprint": { + "name": "fingerprint", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fit_screen": { + "name": "fit_screen", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flaky": { + "name": "flaky", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flight_land": { + "name": "flight_land", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flight_takeoff": { + "name": "flight_takeoff", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_to_back": { + "name": "flip_to_back", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_to_front": { + "name": "flip_to_front", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flutter_dash": { + "name": "flutter_dash", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "free_cancellation": { + "name": "free_cancellation", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "gavel": { + "name": "gavel", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "generating_tokens": { + "name": "generating_tokens", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "get_app": { + "name": "get_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gif": { + "name": "gif", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grade": { + "name": "grade", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grading": { + "name": "grading", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "group_work": { + "name": "group_work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "g_translate": { + "name": "g_translate", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help": { + "name": "help", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help_center": { + "name": "help_center", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help_outline": { + "name": "help_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hide_source": { + "name": "hide_source", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight_alt": { + "name": "highlight_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight_off": { + "name": "highlight_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "history": { + "name": "history", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "history_toggle_off": { + "name": "history_toggle_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home": { + "name": "home", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_split": { + "name": "horizontal_split", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hotel_class": { + "name": "hotel_class", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_disabled": { + "name": "hourglass_disabled", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_empty": { + "name": "hourglass_empty", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_full": { + "name": "hourglass_full", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "http": { + "name": "http", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "https": { + "name": "https", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "important_devices": { + "name": "important_devices", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "info": { + "name": "info", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "info_outline": { + "name": "info_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "input": { + "name": "input", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "integration_instructions": { + "name": "integration_instructions", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "invert_colors": { + "name": "invert_colors", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "label": { + "name": "label", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_important": { + "name": "label_important", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_important_outline": { + "name": "label_important_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_off": { + "name": "label_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_outline": { + "name": "label_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "language": { + "name": "language", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "launch": { + "name": "launch", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leaderboard": { + "name": "leaderboard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lightbulb": { + "name": "lightbulb", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lightbulb_outline": { + "name": "lightbulb_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "line_style": { + "name": "line_style", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "line_weight": { + "name": "line_weight", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "list": { + "name": "list", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock": { + "name": "lock", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_clock": { + "name": "lock_clock", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_open": { + "name": "lock_open", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_outline": { + "name": "lock_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "login": { + "name": "login", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "logout": { + "name": "logout", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loyalty": { + "name": "loyalty", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "manage_accounts": { + "name": "manage_accounts", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "markunread_mailbox": { + "name": "markunread_mailbox", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_as_unread": { + "name": "mark_as_unread", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "maximize": { + "name": "maximize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mediation": { + "name": "mediation", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "minimize": { + "name": "minimize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "model_training": { + "name": "model_training", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "new_label": { + "name": "new_label", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "next_plan": { + "name": "next_plan", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlight_round": { + "name": "nightlight_round", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note_add": { + "name": "note_add", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "not_accessible": { + "name": "not_accessible", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "not_started": { + "name": "not_started", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_accounts": { + "name": "no_accounts", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_bolt": { + "name": "offline_bolt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_pin": { + "name": "offline_pin", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "online_prediction": { + "name": "online_prediction", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "opacity": { + "name": "opacity", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_browser": { + "name": "open_in_browser", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_full": { + "name": "open_in_full", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_new": { + "name": "open_in_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_new_off": { + "name": "open_in_new_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "open_with": { + "name": "open_with", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbond": { + "name": "outbond", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbound": { + "name": "outbound", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbox": { + "name": "outbox", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "outlet": { + "name": "outlet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pageview": { + "name": "pageview", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "paid": { + "name": "paid", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pan_tool": { + "name": "pan_tool", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payment": { + "name": "payment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pending": { + "name": "pending", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pending_actions": { + "name": "pending_actions", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_camera_mic": { + "name": "perm_camera_mic", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_contact_calendar": { + "name": "perm_contact_calendar", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_data_setting": { + "name": "perm_data_setting", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_device_information": { + "name": "perm_device_information", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_identity": { + "name": "perm_identity", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_media": { + "name": "perm_media", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_phone_msg": { + "name": "perm_phone_msg", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_scan_wifi": { + "name": "perm_scan_wifi", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pets": { + "name": "pets", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_in_picture": { + "name": "picture_in_picture", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_in_picture_alt": { + "name": "picture_in_picture_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_end": { + "name": "pin_end", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_invoke": { + "name": "pin_invoke", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "plagiarism": { + "name": "plagiarism", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_for_work": { + "name": "play_for_work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "polymer": { + "name": "polymer", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_settings_new": { + "name": "power_settings_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pregnant_woman": { + "name": "pregnant_woman", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "preview": { + "name": "preview", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "print": { + "name": "print", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "privacy_tip": { + "name": "privacy_tip", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "private_connectivity": { + "name": "private_connectivity", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "production_quantity_limits": { + "name": "production_quantity_limits", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "published_with_changes": { + "name": "published_with_changes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "query_builder": { + "name": "query_builder", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "question_answer": { + "name": "question_answer", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "quickreply": { + "name": "quickreply", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "receipt": { + "name": "receipt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "record_voice_over": { + "name": "record_voice_over", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "redeem": { + "name": "redeem", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_done": { + "name": "remove_done", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_shopping_cart": { + "name": "remove_shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reorder": { + "name": "reorder", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_problem": { + "name": "report_problem", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_page": { + "name": "request_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore": { + "name": "restore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore_from_trash": { + "name": "restore_from_trash", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore_page": { + "name": "restore_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room": { + "name": "room", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rounded_corner": { + "name": "rounded_corner", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rowing": { + "name": "rowing", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule": { + "name": "rule", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "saved_search": { + "name": "saved_search", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "savings": { + "name": "savings", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "schedule": { + "name": "schedule", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "schedule_send": { + "name": "schedule_send", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "search": { + "name": "search", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "search_off": { + "name": "search_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "segment": { + "name": "segment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send_and_archive": { + "name": "send_and_archive", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensors": { + "name": "sensors", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensors_off": { + "name": "sensors_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "settings": { + "name": "settings", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_accessibility": { + "name": "settings_accessibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_applications": { + "name": "settings_applications", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_backup_restore": { + "name": "settings_backup_restore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_bluetooth": { + "name": "settings_bluetooth", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_brightness": { + "name": "settings_brightness", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_cell": { + "name": "settings_cell", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_ethernet": { + "name": "settings_ethernet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_antenna": { + "name": "settings_input_antenna", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_component": { + "name": "settings_input_component", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_composite": { + "name": "settings_input_composite", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_hdmi": { + "name": "settings_input_hdmi", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_svideo": { + "name": "settings_input_svideo", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_overscan": { + "name": "settings_overscan", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_phone": { + "name": "settings_phone", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_power": { + "name": "settings_power", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_remote": { + "name": "settings_remote", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_voice": { + "name": "settings_voice", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shop": { + "name": "shop", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_bag": { + "name": "shopping_bag", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_basket": { + "name": "shopping_basket", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_cart": { + "name": "shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shop_2": { + "name": "shop_2", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "shop_two": { + "name": "shop_two", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_button": { + "name": "smart_button", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "source": { + "name": "source", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "space_dashboard": { + "name": "space_dashboard", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_notes": { + "name": "speaker_notes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_notes_off": { + "name": "speaker_notes_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "spellcheck": { + "name": "spellcheck", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stars": { + "name": "stars", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_rate": { + "name": "star_rate", + "keywords": [ + "action" + ], + "heights": { + "18": { + "width": 18, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sticky_note_2": { + "name": "sticky_note_2", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "store": { + "name": "store", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subject": { + "name": "subject", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subtitles_off": { + "name": "subtitles_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "supervised_user_circle": { + "name": "supervised_user_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "supervisor_account": { + "name": "supervisor_account", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "support": { + "name": "support", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_horiz": { + "name": "swap_horiz", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_horizontal_circle": { + "name": "swap_horizontal_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_vert": { + "name": "swap_vert", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_vertical_circle": { + "name": "swap_vertical_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swipe": { + "name": "swipe", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_alt": { + "name": "sync_alt", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update_alt": { + "name": "system_update_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tab": { + "name": "tab", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "table_view": { + "name": "table_view", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tab_unselected": { + "name": "tab_unselected", + "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": "" + } + } + }, + "text_rotate_vertical": { + "name": "text_rotate_vertical", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_angledown": { + "name": "text_rotation_angledown", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_angleup": { + "name": "text_rotation_angleup", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_down": { + "name": "text_rotation_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_none": { + "name": "text_rotation_none", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "theaters": { + "name": "theaters", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumbs_up_down": { + "name": "thumbs_up_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down": { + "name": "thumb_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down_off_alt": { + "name": "thumb_down_off_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up": { + "name": "thumb_up", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up_off_alt": { + "name": "thumb_up_off_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timeline": { + "name": "timeline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tips_and_updates": { + "name": "tips_and_updates", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "toc": { + "name": "toc", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "today": { + "name": "today", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toll": { + "name": "toll", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "touch_app": { + "name": "touch_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tour": { + "name": "tour", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "track_changes": { + "name": "track_changes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "translate": { + "name": "translate", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_down": { + "name": "trending_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_flat": { + "name": "trending_flat", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_up": { + "name": "trending_up", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "try": { + "name": "try", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "turned_in": { + "name": "turned_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "turned_in_not": { + "name": "turned_in_not", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unpublished": { + "name": "unpublished", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "update": { + "name": "update", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "update_disabled": { + "name": "update_disabled", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "upgrade": { + "name": "upgrade", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "verified": { + "name": "verified", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "verified_user": { + "name": "verified_user", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_split": { + "name": "vertical_split", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_agenda": { + "name": "view_agenda", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_array": { + "name": "view_array", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_carousel": { + "name": "view_carousel", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_column": { + "name": "view_column", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_day": { + "name": "view_day", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_headline": { + "name": "view_headline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_in_ar": { + "name": "view_in_ar", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_list": { + "name": "view_list", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_module": { + "name": "view_module", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_quilt": { + "name": "view_quilt", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_sidebar": { + "name": "view_sidebar", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_stream": { + "name": "view_stream", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_week": { + "name": "view_week", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "visibility": { + "name": "visibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "visibility_off": { + "name": "visibility_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_over_off": { + "name": "voice_over_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "watch_later": { + "name": "watch_later", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_protected_setup": { + "name": "wifi_protected_setup", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "work": { + "name": "work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "work_off": { + "name": "work_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "work_outline": { + "name": "work_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wysiwyg": { + "name": "wysiwyg", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "youtube_searched_for": { + "name": "youtube_searched_for", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_in": { + "name": "zoom_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_out": { + "name": "zoom_out", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alert": { + "name": "add_alert", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_delete": { + "name": "auto_delete", + "keywords": [ + "alert" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "error": { + "name": "error", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "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": "" + } + } + }, + "warning": { + "name": "warning", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "warning_amber": { + "name": "warning_amber", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "10k": { + "name": "10k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1k": { + "name": "1k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1k_plus": { + "name": "1k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2k": { + "name": "2k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2k_plus": { + "name": "2k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3k": { + "name": "3k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3k_plus": { + "name": "3k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4k": { + "name": "4k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4k_plus": { + "name": "4k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5g": { + "name": "5g", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "5k": { + "name": "5k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5k_plus": { + "name": "5k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6k": { + "name": "6k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6k_plus": { + "name": "6k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7k": { + "name": "7k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7k_plus": { + "name": "7k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8k": { + "name": "8k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8k_plus": { + "name": "8k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9k": { + "name": "9k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9k_plus": { + "name": "9k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_queue": { + "name": "add_to_queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airplay": { + "name": "airplay", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "album": { + "name": "album", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "art_track": { + "name": "art_track", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "av_timer": { + "name": "av_timer", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "branding_watermark": { + "name": "branding_watermark", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_to_action": { + "name": "call_to_action", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption": { + "name": "closed_caption", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption_disabled": { + "name": "closed_caption_disabled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption_off": { + "name": "closed_caption_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_camera": { + "name": "control_camera", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "equalizer": { + "name": "equalizer", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explicit": { + "name": "explicit", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fast_forward": { + "name": "fast_forward", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fast_rewind": { + "name": "fast_rewind", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "featured_play_list": { + "name": "featured_play_list", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "featured_video": { + "name": "featured_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_dvr": { + "name": "fiber_dvr", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_manual_record": { + "name": "fiber_manual_record", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_new": { + "name": "fiber_new", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_pin": { + "name": "fiber_pin", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_smart_record": { + "name": "fiber_smart_record", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_10": { + "name": "forward_10", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_30": { + "name": "forward_30", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_5": { + "name": "forward_5", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "games": { + "name": "games", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hd": { + "name": "hd", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hearing": { + "name": "hearing", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hearing_disabled": { + "name": "hearing_disabled", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "high_quality": { + "name": "high_quality", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_add": { + "name": "library_add", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_add_check": { + "name": "library_add_check", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "library_books": { + "name": "library_books", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_music": { + "name": "library_music", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loop": { + "name": "loop", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic": { + "name": "mic", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_none": { + "name": "mic_none", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_off": { + "name": "mic_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "missed_video_call": { + "name": "missed_video_call", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie": { + "name": "movie", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_video": { + "name": "music_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "new_releases": { + "name": "new_releases", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note": { + "name": "note", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "not_interested": { + "name": "not_interested", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause": { + "name": "pause", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle": { + "name": "pause_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle_filled": { + "name": "pause_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle_outline": { + "name": "pause_circle_outline", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_add": { + "name": "playlist_add", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_add_check": { + "name": "playlist_add_check", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_play": { + "name": "playlist_play", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_arrow": { + "name": "play_arrow", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle": { + "name": "play_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle_filled": { + "name": "play_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle_outline": { + "name": "play_circle_outline", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_disabled": { + "name": "play_disabled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "queue": { + "name": "queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "queue_music": { + "name": "queue_music", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "queue_play_next": { + "name": "queue_play_next", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio": { + "name": "radio", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "recent_actors": { + "name": "recent_actors", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_from_queue": { + "name": "remove_from_queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat": { + "name": "repeat", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_on": { + "name": "repeat_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_one": { + "name": "repeat_one", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_one_on": { + "name": "repeat_one_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay": { + "name": "replay", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_10": { + "name": "replay_10", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_30": { + "name": "replay_30", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_5": { + "name": "replay_5", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_circle_filled": { + "name": "replay_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd": { + "name": "sd", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shuffle": { + "name": "shuffle", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shuffle_on": { + "name": "shuffle_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "skip_next": { + "name": "skip_next", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "skip_previous": { + "name": "skip_previous", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "slow_motion_video": { + "name": "slow_motion_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snooze": { + "name": "snooze", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sort_by_alpha": { + "name": "sort_by_alpha", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speed": { + "name": "speed", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop": { + "name": "stop", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop_circle": { + "name": "stop_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "subscriptions": { + "name": "subscriptions", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subtitles": { + "name": "subtitles", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "surround_sound": { + "name": "surround_sound", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videocam": { + "name": "videocam", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videocam_off": { + "name": "videocam_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_call": { + "name": "video_call", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_label": { + "name": "video_label", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_library": { + "name": "video_library", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_settings": { + "name": "video_settings", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_down": { + "name": "volume_down", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_mute": { + "name": "volume_mute", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_off": { + "name": "volume_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_up": { + "name": "volume_up", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web": { + "name": "web", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web_asset": { + "name": "web_asset", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web_asset_off": { + "name": "web_asset_off", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "3p": { + "name": "3p", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_ic_call": { + "name": "add_ic_call", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alternate_email": { + "name": "alternate_email", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_registration": { + "name": "app_registration", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "business": { + "name": "business", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call": { + "name": "call", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_end": { + "name": "call_end", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_made": { + "name": "call_made", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_merge": { + "name": "call_merge", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_missed": { + "name": "call_missed", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_missed_outgoing": { + "name": "call_missed_outgoing", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_received": { + "name": "call_received", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_split": { + "name": "call_split", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel_presentation": { + "name": "cancel_presentation", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cell_wifi": { + "name": "cell_wifi", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat": { + "name": "chat", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat_bubble": { + "name": "chat_bubble", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat_bubble_outline": { + "name": "chat_bubble_outline", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "clear_all": { + "name": "clear_all", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "comment": { + "name": "comment", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contacts": { + "name": "contacts", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_mail": { + "name": "contact_mail", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_phone": { + "name": "contact_phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_access_disabled": { + "name": "desktop_access_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dialer_sip": { + "name": "dialer_sip", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dialpad": { + "name": "dialpad", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "document_scanner": { + "name": "document_scanner", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "domain_disabled": { + "name": "domain_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "domain_verification": { + "name": "domain_verification", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "duo": { + "name": "duo", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "email": { + "name": "email", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forum": { + "name": "forum", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_to_inbox": { + "name": "forward_to_inbox", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_bottom": { + "name": "hourglass_bottom", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_top": { + "name": "hourglass_top", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "import_contacts": { + "name": "import_contacts", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "import_export": { + "name": "import_export", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "invert_colors_off": { + "name": "invert_colors_off", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "list_alt": { + "name": "list_alt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_help": { + "name": "live_help", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_off": { + "name": "location_off", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_on": { + "name": "location_on", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mail_outline": { + "name": "mail_outline", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_chat_read": { + "name": "mark_chat_read", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_chat_unread": { + "name": "mark_chat_unread", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_email_read": { + "name": "mark_email_read", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_email_unread": { + "name": "mark_email_unread", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "message": { + "name": "message", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mobile_screen_share": { + "name": "mobile_screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_time": { + "name": "more_time", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nat": { + "name": "nat", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_sim": { + "name": "no_sim", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_presentation": { + "name": "pause_presentation", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_disabled": { + "name": "person_add_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_search": { + "name": "person_search", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "phone": { + "name": "phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_erase": { + "name": "phonelink_erase", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_lock": { + "name": "phonelink_lock", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_ring": { + "name": "phonelink_ring", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_setup": { + "name": "phonelink_setup", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_disabled": { + "name": "phone_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_enabled": { + "name": "phone_enabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "portable_wifi_off": { + "name": "portable_wifi_off", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "present_to_all": { + "name": "present_to_all", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "print_disabled": { + "name": "print_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code": { + "name": "qr_code", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code_2": { + "name": "qr_code_2", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code_scanner": { + "name": "qr_code_scanner", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "read_more": { + "name": "read_more", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ring_volume": { + "name": "ring_volume", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rss_feed": { + "name": "rss_feed", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rtt": { + "name": "rtt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_share": { + "name": "screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_satisfied_alt": { + "name": "sentiment_satisfied_alt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sip": { + "name": "sip", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_phone": { + "name": "speaker_phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_current_landscape": { + "name": "stay_current_landscape", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_current_portrait": { + "name": "stay_current_portrait", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_primary_landscape": { + "name": "stay_primary_landscape", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_primary_portrait": { + "name": "stay_primary_portrait", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop_screen_share": { + "name": "stop_screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_calls": { + "name": "swap_calls", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "textsms": { + "name": "textsms", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unsubscribe": { + "name": "unsubscribe", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voicemail": { + "name": "voicemail", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vpn_key": { + "name": "vpn_key", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_calling": { + "name": "wifi_calling", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add": { + "name": "add", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_box": { + "name": "add_box", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_circle": { + "name": "add_circle", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_circle_outline": { + "name": "add_circle_outline", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_link": { + "name": "add_link", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "amp_stories": { + "name": "amp_stories", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "archive": { + "name": "archive", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attribution": { + "name": "attribution", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backspace": { + "name": "backspace", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ballot": { + "name": "ballot", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "biotech": { + "name": "biotech", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "block": { + "name": "block", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bolt": { + "name": "bolt", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calculate": { + "name": "calculate", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "change_circle": { + "name": "change_circle", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "clear": { + "name": "clear", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_copy": { + "name": "content_copy", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_cut": { + "name": "content_cut", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_paste": { + "name": "content_paste", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_paste_off": { + "name": "content_paste_off", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "copy_all": { + "name": "copy_all", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "create": { + "name": "create", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_sweep": { + "name": "delete_sweep", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drafts": { + "name": "drafts", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dynamic_feed": { + "name": "dynamic_feed", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "file_copy": { + "name": "file_copy", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_list": { + "name": "filter_list", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flag": { + "name": "flag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "font_download": { + "name": "font_download", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "font_download_off": { + "name": "font_download_off", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "forward": { + "name": "forward", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gesture": { + "name": "gesture", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "how_to_reg": { + "name": "how_to_reg", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "how_to_vote": { + "name": "how_to_vote", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "inbox": { + "name": "inbox", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insights": { + "name": "insights", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "inventory": { + "name": "inventory", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "inventory_2": { + "name": "inventory_2", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "link": { + "name": "link", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "link_off": { + "name": "link_off", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "low_priority": { + "name": "low_priority", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mail": { + "name": "mail", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "markunread": { + "name": "markunread", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "move_to_inbox": { + "name": "move_to_inbox", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "next_week": { + "name": "next_week", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outlined_flag": { + "name": "outlined_flag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "policy": { + "name": "policy", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "push_pin": { + "name": "push_pin", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "redo": { + "name": "redo", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove": { + "name": "remove", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_circle": { + "name": "remove_circle", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_circle_outline": { + "name": "remove_circle_outline", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reply": { + "name": "reply", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reply_all": { + "name": "reply_all", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report": { + "name": "report", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_gmailerrorred": { + "name": "report_gmailerrorred", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_off": { + "name": "report_off", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "save": { + "name": "save", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "save_alt": { + "name": "save_alt", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "select_all": { + "name": "select_all", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send": { + "name": "send", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shield": { + "name": "shield", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sort": { + "name": "sort", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "square_foot": { + "name": "square_foot", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "stacked_bar_chart": { + "name": "stacked_bar_chart", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stream": { + "name": "stream", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tag": { + "name": "tag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_format": { + "name": "text_format", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unarchive": { + "name": "unarchive", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "undo": { + "name": "undo", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upcoming": { + "name": "upcoming", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waves": { + "name": "waves", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "weekend": { + "name": "weekend", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "where_to_vote": { + "name": "where_to_vote", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1x_mobiledata": { + "name": "1x_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "30fps": { + "name": "30fps", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3g_mobiledata": { + "name": "3g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4g_mobiledata": { + "name": "4g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4g_plus_mobiledata": { + "name": "4g_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "60fps": { + "name": "60fps", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_alarm": { + "name": "access_alarm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_alarms": { + "name": "access_alarms", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_time": { + "name": "access_time", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_time_filled": { + "name": "access_time_filled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alarm": { + "name": "add_alarm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_home_screen": { + "name": "add_to_home_screen", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ad_units": { + "name": "ad_units", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "air": { + "name": "air", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airplanemode_active": { + "name": "airplanemode_active", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airplanemode_inactive": { + "name": "airplanemode_inactive", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airplane_ticket": { + "name": "airplane_ticket", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "aod": { + "name": "aod", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_alert": { + "name": "battery_alert", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_charging_full": { + "name": "battery_charging_full", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_full": { + "name": "battery_full", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_saver": { + "name": "battery_saver", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_std": { + "name": "battery_std", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_unknown": { + "name": "battery_unknown", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bloodtype": { + "name": "bloodtype", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth": { + "name": "bluetooth", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_connected": { + "name": "bluetooth_connected", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_disabled": { + "name": "bluetooth_disabled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_drive": { + "name": "bluetooth_drive", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_searching": { + "name": "bluetooth_searching", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_auto": { + "name": "brightness_auto", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_high": { + "name": "brightness_high", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_low": { + "name": "brightness_low", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_medium": { + "name": "brightness_medium", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cable": { + "name": "cable", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cameraswitch": { + "name": "cameraswitch", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_score": { + "name": "credit_score", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dark_mode": { + "name": "dark_mode", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "data_saver_off": { + "name": "data_saver_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_saver_on": { + "name": "data_saver_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_usage": { + "name": "data_usage", + "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": "" + } + } + }, + "device_thermostat": { + "name": "device_thermostat", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on_total_silence": { + "name": "do_not_disturb_on_total_silence", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dvr": { + "name": "dvr", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edgesensor_high": { + "name": "edgesensor_high", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edgesensor_low": { + "name": "edgesensor_low", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "e_mobiledata": { + "name": "e_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flashlight_off": { + "name": "flashlight_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flashlight_on": { + "name": "flashlight_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flourescent": { + "name": "flourescent", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fmd_bad": { + "name": "fmd_bad", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fmd_good": { + "name": "fmd_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_bad": { + "name": "gpp_bad", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_good": { + "name": "gpp_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_maybe": { + "name": "gpp_maybe", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_fixed": { + "name": "gps_fixed", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_not_fixed": { + "name": "gps_not_fixed", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_off": { + "name": "gps_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "graphic_eq": { + "name": "graphic_eq", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_3x3": { + "name": "grid_3x3", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_4x4": { + "name": "grid_4x4", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_goldenratio": { + "name": "grid_goldenratio", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "g_mobiledata": { + "name": "g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_auto": { + "name": "hdr_auto", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_auto_select": { + "name": "hdr_auto_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_off_select": { + "name": "hdr_off_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_on_select": { + "name": "hdr_on_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "h_mobiledata": { + "name": "h_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "h_plus_mobiledata": { + "name": "h_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lens_blur": { + "name": "lens_blur", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "light_mode": { + "name": "light_mode", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "location_disabled": { + "name": "location_disabled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_searching": { + "name": "location_searching", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lte_mobiledata": { + "name": "lte_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lte_plus_mobiledata": { + "name": "lte_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "media_bluetooth_off": { + "name": "media_bluetooth_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "media_bluetooth_on": { + "name": "media_bluetooth_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "medication": { + "name": "medication", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mobiledata_off": { + "name": "mobiledata_off", + "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": "" + } + } + }, + "mode_night": { + "name": "mode_night", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_standby": { + "name": "mode_standby", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor_weight": { + "name": "monitor_weight", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nearby_error": { + "name": "nearby_error", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nearby_off": { + "name": "nearby_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_cell": { + "name": "network_cell", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_wifi": { + "name": "network_wifi", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nfc": { + "name": "nfc", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlight": { + "name": "nightlight", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note_alt": { + "name": "note_alt", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "password": { + "name": "password", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pattern": { + "name": "pattern", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pin": { + "name": "pin", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_lesson": { + "name": "play_lesson", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "price_change": { + "name": "price_change", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "price_check": { + "name": "price_check", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "quiz": { + "name": "quiz", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radar": { + "name": "radar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remember_me": { + "name": "remember_me", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reset_tv": { + "name": "reset_tv", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restart_alt": { + "name": "restart_alt", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reviews": { + "name": "reviews", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rsvp": { + "name": "rsvp", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "r_mobiledata": { + "name": "r_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screenshot": { + "name": "screenshot", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_landscape": { + "name": "screen_lock_landscape", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_portrait": { + "name": "screen_lock_portrait", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_rotation": { + "name": "screen_lock_rotation", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_rotation": { + "name": "screen_rotation", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_search_desktop": { + "name": "screen_search_desktop", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_storage": { + "name": "sd_storage", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update": { + "name": "security_update", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update_good": { + "name": "security_update_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update_warning": { + "name": "security_update_warning", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sell": { + "name": "sell", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send_to_mobile": { + "name": "send_to_mobile", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_suggest": { + "name": "settings_suggest", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_system_daydream": { + "name": "settings_system_daydream", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "share_location": { + "name": "share_location", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shortcut": { + "name": "shortcut", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_0_bar": { + "name": "signal_cellular_0_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_4_bar": { + "name": "signal_cellular_4_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_alt": { + "name": "signal_cellular_alt", + "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": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_connected_no_internet_4_bar": { + "name": "signal_cellular_connected_no_internet_4_bar", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_nodata": { + "name": "signal_cellular_nodata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_no_sim": { + "name": "signal_cellular_no_sim", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_null": { + "name": "signal_cellular_null", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_off": { + "name": "signal_cellular_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_0_bar": { + "name": "signal_wifi_0_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_4_bar": { + "name": "signal_wifi_4_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_4_bar_lock": { + "name": "signal_wifi_4_bar_lock", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_bad": { + "name": "signal_wifi_bad", + "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": "" + } + } + }, + "signal_wifi_off": { + "name": "signal_wifi_off", + "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": "" + } + } + }, + "signal_wifi_statusbar_connected_no_internet_4": { + "name": "signal_wifi_statusbar_connected_no_internet_4", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_statusbar_null": { + "name": "signal_wifi_statusbar_null", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_download": { + "name": "sim_card_download", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "splitscreen": { + "name": "splitscreen", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_score": { + "name": "sports_score", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storage": { + "name": "storage", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storm": { + "name": "storm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "summarize": { + "name": "summarize", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update": { + "name": "system_security_update", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update_good": { + "name": "system_security_update_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update_warning": { + "name": "system_security_update_warning", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "task": { + "name": "task", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thermostat": { + "name": "thermostat", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_10_select": { + "name": "timer_10_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_3_select": { + "name": "timer_3_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tungsten": { + "name": "tungsten", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "usb": { + "name": "usb", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "usb_off": { + "name": "usb_off", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wallpaper": { + "name": "wallpaper", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "water": { + "name": "water", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "widgets": { + "name": "widgets", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_calling_3": { + "name": "wifi_calling_3", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_lock": { + "name": "wifi_lock", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering": { + "name": "wifi_tethering", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering_error_rounded": { + "name": "wifi_tethering_error_rounded", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering_off": { + "name": "wifi_tethering_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_chart": { + "name": "add_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_comment": { + "name": "add_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_center": { + "name": "align_horizontal_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_left": { + "name": "align_horizontal_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_right": { + "name": "align_horizontal_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_bottom": { + "name": "align_vertical_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_center": { + "name": "align_vertical_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_top": { + "name": "align_vertical_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "area_chart": { + "name": "area_chart", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_file": { + "name": "attach_file", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_money": { + "name": "attach_money", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_graph": { + "name": "auto_graph", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bar_chart": { + "name": "bar_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_all": { + "name": "border_all", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_bottom": { + "name": "border_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_clear": { + "name": "border_clear", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_color": { + "name": "border_color", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_horizontal": { + "name": "border_horizontal", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_inner": { + "name": "border_inner", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_left": { + "name": "border_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_outer": { + "name": "border_outer", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_right": { + "name": "border_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_style": { + "name": "border_style", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_top": { + "name": "border_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_vertical": { + "name": "border_vertical", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bubble_chart": { + "name": "bubble_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "checklist": { + "name": "checklist", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "checklist_rtl": { + "name": "checklist_rtl", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drag_handle": { + "name": "drag_handle", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "draw": { + "name": "draw", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_note": { + "name": "edit_note", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_center": { + "name": "format_align_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_justify": { + "name": "format_align_justify", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_left": { + "name": "format_align_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_right": { + "name": "format_align_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_bold": { + "name": "format_bold", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_clear": { + "name": "format_clear", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_fill": { + "name": "format_color_fill", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_reset": { + "name": "format_color_reset", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_text": { + "name": "format_color_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_indent_decrease": { + "name": "format_indent_decrease", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_indent_increase": { + "name": "format_indent_increase", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_italic": { + "name": "format_italic", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_line_spacing": { + "name": "format_line_spacing", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_bulleted": { + "name": "format_list_bulleted", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_numbered": { + "name": "format_list_numbered", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_numbered_rtl": { + "name": "format_list_numbered_rtl", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_paint": { + "name": "format_paint", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_quote": { + "name": "format_quote", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_shapes": { + "name": "format_shapes", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_size": { + "name": "format_size", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_strikethrough": { + "name": "format_strikethrough", + "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": "" + } + } + }, + "format_textdirection_r_to_l": { + "name": "format_textdirection_r_to_l", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_underlined": { + "name": "format_underlined", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "functions": { + "name": "functions", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "height": { + "name": "height", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight": { + "name": "highlight", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_distribute": { + "name": "horizontal_distribute", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_rule": { + "name": "horizontal_rule", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_chart": { + "name": "insert_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_chart_outlined": { + "name": "insert_chart_outlined", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_comment": { + "name": "insert_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_drive_file": { + "name": "insert_drive_file", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_emoticon": { + "name": "insert_emoticon", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_invitation": { + "name": "insert_invitation", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_link": { + "name": "insert_link", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_photo": { + "name": "insert_photo", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "linear_scale": { + "name": "linear_scale", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "margin": { + "name": "margin", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "merge_type": { + "name": "merge_type", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode": { + "name": "mode", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_comment": { + "name": "mode_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_edit": { + "name": "mode_edit", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_edit_outline": { + "name": "mode_edit_outline", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "monetization_on": { + "name": "monetization_on", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "money_off": { + "name": "money_off", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "money_off_csred": { + "name": "money_off_csred", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "multiline_chart": { + "name": "multiline_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notes": { + "name": "notes", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "padding": { + "name": "padding", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pie_chart": { + "name": "pie_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pie_chart_outline": { + "name": "pie_chart_outline", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "post_add": { + "name": "post_add", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "publish": { + "name": "publish", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "query_stats": { + "name": "query_stats", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "scatter_plot": { + "name": "scatter_plot", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "schema": { + "name": "schema", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "score": { + "name": "score", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "short_text": { + "name": "short_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "show_chart": { + "name": "show_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "space_bar": { + "name": "space_bar", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stacked_line_chart": { + "name": "stacked_line_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "strikethrough_s": { + "name": "strikethrough_s", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subscript": { + "name": "subscript", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "superscript": { + "name": "superscript", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "table_chart": { + "name": "table_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "table_rows": { + "name": "table_rows", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "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": "" + } + } + }, + "vertical_align_bottom": { + "name": "vertical_align_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_align_center": { + "name": "vertical_align_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_align_top": { + "name": "vertical_align_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_distribute": { + "name": "vertical_distribute", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wrap_text": { + "name": "wrap_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "approval": { + "name": "approval", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attachment": { + "name": "attachment", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_email": { + "name": "attach_email", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud": { + "name": "cloud", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_circle": { + "name": "cloud_circle", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_done": { + "name": "cloud_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_download": { + "name": "cloud_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_off": { + "name": "cloud_off", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_queue": { + "name": "cloud_queue", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_upload": { + "name": "cloud_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "create_new_folder": { + "name": "create_new_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download": { + "name": "download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "downloading": { + "name": "downloading", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_done": { + "name": "download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_for_offline": { + "name": "download_for_offline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "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": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_rename_outline": { + "name": "drive_file_rename_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_folder_upload": { + "name": "drive_folder_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download": { + "name": "file_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_done": { + "name": "file_download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_off": { + "name": "file_download_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "file_upload": { + "name": "file_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder": { + "name": "folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_open": { + "name": "folder_open", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_shared": { + "name": "folder_shared", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_view": { + "name": "grid_view", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_quote": { + "name": "request_quote", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule_folder": { + "name": "rule_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snippet_folder": { + "name": "snippet_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_snippet": { + "name": "text_snippet", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "topic": { + "name": "topic", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload": { + "name": "upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload_file": { + "name": "upload_file", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces": { + "name": "workspaces", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "browser_not_supported": { + "name": "browser_not_supported", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cast": { + "name": "cast", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_connected": { + "name": "cast_connected", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_for_education": { + "name": "cast_for_education", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "computer": { + "name": "computer", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "connected_tv": { + "name": "connected_tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_mac": { + "name": "desktop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_windows": { + "name": "desktop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board": { + "name": "developer_board", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board_off": { + "name": "developer_board_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "devices_other": { + "name": "devices_other", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_hub": { + "name": "device_hub", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_unknown": { + "name": "device_unknown", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dock": { + "name": "dock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "earbuds": { + "name": "earbuds", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "earbuds_battery": { + "name": "earbuds_battery", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gamepad": { + "name": "gamepad", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones": { + "name": "headphones", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones_battery": { + "name": "headphones_battery", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset": { + "name": "headset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_mic": { + "name": "headset_mic", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_off": { + "name": "headset_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_max": { + "name": "home_max", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_mini": { + "name": "home_mini", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard": { + "name": "keyboard", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_alt": { + "name": "keyboard_alt", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_down": { + "name": "keyboard_arrow_down", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_left": { + "name": "keyboard_arrow_left", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_right": { + "name": "keyboard_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_up": { + "name": "keyboard_arrow_up", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_backspace": { + "name": "keyboard_backspace", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_capslock": { + "name": "keyboard_capslock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_hide": { + "name": "keyboard_hide", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_return": { + "name": "keyboard_return", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_tab": { + "name": "keyboard_tab", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_voice": { + "name": "keyboard_voice", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop": { + "name": "laptop", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_chromebook": { + "name": "laptop_chromebook", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_mac": { + "name": "laptop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_windows": { + "name": "laptop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "memory": { + "name": "memory", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor": { + "name": "monitor", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mouse": { + "name": "mouse", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink": { + "name": "phonelink", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_off": { + "name": "phonelink_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_android": { + "name": "phone_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_iphone": { + "name": "phone_iphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "point_of_sale": { + "name": "point_of_sale", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "power_input": { + "name": "power_input", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "router": { + "name": "router", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "scanner": { + "name": "scanner", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security": { + "name": "security", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card": { + "name": "sim_card", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smartphone": { + "name": "smartphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_display": { + "name": "smart_display", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_screen": { + "name": "smart_screen", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_toy": { + "name": "smart_toy", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker": { + "name": "speaker", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_group": { + "name": "speaker_group", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet": { + "name": "tablet", + "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": "" + } + } + }, + "toys": { + "name": "toys", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "tv": { + "name": "tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset": { + "name": "videogame_asset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset_off": { + "name": "videogame_asset_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "watch": { + "name": "watch", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sensor_door": { + "name": "sensor_door", + "keywords": [ + "home" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensor_window": { + "name": "sensor_window", + "keywords": [ + "home" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "10mp": { + "name": "10mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "11mp": { + "name": "11mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "12mp": { + "name": "12mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "13mp": { + "name": "13mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "14mp": { + "name": "14mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "15mp": { + "name": "15mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "16mp": { + "name": "16mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "17mp": { + "name": "17mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "18mp": { + "name": "18mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "19mp": { + "name": "19mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "20mp": { + "name": "20mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "21mp": { + "name": "21mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "22mp": { + "name": "22mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "23mp": { + "name": "23mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "24mp": { + "name": "24mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2mp": { + "name": "2mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "30fps_select": { + "name": "30fps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3mp": { + "name": "3mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4mp": { + "name": "4mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5mp": { + "name": "5mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "60fps_select": { + "name": "60fps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6mp": { + "name": "6mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7mp": { + "name": "7mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8mp": { + "name": "8mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9mp": { + "name": "9mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_a_photo": { + "name": "add_a_photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_photo_alternate": { + "name": "add_photo_alternate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_photos": { + "name": "add_to_photos", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adjust": { + "name": "adjust", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "animation": { + "name": "animation", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant": { + "name": "assistant", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_photo": { + "name": "assistant_photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "audiotrack": { + "name": "audiotrack", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "autofps_select": { + "name": "autofps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome": { + "name": "auto_awesome", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome_mosaic": { + "name": "auto_awesome_mosaic", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome_motion": { + "name": "auto_awesome_motion", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_high": { + "name": "auto_fix_high", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_normal": { + "name": "auto_fix_normal", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_off": { + "name": "auto_fix_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_stories": { + "name": "auto_stories", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedtime": { + "name": "bedtime", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_circular": { + "name": "blur_circular", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_linear": { + "name": "blur_linear", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_off": { + "name": "blur_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_on": { + "name": "blur_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_1": { + "name": "brightness_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_2": { + "name": "brightness_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_3": { + "name": "brightness_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_4": { + "name": "brightness_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_5": { + "name": "brightness_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_6": { + "name": "brightness_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_7": { + "name": "brightness_7", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "broken_image": { + "name": "broken_image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brush": { + "name": "brush", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "burst_mode": { + "name": "burst_mode", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera": { + "name": "camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_alt": { + "name": "camera_alt", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_front": { + "name": "camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_rear": { + "name": "camera_rear", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_roll": { + "name": "camera_roll", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cases": { + "name": "cases", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "center_focus_strong": { + "name": "center_focus_strong", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "center_focus_weak": { + "name": "center_focus_weak", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "circle": { + "name": "circle", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "collections": { + "name": "collections", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "collections_bookmark": { + "name": "collections_bookmark", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "colorize": { + "name": "colorize", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "color_lens": { + "name": "color_lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compare": { + "name": "compare", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_point": { + "name": "control_point", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_point_duplicate": { + "name": "control_point_duplicate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop": { + "name": "crop", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_16_9": { + "name": "crop_16_9", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_3_2": { + "name": "crop_3_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_5_4": { + "name": "crop_5_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_7_5": { + "name": "crop_7_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_din": { + "name": "crop_din", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_free": { + "name": "crop_free", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_landscape": { + "name": "crop_landscape", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_original": { + "name": "crop_original", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_portrait": { + "name": "crop_portrait", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_rotate": { + "name": "crop_rotate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_square": { + "name": "crop_square", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dehaze": { + "name": "dehaze", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "details": { + "name": "details", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dirty_lens": { + "name": "dirty_lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit": { + "name": "edit", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "euro": { + "name": "euro", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure": { + "name": "exposure", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_neg_1": { + "name": "exposure_neg_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_neg_2": { + "name": "exposure_neg_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_plus_1": { + "name": "exposure_plus_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_plus_2": { + "name": "exposure_plus_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_zero": { + "name": "exposure_zero", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_retouching_natural": { + "name": "face_retouching_natural", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_retouching_off": { + "name": "face_retouching_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter": { + "name": "filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_1": { + "name": "filter_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_2": { + "name": "filter_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_3": { + "name": "filter_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_4": { + "name": "filter_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_5": { + "name": "filter_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_6": { + "name": "filter_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_7": { + "name": "filter_7", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_8": { + "name": "filter_8", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_9": { + "name": "filter_9", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_9_plus": { + "name": "filter_9_plus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_b_and_w": { + "name": "filter_b_and_w", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_center_focus": { + "name": "filter_center_focus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_drama": { + "name": "filter_drama", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_frames": { + "name": "filter_frames", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_hdr": { + "name": "filter_hdr", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_none": { + "name": "filter_none", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_tilt_shift": { + "name": "filter_tilt_shift", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_vintage": { + "name": "filter_vintage", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flare": { + "name": "flare", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_auto": { + "name": "flash_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_off": { + "name": "flash_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_on": { + "name": "flash_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip": { + "name": "flip", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_camera_android": { + "name": "flip_camera_android", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_camera_ios": { + "name": "flip_camera_ios", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "gradient": { + "name": "gradient", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grain": { + "name": "grain", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_off": { + "name": "grid_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_on": { + "name": "grid_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_enhanced_select": { + "name": "hdr_enhanced_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_off": { + "name": "hdr_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_on": { + "name": "hdr_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_plus": { + "name": "hdr_plus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_strong": { + "name": "hdr_strong", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_weak": { + "name": "hdr_weak", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "healing": { + "name": "healing", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hevc": { + "name": "hevc", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hide_image": { + "name": "hide_image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image": { + "name": "image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image_aspect_ratio": { + "name": "image_aspect_ratio", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image_not_supported": { + "name": "image_not_supported", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "image_search": { + "name": "image_search", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "incomplete_circle": { + "name": "incomplete_circle", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "iso": { + "name": "iso", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "landscape": { + "name": "landscape", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leak_add": { + "name": "leak_add", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leak_remove": { + "name": "leak_remove", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lens": { + "name": "lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "linked_camera": { + "name": "linked_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks": { + "name": "looks", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_3": { + "name": "looks_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_4": { + "name": "looks_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_5": { + "name": "looks_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_6": { + "name": "looks_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_one": { + "name": "looks_one", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_two": { + "name": "looks_two", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loupe": { + "name": "loupe", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_external_off": { + "name": "mic_external_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_external_on": { + "name": "mic_external_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monochrome_photos": { + "name": "monochrome_photos", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_auto": { + "name": "motion_photos_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_off": { + "name": "motion_photos_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_on": { + "name": "motion_photos_on", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_pause": { + "name": "motion_photos_pause", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_paused": { + "name": "motion_photos_paused", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie_creation": { + "name": "movie_creation", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie_filter": { + "name": "movie_filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mp": { + "name": "mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_note": { + "name": "music_note", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_off": { + "name": "music_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nature": { + "name": "nature", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nature_people": { + "name": "nature_people", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigate_before": { + "name": "navigate_before", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigate_next": { + "name": "navigate_next", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "palette": { + "name": "palette", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama": { + "name": "panorama", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_fish_eye": { + "name": "panorama_fish_eye", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_horizontal": { + "name": "panorama_horizontal", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_horizontal_select": { + "name": "panorama_horizontal_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_photosphere": { + "name": "panorama_photosphere", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_photosphere_select": { + "name": "panorama_photosphere_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_vertical": { + "name": "panorama_vertical", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_vertical_select": { + "name": "panorama_vertical_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_wide_angle": { + "name": "panorama_wide_angle", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_wide_angle_select": { + "name": "panorama_wide_angle_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo": { + "name": "photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_album": { + "name": "photo_album", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera": { + "name": "photo_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera_back": { + "name": "photo_camera_back", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera_front": { + "name": "photo_camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_filter": { + "name": "photo_filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_library": { + "name": "photo_library", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_actual": { + "name": "photo_size_select_actual", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_large": { + "name": "photo_size_select_large", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_small": { + "name": "photo_size_select_small", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_as_pdf": { + "name": "picture_as_pdf", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "portrait": { + "name": "portrait", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "raw_off": { + "name": "raw_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "raw_on": { + "name": "raw_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "receipt_long": { + "name": "receipt_long", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_red_eye": { + "name": "remove_red_eye", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_90_degrees_ccw": { + "name": "rotate_90_degrees_ccw", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_left": { + "name": "rotate_left", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_right": { + "name": "rotate_right", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shutter_speed": { + "name": "shutter_speed", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "slideshow": { + "name": "slideshow", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "straighten": { + "name": "straighten", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "style": { + "name": "style", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_camera": { + "name": "switch_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_video": { + "name": "switch_video", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tag_faces": { + "name": "tag_faces", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "texture": { + "name": "texture", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thermostat_auto": { + "name": "thermostat_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timelapse": { + "name": "timelapse", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer": { + "name": "timer", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_10": { + "name": "timer_10", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_3": { + "name": "timer_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_off": { + "name": "timer_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tonality": { + "name": "tonality", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transform": { + "name": "transform", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tune": { + "name": "tune", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_camera_back": { + "name": "video_camera_back", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_camera_front": { + "name": "video_camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_stable": { + "name": "video_stable", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_comfy": { + "name": "view_comfy", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_compact": { + "name": "view_compact", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vignette": { + "name": "vignette", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vrpano": { + "name": "vrpano", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_auto": { + "name": "wb_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_cloudy": { + "name": "wb_cloudy", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_incandescent": { + "name": "wb_incandescent", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_iridescent": { + "name": "wb_iridescent", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_shade": { + "name": "wb_shade", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_sunny": { + "name": "wb_sunny", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_twilight": { + "name": "wb_twilight", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "360": { + "name": "360", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_business": { + "name": "add_business", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add_location": { + "name": "add_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_location_alt": { + "name": "add_location_alt", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_road": { + "name": "add_road", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "agriculture": { + "name": "agriculture", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "alt_route": { + "name": "alt_route", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "atm": { + "name": "atm", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attractions": { + "name": "attractions", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "badge": { + "name": "badge", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bakery_dining": { + "name": "bakery_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "beenhere": { + "name": "beenhere", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bike_scooter": { + "name": "bike_scooter", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "breakfast_dining": { + "name": "breakfast_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "brunch_dining": { + "name": "brunch_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bus_alert": { + "name": "bus_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "car_rental": { + "name": "car_rental", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "car_repair": { + "name": "car_repair", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "category": { + "name": "category", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "celebration": { + "name": "celebration", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cleaning_services": { + "name": "cleaning_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "compass_calibration": { + "name": "compass_calibration", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delivery_dining": { + "name": "delivery_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "departure_board": { + "name": "departure_board", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "design_services": { + "name": "design_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dinner_dining": { + "name": "dinner_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "directions": { + "name": "directions", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bike": { + "name": "directions_bike", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_boat": { + "name": "directions_boat", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_boat_filled": { + "name": "directions_boat_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bus": { + "name": "directions_bus", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bus_filled": { + "name": "directions_bus_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_car": { + "name": "directions_car", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_car_filled": { + "name": "directions_car_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_railway": { + "name": "directions_railway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_railway_filled": { + "name": "directions_railway_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_run": { + "name": "directions_run", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_subway": { + "name": "directions_subway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_subway_filled": { + "name": "directions_subway_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_transit": { + "name": "directions_transit", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_transit_filled": { + "name": "directions_transit_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_walk": { + "name": "directions_walk", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dry_cleaning": { + "name": "dry_cleaning", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_attributes": { + "name": "edit_attributes", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_location": { + "name": "edit_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_location_alt": { + "name": "edit_location_alt", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_road": { + "name": "edit_road", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electrical_services": { + "name": "electrical_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_bike": { + "name": "electric_bike", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_car": { + "name": "electric_car", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_moped": { + "name": "electric_moped", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_rickshaw": { + "name": "electric_rickshaw", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_scooter": { + "name": "electric_scooter", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emergency": { + "name": "emergency", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ev_station": { + "name": "ev_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fastfood": { + "name": "fastfood", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "festival": { + "name": "festival", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flight": { + "name": "flight", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hail": { + "name": "hail", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "handyman": { + "name": "handyman", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hardware": { + "name": "hardware", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home_repair_service": { + "name": "home_repair_service", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hotel": { + "name": "hotel", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hvac": { + "name": "hvac", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "icecream": { + "name": "icecream", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "layers": { + "name": "layers", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "layers_clear": { + "name": "layers_clear", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "liquor": { + "name": "liquor", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "local_activity": { + "name": "local_activity", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_airport": { + "name": "local_airport", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "local_atm": { + "name": "local_atm", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_bar": { + "name": "local_bar", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_cafe": { + "name": "local_cafe", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_car_wash": { + "name": "local_car_wash", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_convenience_store": { + "name": "local_convenience_store", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_dining": { + "name": "local_dining", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_drink": { + "name": "local_drink", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_fire_department": { + "name": "local_fire_department", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_florist": { + "name": "local_florist", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_gas_station": { + "name": "local_gas_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_grocery_store": { + "name": "local_grocery_store", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_hospital": { + "name": "local_hospital", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_hotel": { + "name": "local_hotel", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_laundry_service": { + "name": "local_laundry_service", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_library": { + "name": "local_library", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_mall": { + "name": "local_mall", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_movies": { + "name": "local_movies", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_offer": { + "name": "local_offer", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_parking": { + "name": "local_parking", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_pharmacy": { + "name": "local_pharmacy", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_phone": { + "name": "local_phone", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_pizza": { + "name": "local_pizza", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_play": { + "name": "local_play", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_police": { + "name": "local_police", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_post_office": { + "name": "local_post_office", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_printshop": { + "name": "local_printshop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_see": { + "name": "local_see", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_shipping": { + "name": "local_shipping", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_taxi": { + "name": "local_taxi", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lunch_dining": { + "name": "lunch_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "map": { + "name": "map", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_ugc": { + "name": "maps_ugc", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "medical_services": { + "name": "medical_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_book": { + "name": "menu_book", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "miscellaneous_services": { + "name": "miscellaneous_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "money": { + "name": "money", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "moped": { + "name": "moped", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "moving": { + "name": "moving", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "multiple_stop": { + "name": "multiple_stop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "museum": { + "name": "museum", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "my_location": { + "name": "my_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigation": { + "name": "navigation", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "near_me": { + "name": "near_me", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "near_me_disabled": { + "name": "near_me_disabled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlife": { + "name": "nightlife", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "not_listed_location": { + "name": "not_listed_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_meals": { + "name": "no_meals", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_transfer": { + "name": "no_transfer", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "park": { + "name": "park", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pedal_bike": { + "name": "pedal_bike", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_pin": { + "name": "person_pin", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_pin_circle": { + "name": "person_pin_circle", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pest_control": { + "name": "pest_control", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pest_control_rodent": { + "name": "pest_control_rodent", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_drop": { + "name": "pin_drop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "place": { + "name": "place", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "plumbing": { + "name": "plumbing", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "railway_alert": { + "name": "railway_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ramen_dining": { + "name": "ramen_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "rate_review": { + "name": "rate_review", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restaurant": { + "name": "restaurant", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restaurant_menu": { + "name": "restaurant_menu", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "run_circle": { + "name": "run_circle", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sailing": { + "name": "sailing", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "satellite": { + "name": "satellite", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "set_meal": { + "name": "set_meal", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snowmobile": { + "name": "snowmobile", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "store_mall_directory": { + "name": "store_mall_directory", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "streetview": { + "name": "streetview", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subway": { + "name": "subway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "takeout_dining": { + "name": "takeout_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "taxi_alert": { + "name": "taxi_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "terrain": { + "name": "terrain", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "theater_comedy": { + "name": "theater_comedy", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "traffic": { + "name": "traffic", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "train": { + "name": "train", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tram": { + "name": "tram", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transfer_within_a_station": { + "name": "transfer_within_a_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transit_enterexit": { + "name": "transit_enterexit", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trip_origin": { + "name": "trip_origin", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "two_wheeler": { + "name": "two_wheeler", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "volunteer_activism": { + "name": "volunteer_activism", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wine_bar": { + "name": "wine_bar", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wrong_location": { + "name": "wrong_location", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_out_map": { + "name": "zoom_out_map", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps": { + "name": "apps", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_settings_alt": { + "name": "app_settings_alt", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back": { + "name": "arrow_back", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios": { + "name": "arrow_back_ios", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios_new": { + "name": "arrow_back_ios_new", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_downward": { + "name": "arrow_downward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down": { + "name": "arrow_drop_down", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down_circle": { + "name": "arrow_drop_down_circle", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_up": { + "name": "arrow_drop_up", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward": { + "name": "arrow_forward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward_ios": { + "name": "arrow_forward_ios", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_left": { + "name": "arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right": { + "name": "arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_upward": { + "name": "arrow_upward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_direction": { + "name": "assistant_direction", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "campaign": { + "name": "campaign", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel": { + "name": "cancel", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check": { + "name": "check", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_left": { + "name": "chevron_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_right": { + "name": "chevron_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close": { + "name": "close", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "double_arrow": { + "name": "double_arrow", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "east": { + "name": "east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_less": { + "name": "expand_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_more": { + "name": "expand_more", + "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": "" + } + } + }, + "fullscreen_exit": { + "name": "fullscreen_exit", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_work": { + "name": "home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "last_page": { + "name": "last_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "legend_toggle": { + "name": "legend_toggle", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_home_work": { + "name": "maps_home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu": { + "name": "menu", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_open": { + "name": "menu_open", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_horiz": { + "name": "more_horiz", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_vert": { + "name": "more_vert", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north": { + "name": "north", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_east": { + "name": "north_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_west": { + "name": "north_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_share": { + "name": "offline_share", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payments": { + "name": "payments", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pivot_table_chart": { + "name": "pivot_table_chart", + "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": "" + } + } + }, + "south_east": { + "name": "south_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_west": { + "name": "south_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_left": { + "name": "subdirectory_arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_right": { + "name": "subdirectory_arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_left": { + "name": "switch_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_right": { + "name": "switch_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_less": { + "name": "unfold_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_more": { + "name": "unfold_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waterfall_chart": { + "name": "waterfall_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "west": { + "name": "west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_tree": { + "name": "account_tree", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adb": { + "name": "adb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat": { + "name": "airline_seat_flat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat_angled": { + "name": "airline_seat_flat_angled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_individual_suite": { + "name": "airline_seat_individual_suite", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_extra": { + "name": "airline_seat_legroom_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_normal": { + "name": "airline_seat_legroom_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_reduced": { + "name": "airline_seat_legroom_reduced", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_extra": { + "name": "airline_seat_recline_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_normal": { + "name": "airline_seat_recline_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_audio": { + "name": "bluetooth_audio", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "confirmation_number": { + "name": "confirmation_number", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_off": { + "name": "directions_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disc_full": { + "name": "disc_full", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb": { + "name": "do_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_alt": { + "name": "do_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_off": { + "name": "do_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_on": { + "name": "do_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb": { + "name": "do_not_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_alt": { + "name": "do_not_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_off": { + "name": "do_not_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on": { + "name": "do_not_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_eta": { + "name": "drive_eta", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "enhanced_encryption": { + "name": "enhanced_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_available": { + "name": "event_available", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_busy": { + "name": "event_busy", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_note": { + "name": "event_note", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_special": { + "name": "folder_special", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "imagesearch_roller": { + "name": "imagesearch_roller", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_tv": { + "name": "live_tv", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mms": { + "name": "mms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more": { + "name": "more", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_check": { + "name": "network_check", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_locked": { + "name": "network_locked", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption": { + "name": "no_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption_gmailerrorred": { + "name": "no_encryption_gmailerrorred", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ondemand_video": { + "name": "ondemand_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_video": { + "name": "personal_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_bluetooth_speaker": { + "name": "phone_bluetooth_speaker", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_callback": { + "name": "phone_callback", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_forwarded": { + "name": "phone_forwarded", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_in_talk": { + "name": "phone_in_talk", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_locked": { + "name": "phone_locked", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_missed": { + "name": "phone_missed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_paused": { + "name": "phone_paused", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power": { + "name": "power", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_off": { + "name": "power_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "priority_high": { + "name": "priority_high", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "running_with_errors": { + "name": "running_with_errors", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card": { + "name": "sd_card", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card_alert": { + "name": "sd_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_alert": { + "name": "sim_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms": { + "name": "sms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms_failed": { + "name": "sms_failed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "support_agent": { + "name": "support_agent", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sync": { + "name": "sync", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_disabled": { + "name": "sync_disabled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_problem": { + "name": "sync_problem", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update": { + "name": "system_update", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tap_and_play": { + "name": "tap_and_play", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "time_to_leave": { + "name": "time_to_leave", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv_off": { + "name": "tv_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vibration": { + "name": "vibration", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_chat": { + "name": "voice_chat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vpn_lock": { + "name": "vpn_lock", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wc": { + "name": "wc", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi": { + "name": "wifi", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_off": { + "name": "wifi_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ac_unit": { + "name": "ac_unit", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airport_shuttle": { + "name": "airport_shuttle", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_inclusive": { + "name": "all_inclusive", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apartment": { + "name": "apartment", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "baby_changing_station": { + "name": "baby_changing_station", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backpack": { + "name": "backpack", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "balcony": { + "name": "balcony", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bathtub": { + "name": "bathtub", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "beach_access": { + "name": "beach_access", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bento": { + "name": "bento", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bungalow": { + "name": "bungalow", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "business_center": { + "name": "business_center", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cabin": { + "name": "cabin", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "carpenter": { + "name": "carpenter", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "casino": { + "name": "casino", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chalet": { + "name": "chalet", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "charging_station": { + "name": "charging_station", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "checkroom": { + "name": "checkroom", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "child_care": { + "name": "child_care", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "child_friendly": { + "name": "child_friendly", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "corporate_fare": { + "name": "corporate_fare", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cottage": { + "name": "cottage", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "countertops": { + "name": "countertops", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crib": { + "name": "crib", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_step": { + "name": "do_not_step", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_touch": { + "name": "do_not_touch", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dry": { + "name": "dry", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "elevator": { + "name": "elevator", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "escalator": { + "name": "escalator", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "escalator_warning": { + "name": "escalator_warning", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "family_restroom": { + "name": "family_restroom", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fence": { + "name": "fence", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fire_extinguisher": { + "name": "fire_extinguisher", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fitness_center": { + "name": "fitness_center", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "food_bank": { + "name": "food_bank", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "foundation": { + "name": "foundation", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "free_breakfast": { + "name": "free_breakfast", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gite": { + "name": "gite", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "golf_course": { + "name": "golf_course", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grass": { + "name": "grass", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "holiday_village": { + "name": "holiday_village", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hot_tub": { + "name": "hot_tub", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "house": { + "name": "house", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "houseboat": { + "name": "houseboat", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "house_siding": { + "name": "house_siding", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "iron": { + "name": "iron", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "kitchen": { + "name": "kitchen", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "meeting_room": { + "name": "meeting_room", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "microwave": { + "name": "microwave", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "night_shelter": { + "name": "night_shelter", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_backpack": { + "name": "no_backpack", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_cell": { + "name": "no_cell", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_drinks": { + "name": "no_drinks", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_flash": { + "name": "no_flash", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_food": { + "name": "no_food", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_meeting_room": { + "name": "no_meeting_room", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_photography": { + "name": "no_photography", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_stroller": { + "name": "no_stroller", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "other_houses": { + "name": "other_houses", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pool": { + "name": "pool", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rice_bowl": { + "name": "rice_bowl", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "roofing": { + "name": "roofing", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room_preferences": { + "name": "room_preferences", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room_service": { + "name": "room_service", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rv_hookup": { + "name": "rv_hookup", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smoke_free": { + "name": "smoke_free", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smoking_rooms": { + "name": "smoking_rooms", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "soap": { + "name": "soap", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "spa": { + "name": "spa", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_bar": { + "name": "sports_bar", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stairs": { + "name": "stairs", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storefront": { + "name": "storefront", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stroller": { + "name": "stroller", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tapas": { + "name": "tapas", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tty": { + "name": "tty", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "umbrella": { + "name": "umbrella", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "villa": { + "name": "villa", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wash": { + "name": "wash", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "water_damage": { + "name": "water_damage", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wheelchair_pickup": { + "name": "wheelchair_pickup", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bathroom": { + "name": "bathroom", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bed": { + "name": "bed", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_baby": { + "name": "bedroom_baby", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_child": { + "name": "bedroom_child", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_parent": { + "name": "bedroom_parent", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blender": { + "name": "blender", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_indoor": { + "name": "camera_indoor", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_outdoor": { + "name": "camera_outdoor", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chair": { + "name": "chair", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chair_alt": { + "name": "chair_alt", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "coffee": { + "name": "coffee", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "coffee_maker": { + "name": "coffee_maker", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dining": { + "name": "dining", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "doorbell": { + "name": "doorbell", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_back": { + "name": "door_back", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_front": { + "name": "door_front", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_sliding": { + "name": "door_sliding", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "feed": { + "name": "feed", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flatware": { + "name": "flatware", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "garage": { + "name": "garage", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "light": { + "name": "light", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "living": { + "name": "living", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "manage_search": { + "name": "manage_search", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "podcasts": { + "name": "podcasts", + "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": "" + } + } + }, + "yard": { + "name": "yard", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6_ft_apart": { + "name": "6_ft_apart", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_moderator": { + "name": "add_moderator", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_reaction": { + "name": "add_reaction", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "architecture": { + "name": "architecture", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "back_hand": { + "name": "back_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cake": { + "name": "cake", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "catching_pokemon": { + "name": "catching_pokemon", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "clean_hands": { + "name": "clean_hands", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compost": { + "name": "compost", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "connect_without_contact": { + "name": "connect_without_contact", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "construction": { + "name": "construction", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "coronavirus": { + "name": "coronavirus", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cruelty_free": { + "name": "cruelty_free", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "deck": { + "name": "deck", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "domain": { + "name": "domain", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "downhill_skiing": { + "name": "downhill_skiing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_notifications": { + "name": "edit_notifications", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "elderly": { + "name": "elderly", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_emotions": { + "name": "emoji_emotions", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_events": { + "name": "emoji_events", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_flags": { + "name": "emoji_flags", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_food_beverage": { + "name": "emoji_food_beverage", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_nature": { + "name": "emoji_nature", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_objects": { + "name": "emoji_objects", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_people": { + "name": "emoji_people", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_symbols": { + "name": "emoji_symbols", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_transportation": { + "name": "emoji_transportation", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "engineering": { + "name": "engineering", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "facebook": { + "name": "facebook", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "female": { + "name": "female", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "fireplace": { + "name": "fireplace", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "follow_the_signs": { + "name": "follow_the_signs", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "front_hand": { + "name": "front_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "group": { + "name": "group", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "groups": { + "name": "groups", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "group_add": { + "name": "group_add", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "group_off": { + "name": "group_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "health_and_safety": { + "name": "health_and_safety", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hiking": { + "name": "hiking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "history_edu": { + "name": "history_edu", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ice_skating": { + "name": "ice_skating", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ios_share": { + "name": "ios_share", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "kayaking": { + "name": "kayaking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "king_bed": { + "name": "king_bed", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "kitesurfing": { + "name": "kitesurfing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "location_city": { + "name": "location_city", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "luggage": { + "name": "luggage", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "male": { + "name": "male", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "masks": { + "name": "masks", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "military_tech": { + "name": "military_tech", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mood": { + "name": "mood", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mood_bad": { + "name": "mood_bad", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nights_stay": { + "name": "nights_stay", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nordic_walking": { + "name": "nordic_walking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications": { + "name": "notifications", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_active": { + "name": "notifications_active", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_none": { + "name": "notifications_none", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_off": { + "name": "notifications_off", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_paused": { + "name": "notifications_paused", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notification_add": { + "name": "notification_add", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_luggage": { + "name": "no_luggage", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outdoor_grill": { + "name": "outdoor_grill", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pages": { + "name": "pages", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "paragliding": { + "name": "paragliding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "party_mode": { + "name": "party_mode", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "people": { + "name": "people", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "people_alt": { + "name": "people_alt", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "people_outline": { + "name": "people_outline", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person": { + "name": "person", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_injury": { + "name": "personal_injury", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add": { + "name": "person_add", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_alt": { + "name": "person_add_alt", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_alt_1": { + "name": "person_add_alt_1", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_off": { + "name": "person_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_outline": { + "name": "person_outline", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_remove": { + "name": "person_remove", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_remove_alt_1": { + "name": "person_remove_alt_1", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "piano": { + "name": "piano", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "piano_off": { + "name": "piano_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "plus_one": { + "name": "plus_one", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "poll": { + "name": "poll", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "precision_manufacturing": { + "name": "precision_manufacturing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "psychology": { + "name": "psychology", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "public": { + "name": "public", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "public_off": { + "name": "public_off", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "real_estate_agent": { + "name": "real_estate_agent", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "recommend": { + "name": "recommend", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "recycling": { + "name": "recycling", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "reduce_capacity": { + "name": "reduce_capacity", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_moderator": { + "name": "remove_moderator", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "safety_divider": { + "name": "safety_divider", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sanitizer": { + "name": "sanitizer", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "school": { + "name": "school", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "science": { + "name": "science", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "self_improvement": { + "name": "self_improvement", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_dissatisfied": { + "name": "sentiment_dissatisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_neutral": { + "name": "sentiment_neutral", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_satisfied": { + "name": "sentiment_satisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_very_dissatisfied": { + "name": "sentiment_very_dissatisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_very_satisfied": { + "name": "sentiment_very_satisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "share": { + "name": "share", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sick": { + "name": "sick", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "single_bed": { + "name": "single_bed", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "skateboarding": { + "name": "skateboarding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sledding": { + "name": "sledding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snowboarding": { + "name": "snowboarding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snowshoeing": { + "name": "snowshoeing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "social_distance": { + "name": "social_distance", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports": { + "name": "sports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_baseball": { + "name": "sports_baseball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_basketball": { + "name": "sports_basketball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_cricket": { + "name": "sports_cricket", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_esports": { + "name": "sports_esports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_football": { + "name": "sports_football", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_golf": { + "name": "sports_golf", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_handball": { + "name": "sports_handball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_hockey": { + "name": "sports_hockey", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_kabaddi": { + "name": "sports_kabaddi", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_mma": { + "name": "sports_mma", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_motorsports": { + "name": "sports_motorsports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_rugby": { + "name": "sports_rugby", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_soccer": { + "name": "sports_soccer", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_tennis": { + "name": "sports_tennis", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_volleyball": { + "name": "sports_volleyball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "surfing": { + "name": "surfing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_account": { + "name": "switch_account", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down_alt": { + "name": "thumb_down_alt", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up_alt": { + "name": "thumb_up_alt", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transgender": { + "name": "transgender", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "travel_explore": { + "name": "travel_explore", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "water_drop": { + "name": "water_drop", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "waving_hand": { + "name": "waving_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "whatshot": { + "name": "whatshot", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_box": { + "name": "check_box", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_box_outline_blank": { + "name": "check_box_outline_blank", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "indeterminate_check_box": { + "name": "indeterminate_check_box", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio_button_checked": { + "name": "radio_button_checked", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio_button_unchecked": { + "name": "radio_button_unchecked", + "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": "" + } + } + }, + "star_border_purple500": { + "name": "star_border_purple500", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_half": { + "name": "star_half", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_outline": { + "name": "star_outline", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_purple500": { + "name": "star_purple500", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toggle_off": { + "name": "toggle_off", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toggle_on": { + "name": "toggle_on", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + } +} \ No newline at end of file diff --git a/sphinx_design/compiled/material_sharp.json b/sphinx_design/compiled/material_sharp.json new file mode 100644 index 0000000..0cfcafb --- /dev/null +++ b/sphinx_design/compiled/material_sharp.json @@ -0,0 +1,22898 @@ +{ + "3d_rotation": { + "name": "3d_rotation", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessibility": { + "name": "accessibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessibility_new": { + "name": "accessibility_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessible": { + "name": "accessible", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessible_forward": { + "name": "accessible_forward", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_balance": { + "name": "account_balance", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_balance_wallet": { + "name": "account_balance_wallet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_box": { + "name": "account_box", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_circle": { + "name": "account_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "addchart": { + "name": "addchart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_shopping_cart": { + "name": "add_shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_task": { + "name": "add_task", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_drive": { + "name": "add_to_drive", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "admin_panel_settings": { + "name": "admin_panel_settings", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ads_click": { + "name": "ads_click", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm": { + "name": "alarm", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_add": { + "name": "alarm_add", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_off": { + "name": "alarm_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_on": { + "name": "alarm_on", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_inbox": { + "name": "all_inbox", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_out": { + "name": "all_out", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "analytics": { + "name": "analytics", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "anchor": { + "name": "anchor", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "android": { + "name": "android", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "announcement": { + "name": "announcement", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "api": { + "name": "api", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_blocking": { + "name": "app_blocking", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_circle_down": { + "name": "arrow_circle_down", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_circle_up": { + "name": "arrow_circle_up", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right_alt": { + "name": "arrow_right_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "article": { + "name": "article", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "aspect_ratio": { + "name": "aspect_ratio", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assessment": { + "name": "assessment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment": { + "name": "assignment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_ind": { + "name": "assignment_ind", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_late": { + "name": "assignment_late", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_return": { + "name": "assignment_return", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_returned": { + "name": "assignment_returned", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_turned_in": { + "name": "assignment_turned_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "autorenew": { + "name": "autorenew", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backup": { + "name": "backup", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backup_table": { + "name": "backup_table", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "batch_prediction": { + "name": "batch_prediction", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "book": { + "name": "book", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark": { + "name": "bookmark", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmarks": { + "name": "bookmarks", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_add": { + "name": "bookmark_add", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_added": { + "name": "bookmark_added", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_border": { + "name": "bookmark_border", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_remove": { + "name": "bookmark_remove", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "book_online": { + "name": "book_online", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bug_report": { + "name": "bug_report", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "build": { + "name": "build", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "build_circle": { + "name": "build_circle", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cached": { + "name": "cached", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_today": { + "name": "calendar_today", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_day": { + "name": "calendar_view_day", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_month": { + "name": "calendar_view_month", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_week": { + "name": "calendar_view_week", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_enhance": { + "name": "camera_enhance", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel_schedule_send": { + "name": "cancel_schedule_send", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "card_giftcard": { + "name": "card_giftcard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "card_membership": { + "name": "card_membership", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "card_travel": { + "name": "card_travel", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "change_history": { + "name": "change_history", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_circle": { + "name": "check_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_circle_outline": { + "name": "check_circle_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chrome_reader_mode": { + "name": "chrome_reader_mode", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "circle_notifications": { + "name": "circle_notifications", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "class": { + "name": "class", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close_fullscreen": { + "name": "close_fullscreen", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "code": { + "name": "code", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "code_off": { + "name": "code_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "comment_bank": { + "name": "comment_bank", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "commute": { + "name": "commute", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compare_arrows": { + "name": "compare_arrows", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compress": { + "name": "compress", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contactless": { + "name": "contactless", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_page": { + "name": "contact_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_support": { + "name": "contact_support", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "copyright": { + "name": "copyright", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_card": { + "name": "credit_card", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_card_off": { + "name": "credit_card_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dangerous": { + "name": "dangerous", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dashboard": { + "name": "dashboard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dashboard_customize": { + "name": "dashboard_customize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_exploration": { + "name": "data_exploration", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "date_range": { + "name": "date_range", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete": { + "name": "delete", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_forever": { + "name": "delete_forever", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_outline": { + "name": "delete_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "description": { + "name": "description", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disabled_by_default": { + "name": "disabled_by_default", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disabled_visible": { + "name": "disabled_visible", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dns": { + "name": "dns", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done": { + "name": "done", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done_all": { + "name": "done_all", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done_outline": { + "name": "done_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "donut_large": { + "name": "donut_large", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "donut_small": { + "name": "donut_small", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drag_indicator": { + "name": "drag_indicator", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dynamic_form": { + "name": "dynamic_form", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "eco": { + "name": "eco", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_calendar": { + "name": "edit_calendar", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_off": { + "name": "edit_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "eject": { + "name": "eject", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "euro_symbol": { + "name": "euro_symbol", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event": { + "name": "event", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_seat": { + "name": "event_seat", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exit_to_app": { + "name": "exit_to_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand": { + "name": "expand", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explore": { + "name": "explore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explore_off": { + "name": "explore_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "extension": { + "name": "extension", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "extension_off": { + "name": "extension_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "face": { + "name": "face", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_unlock": { + "name": "face_unlock", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fact_check": { + "name": "fact_check", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "favorite": { + "name": "favorite", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "favorite_border": { + "name": "favorite_border", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "feedback": { + "name": "feedback", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_present": { + "name": "file_present", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_alt": { + "name": "filter_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "find_in_page": { + "name": "find_in_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "find_replace": { + "name": "find_replace", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fingerprint": { + "name": "fingerprint", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fit_screen": { + "name": "fit_screen", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flaky": { + "name": "flaky", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flight_land": { + "name": "flight_land", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flight_takeoff": { + "name": "flight_takeoff", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_to_back": { + "name": "flip_to_back", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_to_front": { + "name": "flip_to_front", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flutter_dash": { + "name": "flutter_dash", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "free_cancellation": { + "name": "free_cancellation", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "gavel": { + "name": "gavel", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "generating_tokens": { + "name": "generating_tokens", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "get_app": { + "name": "get_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gif": { + "name": "gif", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grade": { + "name": "grade", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grading": { + "name": "grading", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "group_work": { + "name": "group_work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "g_translate": { + "name": "g_translate", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help": { + "name": "help", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help_center": { + "name": "help_center", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help_outline": { + "name": "help_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hide_source": { + "name": "hide_source", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight_alt": { + "name": "highlight_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight_off": { + "name": "highlight_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "history": { + "name": "history", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "history_toggle_off": { + "name": "history_toggle_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home": { + "name": "home", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_split": { + "name": "horizontal_split", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hotel_class": { + "name": "hotel_class", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_disabled": { + "name": "hourglass_disabled", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_empty": { + "name": "hourglass_empty", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_full": { + "name": "hourglass_full", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "http": { + "name": "http", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "https": { + "name": "https", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "important_devices": { + "name": "important_devices", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "info": { + "name": "info", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "info_outline": { + "name": "info_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "input": { + "name": "input", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "integration_instructions": { + "name": "integration_instructions", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "invert_colors": { + "name": "invert_colors", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "label": { + "name": "label", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_important": { + "name": "label_important", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_important_outline": { + "name": "label_important_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_off": { + "name": "label_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_outline": { + "name": "label_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "language": { + "name": "language", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "launch": { + "name": "launch", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leaderboard": { + "name": "leaderboard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lightbulb": { + "name": "lightbulb", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lightbulb_outline": { + "name": "lightbulb_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "line_style": { + "name": "line_style", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "line_weight": { + "name": "line_weight", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "list": { + "name": "list", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock": { + "name": "lock", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_clock": { + "name": "lock_clock", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_open": { + "name": "lock_open", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_outline": { + "name": "lock_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "login": { + "name": "login", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "logout": { + "name": "logout", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loyalty": { + "name": "loyalty", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "manage_accounts": { + "name": "manage_accounts", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "markunread_mailbox": { + "name": "markunread_mailbox", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_as_unread": { + "name": "mark_as_unread", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "maximize": { + "name": "maximize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mediation": { + "name": "mediation", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "minimize": { + "name": "minimize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "model_training": { + "name": "model_training", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "new_label": { + "name": "new_label", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "next_plan": { + "name": "next_plan", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlight_round": { + "name": "nightlight_round", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note_add": { + "name": "note_add", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "not_accessible": { + "name": "not_accessible", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "not_started": { + "name": "not_started", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_accounts": { + "name": "no_accounts", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_bolt": { + "name": "offline_bolt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_pin": { + "name": "offline_pin", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "online_prediction": { + "name": "online_prediction", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "opacity": { + "name": "opacity", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_browser": { + "name": "open_in_browser", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_full": { + "name": "open_in_full", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_new": { + "name": "open_in_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_new_off": { + "name": "open_in_new_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "open_with": { + "name": "open_with", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbond": { + "name": "outbond", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbound": { + "name": "outbound", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbox": { + "name": "outbox", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "outlet": { + "name": "outlet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pageview": { + "name": "pageview", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "paid": { + "name": "paid", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pan_tool": { + "name": "pan_tool", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payment": { + "name": "payment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pending": { + "name": "pending", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pending_actions": { + "name": "pending_actions", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_camera_mic": { + "name": "perm_camera_mic", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_contact_calendar": { + "name": "perm_contact_calendar", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_data_setting": { + "name": "perm_data_setting", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_device_information": { + "name": "perm_device_information", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_identity": { + "name": "perm_identity", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_media": { + "name": "perm_media", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_phone_msg": { + "name": "perm_phone_msg", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_scan_wifi": { + "name": "perm_scan_wifi", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pets": { + "name": "pets", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_in_picture": { + "name": "picture_in_picture", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_in_picture_alt": { + "name": "picture_in_picture_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_end": { + "name": "pin_end", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_invoke": { + "name": "pin_invoke", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "plagiarism": { + "name": "plagiarism", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_for_work": { + "name": "play_for_work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "polymer": { + "name": "polymer", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_settings_new": { + "name": "power_settings_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pregnant_woman": { + "name": "pregnant_woman", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "preview": { + "name": "preview", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "print": { + "name": "print", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "privacy_tip": { + "name": "privacy_tip", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "private_connectivity": { + "name": "private_connectivity", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "production_quantity_limits": { + "name": "production_quantity_limits", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "published_with_changes": { + "name": "published_with_changes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "query_builder": { + "name": "query_builder", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "question_answer": { + "name": "question_answer", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "quickreply": { + "name": "quickreply", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "receipt": { + "name": "receipt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "record_voice_over": { + "name": "record_voice_over", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "redeem": { + "name": "redeem", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_done": { + "name": "remove_done", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_shopping_cart": { + "name": "remove_shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reorder": { + "name": "reorder", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_problem": { + "name": "report_problem", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_page": { + "name": "request_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore": { + "name": "restore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore_from_trash": { + "name": "restore_from_trash", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore_page": { + "name": "restore_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room": { + "name": "room", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rounded_corner": { + "name": "rounded_corner", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rowing": { + "name": "rowing", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule": { + "name": "rule", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "saved_search": { + "name": "saved_search", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "savings": { + "name": "savings", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "schedule": { + "name": "schedule", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "schedule_send": { + "name": "schedule_send", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "search": { + "name": "search", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "search_off": { + "name": "search_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "segment": { + "name": "segment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send_and_archive": { + "name": "send_and_archive", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensors": { + "name": "sensors", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensors_off": { + "name": "sensors_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "settings": { + "name": "settings", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_accessibility": { + "name": "settings_accessibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_applications": { + "name": "settings_applications", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_backup_restore": { + "name": "settings_backup_restore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_bluetooth": { + "name": "settings_bluetooth", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_brightness": { + "name": "settings_brightness", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_cell": { + "name": "settings_cell", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_ethernet": { + "name": "settings_ethernet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_antenna": { + "name": "settings_input_antenna", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_component": { + "name": "settings_input_component", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_composite": { + "name": "settings_input_composite", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_hdmi": { + "name": "settings_input_hdmi", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_svideo": { + "name": "settings_input_svideo", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_overscan": { + "name": "settings_overscan", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_phone": { + "name": "settings_phone", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_power": { + "name": "settings_power", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_remote": { + "name": "settings_remote", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_voice": { + "name": "settings_voice", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shop": { + "name": "shop", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_bag": { + "name": "shopping_bag", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_basket": { + "name": "shopping_basket", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_cart": { + "name": "shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shop_2": { + "name": "shop_2", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "shop_two": { + "name": "shop_two", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_button": { + "name": "smart_button", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "source": { + "name": "source", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "space_dashboard": { + "name": "space_dashboard", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_notes": { + "name": "speaker_notes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_notes_off": { + "name": "speaker_notes_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "spellcheck": { + "name": "spellcheck", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stars": { + "name": "stars", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_rate": { + "name": "star_rate", + "keywords": [ + "action" + ], + "heights": { + "18": { + "width": 18, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sticky_note_2": { + "name": "sticky_note_2", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "store": { + "name": "store", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subject": { + "name": "subject", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subtitles_off": { + "name": "subtitles_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "supervised_user_circle": { + "name": "supervised_user_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "supervisor_account": { + "name": "supervisor_account", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "support": { + "name": "support", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_horiz": { + "name": "swap_horiz", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_horizontal_circle": { + "name": "swap_horizontal_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_vert": { + "name": "swap_vert", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_vertical_circle": { + "name": "swap_vertical_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swipe": { + "name": "swipe", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_alt": { + "name": "sync_alt", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update_alt": { + "name": "system_update_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tab": { + "name": "tab", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "table_view": { + "name": "table_view", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tab_unselected": { + "name": "tab_unselected", + "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": "" + } + } + }, + "text_rotate_vertical": { + "name": "text_rotate_vertical", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_angledown": { + "name": "text_rotation_angledown", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_angleup": { + "name": "text_rotation_angleup", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_down": { + "name": "text_rotation_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_none": { + "name": "text_rotation_none", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "theaters": { + "name": "theaters", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumbs_up_down": { + "name": "thumbs_up_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down": { + "name": "thumb_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down_off_alt": { + "name": "thumb_down_off_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up": { + "name": "thumb_up", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up_off_alt": { + "name": "thumb_up_off_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timeline": { + "name": "timeline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tips_and_updates": { + "name": "tips_and_updates", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "toc": { + "name": "toc", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "today": { + "name": "today", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toll": { + "name": "toll", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "touch_app": { + "name": "touch_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tour": { + "name": "tour", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "track_changes": { + "name": "track_changes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "translate": { + "name": "translate", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_down": { + "name": "trending_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_flat": { + "name": "trending_flat", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_up": { + "name": "trending_up", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "try": { + "name": "try", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "turned_in": { + "name": "turned_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "turned_in_not": { + "name": "turned_in_not", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unpublished": { + "name": "unpublished", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "update": { + "name": "update", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "update_disabled": { + "name": "update_disabled", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "upgrade": { + "name": "upgrade", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "verified": { + "name": "verified", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "verified_user": { + "name": "verified_user", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_split": { + "name": "vertical_split", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_agenda": { + "name": "view_agenda", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_array": { + "name": "view_array", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_carousel": { + "name": "view_carousel", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_column": { + "name": "view_column", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_day": { + "name": "view_day", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_headline": { + "name": "view_headline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_in_ar": { + "name": "view_in_ar", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_list": { + "name": "view_list", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_module": { + "name": "view_module", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_quilt": { + "name": "view_quilt", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_sidebar": { + "name": "view_sidebar", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_stream": { + "name": "view_stream", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_week": { + "name": "view_week", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "visibility": { + "name": "visibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "visibility_off": { + "name": "visibility_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_over_off": { + "name": "voice_over_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "watch_later": { + "name": "watch_later", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_protected_setup": { + "name": "wifi_protected_setup", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "work": { + "name": "work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "work_off": { + "name": "work_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "work_outline": { + "name": "work_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wysiwyg": { + "name": "wysiwyg", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "youtube_searched_for": { + "name": "youtube_searched_for", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_in": { + "name": "zoom_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_out": { + "name": "zoom_out", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alert": { + "name": "add_alert", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_delete": { + "name": "auto_delete", + "keywords": [ + "alert" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "error": { + "name": "error", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "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": "" + } + } + }, + "warning": { + "name": "warning", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "warning_amber": { + "name": "warning_amber", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "10k": { + "name": "10k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1k": { + "name": "1k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1k_plus": { + "name": "1k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2k": { + "name": "2k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2k_plus": { + "name": "2k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3k": { + "name": "3k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3k_plus": { + "name": "3k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4k": { + "name": "4k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4k_plus": { + "name": "4k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5g": { + "name": "5g", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "5k": { + "name": "5k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5k_plus": { + "name": "5k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6k": { + "name": "6k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6k_plus": { + "name": "6k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7k": { + "name": "7k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7k_plus": { + "name": "7k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8k": { + "name": "8k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8k_plus": { + "name": "8k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9k": { + "name": "9k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9k_plus": { + "name": "9k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_queue": { + "name": "add_to_queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airplay": { + "name": "airplay", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "album": { + "name": "album", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "art_track": { + "name": "art_track", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "av_timer": { + "name": "av_timer", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "branding_watermark": { + "name": "branding_watermark", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_to_action": { + "name": "call_to_action", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption": { + "name": "closed_caption", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption_disabled": { + "name": "closed_caption_disabled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption_off": { + "name": "closed_caption_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_camera": { + "name": "control_camera", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "equalizer": { + "name": "equalizer", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explicit": { + "name": "explicit", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fast_forward": { + "name": "fast_forward", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fast_rewind": { + "name": "fast_rewind", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "featured_play_list": { + "name": "featured_play_list", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "featured_video": { + "name": "featured_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_dvr": { + "name": "fiber_dvr", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_manual_record": { + "name": "fiber_manual_record", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_new": { + "name": "fiber_new", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_pin": { + "name": "fiber_pin", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_smart_record": { + "name": "fiber_smart_record", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_10": { + "name": "forward_10", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_30": { + "name": "forward_30", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_5": { + "name": "forward_5", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "games": { + "name": "games", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hd": { + "name": "hd", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hearing": { + "name": "hearing", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hearing_disabled": { + "name": "hearing_disabled", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "high_quality": { + "name": "high_quality", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_add": { + "name": "library_add", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_add_check": { + "name": "library_add_check", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "library_books": { + "name": "library_books", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_music": { + "name": "library_music", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loop": { + "name": "loop", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic": { + "name": "mic", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_none": { + "name": "mic_none", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_off": { + "name": "mic_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "missed_video_call": { + "name": "missed_video_call", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie": { + "name": "movie", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_video": { + "name": "music_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "new_releases": { + "name": "new_releases", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note": { + "name": "note", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "not_interested": { + "name": "not_interested", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause": { + "name": "pause", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle": { + "name": "pause_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle_filled": { + "name": "pause_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle_outline": { + "name": "pause_circle_outline", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_add": { + "name": "playlist_add", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_add_check": { + "name": "playlist_add_check", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_play": { + "name": "playlist_play", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_arrow": { + "name": "play_arrow", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle": { + "name": "play_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle_filled": { + "name": "play_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle_outline": { + "name": "play_circle_outline", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_disabled": { + "name": "play_disabled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "queue": { + "name": "queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "queue_music": { + "name": "queue_music", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "queue_play_next": { + "name": "queue_play_next", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio": { + "name": "radio", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "recent_actors": { + "name": "recent_actors", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_from_queue": { + "name": "remove_from_queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat": { + "name": "repeat", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_on": { + "name": "repeat_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_one": { + "name": "repeat_one", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_one_on": { + "name": "repeat_one_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay": { + "name": "replay", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_10": { + "name": "replay_10", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_30": { + "name": "replay_30", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_5": { + "name": "replay_5", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_circle_filled": { + "name": "replay_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd": { + "name": "sd", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shuffle": { + "name": "shuffle", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shuffle_on": { + "name": "shuffle_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "skip_next": { + "name": "skip_next", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "skip_previous": { + "name": "skip_previous", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "slow_motion_video": { + "name": "slow_motion_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snooze": { + "name": "snooze", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sort_by_alpha": { + "name": "sort_by_alpha", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speed": { + "name": "speed", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop": { + "name": "stop", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop_circle": { + "name": "stop_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "subscriptions": { + "name": "subscriptions", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subtitles": { + "name": "subtitles", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "surround_sound": { + "name": "surround_sound", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videocam": { + "name": "videocam", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videocam_off": { + "name": "videocam_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_call": { + "name": "video_call", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_label": { + "name": "video_label", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_library": { + "name": "video_library", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_settings": { + "name": "video_settings", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_down": { + "name": "volume_down", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_mute": { + "name": "volume_mute", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_off": { + "name": "volume_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_up": { + "name": "volume_up", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web": { + "name": "web", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web_asset": { + "name": "web_asset", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web_asset_off": { + "name": "web_asset_off", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "3p": { + "name": "3p", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_ic_call": { + "name": "add_ic_call", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alternate_email": { + "name": "alternate_email", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_registration": { + "name": "app_registration", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "business": { + "name": "business", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call": { + "name": "call", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_end": { + "name": "call_end", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_made": { + "name": "call_made", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_merge": { + "name": "call_merge", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_missed": { + "name": "call_missed", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_missed_outgoing": { + "name": "call_missed_outgoing", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_received": { + "name": "call_received", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_split": { + "name": "call_split", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel_presentation": { + "name": "cancel_presentation", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cell_wifi": { + "name": "cell_wifi", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat": { + "name": "chat", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat_bubble": { + "name": "chat_bubble", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat_bubble_outline": { + "name": "chat_bubble_outline", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "clear_all": { + "name": "clear_all", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "comment": { + "name": "comment", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contacts": { + "name": "contacts", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_mail": { + "name": "contact_mail", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_phone": { + "name": "contact_phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_access_disabled": { + "name": "desktop_access_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dialer_sip": { + "name": "dialer_sip", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dialpad": { + "name": "dialpad", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "document_scanner": { + "name": "document_scanner", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "domain_disabled": { + "name": "domain_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "domain_verification": { + "name": "domain_verification", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "duo": { + "name": "duo", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "email": { + "name": "email", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forum": { + "name": "forum", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_to_inbox": { + "name": "forward_to_inbox", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_bottom": { + "name": "hourglass_bottom", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_top": { + "name": "hourglass_top", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "import_contacts": { + "name": "import_contacts", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "import_export": { + "name": "import_export", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "invert_colors_off": { + "name": "invert_colors_off", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "list_alt": { + "name": "list_alt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_help": { + "name": "live_help", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_off": { + "name": "location_off", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_on": { + "name": "location_on", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mail_outline": { + "name": "mail_outline", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_chat_read": { + "name": "mark_chat_read", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_chat_unread": { + "name": "mark_chat_unread", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_email_read": { + "name": "mark_email_read", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_email_unread": { + "name": "mark_email_unread", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "message": { + "name": "message", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mobile_screen_share": { + "name": "mobile_screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_time": { + "name": "more_time", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nat": { + "name": "nat", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_sim": { + "name": "no_sim", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_presentation": { + "name": "pause_presentation", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_disabled": { + "name": "person_add_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_search": { + "name": "person_search", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "phone": { + "name": "phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_erase": { + "name": "phonelink_erase", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_lock": { + "name": "phonelink_lock", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_ring": { + "name": "phonelink_ring", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_setup": { + "name": "phonelink_setup", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_disabled": { + "name": "phone_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_enabled": { + "name": "phone_enabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "portable_wifi_off": { + "name": "portable_wifi_off", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "present_to_all": { + "name": "present_to_all", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "print_disabled": { + "name": "print_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code": { + "name": "qr_code", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code_2": { + "name": "qr_code_2", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code_scanner": { + "name": "qr_code_scanner", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "read_more": { + "name": "read_more", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ring_volume": { + "name": "ring_volume", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rss_feed": { + "name": "rss_feed", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rtt": { + "name": "rtt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_share": { + "name": "screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_satisfied_alt": { + "name": "sentiment_satisfied_alt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sip": { + "name": "sip", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_phone": { + "name": "speaker_phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_current_landscape": { + "name": "stay_current_landscape", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_current_portrait": { + "name": "stay_current_portrait", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_primary_landscape": { + "name": "stay_primary_landscape", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_primary_portrait": { + "name": "stay_primary_portrait", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop_screen_share": { + "name": "stop_screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_calls": { + "name": "swap_calls", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "textsms": { + "name": "textsms", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unsubscribe": { + "name": "unsubscribe", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voicemail": { + "name": "voicemail", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vpn_key": { + "name": "vpn_key", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_calling": { + "name": "wifi_calling", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add": { + "name": "add", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_box": { + "name": "add_box", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_circle": { + "name": "add_circle", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_circle_outline": { + "name": "add_circle_outline", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_link": { + "name": "add_link", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "amp_stories": { + "name": "amp_stories", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "archive": { + "name": "archive", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attribution": { + "name": "attribution", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backspace": { + "name": "backspace", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ballot": { + "name": "ballot", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "biotech": { + "name": "biotech", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "block": { + "name": "block", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bolt": { + "name": "bolt", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calculate": { + "name": "calculate", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "change_circle": { + "name": "change_circle", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "clear": { + "name": "clear", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_copy": { + "name": "content_copy", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_cut": { + "name": "content_cut", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_paste": { + "name": "content_paste", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_paste_off": { + "name": "content_paste_off", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "copy_all": { + "name": "copy_all", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "create": { + "name": "create", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_sweep": { + "name": "delete_sweep", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drafts": { + "name": "drafts", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dynamic_feed": { + "name": "dynamic_feed", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "file_copy": { + "name": "file_copy", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_list": { + "name": "filter_list", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flag": { + "name": "flag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "font_download": { + "name": "font_download", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "font_download_off": { + "name": "font_download_off", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "forward": { + "name": "forward", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gesture": { + "name": "gesture", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "how_to_reg": { + "name": "how_to_reg", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "how_to_vote": { + "name": "how_to_vote", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "inbox": { + "name": "inbox", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insights": { + "name": "insights", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "inventory": { + "name": "inventory", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "inventory_2": { + "name": "inventory_2", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "link": { + "name": "link", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "link_off": { + "name": "link_off", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "low_priority": { + "name": "low_priority", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mail": { + "name": "mail", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "markunread": { + "name": "markunread", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "move_to_inbox": { + "name": "move_to_inbox", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "next_week": { + "name": "next_week", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outlined_flag": { + "name": "outlined_flag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "policy": { + "name": "policy", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "push_pin": { + "name": "push_pin", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "redo": { + "name": "redo", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove": { + "name": "remove", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_circle": { + "name": "remove_circle", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_circle_outline": { + "name": "remove_circle_outline", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reply": { + "name": "reply", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reply_all": { + "name": "reply_all", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report": { + "name": "report", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_gmailerrorred": { + "name": "report_gmailerrorred", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_off": { + "name": "report_off", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "save": { + "name": "save", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "save_alt": { + "name": "save_alt", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "select_all": { + "name": "select_all", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send": { + "name": "send", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shield": { + "name": "shield", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sort": { + "name": "sort", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "square_foot": { + "name": "square_foot", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "stacked_bar_chart": { + "name": "stacked_bar_chart", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stream": { + "name": "stream", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tag": { + "name": "tag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_format": { + "name": "text_format", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unarchive": { + "name": "unarchive", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "undo": { + "name": "undo", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upcoming": { + "name": "upcoming", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waves": { + "name": "waves", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "weekend": { + "name": "weekend", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "where_to_vote": { + "name": "where_to_vote", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1x_mobiledata": { + "name": "1x_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "30fps": { + "name": "30fps", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3g_mobiledata": { + "name": "3g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4g_mobiledata": { + "name": "4g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4g_plus_mobiledata": { + "name": "4g_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "60fps": { + "name": "60fps", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_alarm": { + "name": "access_alarm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_alarms": { + "name": "access_alarms", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_time": { + "name": "access_time", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_time_filled": { + "name": "access_time_filled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alarm": { + "name": "add_alarm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_home_screen": { + "name": "add_to_home_screen", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ad_units": { + "name": "ad_units", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "air": { + "name": "air", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airplanemode_active": { + "name": "airplanemode_active", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airplanemode_inactive": { + "name": "airplanemode_inactive", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airplane_ticket": { + "name": "airplane_ticket", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "aod": { + "name": "aod", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_alert": { + "name": "battery_alert", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_charging_full": { + "name": "battery_charging_full", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_full": { + "name": "battery_full", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_saver": { + "name": "battery_saver", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_std": { + "name": "battery_std", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_unknown": { + "name": "battery_unknown", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bloodtype": { + "name": "bloodtype", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth": { + "name": "bluetooth", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_connected": { + "name": "bluetooth_connected", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_disabled": { + "name": "bluetooth_disabled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_drive": { + "name": "bluetooth_drive", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_searching": { + "name": "bluetooth_searching", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_auto": { + "name": "brightness_auto", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_high": { + "name": "brightness_high", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_low": { + "name": "brightness_low", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_medium": { + "name": "brightness_medium", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cable": { + "name": "cable", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cameraswitch": { + "name": "cameraswitch", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_score": { + "name": "credit_score", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dark_mode": { + "name": "dark_mode", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "data_saver_off": { + "name": "data_saver_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_saver_on": { + "name": "data_saver_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_usage": { + "name": "data_usage", + "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": "" + } + } + }, + "device_thermostat": { + "name": "device_thermostat", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on_total_silence": { + "name": "do_not_disturb_on_total_silence", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dvr": { + "name": "dvr", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edgesensor_high": { + "name": "edgesensor_high", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edgesensor_low": { + "name": "edgesensor_low", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "e_mobiledata": { + "name": "e_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flashlight_off": { + "name": "flashlight_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flashlight_on": { + "name": "flashlight_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flourescent": { + "name": "flourescent", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fmd_bad": { + "name": "fmd_bad", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fmd_good": { + "name": "fmd_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_bad": { + "name": "gpp_bad", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_good": { + "name": "gpp_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_maybe": { + "name": "gpp_maybe", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_fixed": { + "name": "gps_fixed", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_not_fixed": { + "name": "gps_not_fixed", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_off": { + "name": "gps_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "graphic_eq": { + "name": "graphic_eq", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_3x3": { + "name": "grid_3x3", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_4x4": { + "name": "grid_4x4", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_goldenratio": { + "name": "grid_goldenratio", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "g_mobiledata": { + "name": "g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_auto": { + "name": "hdr_auto", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_auto_select": { + "name": "hdr_auto_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_off_select": { + "name": "hdr_off_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_on_select": { + "name": "hdr_on_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "h_mobiledata": { + "name": "h_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "h_plus_mobiledata": { + "name": "h_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lens_blur": { + "name": "lens_blur", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "light_mode": { + "name": "light_mode", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "location_disabled": { + "name": "location_disabled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_searching": { + "name": "location_searching", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lte_mobiledata": { + "name": "lte_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lte_plus_mobiledata": { + "name": "lte_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "media_bluetooth_off": { + "name": "media_bluetooth_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "media_bluetooth_on": { + "name": "media_bluetooth_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "medication": { + "name": "medication", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mobiledata_off": { + "name": "mobiledata_off", + "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": "" + } + } + }, + "mode_night": { + "name": "mode_night", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_standby": { + "name": "mode_standby", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor_weight": { + "name": "monitor_weight", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nearby_error": { + "name": "nearby_error", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nearby_off": { + "name": "nearby_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_cell": { + "name": "network_cell", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_wifi": { + "name": "network_wifi", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nfc": { + "name": "nfc", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlight": { + "name": "nightlight", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note_alt": { + "name": "note_alt", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "password": { + "name": "password", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pattern": { + "name": "pattern", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pin": { + "name": "pin", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_lesson": { + "name": "play_lesson", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "price_change": { + "name": "price_change", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "price_check": { + "name": "price_check", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "quiz": { + "name": "quiz", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radar": { + "name": "radar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remember_me": { + "name": "remember_me", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reset_tv": { + "name": "reset_tv", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restart_alt": { + "name": "restart_alt", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reviews": { + "name": "reviews", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rsvp": { + "name": "rsvp", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "r_mobiledata": { + "name": "r_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screenshot": { + "name": "screenshot", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_landscape": { + "name": "screen_lock_landscape", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_portrait": { + "name": "screen_lock_portrait", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_rotation": { + "name": "screen_lock_rotation", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_rotation": { + "name": "screen_rotation", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_search_desktop": { + "name": "screen_search_desktop", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_storage": { + "name": "sd_storage", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update": { + "name": "security_update", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update_good": { + "name": "security_update_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update_warning": { + "name": "security_update_warning", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sell": { + "name": "sell", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send_to_mobile": { + "name": "send_to_mobile", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_suggest": { + "name": "settings_suggest", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_system_daydream": { + "name": "settings_system_daydream", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "share_location": { + "name": "share_location", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shortcut": { + "name": "shortcut", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_0_bar": { + "name": "signal_cellular_0_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_4_bar": { + "name": "signal_cellular_4_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_alt": { + "name": "signal_cellular_alt", + "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": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_connected_no_internet_4_bar": { + "name": "signal_cellular_connected_no_internet_4_bar", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_nodata": { + "name": "signal_cellular_nodata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_no_sim": { + "name": "signal_cellular_no_sim", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_null": { + "name": "signal_cellular_null", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_off": { + "name": "signal_cellular_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_0_bar": { + "name": "signal_wifi_0_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_4_bar": { + "name": "signal_wifi_4_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_4_bar_lock": { + "name": "signal_wifi_4_bar_lock", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_bad": { + "name": "signal_wifi_bad", + "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": "" + } + } + }, + "signal_wifi_off": { + "name": "signal_wifi_off", + "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": "" + } + } + }, + "signal_wifi_statusbar_connected_no_internet_4": { + "name": "signal_wifi_statusbar_connected_no_internet_4", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_statusbar_null": { + "name": "signal_wifi_statusbar_null", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_download": { + "name": "sim_card_download", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "splitscreen": { + "name": "splitscreen", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_score": { + "name": "sports_score", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storage": { + "name": "storage", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storm": { + "name": "storm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "summarize": { + "name": "summarize", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update": { + "name": "system_security_update", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update_good": { + "name": "system_security_update_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update_warning": { + "name": "system_security_update_warning", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "task": { + "name": "task", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thermostat": { + "name": "thermostat", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_10_select": { + "name": "timer_10_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_3_select": { + "name": "timer_3_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tungsten": { + "name": "tungsten", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "usb": { + "name": "usb", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "usb_off": { + "name": "usb_off", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wallpaper": { + "name": "wallpaper", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "water": { + "name": "water", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "widgets": { + "name": "widgets", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_calling_3": { + "name": "wifi_calling_3", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_lock": { + "name": "wifi_lock", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering": { + "name": "wifi_tethering", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering_error_rounded": { + "name": "wifi_tethering_error_rounded", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering_off": { + "name": "wifi_tethering_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_chart": { + "name": "add_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_comment": { + "name": "add_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_center": { + "name": "align_horizontal_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_left": { + "name": "align_horizontal_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_right": { + "name": "align_horizontal_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_bottom": { + "name": "align_vertical_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_center": { + "name": "align_vertical_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_top": { + "name": "align_vertical_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "area_chart": { + "name": "area_chart", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_file": { + "name": "attach_file", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_money": { + "name": "attach_money", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_graph": { + "name": "auto_graph", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bar_chart": { + "name": "bar_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_all": { + "name": "border_all", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_bottom": { + "name": "border_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_clear": { + "name": "border_clear", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_color": { + "name": "border_color", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_horizontal": { + "name": "border_horizontal", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_inner": { + "name": "border_inner", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_left": { + "name": "border_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_outer": { + "name": "border_outer", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_right": { + "name": "border_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_style": { + "name": "border_style", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_top": { + "name": "border_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_vertical": { + "name": "border_vertical", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bubble_chart": { + "name": "bubble_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "checklist": { + "name": "checklist", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "checklist_rtl": { + "name": "checklist_rtl", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drag_handle": { + "name": "drag_handle", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "draw": { + "name": "draw", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_note": { + "name": "edit_note", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_center": { + "name": "format_align_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_justify": { + "name": "format_align_justify", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_left": { + "name": "format_align_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_right": { + "name": "format_align_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_bold": { + "name": "format_bold", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_clear": { + "name": "format_clear", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_fill": { + "name": "format_color_fill", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_reset": { + "name": "format_color_reset", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_text": { + "name": "format_color_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_indent_decrease": { + "name": "format_indent_decrease", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_indent_increase": { + "name": "format_indent_increase", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_italic": { + "name": "format_italic", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_line_spacing": { + "name": "format_line_spacing", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_bulleted": { + "name": "format_list_bulleted", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_numbered": { + "name": "format_list_numbered", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_numbered_rtl": { + "name": "format_list_numbered_rtl", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_paint": { + "name": "format_paint", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_quote": { + "name": "format_quote", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_shapes": { + "name": "format_shapes", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_size": { + "name": "format_size", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_strikethrough": { + "name": "format_strikethrough", + "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": "" + } + } + }, + "format_textdirection_r_to_l": { + "name": "format_textdirection_r_to_l", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_underlined": { + "name": "format_underlined", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "functions": { + "name": "functions", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "height": { + "name": "height", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight": { + "name": "highlight", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_distribute": { + "name": "horizontal_distribute", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_rule": { + "name": "horizontal_rule", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_chart": { + "name": "insert_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_chart_outlined": { + "name": "insert_chart_outlined", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_comment": { + "name": "insert_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_drive_file": { + "name": "insert_drive_file", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_emoticon": { + "name": "insert_emoticon", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_invitation": { + "name": "insert_invitation", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_link": { + "name": "insert_link", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_photo": { + "name": "insert_photo", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "linear_scale": { + "name": "linear_scale", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "margin": { + "name": "margin", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "merge_type": { + "name": "merge_type", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode": { + "name": "mode", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_comment": { + "name": "mode_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_edit": { + "name": "mode_edit", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_edit_outline": { + "name": "mode_edit_outline", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "monetization_on": { + "name": "monetization_on", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "money_off": { + "name": "money_off", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "money_off_csred": { + "name": "money_off_csred", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "multiline_chart": { + "name": "multiline_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notes": { + "name": "notes", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "padding": { + "name": "padding", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pie_chart": { + "name": "pie_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pie_chart_outline": { + "name": "pie_chart_outline", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "post_add": { + "name": "post_add", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "publish": { + "name": "publish", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "query_stats": { + "name": "query_stats", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "scatter_plot": { + "name": "scatter_plot", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "schema": { + "name": "schema", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "score": { + "name": "score", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "short_text": { + "name": "short_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "show_chart": { + "name": "show_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "space_bar": { + "name": "space_bar", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stacked_line_chart": { + "name": "stacked_line_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "strikethrough_s": { + "name": "strikethrough_s", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subscript": { + "name": "subscript", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "superscript": { + "name": "superscript", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "table_chart": { + "name": "table_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "table_rows": { + "name": "table_rows", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "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": "" + } + } + }, + "vertical_align_bottom": { + "name": "vertical_align_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_align_center": { + "name": "vertical_align_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_align_top": { + "name": "vertical_align_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_distribute": { + "name": "vertical_distribute", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wrap_text": { + "name": "wrap_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "approval": { + "name": "approval", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attachment": { + "name": "attachment", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_email": { + "name": "attach_email", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud": { + "name": "cloud", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_circle": { + "name": "cloud_circle", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_done": { + "name": "cloud_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_download": { + "name": "cloud_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_off": { + "name": "cloud_off", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_queue": { + "name": "cloud_queue", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_upload": { + "name": "cloud_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "create_new_folder": { + "name": "create_new_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download": { + "name": "download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "downloading": { + "name": "downloading", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_done": { + "name": "download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_for_offline": { + "name": "download_for_offline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "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": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_rename_outline": { + "name": "drive_file_rename_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_folder_upload": { + "name": "drive_folder_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download": { + "name": "file_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_done": { + "name": "file_download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_off": { + "name": "file_download_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "file_upload": { + "name": "file_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder": { + "name": "folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_open": { + "name": "folder_open", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_shared": { + "name": "folder_shared", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_view": { + "name": "grid_view", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_quote": { + "name": "request_quote", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule_folder": { + "name": "rule_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snippet_folder": { + "name": "snippet_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_snippet": { + "name": "text_snippet", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "topic": { + "name": "topic", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload": { + "name": "upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload_file": { + "name": "upload_file", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces": { + "name": "workspaces", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "browser_not_supported": { + "name": "browser_not_supported", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cast": { + "name": "cast", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_connected": { + "name": "cast_connected", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_for_education": { + "name": "cast_for_education", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "computer": { + "name": "computer", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "connected_tv": { + "name": "connected_tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_mac": { + "name": "desktop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_windows": { + "name": "desktop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board": { + "name": "developer_board", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board_off": { + "name": "developer_board_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "devices_other": { + "name": "devices_other", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_hub": { + "name": "device_hub", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_unknown": { + "name": "device_unknown", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dock": { + "name": "dock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "earbuds": { + "name": "earbuds", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "earbuds_battery": { + "name": "earbuds_battery", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gamepad": { + "name": "gamepad", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones": { + "name": "headphones", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones_battery": { + "name": "headphones_battery", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset": { + "name": "headset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_mic": { + "name": "headset_mic", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_off": { + "name": "headset_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_max": { + "name": "home_max", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_mini": { + "name": "home_mini", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard": { + "name": "keyboard", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_alt": { + "name": "keyboard_alt", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_down": { + "name": "keyboard_arrow_down", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_left": { + "name": "keyboard_arrow_left", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_right": { + "name": "keyboard_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_up": { + "name": "keyboard_arrow_up", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_backspace": { + "name": "keyboard_backspace", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_capslock": { + "name": "keyboard_capslock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_hide": { + "name": "keyboard_hide", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_return": { + "name": "keyboard_return", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_tab": { + "name": "keyboard_tab", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_voice": { + "name": "keyboard_voice", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop": { + "name": "laptop", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_chromebook": { + "name": "laptop_chromebook", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_mac": { + "name": "laptop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_windows": { + "name": "laptop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "memory": { + "name": "memory", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor": { + "name": "monitor", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mouse": { + "name": "mouse", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink": { + "name": "phonelink", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_off": { + "name": "phonelink_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_android": { + "name": "phone_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_iphone": { + "name": "phone_iphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "point_of_sale": { + "name": "point_of_sale", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "power_input": { + "name": "power_input", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "router": { + "name": "router", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "scanner": { + "name": "scanner", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security": { + "name": "security", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card": { + "name": "sim_card", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smartphone": { + "name": "smartphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_display": { + "name": "smart_display", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_screen": { + "name": "smart_screen", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_toy": { + "name": "smart_toy", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker": { + "name": "speaker", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_group": { + "name": "speaker_group", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet": { + "name": "tablet", + "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": "" + } + } + }, + "toys": { + "name": "toys", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "tv": { + "name": "tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset": { + "name": "videogame_asset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset_off": { + "name": "videogame_asset_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "watch": { + "name": "watch", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sensor_door": { + "name": "sensor_door", + "keywords": [ + "home" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensor_window": { + "name": "sensor_window", + "keywords": [ + "home" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "10mp": { + "name": "10mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "11mp": { + "name": "11mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "12mp": { + "name": "12mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "13mp": { + "name": "13mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "14mp": { + "name": "14mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "15mp": { + "name": "15mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "16mp": { + "name": "16mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "17mp": { + "name": "17mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "18mp": { + "name": "18mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "19mp": { + "name": "19mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "20mp": { + "name": "20mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "21mp": { + "name": "21mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "22mp": { + "name": "22mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "23mp": { + "name": "23mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "24mp": { + "name": "24mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2mp": { + "name": "2mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "30fps_select": { + "name": "30fps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3mp": { + "name": "3mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4mp": { + "name": "4mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5mp": { + "name": "5mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "60fps_select": { + "name": "60fps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6mp": { + "name": "6mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7mp": { + "name": "7mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8mp": { + "name": "8mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9mp": { + "name": "9mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_a_photo": { + "name": "add_a_photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_photo_alternate": { + "name": "add_photo_alternate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_photos": { + "name": "add_to_photos", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adjust": { + "name": "adjust", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "animation": { + "name": "animation", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant": { + "name": "assistant", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_photo": { + "name": "assistant_photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "audiotrack": { + "name": "audiotrack", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "autofps_select": { + "name": "autofps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome": { + "name": "auto_awesome", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome_mosaic": { + "name": "auto_awesome_mosaic", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome_motion": { + "name": "auto_awesome_motion", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_high": { + "name": "auto_fix_high", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_normal": { + "name": "auto_fix_normal", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_off": { + "name": "auto_fix_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_stories": { + "name": "auto_stories", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedtime": { + "name": "bedtime", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_circular": { + "name": "blur_circular", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_linear": { + "name": "blur_linear", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_off": { + "name": "blur_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_on": { + "name": "blur_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_1": { + "name": "brightness_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_2": { + "name": "brightness_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_3": { + "name": "brightness_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_4": { + "name": "brightness_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_5": { + "name": "brightness_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_6": { + "name": "brightness_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_7": { + "name": "brightness_7", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "broken_image": { + "name": "broken_image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brush": { + "name": "brush", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "burst_mode": { + "name": "burst_mode", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera": { + "name": "camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_alt": { + "name": "camera_alt", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_front": { + "name": "camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_rear": { + "name": "camera_rear", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_roll": { + "name": "camera_roll", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cases": { + "name": "cases", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "center_focus_strong": { + "name": "center_focus_strong", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "center_focus_weak": { + "name": "center_focus_weak", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "circle": { + "name": "circle", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "collections": { + "name": "collections", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "collections_bookmark": { + "name": "collections_bookmark", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "colorize": { + "name": "colorize", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "color_lens": { + "name": "color_lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compare": { + "name": "compare", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_point": { + "name": "control_point", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_point_duplicate": { + "name": "control_point_duplicate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop": { + "name": "crop", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_16_9": { + "name": "crop_16_9", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_3_2": { + "name": "crop_3_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_5_4": { + "name": "crop_5_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_7_5": { + "name": "crop_7_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_din": { + "name": "crop_din", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_free": { + "name": "crop_free", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_landscape": { + "name": "crop_landscape", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_original": { + "name": "crop_original", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_portrait": { + "name": "crop_portrait", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_rotate": { + "name": "crop_rotate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_square": { + "name": "crop_square", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dehaze": { + "name": "dehaze", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "details": { + "name": "details", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dirty_lens": { + "name": "dirty_lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit": { + "name": "edit", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "euro": { + "name": "euro", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure": { + "name": "exposure", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_neg_1": { + "name": "exposure_neg_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_neg_2": { + "name": "exposure_neg_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_plus_1": { + "name": "exposure_plus_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_plus_2": { + "name": "exposure_plus_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_zero": { + "name": "exposure_zero", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_retouching_natural": { + "name": "face_retouching_natural", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_retouching_off": { + "name": "face_retouching_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter": { + "name": "filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_1": { + "name": "filter_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_2": { + "name": "filter_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_3": { + "name": "filter_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_4": { + "name": "filter_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_5": { + "name": "filter_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_6": { + "name": "filter_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_7": { + "name": "filter_7", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_8": { + "name": "filter_8", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_9": { + "name": "filter_9", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_9_plus": { + "name": "filter_9_plus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_b_and_w": { + "name": "filter_b_and_w", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_center_focus": { + "name": "filter_center_focus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_drama": { + "name": "filter_drama", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_frames": { + "name": "filter_frames", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_hdr": { + "name": "filter_hdr", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_none": { + "name": "filter_none", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_tilt_shift": { + "name": "filter_tilt_shift", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_vintage": { + "name": "filter_vintage", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flare": { + "name": "flare", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_auto": { + "name": "flash_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_off": { + "name": "flash_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_on": { + "name": "flash_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip": { + "name": "flip", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_camera_android": { + "name": "flip_camera_android", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_camera_ios": { + "name": "flip_camera_ios", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "gradient": { + "name": "gradient", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grain": { + "name": "grain", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_off": { + "name": "grid_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_on": { + "name": "grid_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_enhanced_select": { + "name": "hdr_enhanced_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_off": { + "name": "hdr_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_on": { + "name": "hdr_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_plus": { + "name": "hdr_plus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_strong": { + "name": "hdr_strong", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_weak": { + "name": "hdr_weak", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "healing": { + "name": "healing", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hevc": { + "name": "hevc", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hide_image": { + "name": "hide_image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image": { + "name": "image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image_aspect_ratio": { + "name": "image_aspect_ratio", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image_not_supported": { + "name": "image_not_supported", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "image_search": { + "name": "image_search", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "incomplete_circle": { + "name": "incomplete_circle", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "iso": { + "name": "iso", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "landscape": { + "name": "landscape", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leak_add": { + "name": "leak_add", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leak_remove": { + "name": "leak_remove", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lens": { + "name": "lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "linked_camera": { + "name": "linked_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks": { + "name": "looks", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_3": { + "name": "looks_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_4": { + "name": "looks_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_5": { + "name": "looks_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_6": { + "name": "looks_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_one": { + "name": "looks_one", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_two": { + "name": "looks_two", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loupe": { + "name": "loupe", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_external_off": { + "name": "mic_external_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_external_on": { + "name": "mic_external_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monochrome_photos": { + "name": "monochrome_photos", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_auto": { + "name": "motion_photos_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_off": { + "name": "motion_photos_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_on": { + "name": "motion_photos_on", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_pause": { + "name": "motion_photos_pause", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_paused": { + "name": "motion_photos_paused", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie_creation": { + "name": "movie_creation", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie_filter": { + "name": "movie_filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mp": { + "name": "mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_note": { + "name": "music_note", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_off": { + "name": "music_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nature": { + "name": "nature", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nature_people": { + "name": "nature_people", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigate_before": { + "name": "navigate_before", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigate_next": { + "name": "navigate_next", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "palette": { + "name": "palette", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama": { + "name": "panorama", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_fish_eye": { + "name": "panorama_fish_eye", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_horizontal": { + "name": "panorama_horizontal", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_horizontal_select": { + "name": "panorama_horizontal_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_photosphere": { + "name": "panorama_photosphere", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_photosphere_select": { + "name": "panorama_photosphere_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_vertical": { + "name": "panorama_vertical", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_vertical_select": { + "name": "panorama_vertical_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_wide_angle": { + "name": "panorama_wide_angle", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_wide_angle_select": { + "name": "panorama_wide_angle_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo": { + "name": "photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_album": { + "name": "photo_album", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera": { + "name": "photo_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera_back": { + "name": "photo_camera_back", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera_front": { + "name": "photo_camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_filter": { + "name": "photo_filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_library": { + "name": "photo_library", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_actual": { + "name": "photo_size_select_actual", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_large": { + "name": "photo_size_select_large", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_small": { + "name": "photo_size_select_small", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_as_pdf": { + "name": "picture_as_pdf", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "portrait": { + "name": "portrait", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "raw_off": { + "name": "raw_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "raw_on": { + "name": "raw_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "receipt_long": { + "name": "receipt_long", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_red_eye": { + "name": "remove_red_eye", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_90_degrees_ccw": { + "name": "rotate_90_degrees_ccw", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_left": { + "name": "rotate_left", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_right": { + "name": "rotate_right", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shutter_speed": { + "name": "shutter_speed", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "slideshow": { + "name": "slideshow", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "straighten": { + "name": "straighten", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "style": { + "name": "style", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_camera": { + "name": "switch_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_video": { + "name": "switch_video", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tag_faces": { + "name": "tag_faces", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "texture": { + "name": "texture", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thermostat_auto": { + "name": "thermostat_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timelapse": { + "name": "timelapse", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer": { + "name": "timer", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_10": { + "name": "timer_10", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_3": { + "name": "timer_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_off": { + "name": "timer_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tonality": { + "name": "tonality", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transform": { + "name": "transform", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tune": { + "name": "tune", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_camera_back": { + "name": "video_camera_back", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_camera_front": { + "name": "video_camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_stable": { + "name": "video_stable", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_comfy": { + "name": "view_comfy", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_compact": { + "name": "view_compact", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vignette": { + "name": "vignette", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vrpano": { + "name": "vrpano", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_auto": { + "name": "wb_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_cloudy": { + "name": "wb_cloudy", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_incandescent": { + "name": "wb_incandescent", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_iridescent": { + "name": "wb_iridescent", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_shade": { + "name": "wb_shade", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_sunny": { + "name": "wb_sunny", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_twilight": { + "name": "wb_twilight", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "360": { + "name": "360", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_business": { + "name": "add_business", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add_location": { + "name": "add_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_location_alt": { + "name": "add_location_alt", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_road": { + "name": "add_road", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "agriculture": { + "name": "agriculture", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "alt_route": { + "name": "alt_route", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "atm": { + "name": "atm", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attractions": { + "name": "attractions", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "badge": { + "name": "badge", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bakery_dining": { + "name": "bakery_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "beenhere": { + "name": "beenhere", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bike_scooter": { + "name": "bike_scooter", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "breakfast_dining": { + "name": "breakfast_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "brunch_dining": { + "name": "brunch_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bus_alert": { + "name": "bus_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "car_rental": { + "name": "car_rental", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "car_repair": { + "name": "car_repair", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "category": { + "name": "category", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "celebration": { + "name": "celebration", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cleaning_services": { + "name": "cleaning_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "compass_calibration": { + "name": "compass_calibration", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delivery_dining": { + "name": "delivery_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "departure_board": { + "name": "departure_board", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "design_services": { + "name": "design_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dinner_dining": { + "name": "dinner_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "directions": { + "name": "directions", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bike": { + "name": "directions_bike", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_boat": { + "name": "directions_boat", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_boat_filled": { + "name": "directions_boat_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bus": { + "name": "directions_bus", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bus_filled": { + "name": "directions_bus_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_car": { + "name": "directions_car", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_car_filled": { + "name": "directions_car_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_railway": { + "name": "directions_railway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_railway_filled": { + "name": "directions_railway_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_run": { + "name": "directions_run", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_subway": { + "name": "directions_subway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_subway_filled": { + "name": "directions_subway_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_transit": { + "name": "directions_transit", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_transit_filled": { + "name": "directions_transit_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_walk": { + "name": "directions_walk", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dry_cleaning": { + "name": "dry_cleaning", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_attributes": { + "name": "edit_attributes", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_location": { + "name": "edit_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_location_alt": { + "name": "edit_location_alt", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_road": { + "name": "edit_road", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electrical_services": { + "name": "electrical_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_bike": { + "name": "electric_bike", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_car": { + "name": "electric_car", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_moped": { + "name": "electric_moped", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_rickshaw": { + "name": "electric_rickshaw", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_scooter": { + "name": "electric_scooter", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emergency": { + "name": "emergency", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ev_station": { + "name": "ev_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fastfood": { + "name": "fastfood", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "festival": { + "name": "festival", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flight": { + "name": "flight", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hail": { + "name": "hail", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "handyman": { + "name": "handyman", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hardware": { + "name": "hardware", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home_repair_service": { + "name": "home_repair_service", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hotel": { + "name": "hotel", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hvac": { + "name": "hvac", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "icecream": { + "name": "icecream", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "layers": { + "name": "layers", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "layers_clear": { + "name": "layers_clear", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "liquor": { + "name": "liquor", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "local_activity": { + "name": "local_activity", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_airport": { + "name": "local_airport", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "local_atm": { + "name": "local_atm", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_bar": { + "name": "local_bar", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_cafe": { + "name": "local_cafe", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_car_wash": { + "name": "local_car_wash", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_convenience_store": { + "name": "local_convenience_store", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_dining": { + "name": "local_dining", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_drink": { + "name": "local_drink", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_fire_department": { + "name": "local_fire_department", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_florist": { + "name": "local_florist", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_gas_station": { + "name": "local_gas_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_grocery_store": { + "name": "local_grocery_store", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_hospital": { + "name": "local_hospital", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_hotel": { + "name": "local_hotel", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_laundry_service": { + "name": "local_laundry_service", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_library": { + "name": "local_library", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_mall": { + "name": "local_mall", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_movies": { + "name": "local_movies", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_offer": { + "name": "local_offer", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_parking": { + "name": "local_parking", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_pharmacy": { + "name": "local_pharmacy", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_phone": { + "name": "local_phone", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_pizza": { + "name": "local_pizza", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_play": { + "name": "local_play", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_police": { + "name": "local_police", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_post_office": { + "name": "local_post_office", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_printshop": { + "name": "local_printshop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_see": { + "name": "local_see", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_shipping": { + "name": "local_shipping", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_taxi": { + "name": "local_taxi", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lunch_dining": { + "name": "lunch_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "map": { + "name": "map", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_ugc": { + "name": "maps_ugc", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "medical_services": { + "name": "medical_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_book": { + "name": "menu_book", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "miscellaneous_services": { + "name": "miscellaneous_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "money": { + "name": "money", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "moped": { + "name": "moped", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "moving": { + "name": "moving", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "multiple_stop": { + "name": "multiple_stop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "museum": { + "name": "museum", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "my_location": { + "name": "my_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigation": { + "name": "navigation", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "near_me": { + "name": "near_me", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "near_me_disabled": { + "name": "near_me_disabled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlife": { + "name": "nightlife", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "not_listed_location": { + "name": "not_listed_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_meals": { + "name": "no_meals", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_transfer": { + "name": "no_transfer", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "park": { + "name": "park", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pedal_bike": { + "name": "pedal_bike", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_pin": { + "name": "person_pin", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_pin_circle": { + "name": "person_pin_circle", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pest_control": { + "name": "pest_control", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pest_control_rodent": { + "name": "pest_control_rodent", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_drop": { + "name": "pin_drop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "place": { + "name": "place", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "plumbing": { + "name": "plumbing", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "railway_alert": { + "name": "railway_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ramen_dining": { + "name": "ramen_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "rate_review": { + "name": "rate_review", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restaurant": { + "name": "restaurant", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restaurant_menu": { + "name": "restaurant_menu", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "run_circle": { + "name": "run_circle", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sailing": { + "name": "sailing", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "satellite": { + "name": "satellite", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "set_meal": { + "name": "set_meal", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snowmobile": { + "name": "snowmobile", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "store_mall_directory": { + "name": "store_mall_directory", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "streetview": { + "name": "streetview", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subway": { + "name": "subway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "takeout_dining": { + "name": "takeout_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "taxi_alert": { + "name": "taxi_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "terrain": { + "name": "terrain", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "theater_comedy": { + "name": "theater_comedy", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "traffic": { + "name": "traffic", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "train": { + "name": "train", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tram": { + "name": "tram", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transfer_within_a_station": { + "name": "transfer_within_a_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transit_enterexit": { + "name": "transit_enterexit", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trip_origin": { + "name": "trip_origin", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "two_wheeler": { + "name": "two_wheeler", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "volunteer_activism": { + "name": "volunteer_activism", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wine_bar": { + "name": "wine_bar", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wrong_location": { + "name": "wrong_location", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_out_map": { + "name": "zoom_out_map", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps": { + "name": "apps", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_settings_alt": { + "name": "app_settings_alt", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back": { + "name": "arrow_back", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios": { + "name": "arrow_back_ios", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios_new": { + "name": "arrow_back_ios_new", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_downward": { + "name": "arrow_downward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down": { + "name": "arrow_drop_down", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down_circle": { + "name": "arrow_drop_down_circle", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_up": { + "name": "arrow_drop_up", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward": { + "name": "arrow_forward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward_ios": { + "name": "arrow_forward_ios", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_left": { + "name": "arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right": { + "name": "arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_upward": { + "name": "arrow_upward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_direction": { + "name": "assistant_direction", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "campaign": { + "name": "campaign", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel": { + "name": "cancel", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check": { + "name": "check", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_left": { + "name": "chevron_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_right": { + "name": "chevron_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close": { + "name": "close", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "double_arrow": { + "name": "double_arrow", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "east": { + "name": "east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_less": { + "name": "expand_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_more": { + "name": "expand_more", + "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": "" + } + } + }, + "fullscreen_exit": { + "name": "fullscreen_exit", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_work": { + "name": "home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "last_page": { + "name": "last_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "legend_toggle": { + "name": "legend_toggle", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_home_work": { + "name": "maps_home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu": { + "name": "menu", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_open": { + "name": "menu_open", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_horiz": { + "name": "more_horiz", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_vert": { + "name": "more_vert", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north": { + "name": "north", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_east": { + "name": "north_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_west": { + "name": "north_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_share": { + "name": "offline_share", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payments": { + "name": "payments", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pivot_table_chart": { + "name": "pivot_table_chart", + "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": "" + } + } + }, + "south_east": { + "name": "south_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_west": { + "name": "south_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_left": { + "name": "subdirectory_arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_right": { + "name": "subdirectory_arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_left": { + "name": "switch_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_right": { + "name": "switch_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_less": { + "name": "unfold_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_more": { + "name": "unfold_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waterfall_chart": { + "name": "waterfall_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "west": { + "name": "west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_tree": { + "name": "account_tree", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adb": { + "name": "adb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat": { + "name": "airline_seat_flat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat_angled": { + "name": "airline_seat_flat_angled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_individual_suite": { + "name": "airline_seat_individual_suite", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_extra": { + "name": "airline_seat_legroom_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_normal": { + "name": "airline_seat_legroom_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_reduced": { + "name": "airline_seat_legroom_reduced", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_extra": { + "name": "airline_seat_recline_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_normal": { + "name": "airline_seat_recline_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_audio": { + "name": "bluetooth_audio", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "confirmation_number": { + "name": "confirmation_number", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_off": { + "name": "directions_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disc_full": { + "name": "disc_full", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb": { + "name": "do_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_alt": { + "name": "do_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_off": { + "name": "do_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_on": { + "name": "do_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb": { + "name": "do_not_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_alt": { + "name": "do_not_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_off": { + "name": "do_not_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on": { + "name": "do_not_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_eta": { + "name": "drive_eta", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "enhanced_encryption": { + "name": "enhanced_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_available": { + "name": "event_available", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_busy": { + "name": "event_busy", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_note": { + "name": "event_note", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_special": { + "name": "folder_special", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "imagesearch_roller": { + "name": "imagesearch_roller", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_tv": { + "name": "live_tv", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mms": { + "name": "mms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more": { + "name": "more", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_check": { + "name": "network_check", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_locked": { + "name": "network_locked", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption": { + "name": "no_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption_gmailerrorred": { + "name": "no_encryption_gmailerrorred", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ondemand_video": { + "name": "ondemand_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_video": { + "name": "personal_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_bluetooth_speaker": { + "name": "phone_bluetooth_speaker", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_callback": { + "name": "phone_callback", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_forwarded": { + "name": "phone_forwarded", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_in_talk": { + "name": "phone_in_talk", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_locked": { + "name": "phone_locked", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_missed": { + "name": "phone_missed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_paused": { + "name": "phone_paused", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power": { + "name": "power", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_off": { + "name": "power_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "priority_high": { + "name": "priority_high", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "running_with_errors": { + "name": "running_with_errors", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card": { + "name": "sd_card", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card_alert": { + "name": "sd_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_alert": { + "name": "sim_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms": { + "name": "sms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms_failed": { + "name": "sms_failed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "support_agent": { + "name": "support_agent", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sync": { + "name": "sync", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_disabled": { + "name": "sync_disabled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_problem": { + "name": "sync_problem", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update": { + "name": "system_update", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tap_and_play": { + "name": "tap_and_play", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "time_to_leave": { + "name": "time_to_leave", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv_off": { + "name": "tv_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vibration": { + "name": "vibration", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_chat": { + "name": "voice_chat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vpn_lock": { + "name": "vpn_lock", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wc": { + "name": "wc", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi": { + "name": "wifi", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_off": { + "name": "wifi_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ac_unit": { + "name": "ac_unit", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airport_shuttle": { + "name": "airport_shuttle", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_inclusive": { + "name": "all_inclusive", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apartment": { + "name": "apartment", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "baby_changing_station": { + "name": "baby_changing_station", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backpack": { + "name": "backpack", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "balcony": { + "name": "balcony", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bathtub": { + "name": "bathtub", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "beach_access": { + "name": "beach_access", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bento": { + "name": "bento", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bungalow": { + "name": "bungalow", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "business_center": { + "name": "business_center", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cabin": { + "name": "cabin", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "carpenter": { + "name": "carpenter", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "casino": { + "name": "casino", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chalet": { + "name": "chalet", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "charging_station": { + "name": "charging_station", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "checkroom": { + "name": "checkroom", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "child_care": { + "name": "child_care", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "child_friendly": { + "name": "child_friendly", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "corporate_fare": { + "name": "corporate_fare", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cottage": { + "name": "cottage", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "countertops": { + "name": "countertops", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crib": { + "name": "crib", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_step": { + "name": "do_not_step", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_touch": { + "name": "do_not_touch", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dry": { + "name": "dry", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "elevator": { + "name": "elevator", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "escalator": { + "name": "escalator", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "escalator_warning": { + "name": "escalator_warning", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "family_restroom": { + "name": "family_restroom", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fence": { + "name": "fence", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fire_extinguisher": { + "name": "fire_extinguisher", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fitness_center": { + "name": "fitness_center", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "food_bank": { + "name": "food_bank", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "foundation": { + "name": "foundation", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "free_breakfast": { + "name": "free_breakfast", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gite": { + "name": "gite", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "golf_course": { + "name": "golf_course", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grass": { + "name": "grass", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "holiday_village": { + "name": "holiday_village", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hot_tub": { + "name": "hot_tub", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "house": { + "name": "house", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "houseboat": { + "name": "houseboat", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "house_siding": { + "name": "house_siding", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "iron": { + "name": "iron", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "kitchen": { + "name": "kitchen", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "meeting_room": { + "name": "meeting_room", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "microwave": { + "name": "microwave", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "night_shelter": { + "name": "night_shelter", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_backpack": { + "name": "no_backpack", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_cell": { + "name": "no_cell", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_drinks": { + "name": "no_drinks", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_flash": { + "name": "no_flash", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_food": { + "name": "no_food", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_meeting_room": { + "name": "no_meeting_room", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_photography": { + "name": "no_photography", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_stroller": { + "name": "no_stroller", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "other_houses": { + "name": "other_houses", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pool": { + "name": "pool", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rice_bowl": { + "name": "rice_bowl", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "roofing": { + "name": "roofing", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room_preferences": { + "name": "room_preferences", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room_service": { + "name": "room_service", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rv_hookup": { + "name": "rv_hookup", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smoke_free": { + "name": "smoke_free", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smoking_rooms": { + "name": "smoking_rooms", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "soap": { + "name": "soap", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "spa": { + "name": "spa", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_bar": { + "name": "sports_bar", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stairs": { + "name": "stairs", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storefront": { + "name": "storefront", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stroller": { + "name": "stroller", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tapas": { + "name": "tapas", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tty": { + "name": "tty", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "umbrella": { + "name": "umbrella", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "villa": { + "name": "villa", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wash": { + "name": "wash", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "water_damage": { + "name": "water_damage", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wheelchair_pickup": { + "name": "wheelchair_pickup", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bathroom": { + "name": "bathroom", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bed": { + "name": "bed", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_baby": { + "name": "bedroom_baby", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_child": { + "name": "bedroom_child", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_parent": { + "name": "bedroom_parent", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blender": { + "name": "blender", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_indoor": { + "name": "camera_indoor", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_outdoor": { + "name": "camera_outdoor", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chair": { + "name": "chair", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chair_alt": { + "name": "chair_alt", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "coffee": { + "name": "coffee", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "coffee_maker": { + "name": "coffee_maker", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dining": { + "name": "dining", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "doorbell": { + "name": "doorbell", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_back": { + "name": "door_back", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_front": { + "name": "door_front", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_sliding": { + "name": "door_sliding", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "feed": { + "name": "feed", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flatware": { + "name": "flatware", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "garage": { + "name": "garage", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "light": { + "name": "light", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "living": { + "name": "living", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "manage_search": { + "name": "manage_search", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "podcasts": { + "name": "podcasts", + "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": "" + } + } + }, + "yard": { + "name": "yard", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6_ft_apart": { + "name": "6_ft_apart", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_moderator": { + "name": "add_moderator", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_reaction": { + "name": "add_reaction", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "architecture": { + "name": "architecture", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "back_hand": { + "name": "back_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cake": { + "name": "cake", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "catching_pokemon": { + "name": "catching_pokemon", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "clean_hands": { + "name": "clean_hands", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compost": { + "name": "compost", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "connect_without_contact": { + "name": "connect_without_contact", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "construction": { + "name": "construction", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "coronavirus": { + "name": "coronavirus", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cruelty_free": { + "name": "cruelty_free", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "deck": { + "name": "deck", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "domain": { + "name": "domain", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "downhill_skiing": { + "name": "downhill_skiing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_notifications": { + "name": "edit_notifications", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "elderly": { + "name": "elderly", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_emotions": { + "name": "emoji_emotions", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_events": { + "name": "emoji_events", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_flags": { + "name": "emoji_flags", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_food_beverage": { + "name": "emoji_food_beverage", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_nature": { + "name": "emoji_nature", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_objects": { + "name": "emoji_objects", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_people": { + "name": "emoji_people", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_symbols": { + "name": "emoji_symbols", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_transportation": { + "name": "emoji_transportation", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "engineering": { + "name": "engineering", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "facebook": { + "name": "facebook", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "female": { + "name": "female", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "fireplace": { + "name": "fireplace", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "follow_the_signs": { + "name": "follow_the_signs", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "front_hand": { + "name": "front_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "group": { + "name": "group", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "groups": { + "name": "groups", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "group_add": { + "name": "group_add", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "group_off": { + "name": "group_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "health_and_safety": { + "name": "health_and_safety", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hiking": { + "name": "hiking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "history_edu": { + "name": "history_edu", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ice_skating": { + "name": "ice_skating", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ios_share": { + "name": "ios_share", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "kayaking": { + "name": "kayaking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "king_bed": { + "name": "king_bed", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "kitesurfing": { + "name": "kitesurfing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "location_city": { + "name": "location_city", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "luggage": { + "name": "luggage", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "male": { + "name": "male", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "masks": { + "name": "masks", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "military_tech": { + "name": "military_tech", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mood": { + "name": "mood", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mood_bad": { + "name": "mood_bad", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nights_stay": { + "name": "nights_stay", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nordic_walking": { + "name": "nordic_walking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications": { + "name": "notifications", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_active": { + "name": "notifications_active", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_none": { + "name": "notifications_none", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_off": { + "name": "notifications_off", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_paused": { + "name": "notifications_paused", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notification_add": { + "name": "notification_add", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_luggage": { + "name": "no_luggage", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outdoor_grill": { + "name": "outdoor_grill", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pages": { + "name": "pages", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "paragliding": { + "name": "paragliding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "party_mode": { + "name": "party_mode", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "people": { + "name": "people", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "people_alt": { + "name": "people_alt", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "people_outline": { + "name": "people_outline", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person": { + "name": "person", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_injury": { + "name": "personal_injury", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add": { + "name": "person_add", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_alt": { + "name": "person_add_alt", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_alt_1": { + "name": "person_add_alt_1", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_off": { + "name": "person_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_outline": { + "name": "person_outline", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_remove": { + "name": "person_remove", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_remove_alt_1": { + "name": "person_remove_alt_1", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "piano": { + "name": "piano", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "piano_off": { + "name": "piano_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "plus_one": { + "name": "plus_one", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "poll": { + "name": "poll", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "precision_manufacturing": { + "name": "precision_manufacturing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "psychology": { + "name": "psychology", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "public": { + "name": "public", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "public_off": { + "name": "public_off", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "real_estate_agent": { + "name": "real_estate_agent", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "recommend": { + "name": "recommend", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "recycling": { + "name": "recycling", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "reduce_capacity": { + "name": "reduce_capacity", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_moderator": { + "name": "remove_moderator", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "safety_divider": { + "name": "safety_divider", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sanitizer": { + "name": "sanitizer", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "school": { + "name": "school", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "science": { + "name": "science", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "self_improvement": { + "name": "self_improvement", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_dissatisfied": { + "name": "sentiment_dissatisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_neutral": { + "name": "sentiment_neutral", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_satisfied": { + "name": "sentiment_satisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_very_dissatisfied": { + "name": "sentiment_very_dissatisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_very_satisfied": { + "name": "sentiment_very_satisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "share": { + "name": "share", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sick": { + "name": "sick", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "single_bed": { + "name": "single_bed", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "skateboarding": { + "name": "skateboarding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sledding": { + "name": "sledding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snowboarding": { + "name": "snowboarding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snowshoeing": { + "name": "snowshoeing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "social_distance": { + "name": "social_distance", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports": { + "name": "sports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_baseball": { + "name": "sports_baseball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_basketball": { + "name": "sports_basketball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_cricket": { + "name": "sports_cricket", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_esports": { + "name": "sports_esports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_football": { + "name": "sports_football", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_golf": { + "name": "sports_golf", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_handball": { + "name": "sports_handball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_hockey": { + "name": "sports_hockey", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_kabaddi": { + "name": "sports_kabaddi", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_mma": { + "name": "sports_mma", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_motorsports": { + "name": "sports_motorsports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_rugby": { + "name": "sports_rugby", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_soccer": { + "name": "sports_soccer", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_tennis": { + "name": "sports_tennis", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_volleyball": { + "name": "sports_volleyball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "surfing": { + "name": "surfing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_account": { + "name": "switch_account", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down_alt": { + "name": "thumb_down_alt", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up_alt": { + "name": "thumb_up_alt", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transgender": { + "name": "transgender", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "travel_explore": { + "name": "travel_explore", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "water_drop": { + "name": "water_drop", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "waving_hand": { + "name": "waving_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "whatshot": { + "name": "whatshot", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_box": { + "name": "check_box", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_box_outline_blank": { + "name": "check_box_outline_blank", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "indeterminate_check_box": { + "name": "indeterminate_check_box", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio_button_checked": { + "name": "radio_button_checked", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio_button_unchecked": { + "name": "radio_button_unchecked", + "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": "" + } + } + }, + "star_border_purple500": { + "name": "star_border_purple500", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_half": { + "name": "star_half", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_outline": { + "name": "star_outline", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_purple500": { + "name": "star_purple500", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toggle_off": { + "name": "toggle_off", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toggle_on": { + "name": "toggle_on", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + } +} \ No newline at end of file diff --git a/sphinx_design/compiled/material_twotone.json b/sphinx_design/compiled/material_twotone.json new file mode 100644 index 0000000..a005ca4 --- /dev/null +++ b/sphinx_design/compiled/material_twotone.json @@ -0,0 +1,23354 @@ +{ + "3d_rotation": { + "name": "3d_rotation", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessibility": { + "name": "accessibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessibility_new": { + "name": "accessibility_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessible": { + "name": "accessible", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "accessible_forward": { + "name": "accessible_forward", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_balance": { + "name": "account_balance", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_balance_wallet": { + "name": "account_balance_wallet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_box": { + "name": "account_box", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_circle": { + "name": "account_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "addchart": { + "name": "addchart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_shopping_cart": { + "name": "add_shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_task": { + "name": "add_task", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_drive": { + "name": "add_to_drive", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "admin_panel_settings": { + "name": "admin_panel_settings", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ads_click": { + "name": "ads_click", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm": { + "name": "alarm", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_add": { + "name": "alarm_add", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_off": { + "name": "alarm_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alarm_on": { + "name": "alarm_on", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_inbox": { + "name": "all_inbox", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_out": { + "name": "all_out", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "analytics": { + "name": "analytics", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "anchor": { + "name": "anchor", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "android": { + "name": "android", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "announcement": { + "name": "announcement", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "api": { + "name": "api", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_blocking": { + "name": "app_blocking", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_circle_down": { + "name": "arrow_circle_down", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_circle_up": { + "name": "arrow_circle_up", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right_alt": { + "name": "arrow_right_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "article": { + "name": "article", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "aspect_ratio": { + "name": "aspect_ratio", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assessment": { + "name": "assessment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment": { + "name": "assignment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_ind": { + "name": "assignment_ind", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_late": { + "name": "assignment_late", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_return": { + "name": "assignment_return", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_returned": { + "name": "assignment_returned", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assignment_turned_in": { + "name": "assignment_turned_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "autorenew": { + "name": "autorenew", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backup": { + "name": "backup", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backup_table": { + "name": "backup_table", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "batch_prediction": { + "name": "batch_prediction", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "book": { + "name": "book", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark": { + "name": "bookmark", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmarks": { + "name": "bookmarks", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_add": { + "name": "bookmark_add", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_added": { + "name": "bookmark_added", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_border": { + "name": "bookmark_border", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bookmark_remove": { + "name": "bookmark_remove", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "book_online": { + "name": "book_online", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bug_report": { + "name": "bug_report", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "build": { + "name": "build", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "build_circle": { + "name": "build_circle", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cached": { + "name": "cached", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_today": { + "name": "calendar_today", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_day": { + "name": "calendar_view_day", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_month": { + "name": "calendar_view_month", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calendar_view_week": { + "name": "calendar_view_week", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_enhance": { + "name": "camera_enhance", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel_schedule_send": { + "name": "cancel_schedule_send", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "card_giftcard": { + "name": "card_giftcard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "card_membership": { + "name": "card_membership", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "card_travel": { + "name": "card_travel", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "change_history": { + "name": "change_history", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_circle": { + "name": "check_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_circle_outline": { + "name": "check_circle_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chrome_reader_mode": { + "name": "chrome_reader_mode", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "circle_notifications": { + "name": "circle_notifications", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "class": { + "name": "class", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close_fullscreen": { + "name": "close_fullscreen", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "code": { + "name": "code", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "code_off": { + "name": "code_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "comment_bank": { + "name": "comment_bank", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "commute": { + "name": "commute", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compare_arrows": { + "name": "compare_arrows", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compress": { + "name": "compress", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contactless": { + "name": "contactless", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_page": { + "name": "contact_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_support": { + "name": "contact_support", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "copyright": { + "name": "copyright", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_card": { + "name": "credit_card", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_card_off": { + "name": "credit_card_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dangerous": { + "name": "dangerous", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dashboard": { + "name": "dashboard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dashboard_customize": { + "name": "dashboard_customize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_exploration": { + "name": "data_exploration", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "date_range": { + "name": "date_range", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete": { + "name": "delete", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_forever": { + "name": "delete_forever", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_outline": { + "name": "delete_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "description": { + "name": "description", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disabled_by_default": { + "name": "disabled_by_default", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disabled_visible": { + "name": "disabled_visible", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dns": { + "name": "dns", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done": { + "name": "done", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done_all": { + "name": "done_all", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "done_outline": { + "name": "done_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "donut_large": { + "name": "donut_large", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "donut_small": { + "name": "donut_small", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drag_indicator": { + "name": "drag_indicator", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dynamic_form": { + "name": "dynamic_form", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "eco": { + "name": "eco", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_calendar": { + "name": "edit_calendar", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_off": { + "name": "edit_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "eject": { + "name": "eject", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "euro_symbol": { + "name": "euro_symbol", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event": { + "name": "event", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_seat": { + "name": "event_seat", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exit_to_app": { + "name": "exit_to_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand": { + "name": "expand", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explore": { + "name": "explore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explore_off": { + "name": "explore_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "extension": { + "name": "extension", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "extension_off": { + "name": "extension_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "face": { + "name": "face", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_unlock": { + "name": "face_unlock", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fact_check": { + "name": "fact_check", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "favorite": { + "name": "favorite", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "favorite_border": { + "name": "favorite_border", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "feedback": { + "name": "feedback", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_present": { + "name": "file_present", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_alt": { + "name": "filter_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "find_in_page": { + "name": "find_in_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "find_replace": { + "name": "find_replace", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fingerprint": { + "name": "fingerprint", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fit_screen": { + "name": "fit_screen", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flaky": { + "name": "flaky", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flight_land": { + "name": "flight_land", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flight_takeoff": { + "name": "flight_takeoff", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_to_back": { + "name": "flip_to_back", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_to_front": { + "name": "flip_to_front", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flutter_dash": { + "name": "flutter_dash", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "free_cancellation": { + "name": "free_cancellation", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "gavel": { + "name": "gavel", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "generating_tokens": { + "name": "generating_tokens", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "get_app": { + "name": "get_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gif": { + "name": "gif", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grade": { + "name": "grade", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grading": { + "name": "grading", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "group_work": { + "name": "group_work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "g_translate": { + "name": "g_translate", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help": { + "name": "help", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help_center": { + "name": "help_center", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "help_outline": { + "name": "help_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hide_source": { + "name": "hide_source", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight_alt": { + "name": "highlight_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight_off": { + "name": "highlight_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "history": { + "name": "history", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "history_toggle_off": { + "name": "history_toggle_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home": { + "name": "home", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_split": { + "name": "horizontal_split", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hotel_class": { + "name": "hotel_class", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_disabled": { + "name": "hourglass_disabled", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_empty": { + "name": "hourglass_empty", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_full": { + "name": "hourglass_full", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "http": { + "name": "http", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "https": { + "name": "https", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "important_devices": { + "name": "important_devices", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "info": { + "name": "info", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "info_outline": { + "name": "info_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "input": { + "name": "input", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "integration_instructions": { + "name": "integration_instructions", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "invert_colors": { + "name": "invert_colors", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "label": { + "name": "label", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_important": { + "name": "label_important", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_important_outline": { + "name": "label_important_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_off": { + "name": "label_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "label_outline": { + "name": "label_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "language": { + "name": "language", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "launch": { + "name": "launch", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leaderboard": { + "name": "leaderboard", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lightbulb": { + "name": "lightbulb", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lightbulb_outline": { + "name": "lightbulb_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "line_style": { + "name": "line_style", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "line_weight": { + "name": "line_weight", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "list": { + "name": "list", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock": { + "name": "lock", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_clock": { + "name": "lock_clock", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_open": { + "name": "lock_open", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lock_outline": { + "name": "lock_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "login": { + "name": "login", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "logout": { + "name": "logout", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loyalty": { + "name": "loyalty", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "manage_accounts": { + "name": "manage_accounts", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "markunread_mailbox": { + "name": "markunread_mailbox", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_as_unread": { + "name": "mark_as_unread", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "maximize": { + "name": "maximize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mediation": { + "name": "mediation", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "minimize": { + "name": "minimize", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "model_training": { + "name": "model_training", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "new_label": { + "name": "new_label", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "next_plan": { + "name": "next_plan", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlight_round": { + "name": "nightlight_round", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note_add": { + "name": "note_add", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "not_accessible": { + "name": "not_accessible", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "not_started": { + "name": "not_started", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_accounts": { + "name": "no_accounts", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_bolt": { + "name": "offline_bolt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_pin": { + "name": "offline_pin", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "online_prediction": { + "name": "online_prediction", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "opacity": { + "name": "opacity", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_browser": { + "name": "open_in_browser", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_full": { + "name": "open_in_full", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_new": { + "name": "open_in_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "open_in_new_off": { + "name": "open_in_new_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "open_with": { + "name": "open_with", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbond": { + "name": "outbond", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbound": { + "name": "outbound", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outbox": { + "name": "outbox", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "outlet": { + "name": "outlet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pageview": { + "name": "pageview", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "paid": { + "name": "paid", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pan_tool": { + "name": "pan_tool", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payment": { + "name": "payment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pending": { + "name": "pending", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pending_actions": { + "name": "pending_actions", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_camera_mic": { + "name": "perm_camera_mic", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_contact_calendar": { + "name": "perm_contact_calendar", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_data_setting": { + "name": "perm_data_setting", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_device_information": { + "name": "perm_device_information", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_identity": { + "name": "perm_identity", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_media": { + "name": "perm_media", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_phone_msg": { + "name": "perm_phone_msg", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "perm_scan_wifi": { + "name": "perm_scan_wifi", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pets": { + "name": "pets", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_in_picture": { + "name": "picture_in_picture", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_in_picture_alt": { + "name": "picture_in_picture_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_end": { + "name": "pin_end", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_invoke": { + "name": "pin_invoke", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "plagiarism": { + "name": "plagiarism", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_for_work": { + "name": "play_for_work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "polymer": { + "name": "polymer", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_settings_new": { + "name": "power_settings_new", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pregnant_woman": { + "name": "pregnant_woman", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "preview": { + "name": "preview", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "print": { + "name": "print", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "privacy_tip": { + "name": "privacy_tip", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "private_connectivity": { + "name": "private_connectivity", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "production_quantity_limits": { + "name": "production_quantity_limits", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "published_with_changes": { + "name": "published_with_changes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "query_builder": { + "name": "query_builder", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "question_answer": { + "name": "question_answer", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "quickreply": { + "name": "quickreply", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "receipt": { + "name": "receipt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "record_voice_over": { + "name": "record_voice_over", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "redeem": { + "name": "redeem", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_done": { + "name": "remove_done", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_shopping_cart": { + "name": "remove_shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reorder": { + "name": "reorder", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_problem": { + "name": "report_problem", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_page": { + "name": "request_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore": { + "name": "restore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore_from_trash": { + "name": "restore_from_trash", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restore_page": { + "name": "restore_page", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room": { + "name": "room", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rounded_corner": { + "name": "rounded_corner", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rowing": { + "name": "rowing", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule": { + "name": "rule", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "saved_search": { + "name": "saved_search", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "savings": { + "name": "savings", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "schedule": { + "name": "schedule", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "schedule_send": { + "name": "schedule_send", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "search": { + "name": "search", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "search_off": { + "name": "search_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "segment": { + "name": "segment", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send_and_archive": { + "name": "send_and_archive", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensors": { + "name": "sensors", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensors_off": { + "name": "sensors_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "settings": { + "name": "settings", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_accessibility": { + "name": "settings_accessibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_applications": { + "name": "settings_applications", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_backup_restore": { + "name": "settings_backup_restore", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_bluetooth": { + "name": "settings_bluetooth", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_brightness": { + "name": "settings_brightness", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_cell": { + "name": "settings_cell", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_ethernet": { + "name": "settings_ethernet", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_antenna": { + "name": "settings_input_antenna", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_component": { + "name": "settings_input_component", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_composite": { + "name": "settings_input_composite", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_hdmi": { + "name": "settings_input_hdmi", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_input_svideo": { + "name": "settings_input_svideo", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_overscan": { + "name": "settings_overscan", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_phone": { + "name": "settings_phone", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_power": { + "name": "settings_power", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_remote": { + "name": "settings_remote", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_voice": { + "name": "settings_voice", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shop": { + "name": "shop", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_bag": { + "name": "shopping_bag", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_basket": { + "name": "shopping_basket", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shopping_cart": { + "name": "shopping_cart", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shop_2": { + "name": "shop_2", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "shop_two": { + "name": "shop_two", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_button": { + "name": "smart_button", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "source": { + "name": "source", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "space_dashboard": { + "name": "space_dashboard", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_notes": { + "name": "speaker_notes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_notes_off": { + "name": "speaker_notes_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "spellcheck": { + "name": "spellcheck", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stars": { + "name": "stars", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_rate": { + "name": "star_rate", + "keywords": [ + "action" + ], + "heights": { + "18": { + "width": 18, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sticky_note_2": { + "name": "sticky_note_2", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "store": { + "name": "store", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subject": { + "name": "subject", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subtitles_off": { + "name": "subtitles_off", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "supervised_user_circle": { + "name": "supervised_user_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "supervisor_account": { + "name": "supervisor_account", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "support": { + "name": "support", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_horiz": { + "name": "swap_horiz", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_horizontal_circle": { + "name": "swap_horizontal_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_vert": { + "name": "swap_vert", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_vertical_circle": { + "name": "swap_vertical_circle", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swipe": { + "name": "swipe", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_alt": { + "name": "sync_alt", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update_alt": { + "name": "system_update_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tab": { + "name": "tab", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "table_view": { + "name": "table_view", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tab_unselected": { + "name": "tab_unselected", + "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": "" + } + } + }, + "text_rotate_vertical": { + "name": "text_rotate_vertical", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_angledown": { + "name": "text_rotation_angledown", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_angleup": { + "name": "text_rotation_angleup", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_down": { + "name": "text_rotation_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_rotation_none": { + "name": "text_rotation_none", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "theaters": { + "name": "theaters", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumbs_up_down": { + "name": "thumbs_up_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down": { + "name": "thumb_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down_off_alt": { + "name": "thumb_down_off_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up": { + "name": "thumb_up", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up_off_alt": { + "name": "thumb_up_off_alt", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timeline": { + "name": "timeline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tips_and_updates": { + "name": "tips_and_updates", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "toc": { + "name": "toc", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "today": { + "name": "today", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toll": { + "name": "toll", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "touch_app": { + "name": "touch_app", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tour": { + "name": "tour", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "track_changes": { + "name": "track_changes", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "translate": { + "name": "translate", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_down": { + "name": "trending_down", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_flat": { + "name": "trending_flat", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trending_up": { + "name": "trending_up", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "try": { + "name": "try", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "turned_in": { + "name": "turned_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "turned_in_not": { + "name": "turned_in_not", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unpublished": { + "name": "unpublished", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "update": { + "name": "update", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "update_disabled": { + "name": "update_disabled", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "upgrade": { + "name": "upgrade", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "verified": { + "name": "verified", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "verified_user": { + "name": "verified_user", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_split": { + "name": "vertical_split", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_agenda": { + "name": "view_agenda", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_array": { + "name": "view_array", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_carousel": { + "name": "view_carousel", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_column": { + "name": "view_column", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_day": { + "name": "view_day", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_headline": { + "name": "view_headline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_in_ar": { + "name": "view_in_ar", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_list": { + "name": "view_list", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_module": { + "name": "view_module", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_quilt": { + "name": "view_quilt", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_sidebar": { + "name": "view_sidebar", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_stream": { + "name": "view_stream", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "view_week": { + "name": "view_week", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "visibility": { + "name": "visibility", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "visibility_off": { + "name": "visibility_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_over_off": { + "name": "voice_over_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "watch_later": { + "name": "watch_later", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_protected_setup": { + "name": "wifi_protected_setup", + "keywords": [ + "action" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "work": { + "name": "work", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "work_off": { + "name": "work_off", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "work_outline": { + "name": "work_outline", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wysiwyg": { + "name": "wysiwyg", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "youtube_searched_for": { + "name": "youtube_searched_for", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_in": { + "name": "zoom_in", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_out": { + "name": "zoom_out", + "keywords": [ + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alert": { + "name": "add_alert", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_delete": { + "name": "auto_delete", + "keywords": [ + "alert" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "error": { + "name": "error", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "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": "" + } + } + }, + "warning": { + "name": "warning", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "warning_amber": { + "name": "warning_amber", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "10k": { + "name": "10k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1k": { + "name": "1k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1k_plus": { + "name": "1k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2k": { + "name": "2k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2k_plus": { + "name": "2k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3k": { + "name": "3k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3k_plus": { + "name": "3k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4k": { + "name": "4k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4k_plus": { + "name": "4k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5g": { + "name": "5g", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "5k": { + "name": "5k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5k_plus": { + "name": "5k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6k": { + "name": "6k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6k_plus": { + "name": "6k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7k": { + "name": "7k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7k_plus": { + "name": "7k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8k": { + "name": "8k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8k_plus": { + "name": "8k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9k": { + "name": "9k", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9k_plus": { + "name": "9k_plus", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_queue": { + "name": "add_to_queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airplay": { + "name": "airplay", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "album": { + "name": "album", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "art_track": { + "name": "art_track", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "av_timer": { + "name": "av_timer", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "branding_watermark": { + "name": "branding_watermark", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_to_action": { + "name": "call_to_action", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption": { + "name": "closed_caption", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption_disabled": { + "name": "closed_caption_disabled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "closed_caption_off": { + "name": "closed_caption_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_camera": { + "name": "control_camera", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "equalizer": { + "name": "equalizer", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "explicit": { + "name": "explicit", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fast_forward": { + "name": "fast_forward", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fast_rewind": { + "name": "fast_rewind", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "featured_play_list": { + "name": "featured_play_list", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "featured_video": { + "name": "featured_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_dvr": { + "name": "fiber_dvr", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_manual_record": { + "name": "fiber_manual_record", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_new": { + "name": "fiber_new", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_pin": { + "name": "fiber_pin", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fiber_smart_record": { + "name": "fiber_smart_record", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_10": { + "name": "forward_10", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_30": { + "name": "forward_30", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_5": { + "name": "forward_5", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "games": { + "name": "games", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hd": { + "name": "hd", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hearing": { + "name": "hearing", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hearing_disabled": { + "name": "hearing_disabled", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "high_quality": { + "name": "high_quality", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_add": { + "name": "library_add", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_add_check": { + "name": "library_add_check", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "library_books": { + "name": "library_books", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "library_music": { + "name": "library_music", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loop": { + "name": "loop", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic": { + "name": "mic", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_none": { + "name": "mic_none", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_off": { + "name": "mic_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "missed_video_call": { + "name": "missed_video_call", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie": { + "name": "movie", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_video": { + "name": "music_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "new_releases": { + "name": "new_releases", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note": { + "name": "note", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "not_interested": { + "name": "not_interested", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause": { + "name": "pause", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle": { + "name": "pause_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle_filled": { + "name": "pause_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_circle_outline": { + "name": "pause_circle_outline", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_add": { + "name": "playlist_add", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_add_check": { + "name": "playlist_add_check", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "playlist_play": { + "name": "playlist_play", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_arrow": { + "name": "play_arrow", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle": { + "name": "play_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle_filled": { + "name": "play_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_circle_outline": { + "name": "play_circle_outline", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_disabled": { + "name": "play_disabled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "queue": { + "name": "queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "queue_music": { + "name": "queue_music", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "queue_play_next": { + "name": "queue_play_next", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio": { + "name": "radio", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "recent_actors": { + "name": "recent_actors", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_from_queue": { + "name": "remove_from_queue", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat": { + "name": "repeat", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_on": { + "name": "repeat_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_one": { + "name": "repeat_one", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "repeat_one_on": { + "name": "repeat_one_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay": { + "name": "replay", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_10": { + "name": "replay_10", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_30": { + "name": "replay_30", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_5": { + "name": "replay_5", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "replay_circle_filled": { + "name": "replay_circle_filled", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd": { + "name": "sd", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shuffle": { + "name": "shuffle", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shuffle_on": { + "name": "shuffle_on", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "skip_next": { + "name": "skip_next", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "skip_previous": { + "name": "skip_previous", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "slow_motion_video": { + "name": "slow_motion_video", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snooze": { + "name": "snooze", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sort_by_alpha": { + "name": "sort_by_alpha", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speed": { + "name": "speed", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop": { + "name": "stop", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop_circle": { + "name": "stop_circle", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "subscriptions": { + "name": "subscriptions", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subtitles": { + "name": "subtitles", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "surround_sound": { + "name": "surround_sound", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videocam": { + "name": "videocam", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videocam_off": { + "name": "videocam_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_call": { + "name": "video_call", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_label": { + "name": "video_label", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_library": { + "name": "video_library", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_settings": { + "name": "video_settings", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_down": { + "name": "volume_down", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_mute": { + "name": "volume_mute", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_off": { + "name": "volume_off", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "volume_up": { + "name": "volume_up", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web": { + "name": "web", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web_asset": { + "name": "web_asset", + "keywords": [ + "av" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "web_asset_off": { + "name": "web_asset_off", + "keywords": [ + "av" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "3p": { + "name": "3p", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_ic_call": { + "name": "add_ic_call", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "alternate_email": { + "name": "alternate_email", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_registration": { + "name": "app_registration", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "business": { + "name": "business", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call": { + "name": "call", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_end": { + "name": "call_end", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_made": { + "name": "call_made", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_merge": { + "name": "call_merge", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_missed": { + "name": "call_missed", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_missed_outgoing": { + "name": "call_missed_outgoing", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_received": { + "name": "call_received", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "call_split": { + "name": "call_split", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel_presentation": { + "name": "cancel_presentation", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cell_wifi": { + "name": "cell_wifi", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat": { + "name": "chat", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat_bubble": { + "name": "chat_bubble", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chat_bubble_outline": { + "name": "chat_bubble_outline", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "clear_all": { + "name": "clear_all", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "comment": { + "name": "comment", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contacts": { + "name": "contacts", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_mail": { + "name": "contact_mail", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "contact_phone": { + "name": "contact_phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_access_disabled": { + "name": "desktop_access_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dialer_sip": { + "name": "dialer_sip", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dialpad": { + "name": "dialpad", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "document_scanner": { + "name": "document_scanner", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "domain_disabled": { + "name": "domain_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "domain_verification": { + "name": "domain_verification", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "duo": { + "name": "duo", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "email": { + "name": "email", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forum": { + "name": "forum", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "forward_to_inbox": { + "name": "forward_to_inbox", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_bottom": { + "name": "hourglass_bottom", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hourglass_top": { + "name": "hourglass_top", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "import_contacts": { + "name": "import_contacts", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "import_export": { + "name": "import_export", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "invert_colors_off": { + "name": "invert_colors_off", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "list_alt": { + "name": "list_alt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_help": { + "name": "live_help", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_off": { + "name": "location_off", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_on": { + "name": "location_on", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mail_outline": { + "name": "mail_outline", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_chat_read": { + "name": "mark_chat_read", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_chat_unread": { + "name": "mark_chat_unread", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_email_read": { + "name": "mark_email_read", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mark_email_unread": { + "name": "mark_email_unread", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "message": { + "name": "message", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mobile_screen_share": { + "name": "mobile_screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_time": { + "name": "more_time", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nat": { + "name": "nat", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_sim": { + "name": "no_sim", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pause_presentation": { + "name": "pause_presentation", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_disabled": { + "name": "person_add_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_search": { + "name": "person_search", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "phone": { + "name": "phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_erase": { + "name": "phonelink_erase", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_lock": { + "name": "phonelink_lock", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_ring": { + "name": "phonelink_ring", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_setup": { + "name": "phonelink_setup", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_disabled": { + "name": "phone_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_enabled": { + "name": "phone_enabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "portable_wifi_off": { + "name": "portable_wifi_off", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "present_to_all": { + "name": "present_to_all", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "print_disabled": { + "name": "print_disabled", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code": { + "name": "qr_code", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code_2": { + "name": "qr_code_2", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "qr_code_scanner": { + "name": "qr_code_scanner", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "read_more": { + "name": "read_more", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ring_volume": { + "name": "ring_volume", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rss_feed": { + "name": "rss_feed", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rtt": { + "name": "rtt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_share": { + "name": "screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_satisfied_alt": { + "name": "sentiment_satisfied_alt", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sip": { + "name": "sip", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_phone": { + "name": "speaker_phone", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_current_landscape": { + "name": "stay_current_landscape", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_current_portrait": { + "name": "stay_current_portrait", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_primary_landscape": { + "name": "stay_primary_landscape", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stay_primary_portrait": { + "name": "stay_primary_portrait", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stop_screen_share": { + "name": "stop_screen_share", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "swap_calls": { + "name": "swap_calls", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "textsms": { + "name": "textsms", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unsubscribe": { + "name": "unsubscribe", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voicemail": { + "name": "voicemail", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vpn_key": { + "name": "vpn_key", + "keywords": [ + "communication" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_calling": { + "name": "wifi_calling", + "keywords": [ + "communication" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add": { + "name": "add", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_box": { + "name": "add_box", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_circle": { + "name": "add_circle", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_circle_outline": { + "name": "add_circle_outline", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_link": { + "name": "add_link", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "amp_stories": { + "name": "amp_stories", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "archive": { + "name": "archive", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attribution": { + "name": "attribution", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backspace": { + "name": "backspace", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ballot": { + "name": "ballot", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "biotech": { + "name": "biotech", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "block": { + "name": "block", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bolt": { + "name": "bolt", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "calculate": { + "name": "calculate", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "change_circle": { + "name": "change_circle", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "clear": { + "name": "clear", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_copy": { + "name": "content_copy", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_cut": { + "name": "content_cut", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_paste": { + "name": "content_paste", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "content_paste_off": { + "name": "content_paste_off", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "copy_all": { + "name": "copy_all", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "create": { + "name": "create", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delete_sweep": { + "name": "delete_sweep", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drafts": { + "name": "drafts", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dynamic_feed": { + "name": "dynamic_feed", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "file_copy": { + "name": "file_copy", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_list": { + "name": "filter_list", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flag": { + "name": "flag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "font_download": { + "name": "font_download", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "font_download_off": { + "name": "font_download_off", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "forward": { + "name": "forward", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gesture": { + "name": "gesture", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "how_to_reg": { + "name": "how_to_reg", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "how_to_vote": { + "name": "how_to_vote", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "inbox": { + "name": "inbox", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insights": { + "name": "insights", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "inventory": { + "name": "inventory", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "inventory_2": { + "name": "inventory_2", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "link": { + "name": "link", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "link_off": { + "name": "link_off", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "low_priority": { + "name": "low_priority", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mail": { + "name": "mail", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "markunread": { + "name": "markunread", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "move_to_inbox": { + "name": "move_to_inbox", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "next_week": { + "name": "next_week", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outlined_flag": { + "name": "outlined_flag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "policy": { + "name": "policy", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "push_pin": { + "name": "push_pin", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "redo": { + "name": "redo", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove": { + "name": "remove", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_circle": { + "name": "remove_circle", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_circle_outline": { + "name": "remove_circle_outline", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reply": { + "name": "reply", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reply_all": { + "name": "reply_all", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report": { + "name": "report", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_gmailerrorred": { + "name": "report_gmailerrorred", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "report_off": { + "name": "report_off", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "save": { + "name": "save", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "save_alt": { + "name": "save_alt", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "select_all": { + "name": "select_all", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send": { + "name": "send", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shield": { + "name": "shield", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sort": { + "name": "sort", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "square_foot": { + "name": "square_foot", + "keywords": [ + "content" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "stacked_bar_chart": { + "name": "stacked_bar_chart", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stream": { + "name": "stream", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tag": { + "name": "tag", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_format": { + "name": "text_format", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unarchive": { + "name": "unarchive", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "undo": { + "name": "undo", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upcoming": { + "name": "upcoming", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waves": { + "name": "waves", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "weekend": { + "name": "weekend", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "where_to_vote": { + "name": "where_to_vote", + "keywords": [ + "content" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "1x_mobiledata": { + "name": "1x_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "30fps": { + "name": "30fps", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3g_mobiledata": { + "name": "3g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4g_mobiledata": { + "name": "4g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4g_plus_mobiledata": { + "name": "4g_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "60fps": { + "name": "60fps", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_alarm": { + "name": "access_alarm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_alarms": { + "name": "access_alarms", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_time": { + "name": "access_time", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "access_time_filled": { + "name": "access_time_filled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alarm": { + "name": "add_alarm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_home_screen": { + "name": "add_to_home_screen", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ad_units": { + "name": "ad_units", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "air": { + "name": "air", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airplanemode_active": { + "name": "airplanemode_active", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airplanemode_inactive": { + "name": "airplanemode_inactive", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airplane_ticket": { + "name": "airplane_ticket", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "aod": { + "name": "aod", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_20": { + "name": "battery_20", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_30": { + "name": "battery_30", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_50": { + "name": "battery_50", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_60": { + "name": "battery_60", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_80": { + "name": "battery_80", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_90": { + "name": "battery_90", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_alert": { + "name": "battery_alert", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_charging_20": { + "name": "battery_charging_20", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_charging_30": { + "name": "battery_charging_30", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_charging_50": { + "name": "battery_charging_50", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_charging_60": { + "name": "battery_charging_60", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_charging_80": { + "name": "battery_charging_80", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_charging_90": { + "name": "battery_charging_90", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_charging_full": { + "name": "battery_charging_full", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_full": { + "name": "battery_full", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_saver": { + "name": "battery_saver", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_std": { + "name": "battery_std", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "battery_unknown": { + "name": "battery_unknown", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bloodtype": { + "name": "bloodtype", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth": { + "name": "bluetooth", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_connected": { + "name": "bluetooth_connected", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_disabled": { + "name": "bluetooth_disabled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_drive": { + "name": "bluetooth_drive", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_searching": { + "name": "bluetooth_searching", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_auto": { + "name": "brightness_auto", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_high": { + "name": "brightness_high", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_low": { + "name": "brightness_low", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_medium": { + "name": "brightness_medium", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cable": { + "name": "cable", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cameraswitch": { + "name": "cameraswitch", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "credit_score": { + "name": "credit_score", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dark_mode": { + "name": "dark_mode", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "data_saver_off": { + "name": "data_saver_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_saver_on": { + "name": "data_saver_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "data_usage": { + "name": "data_usage", + "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": "" + } + } + }, + "device_thermostat": { + "name": "device_thermostat", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on_total_silence": { + "name": "do_not_disturb_on_total_silence", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dvr": { + "name": "dvr", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edgesensor_high": { + "name": "edgesensor_high", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edgesensor_low": { + "name": "edgesensor_low", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "e_mobiledata": { + "name": "e_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flashlight_off": { + "name": "flashlight_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flashlight_on": { + "name": "flashlight_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flourescent": { + "name": "flourescent", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fmd_bad": { + "name": "fmd_bad", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fmd_good": { + "name": "fmd_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_bad": { + "name": "gpp_bad", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_good": { + "name": "gpp_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gpp_maybe": { + "name": "gpp_maybe", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_fixed": { + "name": "gps_fixed", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_not_fixed": { + "name": "gps_not_fixed", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gps_off": { + "name": "gps_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "graphic_eq": { + "name": "graphic_eq", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_3x3": { + "name": "grid_3x3", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_4x4": { + "name": "grid_4x4", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_goldenratio": { + "name": "grid_goldenratio", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "g_mobiledata": { + "name": "g_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_auto": { + "name": "hdr_auto", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_auto_select": { + "name": "hdr_auto_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_off_select": { + "name": "hdr_off_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_on_select": { + "name": "hdr_on_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "h_mobiledata": { + "name": "h_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "h_plus_mobiledata": { + "name": "h_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lens_blur": { + "name": "lens_blur", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "light_mode": { + "name": "light_mode", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "location_disabled": { + "name": "location_disabled", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "location_searching": { + "name": "location_searching", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lte_mobiledata": { + "name": "lte_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lte_plus_mobiledata": { + "name": "lte_plus_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "media_bluetooth_off": { + "name": "media_bluetooth_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "media_bluetooth_on": { + "name": "media_bluetooth_on", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "medication": { + "name": "medication", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mobiledata_off": { + "name": "mobiledata_off", + "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": "" + } + } + }, + "mode_night": { + "name": "mode_night", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_standby": { + "name": "mode_standby", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor_weight": { + "name": "monitor_weight", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nearby_error": { + "name": "nearby_error", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nearby_off": { + "name": "nearby_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_cell": { + "name": "network_cell", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_wifi": { + "name": "network_wifi", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nfc": { + "name": "nfc", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlight": { + "name": "nightlight", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "note_alt": { + "name": "note_alt", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "password": { + "name": "password", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pattern": { + "name": "pattern", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pin": { + "name": "pin", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "play_lesson": { + "name": "play_lesson", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "price_change": { + "name": "price_change", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "price_check": { + "name": "price_check", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "quiz": { + "name": "quiz", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radar": { + "name": "radar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remember_me": { + "name": "remember_me", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reset_tv": { + "name": "reset_tv", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restart_alt": { + "name": "restart_alt", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "reviews": { + "name": "reviews", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rsvp": { + "name": "rsvp", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "r_mobiledata": { + "name": "r_mobiledata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screenshot": { + "name": "screenshot", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_landscape": { + "name": "screen_lock_landscape", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_portrait": { + "name": "screen_lock_portrait", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_lock_rotation": { + "name": "screen_lock_rotation", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_rotation": { + "name": "screen_rotation", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "screen_search_desktop": { + "name": "screen_search_desktop", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_storage": { + "name": "sd_storage", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update": { + "name": "security_update", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update_good": { + "name": "security_update_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security_update_warning": { + "name": "security_update_warning", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sell": { + "name": "sell", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "send_to_mobile": { + "name": "send_to_mobile", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_suggest": { + "name": "settings_suggest", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "settings_system_daydream": { + "name": "settings_system_daydream", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "share_location": { + "name": "share_location", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shortcut": { + "name": "shortcut", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_0_bar": { + "name": "signal_cellular_0_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_1_bar": { + "name": "signal_cellular_1_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_2_bar": { + "name": "signal_cellular_2_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_3_bar": { + "name": "signal_cellular_3_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_4_bar": { + "name": "signal_cellular_4_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_alt": { + "name": "signal_cellular_alt", + "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": { + "20": { + "width": 20, + "path": "" + }, + "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": "" + } + } + }, + "signal_cellular_connected_no_internet_2_bar": { + "name": "signal_cellular_connected_no_internet_2_bar", + "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": "" + } + } + }, + "signal_cellular_connected_no_internet_4_bar": { + "name": "signal_cellular_connected_no_internet_4_bar", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_nodata": { + "name": "signal_cellular_nodata", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_no_sim": { + "name": "signal_cellular_no_sim", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_null": { + "name": "signal_cellular_null", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_cellular_off": { + "name": "signal_cellular_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_0_bar": { + "name": "signal_wifi_0_bar", + "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_1_bar_lock": { + "name": "signal_wifi_1_bar_lock", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_2_bar": { + "name": "signal_wifi_2_bar", + "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": "" + } + } + }, + "signal_wifi_3_bar": { + "name": "signal_wifi_3_bar", + "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_4_bar": { + "name": "signal_wifi_4_bar", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_4_bar_lock": { + "name": "signal_wifi_4_bar_lock", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_bad": { + "name": "signal_wifi_bad", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_connected_no_internet_0": { + "name": "signal_wifi_connected_no_internet_0", + "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_connected_no_internet_2": { + "name": "signal_wifi_connected_no_internet_2", + "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": "" + } + } + }, + "signal_wifi_connected_no_internet_4": { + "name": "signal_wifi_connected_no_internet_4", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_off": { + "name": "signal_wifi_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_statusbar_1_bar": { + "name": "signal_wifi_statusbar_1_bar", + "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": "" + } + } + }, + "signal_wifi_statusbar_3_bar": { + "name": "signal_wifi_statusbar_3_bar", + "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": "" + } + } + }, + "signal_wifi_statusbar_connected_no_internet": { + "name": "signal_wifi_statusbar_connected_no_internet", + "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": "" + } + } + }, + "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_3": { + "name": "signal_wifi_statusbar_connected_no_internet_3", + "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": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_statusbar_not_connected": { + "name": "signal_wifi_statusbar_not_connected", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "signal_wifi_statusbar_null": { + "name": "signal_wifi_statusbar_null", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_download": { + "name": "sim_card_download", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "splitscreen": { + "name": "splitscreen", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_score": { + "name": "sports_score", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storage": { + "name": "storage", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storm": { + "name": "storm", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "summarize": { + "name": "summarize", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update": { + "name": "system_security_update", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update_good": { + "name": "system_security_update_good", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_security_update_warning": { + "name": "system_security_update_warning", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "task": { + "name": "task", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thermostat": { + "name": "thermostat", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_10_select": { + "name": "timer_10_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_3_select": { + "name": "timer_3_select", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tungsten": { + "name": "tungsten", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "usb": { + "name": "usb", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "usb_off": { + "name": "usb_off", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wallpaper": { + "name": "wallpaper", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "water": { + "name": "water", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "widgets": { + "name": "widgets", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_calling_1": { + "name": "wifi_calling_1", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_calling_2": { + "name": "wifi_calling_2", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_calling_3": { + "name": "wifi_calling_3", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_lock": { + "name": "wifi_lock", + "keywords": [ + "device" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering": { + "name": "wifi_tethering", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering_error_rounded": { + "name": "wifi_tethering_error_rounded", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_tethering_off": { + "name": "wifi_tethering_off", + "keywords": [ + "device" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_chart": { + "name": "add_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_comment": { + "name": "add_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_center": { + "name": "align_horizontal_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_left": { + "name": "align_horizontal_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_horizontal_right": { + "name": "align_horizontal_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_bottom": { + "name": "align_vertical_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_center": { + "name": "align_vertical_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "align_vertical_top": { + "name": "align_vertical_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "area_chart": { + "name": "area_chart", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_file": { + "name": "attach_file", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_money": { + "name": "attach_money", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_graph": { + "name": "auto_graph", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bar_chart": { + "name": "bar_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_all": { + "name": "border_all", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_bottom": { + "name": "border_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_clear": { + "name": "border_clear", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_color": { + "name": "border_color", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_horizontal": { + "name": "border_horizontal", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_inner": { + "name": "border_inner", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_left": { + "name": "border_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_outer": { + "name": "border_outer", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_right": { + "name": "border_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_style": { + "name": "border_style", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_top": { + "name": "border_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "border_vertical": { + "name": "border_vertical", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bubble_chart": { + "name": "bubble_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "checklist": { + "name": "checklist", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "checklist_rtl": { + "name": "checklist_rtl", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drag_handle": { + "name": "drag_handle", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "draw": { + "name": "draw", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_note": { + "name": "edit_note", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_center": { + "name": "format_align_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_justify": { + "name": "format_align_justify", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_left": { + "name": "format_align_left", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_align_right": { + "name": "format_align_right", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_bold": { + "name": "format_bold", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_clear": { + "name": "format_clear", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_fill": { + "name": "format_color_fill", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_reset": { + "name": "format_color_reset", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_color_text": { + "name": "format_color_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_indent_decrease": { + "name": "format_indent_decrease", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_indent_increase": { + "name": "format_indent_increase", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_italic": { + "name": "format_italic", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_line_spacing": { + "name": "format_line_spacing", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_bulleted": { + "name": "format_list_bulleted", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_numbered": { + "name": "format_list_numbered", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_list_numbered_rtl": { + "name": "format_list_numbered_rtl", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_paint": { + "name": "format_paint", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_quote": { + "name": "format_quote", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_shapes": { + "name": "format_shapes", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_size": { + "name": "format_size", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_strikethrough": { + "name": "format_strikethrough", + "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": "" + } + } + }, + "format_textdirection_r_to_l": { + "name": "format_textdirection_r_to_l", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_underlined": { + "name": "format_underlined", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "functions": { + "name": "functions", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "height": { + "name": "height", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "highlight": { + "name": "highlight", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_distribute": { + "name": "horizontal_distribute", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "horizontal_rule": { + "name": "horizontal_rule", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_chart": { + "name": "insert_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_chart_outlined": { + "name": "insert_chart_outlined", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_comment": { + "name": "insert_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_drive_file": { + "name": "insert_drive_file", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_emoticon": { + "name": "insert_emoticon", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_invitation": { + "name": "insert_invitation", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_link": { + "name": "insert_link", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "insert_photo": { + "name": "insert_photo", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "linear_scale": { + "name": "linear_scale", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "margin": { + "name": "margin", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "merge_type": { + "name": "merge_type", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode": { + "name": "mode", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_comment": { + "name": "mode_comment", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_edit": { + "name": "mode_edit", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mode_edit_outline": { + "name": "mode_edit_outline", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "monetization_on": { + "name": "monetization_on", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "money_off": { + "name": "money_off", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "money_off_csred": { + "name": "money_off_csred", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "multiline_chart": { + "name": "multiline_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notes": { + "name": "notes", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "padding": { + "name": "padding", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pie_chart": { + "name": "pie_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pie_chart_outline": { + "name": "pie_chart_outline", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "post_add": { + "name": "post_add", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "publish": { + "name": "publish", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "query_stats": { + "name": "query_stats", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "scatter_plot": { + "name": "scatter_plot", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "schema": { + "name": "schema", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "score": { + "name": "score", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "short_text": { + "name": "short_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "show_chart": { + "name": "show_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "space_bar": { + "name": "space_bar", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stacked_line_chart": { + "name": "stacked_line_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "strikethrough_s": { + "name": "strikethrough_s", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subscript": { + "name": "subscript", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "superscript": { + "name": "superscript", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "table_chart": { + "name": "table_chart", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "table_rows": { + "name": "table_rows", + "keywords": [ + "editor" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "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": "" + } + } + }, + "vertical_align_bottom": { + "name": "vertical_align_bottom", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_align_center": { + "name": "vertical_align_center", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_align_top": { + "name": "vertical_align_top", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vertical_distribute": { + "name": "vertical_distribute", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wrap_text": { + "name": "wrap_text", + "keywords": [ + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "approval": { + "name": "approval", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attachment": { + "name": "attachment", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_email": { + "name": "attach_email", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud": { + "name": "cloud", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_circle": { + "name": "cloud_circle", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_done": { + "name": "cloud_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_download": { + "name": "cloud_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_off": { + "name": "cloud_off", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_queue": { + "name": "cloud_queue", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_upload": { + "name": "cloud_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "create_new_folder": { + "name": "create_new_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download": { + "name": "download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "downloading": { + "name": "downloading", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_done": { + "name": "download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_for_offline": { + "name": "download_for_offline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "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": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_rename_outline": { + "name": "drive_file_rename_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_folder_upload": { + "name": "drive_folder_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download": { + "name": "file_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_done": { + "name": "file_download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_off": { + "name": "file_download_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "file_upload": { + "name": "file_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder": { + "name": "folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_open": { + "name": "folder_open", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_shared": { + "name": "folder_shared", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_view": { + "name": "grid_view", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_quote": { + "name": "request_quote", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule_folder": { + "name": "rule_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snippet_folder": { + "name": "snippet_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_snippet": { + "name": "text_snippet", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "topic": { + "name": "topic", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload": { + "name": "upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload_file": { + "name": "upload_file", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces": { + "name": "workspaces", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "browser_not_supported": { + "name": "browser_not_supported", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cast": { + "name": "cast", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_connected": { + "name": "cast_connected", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_for_education": { + "name": "cast_for_education", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "computer": { + "name": "computer", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "connected_tv": { + "name": "connected_tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_mac": { + "name": "desktop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_windows": { + "name": "desktop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board": { + "name": "developer_board", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board_off": { + "name": "developer_board_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "devices_other": { + "name": "devices_other", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_hub": { + "name": "device_hub", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_unknown": { + "name": "device_unknown", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dock": { + "name": "dock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "earbuds": { + "name": "earbuds", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "earbuds_battery": { + "name": "earbuds_battery", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gamepad": { + "name": "gamepad", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones": { + "name": "headphones", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones_battery": { + "name": "headphones_battery", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset": { + "name": "headset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_mic": { + "name": "headset_mic", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_off": { + "name": "headset_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_max": { + "name": "home_max", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_mini": { + "name": "home_mini", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard": { + "name": "keyboard", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_alt": { + "name": "keyboard_alt", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_down": { + "name": "keyboard_arrow_down", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_left": { + "name": "keyboard_arrow_left", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_right": { + "name": "keyboard_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_up": { + "name": "keyboard_arrow_up", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_backspace": { + "name": "keyboard_backspace", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_capslock": { + "name": "keyboard_capslock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_hide": { + "name": "keyboard_hide", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_return": { + "name": "keyboard_return", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_tab": { + "name": "keyboard_tab", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_voice": { + "name": "keyboard_voice", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop": { + "name": "laptop", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_chromebook": { + "name": "laptop_chromebook", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_mac": { + "name": "laptop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_windows": { + "name": "laptop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "memory": { + "name": "memory", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor": { + "name": "monitor", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mouse": { + "name": "mouse", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink": { + "name": "phonelink", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_off": { + "name": "phonelink_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_android": { + "name": "phone_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_iphone": { + "name": "phone_iphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "point_of_sale": { + "name": "point_of_sale", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "power_input": { + "name": "power_input", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "router": { + "name": "router", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "scanner": { + "name": "scanner", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security": { + "name": "security", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card": { + "name": "sim_card", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smartphone": { + "name": "smartphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_display": { + "name": "smart_display", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_screen": { + "name": "smart_screen", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_toy": { + "name": "smart_toy", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker": { + "name": "speaker", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_group": { + "name": "speaker_group", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet": { + "name": "tablet", + "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": "" + } + } + }, + "toys": { + "name": "toys", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "tv": { + "name": "tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset": { + "name": "videogame_asset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset_off": { + "name": "videogame_asset_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "watch": { + "name": "watch", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sensor_door": { + "name": "sensor_door", + "keywords": [ + "home" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sensor_window": { + "name": "sensor_window", + "keywords": [ + "home" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "10mp": { + "name": "10mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "11mp": { + "name": "11mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "12mp": { + "name": "12mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "13mp": { + "name": "13mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "14mp": { + "name": "14mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "15mp": { + "name": "15mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "16mp": { + "name": "16mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "17mp": { + "name": "17mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "18mp": { + "name": "18mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "19mp": { + "name": "19mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "20mp": { + "name": "20mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "21mp": { + "name": "21mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "22mp": { + "name": "22mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "23mp": { + "name": "23mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "24mp": { + "name": "24mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "2mp": { + "name": "2mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "30fps_select": { + "name": "30fps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "3mp": { + "name": "3mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "4mp": { + "name": "4mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "5mp": { + "name": "5mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "60fps_select": { + "name": "60fps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6mp": { + "name": "6mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "7mp": { + "name": "7mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "8mp": { + "name": "8mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "9mp": { + "name": "9mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_a_photo": { + "name": "add_a_photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_photo_alternate": { + "name": "add_photo_alternate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_to_photos": { + "name": "add_to_photos", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adjust": { + "name": "adjust", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "animation": { + "name": "animation", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant": { + "name": "assistant", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_photo": { + "name": "assistant_photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "audiotrack": { + "name": "audiotrack", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "autofps_select": { + "name": "autofps_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome": { + "name": "auto_awesome", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome_mosaic": { + "name": "auto_awesome_mosaic", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_awesome_motion": { + "name": "auto_awesome_motion", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_high": { + "name": "auto_fix_high", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_normal": { + "name": "auto_fix_normal", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_fix_off": { + "name": "auto_fix_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_stories": { + "name": "auto_stories", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedtime": { + "name": "bedtime", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_circular": { + "name": "blur_circular", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_linear": { + "name": "blur_linear", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_off": { + "name": "blur_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blur_on": { + "name": "blur_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_1": { + "name": "brightness_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_2": { + "name": "brightness_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_3": { + "name": "brightness_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_4": { + "name": "brightness_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_5": { + "name": "brightness_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_6": { + "name": "brightness_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brightness_7": { + "name": "brightness_7", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "broken_image": { + "name": "broken_image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "brush": { + "name": "brush", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "burst_mode": { + "name": "burst_mode", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera": { + "name": "camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_alt": { + "name": "camera_alt", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_front": { + "name": "camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_rear": { + "name": "camera_rear", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_roll": { + "name": "camera_roll", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cases": { + "name": "cases", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "center_focus_strong": { + "name": "center_focus_strong", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "center_focus_weak": { + "name": "center_focus_weak", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "circle": { + "name": "circle", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "collections": { + "name": "collections", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "collections_bookmark": { + "name": "collections_bookmark", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "colorize": { + "name": "colorize", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "color_lens": { + "name": "color_lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compare": { + "name": "compare", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_point": { + "name": "control_point", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "control_point_duplicate": { + "name": "control_point_duplicate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop": { + "name": "crop", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_16_9": { + "name": "crop_16_9", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_3_2": { + "name": "crop_3_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_5_4": { + "name": "crop_5_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_7_5": { + "name": "crop_7_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_din": { + "name": "crop_din", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_free": { + "name": "crop_free", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_landscape": { + "name": "crop_landscape", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_original": { + "name": "crop_original", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_portrait": { + "name": "crop_portrait", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_rotate": { + "name": "crop_rotate", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crop_square": { + "name": "crop_square", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dehaze": { + "name": "dehaze", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "details": { + "name": "details", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dirty_lens": { + "name": "dirty_lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit": { + "name": "edit", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "euro": { + "name": "euro", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure": { + "name": "exposure", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_neg_1": { + "name": "exposure_neg_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_neg_2": { + "name": "exposure_neg_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_plus_1": { + "name": "exposure_plus_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_plus_2": { + "name": "exposure_plus_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "exposure_zero": { + "name": "exposure_zero", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_retouching_natural": { + "name": "face_retouching_natural", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "face_retouching_off": { + "name": "face_retouching_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter": { + "name": "filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_1": { + "name": "filter_1", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_2": { + "name": "filter_2", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_3": { + "name": "filter_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_4": { + "name": "filter_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_5": { + "name": "filter_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_6": { + "name": "filter_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_7": { + "name": "filter_7", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_8": { + "name": "filter_8", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_9": { + "name": "filter_9", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_9_plus": { + "name": "filter_9_plus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_b_and_w": { + "name": "filter_b_and_w", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_center_focus": { + "name": "filter_center_focus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_drama": { + "name": "filter_drama", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_frames": { + "name": "filter_frames", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_hdr": { + "name": "filter_hdr", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_none": { + "name": "filter_none", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_tilt_shift": { + "name": "filter_tilt_shift", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "filter_vintage": { + "name": "filter_vintage", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flare": { + "name": "flare", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_auto": { + "name": "flash_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_off": { + "name": "flash_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flash_on": { + "name": "flash_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip": { + "name": "flip", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_camera_android": { + "name": "flip_camera_android", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flip_camera_ios": { + "name": "flip_camera_ios", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "gradient": { + "name": "gradient", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grain": { + "name": "grain", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_off": { + "name": "grid_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_on": { + "name": "grid_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_enhanced_select": { + "name": "hdr_enhanced_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_off": { + "name": "hdr_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_on": { + "name": "hdr_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_plus": { + "name": "hdr_plus", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_strong": { + "name": "hdr_strong", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hdr_weak": { + "name": "hdr_weak", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "healing": { + "name": "healing", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hevc": { + "name": "hevc", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hide_image": { + "name": "hide_image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image": { + "name": "image", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image_aspect_ratio": { + "name": "image_aspect_ratio", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "image_not_supported": { + "name": "image_not_supported", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "image_search": { + "name": "image_search", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "incomplete_circle": { + "name": "incomplete_circle", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "iso": { + "name": "iso", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "landscape": { + "name": "landscape", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leak_add": { + "name": "leak_add", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "leak_remove": { + "name": "leak_remove", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lens": { + "name": "lens", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "linked_camera": { + "name": "linked_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks": { + "name": "looks", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_3": { + "name": "looks_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_4": { + "name": "looks_4", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_5": { + "name": "looks_5", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_6": { + "name": "looks_6", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_one": { + "name": "looks_one", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "looks_two": { + "name": "looks_two", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "loupe": { + "name": "loupe", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_external_off": { + "name": "mic_external_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mic_external_on": { + "name": "mic_external_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monochrome_photos": { + "name": "monochrome_photos", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_auto": { + "name": "motion_photos_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_off": { + "name": "motion_photos_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_on": { + "name": "motion_photos_on", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_pause": { + "name": "motion_photos_pause", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "motion_photos_paused": { + "name": "motion_photos_paused", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie_creation": { + "name": "movie_creation", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "movie_filter": { + "name": "movie_filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mp": { + "name": "mp", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_note": { + "name": "music_note", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "music_off": { + "name": "music_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nature": { + "name": "nature", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nature_people": { + "name": "nature_people", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigate_before": { + "name": "navigate_before", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigate_next": { + "name": "navigate_next", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "palette": { + "name": "palette", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama": { + "name": "panorama", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_fish_eye": { + "name": "panorama_fish_eye", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_horizontal": { + "name": "panorama_horizontal", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_horizontal_select": { + "name": "panorama_horizontal_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_photosphere": { + "name": "panorama_photosphere", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_photosphere_select": { + "name": "panorama_photosphere_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_vertical": { + "name": "panorama_vertical", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_vertical_select": { + "name": "panorama_vertical_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_wide_angle": { + "name": "panorama_wide_angle", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "panorama_wide_angle_select": { + "name": "panorama_wide_angle_select", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo": { + "name": "photo", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_album": { + "name": "photo_album", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera": { + "name": "photo_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera_back": { + "name": "photo_camera_back", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_camera_front": { + "name": "photo_camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_filter": { + "name": "photo_filter", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_library": { + "name": "photo_library", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_actual": { + "name": "photo_size_select_actual", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_large": { + "name": "photo_size_select_large", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "photo_size_select_small": { + "name": "photo_size_select_small", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "picture_as_pdf": { + "name": "picture_as_pdf", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "portrait": { + "name": "portrait", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "raw_off": { + "name": "raw_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "raw_on": { + "name": "raw_on", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "receipt_long": { + "name": "receipt_long", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_red_eye": { + "name": "remove_red_eye", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_90_degrees_ccw": { + "name": "rotate_90_degrees_ccw", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_left": { + "name": "rotate_left", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rotate_right": { + "name": "rotate_right", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "shutter_speed": { + "name": "shutter_speed", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "slideshow": { + "name": "slideshow", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "straighten": { + "name": "straighten", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "style": { + "name": "style", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_camera": { + "name": "switch_camera", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_video": { + "name": "switch_video", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tag_faces": { + "name": "tag_faces", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "texture": { + "name": "texture", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thermostat_auto": { + "name": "thermostat_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timelapse": { + "name": "timelapse", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer": { + "name": "timer", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_10": { + "name": "timer_10", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_3": { + "name": "timer_3", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "timer_off": { + "name": "timer_off", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tonality": { + "name": "tonality", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transform": { + "name": "transform", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tune": { + "name": "tune", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_camera_back": { + "name": "video_camera_back", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_camera_front": { + "name": "video_camera_front", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "video_stable": { + "name": "video_stable", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_comfy": { + "name": "view_comfy", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "view_compact": { + "name": "view_compact", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vignette": { + "name": "vignette", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vrpano": { + "name": "vrpano", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_auto": { + "name": "wb_auto", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_cloudy": { + "name": "wb_cloudy", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_incandescent": { + "name": "wb_incandescent", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_iridescent": { + "name": "wb_iridescent", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_shade": { + "name": "wb_shade", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_sunny": { + "name": "wb_sunny", + "keywords": [ + "image" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wb_twilight": { + "name": "wb_twilight", + "keywords": [ + "image" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "360": { + "name": "360", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_business": { + "name": "add_business", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add_location": { + "name": "add_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_location_alt": { + "name": "add_location_alt", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_road": { + "name": "add_road", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "agriculture": { + "name": "agriculture", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "alt_route": { + "name": "alt_route", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "atm": { + "name": "atm", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attractions": { + "name": "attractions", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "badge": { + "name": "badge", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bakery_dining": { + "name": "bakery_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "beenhere": { + "name": "beenhere", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bike_scooter": { + "name": "bike_scooter", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "breakfast_dining": { + "name": "breakfast_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "brunch_dining": { + "name": "brunch_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bus_alert": { + "name": "bus_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "car_rental": { + "name": "car_rental", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "car_repair": { + "name": "car_repair", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "category": { + "name": "category", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "celebration": { + "name": "celebration", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cleaning_services": { + "name": "cleaning_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "compass_calibration": { + "name": "compass_calibration", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "delivery_dining": { + "name": "delivery_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "departure_board": { + "name": "departure_board", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "design_services": { + "name": "design_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "dinner_dining": { + "name": "dinner_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "directions": { + "name": "directions", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bike": { + "name": "directions_bike", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_boat": { + "name": "directions_boat", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_boat_filled": { + "name": "directions_boat_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bus": { + "name": "directions_bus", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_bus_filled": { + "name": "directions_bus_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_car": { + "name": "directions_car", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_car_filled": { + "name": "directions_car_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_railway": { + "name": "directions_railway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_railway_filled": { + "name": "directions_railway_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_run": { + "name": "directions_run", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_subway": { + "name": "directions_subway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_subway_filled": { + "name": "directions_subway_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_transit": { + "name": "directions_transit", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_transit_filled": { + "name": "directions_transit_filled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_walk": { + "name": "directions_walk", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dry_cleaning": { + "name": "dry_cleaning", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_attributes": { + "name": "edit_attributes", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_location": { + "name": "edit_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_location_alt": { + "name": "edit_location_alt", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_road": { + "name": "edit_road", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electrical_services": { + "name": "electrical_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_bike": { + "name": "electric_bike", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_car": { + "name": "electric_car", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_moped": { + "name": "electric_moped", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_rickshaw": { + "name": "electric_rickshaw", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "electric_scooter": { + "name": "electric_scooter", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emergency": { + "name": "emergency", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ev_station": { + "name": "ev_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fastfood": { + "name": "fastfood", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "festival": { + "name": "festival", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "flight": { + "name": "flight", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hail": { + "name": "hail", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "handyman": { + "name": "handyman", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hardware": { + "name": "hardware", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home_repair_service": { + "name": "home_repair_service", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hotel": { + "name": "hotel", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hvac": { + "name": "hvac", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "icecream": { + "name": "icecream", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "layers": { + "name": "layers", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "layers_clear": { + "name": "layers_clear", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "liquor": { + "name": "liquor", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "local_activity": { + "name": "local_activity", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_airport": { + "name": "local_airport", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "local_atm": { + "name": "local_atm", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_bar": { + "name": "local_bar", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_cafe": { + "name": "local_cafe", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_car_wash": { + "name": "local_car_wash", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_convenience_store": { + "name": "local_convenience_store", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_dining": { + "name": "local_dining", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_drink": { + "name": "local_drink", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_fire_department": { + "name": "local_fire_department", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_florist": { + "name": "local_florist", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_gas_station": { + "name": "local_gas_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_grocery_store": { + "name": "local_grocery_store", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_hospital": { + "name": "local_hospital", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_hotel": { + "name": "local_hotel", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_laundry_service": { + "name": "local_laundry_service", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_library": { + "name": "local_library", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_mall": { + "name": "local_mall", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_movies": { + "name": "local_movies", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_offer": { + "name": "local_offer", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_parking": { + "name": "local_parking", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_pharmacy": { + "name": "local_pharmacy", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_phone": { + "name": "local_phone", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_pizza": { + "name": "local_pizza", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_play": { + "name": "local_play", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_police": { + "name": "local_police", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_post_office": { + "name": "local_post_office", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_printshop": { + "name": "local_printshop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_see": { + "name": "local_see", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_shipping": { + "name": "local_shipping", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "local_taxi": { + "name": "local_taxi", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "lunch_dining": { + "name": "lunch_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "map": { + "name": "map", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_ugc": { + "name": "maps_ugc", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "medical_services": { + "name": "medical_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_book": { + "name": "menu_book", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "miscellaneous_services": { + "name": "miscellaneous_services", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "money": { + "name": "money", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "moped": { + "name": "moped", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "moving": { + "name": "moving", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "multiple_stop": { + "name": "multiple_stop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "museum": { + "name": "museum", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "my_location": { + "name": "my_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "navigation": { + "name": "navigation", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "near_me": { + "name": "near_me", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "near_me_disabled": { + "name": "near_me_disabled", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nightlife": { + "name": "nightlife", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "not_listed_location": { + "name": "not_listed_location", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_meals": { + "name": "no_meals", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_transfer": { + "name": "no_transfer", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "park": { + "name": "park", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pedal_bike": { + "name": "pedal_bike", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_pin": { + "name": "person_pin", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_pin_circle": { + "name": "person_pin_circle", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pest_control": { + "name": "pest_control", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pest_control_rodent": { + "name": "pest_control_rodent", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pin_drop": { + "name": "pin_drop", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "place": { + "name": "place", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "plumbing": { + "name": "plumbing", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "railway_alert": { + "name": "railway_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ramen_dining": { + "name": "ramen_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "rate_review": { + "name": "rate_review", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restaurant": { + "name": "restaurant", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "restaurant_menu": { + "name": "restaurant_menu", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "run_circle": { + "name": "run_circle", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sailing": { + "name": "sailing", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "satellite": { + "name": "satellite", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "set_meal": { + "name": "set_meal", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "snowmobile": { + "name": "snowmobile", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "store_mall_directory": { + "name": "store_mall_directory", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "streetview": { + "name": "streetview", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subway": { + "name": "subway", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "takeout_dining": { + "name": "takeout_dining", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "taxi_alert": { + "name": "taxi_alert", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "terrain": { + "name": "terrain", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "theater_comedy": { + "name": "theater_comedy", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "traffic": { + "name": "traffic", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "train": { + "name": "train", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tram": { + "name": "tram", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transfer_within_a_station": { + "name": "transfer_within_a_station", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transit_enterexit": { + "name": "transit_enterexit", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "trip_origin": { + "name": "trip_origin", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "two_wheeler": { + "name": "two_wheeler", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "volunteer_activism": { + "name": "volunteer_activism", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wine_bar": { + "name": "wine_bar", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wrong_location": { + "name": "wrong_location", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "zoom_out_map": { + "name": "zoom_out_map", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps": { + "name": "apps", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_settings_alt": { + "name": "app_settings_alt", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back": { + "name": "arrow_back", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios": { + "name": "arrow_back_ios", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios_new": { + "name": "arrow_back_ios_new", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_downward": { + "name": "arrow_downward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down": { + "name": "arrow_drop_down", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down_circle": { + "name": "arrow_drop_down_circle", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_up": { + "name": "arrow_drop_up", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward": { + "name": "arrow_forward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward_ios": { + "name": "arrow_forward_ios", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_left": { + "name": "arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right": { + "name": "arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_upward": { + "name": "arrow_upward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_direction": { + "name": "assistant_direction", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "campaign": { + "name": "campaign", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel": { + "name": "cancel", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check": { + "name": "check", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_left": { + "name": "chevron_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_right": { + "name": "chevron_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close": { + "name": "close", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "double_arrow": { + "name": "double_arrow", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "east": { + "name": "east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_less": { + "name": "expand_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_more": { + "name": "expand_more", + "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": "" + } + } + }, + "fullscreen_exit": { + "name": "fullscreen_exit", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_work": { + "name": "home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "last_page": { + "name": "last_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "legend_toggle": { + "name": "legend_toggle", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_home_work": { + "name": "maps_home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu": { + "name": "menu", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_open": { + "name": "menu_open", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_horiz": { + "name": "more_horiz", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_vert": { + "name": "more_vert", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north": { + "name": "north", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_east": { + "name": "north_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_west": { + "name": "north_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_share": { + "name": "offline_share", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payments": { + "name": "payments", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pivot_table_chart": { + "name": "pivot_table_chart", + "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": "" + } + } + }, + "south_east": { + "name": "south_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_west": { + "name": "south_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_left": { + "name": "subdirectory_arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_right": { + "name": "subdirectory_arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_left": { + "name": "switch_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_right": { + "name": "switch_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_less": { + "name": "unfold_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_more": { + "name": "unfold_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waterfall_chart": { + "name": "waterfall_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "west": { + "name": "west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_tree": { + "name": "account_tree", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adb": { + "name": "adb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat": { + "name": "airline_seat_flat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat_angled": { + "name": "airline_seat_flat_angled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_individual_suite": { + "name": "airline_seat_individual_suite", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_extra": { + "name": "airline_seat_legroom_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_normal": { + "name": "airline_seat_legroom_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_reduced": { + "name": "airline_seat_legroom_reduced", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_extra": { + "name": "airline_seat_recline_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_normal": { + "name": "airline_seat_recline_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_audio": { + "name": "bluetooth_audio", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "confirmation_number": { + "name": "confirmation_number", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "directions_off": { + "name": "directions_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disc_full": { + "name": "disc_full", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb": { + "name": "do_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_alt": { + "name": "do_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_off": { + "name": "do_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_on": { + "name": "do_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb": { + "name": "do_not_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_alt": { + "name": "do_not_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_off": { + "name": "do_not_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on": { + "name": "do_not_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_eta": { + "name": "drive_eta", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "enhanced_encryption": { + "name": "enhanced_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_available": { + "name": "event_available", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_busy": { + "name": "event_busy", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_note": { + "name": "event_note", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_special": { + "name": "folder_special", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "imagesearch_roller": { + "name": "imagesearch_roller", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_tv": { + "name": "live_tv", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mms": { + "name": "mms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more": { + "name": "more", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_check": { + "name": "network_check", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_locked": { + "name": "network_locked", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption": { + "name": "no_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption_gmailerrorred": { + "name": "no_encryption_gmailerrorred", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ondemand_video": { + "name": "ondemand_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_video": { + "name": "personal_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_bluetooth_speaker": { + "name": "phone_bluetooth_speaker", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_callback": { + "name": "phone_callback", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_forwarded": { + "name": "phone_forwarded", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_in_talk": { + "name": "phone_in_talk", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_locked": { + "name": "phone_locked", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_missed": { + "name": "phone_missed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_paused": { + "name": "phone_paused", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power": { + "name": "power", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_off": { + "name": "power_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "priority_high": { + "name": "priority_high", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "running_with_errors": { + "name": "running_with_errors", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card": { + "name": "sd_card", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card_alert": { + "name": "sd_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_alert": { + "name": "sim_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms": { + "name": "sms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms_failed": { + "name": "sms_failed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "support_agent": { + "name": "support_agent", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sync": { + "name": "sync", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_disabled": { + "name": "sync_disabled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_problem": { + "name": "sync_problem", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update": { + "name": "system_update", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tap_and_play": { + "name": "tap_and_play", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "time_to_leave": { + "name": "time_to_leave", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv_off": { + "name": "tv_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vibration": { + "name": "vibration", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_chat": { + "name": "voice_chat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "vpn_lock": { + "name": "vpn_lock", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wc": { + "name": "wc", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi": { + "name": "wifi", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_off": { + "name": "wifi_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ac_unit": { + "name": "ac_unit", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airport_shuttle": { + "name": "airport_shuttle", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "all_inclusive": { + "name": "all_inclusive", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apartment": { + "name": "apartment", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "baby_changing_station": { + "name": "baby_changing_station", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "backpack": { + "name": "backpack", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "balcony": { + "name": "balcony", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "bathtub": { + "name": "bathtub", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "beach_access": { + "name": "beach_access", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bento": { + "name": "bento", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bungalow": { + "name": "bungalow", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "business_center": { + "name": "business_center", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cabin": { + "name": "cabin", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "carpenter": { + "name": "carpenter", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "casino": { + "name": "casino", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chalet": { + "name": "chalet", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "charging_station": { + "name": "charging_station", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "checkroom": { + "name": "checkroom", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "child_care": { + "name": "child_care", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "child_friendly": { + "name": "child_friendly", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "corporate_fare": { + "name": "corporate_fare", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cottage": { + "name": "cottage", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "countertops": { + "name": "countertops", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "crib": { + "name": "crib", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_step": { + "name": "do_not_step", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_touch": { + "name": "do_not_touch", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dry": { + "name": "dry", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "elevator": { + "name": "elevator", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "escalator": { + "name": "escalator", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "escalator_warning": { + "name": "escalator_warning", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "family_restroom": { + "name": "family_restroom", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fence": { + "name": "fence", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fire_extinguisher": { + "name": "fire_extinguisher", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fitness_center": { + "name": "fitness_center", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "food_bank": { + "name": "food_bank", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "foundation": { + "name": "foundation", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "free_breakfast": { + "name": "free_breakfast", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "gite": { + "name": "gite", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "golf_course": { + "name": "golf_course", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grass": { + "name": "grass", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "holiday_village": { + "name": "holiday_village", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "hot_tub": { + "name": "hot_tub", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "house": { + "name": "house", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "houseboat": { + "name": "houseboat", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "house_siding": { + "name": "house_siding", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "iron": { + "name": "iron", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "kitchen": { + "name": "kitchen", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "meeting_room": { + "name": "meeting_room", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "microwave": { + "name": "microwave", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "night_shelter": { + "name": "night_shelter", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_backpack": { + "name": "no_backpack", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_cell": { + "name": "no_cell", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_drinks": { + "name": "no_drinks", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_flash": { + "name": "no_flash", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_food": { + "name": "no_food", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_meeting_room": { + "name": "no_meeting_room", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_photography": { + "name": "no_photography", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_stroller": { + "name": "no_stroller", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "other_houses": { + "name": "other_houses", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pool": { + "name": "pool", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rice_bowl": { + "name": "rice_bowl", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "roofing": { + "name": "roofing", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room_preferences": { + "name": "room_preferences", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "room_service": { + "name": "room_service", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rv_hookup": { + "name": "rv_hookup", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smoke_free": { + "name": "smoke_free", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smoking_rooms": { + "name": "smoking_rooms", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "soap": { + "name": "soap", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "spa": { + "name": "spa", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_bar": { + "name": "sports_bar", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stairs": { + "name": "stairs", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "storefront": { + "name": "storefront", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "stroller": { + "name": "stroller", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tapas": { + "name": "tapas", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tty": { + "name": "tty", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "umbrella": { + "name": "umbrella", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "villa": { + "name": "villa", + "keywords": [ + "places" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "wash": { + "name": "wash", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "water_damage": { + "name": "water_damage", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wheelchair_pickup": { + "name": "wheelchair_pickup", + "keywords": [ + "places" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bathroom": { + "name": "bathroom", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bed": { + "name": "bed", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_baby": { + "name": "bedroom_baby", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_child": { + "name": "bedroom_child", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bedroom_parent": { + "name": "bedroom_parent", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "blender": { + "name": "blender", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_indoor": { + "name": "camera_indoor", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "camera_outdoor": { + "name": "camera_outdoor", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chair": { + "name": "chair", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chair_alt": { + "name": "chair_alt", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "coffee": { + "name": "coffee", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "coffee_maker": { + "name": "coffee_maker", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "dining": { + "name": "dining", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "doorbell": { + "name": "doorbell", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_back": { + "name": "door_back", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_front": { + "name": "door_front", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "door_sliding": { + "name": "door_sliding", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "feed": { + "name": "feed", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "flatware": { + "name": "flatware", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "garage": { + "name": "garage", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "light": { + "name": "light", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "living": { + "name": "living", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "manage_search": { + "name": "manage_search", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "podcasts": { + "name": "podcasts", + "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": "" + } + } + }, + "yard": { + "name": "yard", + "keywords": [ + "search" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "6_ft_apart": { + "name": "6_ft_apart", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_moderator": { + "name": "add_moderator", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_reaction": { + "name": "add_reaction", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "architecture": { + "name": "architecture", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "back_hand": { + "name": "back_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cake": { + "name": "cake", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "catching_pokemon": { + "name": "catching_pokemon", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "clean_hands": { + "name": "clean_hands", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "compost": { + "name": "compost", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "connect_without_contact": { + "name": "connect_without_contact", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "construction": { + "name": "construction", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "coronavirus": { + "name": "coronavirus", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cruelty_free": { + "name": "cruelty_free", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "deck": { + "name": "deck", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "domain": { + "name": "domain", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "downhill_skiing": { + "name": "downhill_skiing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "edit_notifications": { + "name": "edit_notifications", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "elderly": { + "name": "elderly", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_emotions": { + "name": "emoji_emotions", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_events": { + "name": "emoji_events", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_flags": { + "name": "emoji_flags", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_food_beverage": { + "name": "emoji_food_beverage", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_nature": { + "name": "emoji_nature", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_objects": { + "name": "emoji_objects", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_people": { + "name": "emoji_people", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_symbols": { + "name": "emoji_symbols", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "emoji_transportation": { + "name": "emoji_transportation", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "engineering": { + "name": "engineering", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "facebook": { + "name": "facebook", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "female": { + "name": "female", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "fireplace": { + "name": "fireplace", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "follow_the_signs": { + "name": "follow_the_signs", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "front_hand": { + "name": "front_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "group": { + "name": "group", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "groups": { + "name": "groups", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "group_add": { + "name": "group_add", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "group_off": { + "name": "group_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "health_and_safety": { + "name": "health_and_safety", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "hiking": { + "name": "hiking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "history_edu": { + "name": "history_edu", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ice_skating": { + "name": "ice_skating", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "ios_share": { + "name": "ios_share", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "kayaking": { + "name": "kayaking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "king_bed": { + "name": "king_bed", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "kitesurfing": { + "name": "kitesurfing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "location_city": { + "name": "location_city", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "luggage": { + "name": "luggage", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "male": { + "name": "male", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "masks": { + "name": "masks", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "military_tech": { + "name": "military_tech", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "mood": { + "name": "mood", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mood_bad": { + "name": "mood_bad", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "nights_stay": { + "name": "nights_stay", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "nordic_walking": { + "name": "nordic_walking", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications": { + "name": "notifications", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_active": { + "name": "notifications_active", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_none": { + "name": "notifications_none", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_off": { + "name": "notifications_off", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notifications_paused": { + "name": "notifications_paused", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "notification_add": { + "name": "notification_add", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "no_luggage": { + "name": "no_luggage", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "outdoor_grill": { + "name": "outdoor_grill", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "pages": { + "name": "pages", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "paragliding": { + "name": "paragliding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "party_mode": { + "name": "party_mode", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "people": { + "name": "people", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "people_alt": { + "name": "people_alt", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "people_outline": { + "name": "people_outline", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person": { + "name": "person", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_injury": { + "name": "personal_injury", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add": { + "name": "person_add", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_alt": { + "name": "person_add_alt", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_add_alt_1": { + "name": "person_add_alt_1", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_off": { + "name": "person_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_outline": { + "name": "person_outline", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "person_remove": { + "name": "person_remove", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "person_remove_alt_1": { + "name": "person_remove_alt_1", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "piano": { + "name": "piano", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "piano_off": { + "name": "piano_off", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "plus_one": { + "name": "plus_one", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "poll": { + "name": "poll", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "precision_manufacturing": { + "name": "precision_manufacturing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "psychology": { + "name": "psychology", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "public": { + "name": "public", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "public_off": { + "name": "public_off", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "real_estate_agent": { + "name": "real_estate_agent", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "recommend": { + "name": "recommend", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "recycling": { + "name": "recycling", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "reduce_capacity": { + "name": "reduce_capacity", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "remove_moderator": { + "name": "remove_moderator", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "safety_divider": { + "name": "safety_divider", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sanitizer": { + "name": "sanitizer", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "school": { + "name": "school", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "science": { + "name": "science", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "self_improvement": { + "name": "self_improvement", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_dissatisfied": { + "name": "sentiment_dissatisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_neutral": { + "name": "sentiment_neutral", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_satisfied": { + "name": "sentiment_satisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_very_dissatisfied": { + "name": "sentiment_very_dissatisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sentiment_very_satisfied": { + "name": "sentiment_very_satisfied", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "share": { + "name": "share", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sick": { + "name": "sick", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "single_bed": { + "name": "single_bed", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "skateboarding": { + "name": "skateboarding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sledding": { + "name": "sledding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snowboarding": { + "name": "snowboarding", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snowshoeing": { + "name": "snowshoeing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "social_distance": { + "name": "social_distance", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sports": { + "name": "sports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_baseball": { + "name": "sports_baseball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_basketball": { + "name": "sports_basketball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_cricket": { + "name": "sports_cricket", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_esports": { + "name": "sports_esports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_football": { + "name": "sports_football", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_golf": { + "name": "sports_golf", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_handball": { + "name": "sports_handball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_hockey": { + "name": "sports_hockey", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_kabaddi": { + "name": "sports_kabaddi", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_mma": { + "name": "sports_mma", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_motorsports": { + "name": "sports_motorsports", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_rugby": { + "name": "sports_rugby", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_soccer": { + "name": "sports_soccer", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_tennis": { + "name": "sports_tennis", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sports_volleyball": { + "name": "sports_volleyball", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "surfing": { + "name": "surfing", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_account": { + "name": "switch_account", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_down_alt": { + "name": "thumb_down_alt", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "thumb_up_alt": { + "name": "thumb_up_alt", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "transgender": { + "name": "transgender", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "travel_explore": { + "name": "travel_explore", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "water_drop": { + "name": "water_drop", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "waving_hand": { + "name": "waving_hand", + "keywords": [ + "social" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "whatshot": { + "name": "whatshot", + "keywords": [ + "social" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_box": { + "name": "check_box", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check_box_outline_blank": { + "name": "check_box_outline_blank", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "indeterminate_check_box": { + "name": "indeterminate_check_box", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio_button_checked": { + "name": "radio_button_checked", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "radio_button_unchecked": { + "name": "radio_button_unchecked", + "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": "" + } + } + }, + "star_border_purple500": { + "name": "star_border_purple500", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_half": { + "name": "star_half", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_outline": { + "name": "star_outline", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "star_purple500": { + "name": "star_purple500", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toggle_off": { + "name": "toggle_off", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toggle_on": { + "name": "toggle_on", + "keywords": [ + "toggle" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + } +} \ No newline at end of file diff --git a/sphinx_design/compiled/style.min.css b/sphinx_design/compiled/style.min.css index e0df024..704c42e 100644 --- a/sphinx_design/compiled/style.min.css +++ b/sphinx_design/compiled/style.min.css @@ -1 +1 @@ -.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-octicon{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: #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-black: black;--sd-color-white: white;--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-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} +.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-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: #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-black: black;--sd-color-white: white;--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-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} diff --git a/sphinx_design/icons.py b/sphinx_design/icons.py index 6a7c5b7..a4a0732 100644 --- a/sphinx_design/icons.py +++ b/sphinx_design/icons.py @@ -32,6 +32,8 @@ def setup_icons(app: Sphinx) -> None: 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( @@ -213,3 +215,97 @@ def visit_fontawesome_latex(self, node): if self.config.sd_fontawesome_latex: self.body.append(f"\\faicon{{{node['icon_name']}}}") raise nodes.SkipNode + + + +@lru_cache(1) +def get_material_icon_data(style: str) -> Dict[str, Any]: + """Load all octicon data.""" + content = resources.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], [] diff --git a/style/_icons.scss b/style/_icons.scss index 928412c..d1dca23 100644 --- a/style/_icons.scss +++ b/style/_icons.scss @@ -1,4 +1,5 @@ -.sd-octicon { +.sd-octicon, +.sd-material-icon { display: inline-block; fill: currentColor; vertical-align: middle; From 0b5150ef7db47f52371087689c80824aebccf12f Mon Sep 17 00:00:00 2001 From: 2bndy5 <2bndy5@gmail.com> Date: Fri, 12 Nov 2021 17:57:12 -0800 Subject: [PATCH 02/12] trying to make new tests --- .../snippet_post_icon-material-design.xml | 35 +++++++++++++++++++ .../snippet_pre_icon-material-design.xml | 35 +++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 tests/test_snippets/snippet_post_icon-material-design.xml create mode 100644 tests/test_snippets/snippet_pre_icon-material-design.xml diff --git a/tests/test_snippets/snippet_post_icon-material-design.xml b/tests/test_snippets/snippet_post_icon-material-design.xml new file mode 100644 index 0000000..7b0a08e --- /dev/null +++ b/tests/test_snippets/snippet_post_icon-material-design.xml @@ -0,0 +1,35 @@ + +
+ + Heading + <bullet_list bullet="-"> + <list_item> + <paragraph> + A coloured 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 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 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 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 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. diff --git a/tests/test_snippets/snippet_pre_icon-material-design.xml b/tests/test_snippets/snippet_pre_icon-material-design.xml new file mode 100644 index 0000000..7b0a08e --- /dev/null +++ b/tests/test_snippets/snippet_pre_icon-material-design.xml @@ -0,0 +1,35 @@ +<document source="index"> + <section ids="heading" names="heading"> + <title> + Heading + <bullet_list bullet="-"> + <list_item> + <paragraph> + A coloured 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 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 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 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 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. From 629b86805210d5f6c1b059997008b4052c295aba Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 13 Nov 2021 02:29:09 +0000 Subject: [PATCH 03/12] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- sphinx_design/compiled/material_outlined.json | 2 +- sphinx_design/compiled/material_regular.json | 2 +- sphinx_design/compiled/material_round.json | 2 +- sphinx_design/compiled/material_sharp.json | 2 +- sphinx_design/compiled/material_twotone.json | 2 +- sphinx_design/icons.py | 5 +++-- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/sphinx_design/compiled/material_outlined.json b/sphinx_design/compiled/material_outlined.json index 4199232..a86af66 100644 --- a/sphinx_design/compiled/material_outlined.json +++ b/sphinx_design/compiled/material_outlined.json @@ -22835,4 +22835,4 @@ } } } -} \ No newline at end of file +} diff --git a/sphinx_design/compiled/material_regular.json b/sphinx_design/compiled/material_regular.json index 0f2bf50..395336f 100644 --- a/sphinx_design/compiled/material_regular.json +++ b/sphinx_design/compiled/material_regular.json @@ -23083,4 +23083,4 @@ } } } -} \ No newline at end of file +} diff --git a/sphinx_design/compiled/material_round.json b/sphinx_design/compiled/material_round.json index 5266f48..ede63b3 100644 --- a/sphinx_design/compiled/material_round.json +++ b/sphinx_design/compiled/material_round.json @@ -22895,4 +22895,4 @@ } } } -} \ No newline at end of file +} diff --git a/sphinx_design/compiled/material_sharp.json b/sphinx_design/compiled/material_sharp.json index 0cfcafb..a89c27d 100644 --- a/sphinx_design/compiled/material_sharp.json +++ b/sphinx_design/compiled/material_sharp.json @@ -22895,4 +22895,4 @@ } } } -} \ No newline at end of file +} diff --git a/sphinx_design/compiled/material_twotone.json b/sphinx_design/compiled/material_twotone.json index a005ca4..778caa2 100644 --- a/sphinx_design/compiled/material_twotone.json +++ b/sphinx_design/compiled/material_twotone.json @@ -23351,4 +23351,4 @@ } } } -} \ No newline at end of file +} diff --git a/sphinx_design/icons.py b/sphinx_design/icons.py index a4a0732..3f40d94 100644 --- a/sphinx_design/icons.py +++ b/sphinx_design/icons.py @@ -217,7 +217,6 @@ def visit_fontawesome_latex(self, node): raise nodes.SkipNode - @lru_cache(1) def get_material_icon_data(style: str) -> Dict[str, Any]: """Load all octicon data.""" @@ -298,7 +297,9 @@ def run(self) -> Tuple[List[nodes.Node], List[nodes.system_message]]: classes = "" if len(values) < 3 else values[2] icon = icon.strip() try: - svg = get_material_icon(self.style, icon, height=height, classes=classes.split()) + 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}", From 29d27cdb96a5d30dd8ba3b0b224dfa8fc4816855 Mon Sep 17 00:00:00 2001 From: Brendan <2bndy5@gmail.com> Date: Sat, 13 Nov 2021 05:23:44 -0800 Subject: [PATCH 04/12] fix typo in docs --- docs/badges_buttons.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/badges_buttons.md b/docs/badges_buttons.md index e84d444..c4dc2f7 100644 --- a/docs/badges_buttons.md +++ b/docs/badges_buttons.md @@ -213,7 +213,7 @@ Material Design icons come as several flavors. Each flavor represents a differen - `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 [Materia Design Icons' showcase](https://fonts.google.com/icons) hosted by Google. +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 coloured icon: {material-regular}`settings;3em;sd-text-success`, some more text. - A coloured icon: {material-outlined}`settings;3em;sd-text-success`, some more text. From 4392e0c5539661742d343a34046b5b93a91398d4 Mon Sep 17 00:00:00 2001 From: 2bndy5 <2bndy5@gmail.com> Date: Wed, 1 Dec 2021 15:48:40 -0800 Subject: [PATCH 05/12] update from material icons repo update --- sphinx_design/compiled/material_outlined.json | 19576 ++++++++------- sphinx_design/compiled/material_regular.json | 19926 +++++++++------- sphinx_design/compiled/material_round.json | 19582 ++++++++------- sphinx_design/compiled/material_sharp.json | 19564 ++++++++------- sphinx_design/compiled/material_twotone.json | 19844 ++++++++------- 5 files changed, 57466 insertions(+), 41026 deletions(-) diff --git a/sphinx_design/compiled/material_outlined.json b/sphinx_design/compiled/material_outlined.json index a86af66..9547610 100644 --- a/sphinx_design/compiled/material_outlined.json +++ b/sphinx_design/compiled/material_outlined.json @@ -1,16937 +1,17489 @@ { - "3d_rotation": { - "name": "3d_rotation", + "view_comfy": { + "name": "view_comfy", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5v14h19V5H3zm17 4h-2.25V7H20v2zM9.25 11h2.25v2H9.25v-2zm-2 2H5v-2h2.25v2zm4.25-4H9.25V7h2.25v2zm2-2h2.25v2H13.5V7zm-2 8v2H9.25v-2h2.25zm2 0h2.25v2H13.5v-2zm0-2v-2h2.25v2H13.5zm4.25-2H20v2h-2.25v-2zM7.25 7v2H5V7h2.25zM5 15h2.25v2H5v-2zm12.75 2v-2H20v2h-2.25z\"></path>" } } }, - "accessibility": { - "name": "accessibility", + "crop_din": { + "name": "crop_din", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\"></path>" } } }, - "accessibility_new": { - "name": "accessibility_new", + "brightness_5": { + "name": "brightness_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-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>" } } }, - "accessible": { - "name": "accessible", + "broken_image": { + "name": "broken_image", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"12\" cy=\"4\" r=\"2\"></circle><path d=\"M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-9 7c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41l-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z\"></path>" } } }, - "accessible_forward": { - "name": "accessible_forward", + "crop_7_5": { + "name": "crop_7_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"18\" cy=\"4.54\" r=\"2\"></circle><path d=\"M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z\"></path>" } } }, - "account_balance": { - "name": "account_balance", + "brightness_1": { + "name": "brightness_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-6.74L16.71 6H6.29l5.21-2.74m0-2.26L2 6v2h19V6l-9.5-5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z\"></path>" } } }, - "account_balance_wallet": { - "name": "account_balance_wallet", + "13mp": { + "name": "13mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.37-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z\"></path><circle cx=\"16\" cy=\"12\" r=\"1.5\"></circle>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><path d=\"M16.5,10.5v-4c0-0.55-0.45-1-1-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5C16.05,11.5,16.5,11.05,16.5,10.5z\"></path><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path></g></g>" } } }, - "account_box": { - "name": "account_box", + "wb_iridescent": { + "name": "wb_iridescent", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v14H5V5h14m0-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 9c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6 10H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18zm-9.69-2h7.38c-.69-.56-2.38-1.12-3.69-1.12s-3.01.56-3.69 1.12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-10h2v3h-2zm9.46 4.01L19.04 3.6l-1.79 1.79 1.41 1.41zM11 20h2v3h-2zm6.24-1.29l1.79 1.8 1.42-1.42-1.8-1.79zM4.96 3.595l1.788 1.79L5.34 6.79 3.553 5.003zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z\"></path>" } } }, - "account_circle": { - "name": "account_circle", + "wb_sunny": { + "name": "wb_sunny", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33C4.62 15.49 4 13.82 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79zM1 10.5h3v2H1zM11 .55h2V3.5h-2zm8.04 2.495l1.408 1.407-1.79 1.79-1.407-1.408zm-1.8 15.115l1.79 1.8 1.41-1.41-1.8-1.79zM20 10.5h3v2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-1 4h2v2.95h-2zm-7.45-.96l1.41 1.41 1.79-1.8-1.41-1.41z\"></path>" } } }, - "addchart": { - "name": "addchart", + "23mp": { + "name": "23mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\"></path><path d=\"M17.5,10.5v-4c0-0.55-0.45-1-1-1H13V7h3v1h-2v1h2v1h-3v1.5h3.5C17.05,11.5,17.5,11.05,17.5,10.5z\"></path></g></g>" } } }, - "add_shopping_cart": { - "name": "add_shopping_cart", + "vrpano": { + "name": "vrpano", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21.01,4C20.45,4,17.4,5.5,12,5.5c-5.31,0-8.49-1.49-9.01-1.49C2.46,4.01,2,4.45,2,5.02V19c0,0.57,0.46,1,0.99,1 c0.57,0,3.55-1.5,9.01-1.5c5.42,0,8.44,1.5,9.01,1.5c0.53,0,0.99-0.43,0.99-1V5C22,4.43,21.54,4,21.01,4z M20,17.63 c-2.01-0.59-4.62-1.13-8-1.13c-3.39,0-5.99,0.54-8,1.13V6.38C6.58,7.11,9.32,7.5,12,7.5c3.38,0,5.99-0.54,8-1.13V17.63z\"></path><path d=\"M9.17,10.99l-3.69,4.42C7.48,15.15,9.66,15,12,15c2.3,0,4.52,0.15,6.51,0.4L14,10l-2.83,3.39L9.17,10.99z\"></path></g></g>" } } }, - "add_task": { - "name": "add_task", + "bedtime": { + "name": "bedtime", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10.28,2C10.18,2,10.09,2,10,2c-4.47,0-8,3.62-8,8c0,4.42,3.58,8,8,8c2.97,0,5.55-1.62,6.93-4.02 C10.92,13.78,7.26,7.24,10.28,2z M10,16.5c-3.59,0-6.5-2.92-6.5-6.5c0-2.87,1.87-5.31,4.45-6.17C7.41,6.09,7.73,8.49,8.9,10.6 c1.18,2.12,3.05,3.65,5.25,4.39C13,15.95,11.54,16.5,10,16.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M9.27,4.49c-1.63,7.54,3.75,12.41,7.66,13.8C15.54,19.38,13.81,20,12,20c-4.41,0-8-3.59-8-8C4,8.55,6.2,5.6,9.27,4.49 M11.99,2.01C6.4,2.01,2,6.54,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02c-7.51-0.25-12.09-8.43-8.32-14.97 C12.22,2.01,12.11,2.01,11.99,2.01L11.99,2.01z\"></path></g>" } } }, - "add_to_drive": { - "name": "add_to_drive", + "cases": { + "name": "cases", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.98,9L12.5,3h-5l4.59,7.92C13,9.77,14.39,9.01,15.98,9z\"></path><path d=\"M11.25,12.5H8.84L6.23,17h5.79C11.39,16.16,11,15.13,11,14C11,13.47,11.1,12.98,11.25,12.5z\"></path><polygon points=\"6.63,4.5 2,12.5 4.5,17 9.19,8.91\"></polygon><polygon points=\"16.75,13.25 16.75,11 15.25,11 15.25,13.25 13,13.25 13,14.75 15.25,14.75 15.25,17 15.5,17 16.75,17 16.75,14.75 19,14.75 19,13.25\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M19,11c0.17,0,0.33,0.01,0.49,0.02L15,3H9l5.68,9.84C15.77,11.71,17.3,11,19,11z\"></path><polygon points=\"8.15,4.52 2,15.5 5,21 11.33,10.03\"></polygon><path d=\"M13.2,15.5H9.9L6.73,21h7.81C13.58,19.94,13,18.54,13,17C13,16.48,13.07,15.98,13.2,15.5z\"></path><polygon points=\"20,16 20,13 18,13 18,16 15,16 15,18 18,18 18,21 19,21 20,21 20,18 23,18 23,16\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,9H1v11c0,1.11,0.89,2,2,2h17v-2H3V9z\"></path><path d=\"M18,5V3c0-1.1-0.9-2-2-2h-4c-1.1,0-2,0.9-2,2v2H5v11c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5H18z M12,3h4v2h-4V3z M21,16H7 V7h14V16z\"></path></g></g>" } } }, - "admin_panel_settings": { - "name": "admin_panel_settings", + "euro": { + "name": "euro", "keywords": [ - "action" + "image" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"13\" cy=\"11.88\" fill-rule=\"evenodd\" r=\".84\"></circle><path d=\"M13,13.38c-0.55,0-1.64,0.27-1.68,0.81c0.38,0.53,0.99,0.87,1.68,0.87 s1.31-0.35,1.68-0.87C14.64,13.64,13.55,13.38,13,13.38z\" fill-rule=\"evenodd\"></path><path d=\"M14,9.14V6.18L9,4L4,6.18v3.27c0,3.03,2.13,5.86,5,6.55 c0.35-0.08,0.7-0.2,1.02-0.35C10.76,16.47,11.81,17,13,17c2.21,0,4-1.79,4-4C17,11.14,15.72,9.59,14,9.14z M9,14.97 c-2.3-0.67-4-3-4-5.51V6.84l4-1.75l4,1.75V9c-2.21,0-4,1.79-4,4c0,0.65,0.17,1.25,0.44,1.79C9.29,14.85,9.15,14.92,9,14.97z M13,16c-1.66,0-3-1.34-3-3c0-1.66,1.34-3,3-3s3,1.34,3,3C16,14.66,14.66,16,13,16z\" fill-rule=\"evenodd\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><path d=\"M12,15c-1.63,0-3.06-0.79-3.98-2H12l1-2H7.1C7.04,10.68,7,10.34,7,10s0.04-0.68,0.1-1H12l1-2H8.02C8.94,5.79,10.37,5,12,5 c1.38,0,2.63,0.56,3.54,1.46l1.41-1.41C15.68,3.78,13.93,3,12,3C9.21,3,6.81,4.64,5.68,7H3L2,9h3.08C5.03,9.33,5,9.66,5,10 s0.03,0.67,0.08,1H3l-1,2h3.68c1.12,2.36,3.53,4,6.32,4c1.93,0,3.68-0.78,4.95-2.05l-1.41-1.41C14.63,14.44,13.38,15,12,15z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"17\" cy=\"15.5\" fill-rule=\"evenodd\" r=\"1.12\"></circle><path d=\"M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17 s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z\" fill-rule=\"evenodd\"></path><path d=\"M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82 c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17 c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51 C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C21,19.21,19.21,21,17,21z\" fill-rule=\"evenodd\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z\"></path></g>" } } }, - "ads_click": { - "name": "ads_click", + "straighten": { + "name": "straighten", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.09,18.5l-3.47-3.47L12.5,18L10,10l8,2.5l-2.97,1.11l3.47,3.47L17.09,18.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5 s2.92,6.5,6.5,6.5c0.15,0,0.3-0.01,0.45-0.02l0.46,1.46C10.61,17.98,10.31,18,10,18c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0 c4.42,0,8,3.58,8,8c0,0.31-0.02,0.61-0.05,0.91l-1.46-0.46c0.01-0.15,0.02-0.3,0.02-0.45C16.5,6.42,13.58,3.5,10,3.5 M10,6.5 c-1.93,0-3.5,1.57-3.5,3.5c0,1.76,1.31,3.23,3.01,3.47L10,15c0,0-0.01,0-0.01,0C7.23,15,5,12.76,5,10c0-2.76,2.24-5,5-5l0,0 c2.76,0,5,2.23,5,4.99c0,0,0,0.01,0,0.01l-1.53-0.49C13.23,7.81,11.76,6.5,10,6.5\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11.71,17.99C8.53,17.84,6,15.22,6,12c0-3.31,2.69-6,6-6c3.22,0,5.84,2.53,5.99,5.71l-2.1-0.63C15.48,9.31,13.89,8,12,8 c-2.21,0-4,1.79-4,4c0,1.89,1.31,3.48,3.08,3.89L11.71,17.99z M22,12c0,0.3-0.01,0.6-0.04,0.9l-1.97-0.59C20,12.21,20,12.1,20,12 c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8c0.1,0,0.21,0,0.31-0.01l0.59,1.97C12.6,21.99,12.3,22,12,22C6.48,22,2,17.52,2,12 C2,6.48,6.48,2,12,2S22,6.48,22,12z M18.23,16.26L22,15l-10-3l3,10l1.26-3.77l4.27,4.27l1.98-1.98L18.23,16.26z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z\"></path>" } } }, - "alarm": { - "name": "alarm", + "panorama_photosphere_select": { + "name": "panorama_photosphere_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21.95,8.15c-0.29-0.16-0.61-0.31-0.93-0.46C19.4,4.33,15.98,2,12,2C8.02,2,4.6,4.33,2.99,7.68 c-0.33,0.15-0.64,0.3-0.93,0.46C1.41,8.5,1,9.17,1,9.91v4.18c0,0.74,0.41,1.41,1.05,1.77c0.29,0.16,0.61,0.31,0.93,0.46 C4.6,19.67,8.02,22,12,22c3.98,0,7.4-2.33,9.01-5.68c0.33-0.15,0.64-0.3,0.93-0.46C22.59,15.5,23,14.83,23,14.09V9.91 C23,9.17,22.59,8.5,21.95,8.15z M12,4c2.37,0,4.49,1.04,5.95,2.68C16.17,6.25,14.15,6,12,6C9.85,6,7.83,6.25,6.05,6.68 C7.51,5.04,9.63,4,12,4z M12,20c-2.37,0-4.49-1.04-5.95-2.68C7.83,17.75,9.85,18,12,18s4.17-0.25,5.95-0.68 C16.49,18.96,14.37,20,12,20z\"></path></g></g>" } } }, - "alarm_add": { - "name": "alarm_add", + "leak_remove": { + "name": "leak_remove", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z\"></path>" } } }, - "alarm_off": { - "name": "alarm_off", + "animation": { + "name": "animation", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1L1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M15,2c-2.71,0-5.05,1.54-6.22,3.78c-1.28,0.67-2.34,1.72-3,3C3.54,9.95,2,12.29,2,15c0,3.87,3.13,7,7,7 c2.71,0,5.05-1.54,6.22-3.78c1.28-0.67,2.34-1.72,3-3C20.46,14.05,22,11.71,22,9C22,5.13,18.87,2,15,2z M9,20c-2.76,0-5-2.24-5-5 c0-1.12,0.37-2.16,1-3c0,3.87,3.13,7,7,7C11.16,19.63,10.12,20,9,20z M12,17c-2.76,0-5-2.24-5-5c0-1.12,0.37-2.16,1-3 c0,3.86,3.13,6.99,7,7C14.16,16.63,13.12,17,12,17z M16.7,13.7C16.17,13.89,15.6,14,15,14c-2.76,0-5-2.24-5-5 c0-0.6,0.11-1.17,0.3-1.7C10.83,7.11,11.4,7,12,7c2.76,0,5,2.24,5,5C17,12.6,16.89,13.17,16.7,13.7z M19,12c0-3.86-3.13-6.99-7-7 c0.84-0.63,1.87-1,3-1c2.76,0,5,2.24,5,5C20,10.12,19.63,11.16,19,12z\"></path></g></g>" } } }, - "alarm_on": { - "name": "alarm_on", + "timer_off": { + "name": "timer_off", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,5.5c3.03,0,5.5,2.47,5.5,5.5c0,0.71-0.14,1.38-0.38,2l1.13,1.13c0.47-0.94,0.75-2,0.75-3.13 c0-1.66-0.58-3.19-1.55-4.39l1.08-1.08l-1.06-1.06l-1.08,1.08C13.19,4.58,11.66,4,10,4C8.87,4,7.81,4.27,6.87,4.75L8,5.88 C8.62,5.64,9.29,5.5,10,5.5z\"></path><rect height=\"1.5\" width=\"5\" x=\"7.5\" y=\"1.5\"></rect><polygon points=\"9.25,7 9.25,7.13 10.75,8.63 10.75,7\"></polygon><path d=\"M1.87,3.99l2.66,2.66C3.57,7.84,3,9.35,3,11c0,3.87,3.13,7,7,7c1.65,0,3.16-0.57,4.35-1.52l1.66,1.66l1.06-1.06L2.93,2.93 L1.87,3.99z M13.28,15.4c-0.92,0.69-2.05,1.1-3.28,1.1c-3.03,0-5.5-2.47-5.5-5.5c0-1.23,0.41-2.36,1.1-3.28L13.28,15.4z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"6\" x=\"9\" y=\"1\"></rect><path d=\"M12,6c3.87,0,7,3.13,7,7c0,0.94-0.19,1.83-0.52,2.65l1.5,1.5C20.63,15.91,21,14.5,21,13c0-2.12-0.74-4.07-1.97-5.61 l1.42-1.42c-0.43-0.51-0.9-0.99-1.41-1.41l-1.42,1.42C16.07,4.74,14.12,4,12,4c-1.5,0-2.91,0.37-4.15,1.02l1.5,1.5 C10.17,6.19,11.06,6,12,6z\"></path><polygon points=\"11,8.17 13,10.17 13,8 11,8\"></polygon><path d=\"M2.81,2.81L1.39,4.22l3.4,3.4C3.67,9.12,3,10.98,3,13c0,4.97,4.02,9,9,9c2.02,0,3.88-0.67,5.38-1.79l2.4,2.4l1.41-1.41 L2.81,2.81z M12,20c-3.87,0-7-3.13-7-7c0-1.47,0.45-2.83,1.22-3.95l9.73,9.73C14.83,19.55,13.47,20,12,20z\"></path></g></g>" } } }, - "all_inbox": { - "name": "all_inbox", + "currency_pound": { + "name": "currency_pound", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M9.75,4c1.23,0,2.27,0.81,2.62,1.93l1.39-0.59C13.18,3.69,11.6,2.5,9.75,2.5C7.4,2.5,5.5,4.4,5.5,6.75 c0,1.44,0.67,2.33,1.23,3.25L5.5,10v1.5l1.91,0c0.06,0.25,0.09,0.51,0.09,0.8c0,2.2-2,3.2-2,3.2V17H12c1.44,0,2.6-1.01,2.92-2.3 l-1.42-0.6c-0.05,0.78-0.7,1.4-1.5,1.4l-4.18,0C8.47,14.72,9,13.65,9,12.3c0-0.28-0.02-0.55-0.06-0.8l3.06,0V10l-3.55,0 C7.79,8.65,7,8.02,7,6.75C7,5.23,8.23,4,9.75,4z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-2 7h-3v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-4zM5 17h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14,21c1.93,0,3.62-1.17,4-3l-1.75-0.88C16,18.21,15.33,19,14,19l-4.9,0c0.83-1,1.5-2.34,1.5-4c0-0.35-0.03-0.69-0.08-1 L14,14v-2l-4.18,0C9,10.42,8,9.6,8,8c0-1.93,1.57-3.5,3.5-3.5c1.5,0,2.79,0.95,3.28,2.28L16.63,6c-0.8-2.05-2.79-3.5-5.13-3.5 C8.46,2.5,6,4.96,6,8c0,1.78,0.79,2.9,1.49,4L6,12v2l2.47,0c0.08,0.31,0.13,0.64,0.13,1c0,2.7-2.6,4-2.6,4v2H14z\"></path></g>" } } }, - "all_out": { - "name": "all_out", + "20mp": { + "name": "20mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M14,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H14c-0.55,0-1,0.45-1,1v4C13,11.05,13.45,11.5,14,11.5z M14.5,7H16v3 h-1.5V7z\"></path><path d=\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\"></path></g></g>" } } }, - "analytics": { - "name": "analytics", + "filter_9": { + "name": "filter_9", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><rect height=\"5\" width=\"2\" x=\"7\" y=\"12\"></rect><rect height=\"10\" width=\"2\" x=\"15\" y=\"7\"></rect><rect height=\"3\" width=\"2\" x=\"11\" y=\"14\"></rect><rect height=\"2\" width=\"2\" x=\"11\" y=\"10\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z\"></path>" } } }, - "anchor": { - "name": "anchor", + "brightness_3": { + "name": "brightness_3", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.7 4.91C15.25 6.24 17 8.92 17 12s-1.75 5.76-4.3 7.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z\"></path>" } } }, - "android": { - "name": "android", + "filter_hdr": { + "name": "filter_hdr", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g></g><g><path d=\"M14.36,8.14l1.57-2.72c0.14-0.24,0.06-0.54-0.18-0.68c-0.24-0.14-0.54-0.06-0.68,0.18l-1.6,2.78C12.4,7.25,11.23,7,10,7 S7.6,7.25,6.54,7.7l-1.6-2.78C4.8,4.68,4.49,4.6,4.25,4.74C4.01,4.87,3.93,5.18,4.07,5.42l1.57,2.72C3.15,9.52,1.39,12.04,1.06,15 h17.88C18.61,12.04,16.85,9.52,14.36,8.14z M6,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,13,6,13z M14,13 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S14.55,13,14,13z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z\"></path>" } } }, - "announcement": { - "name": "announcement", + "14mp": { + "name": "14mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><polygon points=\"15,11.5 16.5,11.5 16.5,10 17.5,10 17.5,8.5 16.5,8.5 16.5,5.5 15,5.5 15,8.5 13.5,8.5 13.5,5.5 12,5.5 12,10 15,10\"></polygon></g></g>" } } }, - "api": { - "name": "api", + "lens": { + "name": "lens", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z\"></path>" } } }, - "app_blocking": { - "name": "app_blocking", + "auto_fix_high": { + "name": "auto_fix_high", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z\"></path><path d=\"M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><polygon points=\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\"></polygon><polygon points=\"8.5,7 9.44,4.94 11.5,4 9.44,3.06 8.5,1 7.56,3.06 5.5,4 7.56,4.94\"></polygon><polygon points=\"20,12.5 19.06,14.56 17,15.5 19.06,16.44 20,18.5 20.94,16.44 23,15.5 20.94,14.56\"></polygon><path d=\"M17.71,9.12l-2.83-2.83C14.68,6.1,14.43,6,14.17,6c-0.26,0-0.51,0.1-0.71,0.29L2.29,17.46c-0.39,0.39-0.39,1.02,0,1.41 l2.83,2.83C5.32,21.9,5.57,22,5.83,22s0.51-0.1,0.71-0.29l11.17-11.17C18.1,10.15,18.1,9.51,17.71,9.12z M14.17,8.42l1.41,1.41 L14.41,11L13,9.59L14.17,8.42z M5.83,19.59l-1.41-1.41L11.59,11L13,12.41L5.83,19.59z\"></path></g></g>" } } }, - "arrow_circle_down": { - "name": "arrow_circle_down", + "10mp": { + "name": "10mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S13.31,16,10,16 M10,17c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7 c-3.87,0-7,3.13-7,7C3,13.87,6.13,17,10,17L10,17z M10.5,10V7h-1v3H7l3,3l3-3H10.5z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M13,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H13c-0.55,0-1,0.45-1,1v4C12,11.05,12.45,11.5,13,11.5z M13.5,7H15 v3h-1.5V7z\"></path></g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path></g><g><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon></g><g><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path></g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path></g></g></g>" } } }, - "arrow_circle_up": { - "name": "arrow_circle_up", + "iso": { + "name": "iso", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7 c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3L10,3z M9.5,10v3h1v-3H13l-3-3l-3,3H9.5z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z\"></path>" } } }, - "arrow_right_alt": { - "name": "arrow_right_alt", + "photo_camera": { + "name": "photo_camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.12 4l1.83 2H20v12H4V6h4.05l1.83-2h4.24M15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2zm-3 7c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5z\"></path>" } } }, - "article": { - "name": "article", + "motion_photos_on": { + "name": "motion_photos_on", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z\"></path></g><path d=\"M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z\"></path>" } } }, - "aspect_ratio": { - "name": "aspect_ratio", + "bedtime_off": { + "name": "bedtime_off", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M7.95,3.83C7.81,4.41,7.73,5,7.71,5.59l1.59,1.59C9.04,5.48,9.31,3.68,10.28,2C10.18,2,10.09,2,10,2 C8.32,2,6.77,2.51,5.5,3.38l1.1,1.1C7.03,4.22,7.47,3.99,7.95,3.83z\"></path><path d=\"M2.93,2.93L1.87,3.99L3.38,5.5C2.51,6.79,2,8.34,2,10c0,4.42,3.58,8,8,8c1.67,0,3.2-0.52,4.48-1.39l1.53,1.53l1.06-1.06 L2.93,2.93z M10,16.5c-3.59,0-6.5-2.92-6.5-6.5c0-1.25,0.37-2.4,0.98-3.39l8.92,8.92C12.39,16.14,11.22,16.5,10,16.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M9.27,4.49C9.14,5.08,9.07,5.64,9.03,6.2l2.05,2.05c-0.27-2.05,0.1-4.22,1.26-6.23c-0.12,0-0.23-0.01-0.35-0.01 c-2.05,0-3.93,0.61-5.5,1.65l1.46,1.46C8.37,4.88,8.81,4.66,9.27,4.49z\"></path><path d=\"M1.39,4.22l2.27,2.27C2.61,8.07,2,9.97,2,12c0,5.52,4.48,10,10,10c2.04,0,3.92-0.63,5.5-1.67l2.28,2.28l1.41-1.41 L2.81,2.81L1.39,4.22z M5.13,7.96l10.92,10.92C14.84,19.6,13.45,20,12,20c-4.41,0-8-3.59-8-8C4,10.52,4.42,9.15,5.13,7.96z\"></path></g></g>" } } }, - "assessment": { - "name": "assessment", + "image": { + "name": "image", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z\"></path>" } } }, - "assignment": { - "name": "assignment", + "21mp": { + "name": "21mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 15h7v2H7zm0-4h10v2H7zm0-4h10v2H7zm12-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"14.5,11.5 16,11.5 16,5.5 13,5.5 13,7 14.5,7\"></polygon><path d=\"M12,10H9V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H7.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H12V10z\"></path><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M15,17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5v6H15V17z M15,14h1.5v1.5H15V14z\"></path></g></g>" } } }, - "assignment_ind": { - "name": "assignment_ind", + "assistant_photo": { + "name": "assistant_photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.22 0 .41.1.55.25.12.13.2.31.2.5 0 .41-.34.75-.75.75s-.75-.34-.75-.75c0-.19.08-.37.2-.5.14-.15.33-.25.55-.25zM19 19H5V5h14v14zM12 6c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-6 6.47V18h12v-1.53c0-2.5-3.97-3.58-6-3.58s-6 1.07-6 3.58zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.36 6l.08.39.32 1.61H18v6h-3.36l-.08-.39-.32-1.61H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z\"></path>" } } }, - "assignment_late": { - "name": "assignment_late", + "hdr_off": { + "name": "hdr_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 15h2v2h-2zm0-8h2v6h-2zm8-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49L1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z\"></path>" } } }, - "assignment_return": { - "name": "assignment_return", + "3mp": { + "name": "3mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 14h4v-4h-4V7l-5 5 5 5zm7-11h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M14.5,10.5v-4c0-0.55-0.45-1-1-1H10V7h3v1h-2v1h2v1h-3v1.5h3.5C14.05,11.5,14.5,11.05,14.5,10.5z\"></path></g></g>" } } }, - "assignment_returned": { - "name": "assignment_returned", + "filter_8": { + "name": "filter_8", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 12h-3V8h-4v4H7l5 5zm2-9h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z\"></path>" } } }, - "assignment_turned_in": { - "name": "assignment_turned_in", + "filter_center_focus": { + "name": "filter_center_focus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 9l-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\"></path>" } } }, - "autorenew": { - "name": "autorenew", + "burst_mode": { + "name": "burst_mode", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H11V7h10v10zm-3.57-4.38l-2 2.57L14 13.47l-2 2.52h8z\"></path>" } } }, - "backup": { - "name": "backup", + "6mp": { + "name": "6mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,11.5h2.5c0.55,0,1-0.45,1-1V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H11c-0.55,0-1,0.45-1,1v4C10,11.05,10.45,11.5,11,11.5z M11.5,9H13v1.5h-1.5V9z\"></path></g></g>" } } }, - "backup_table": { - "name": "backup_table", + "adjust": { + "name": "adjust", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M16,6v10H6v1h10c0.55,0,1-0.45,1-1V6H16z\"></path></g><g><path d=\"M14,13V4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v9c0,0.55,0.45,1,1,1h9C13.55,14,14,13.55,14,13z M4,4h9v4H4V4z M8,13H4 V9h4V13z M9,9h4v4H9V9z\"></path></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z\"></path><path d=\"M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z\"></path>" } } }, - "batch_prediction": { - "name": "batch_prediction", + "hevc": { + "name": "hevc", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14,7H6C5.45,7,5,7.45,5,8v8c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V8C15,7.45,14.55,7,14,7z M10.75,16h-1.5v-1h1.5V16z M10.75,14c0,0-1.15,0-1.5,0c0-1-1.75-2-1.75-3.5C7.5,9.12,8.62,8,10,8c0,0,0,0,0,0c1.38,0,2.5,1.12,2.5,2.5 C12.5,12,10.75,13,10.75,14z M14,6H6v0c0-0.55,0.45-1,1-1h6C13.55,5,14,5.45,14,6L14,6z M13,4H7v0c0-0.55,0.45-1,1-1h4 C12.55,3,13,3.45,13,4L13,4z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"5.5,11 4.5,11 4.5,9 3,9 3,15 4.5,15 4.5,12.5 5.5,12.5 5.5,15 7,15 7,9 5.5,9\"></polygon><path d=\"M21,11v-1c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-1h-1.5v0.5h-1v-3h1V11H21z\"></path><polygon points=\"14.25,13.5 13.5,9 12,9 13,15 15.5,15 16.5,9 15,9\"></polygon><polygon points=\"8,9 8,15 11.5,15 11.5,13.5 9.5,13.5 9.5,12.5 11.5,12.5 11.5,11 9.5,11 9.5,10.5 11.5,10.5 11.5,9\"></polygon></g></g>" } } }, - "book": { - "name": "book", + "camera_roll": { + "name": "camera_roll", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm6 13h-8v2H4V5h3V3h2v2h3v2h8v11zM9 15h2v2H9zm0-7h2v2H9zm4 7h2v2h-2zm0-7h2v2h-2zm4 7h2v2h-2zm0-7h2v2h-2z\"></path>" } } }, - "bookmark": { - "name": "bookmark", + "switch_video": { + "name": "switch_video", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zM16 17H4V7h12v10z\"></path>" } } }, - "bookmarks": { - "name": "bookmarks", + "camera": { + "name": "camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 7v12.97l-4.21-1.81-.79-.34-.79.34L5 19.97V7h10m4-6H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.25 2.26l-.08-.04-.01.02C13.46 2.09 12.74 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-4.75-3.31-8.72-7.75-9.74zM19.41 9h-7.99l2.71-4.7c2.4.66 4.35 2.42 5.28 4.7zM13.1 4.08L10.27 9l-1.15 2L6.4 6.3C7.84 4.88 9.82 4 12 4c.37 0 .74.03 1.1.08zM5.7 7.09L8.54 12l1.15 2H4.26C4.1 13.36 4 12.69 4 12c0-1.85.64-3.55 1.7-4.91zM4.59 15h7.98l-2.71 4.7c-2.4-.67-4.34-2.42-5.27-4.7zm6.31 4.91L14.89 13l2.72 4.7C16.16 19.12 14.18 20 12 20c-.38 0-.74-.04-1.1-.09zm7.4-3l-4-6.91h5.43c.17.64.27 1.31.27 2 0 1.85-.64 3.55-1.7 4.91z\"></path>" } } }, - "bookmark_add": { - "name": "bookmark_add", + "video_stable": { + "name": "video_stable", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13.5,9v5.78l-3.5-1.4l-3.5,1.4V4.5H11V3H6.5C5.67,3,5,3.67,5,4.5V17l5-2l5,2V9H13.5z M15.75,4.25v-1.5h-1.5v1.5h-1.5v1.5 h1.5v1.5h1.5v-1.5h1.5v-1.5H15.75z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,11v6.97l-5-2.14l-5,2.14V5h6V3H7C5.9,3,5,3.9,5,5v16l7-3l7,3V11H17z M21,7h-2v2h-2V7h-2V5h2V3h2v2h2V7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,18V6h2.95l-2.33,8.73L16.82,18H4 z M15.62,15.61l-8.55-2.29l1.31-4.92l8.56,2.29L15.62,15.61z M20,18h-2.95l2.34-8.73L7.18,6H20V18z\"></path></g>" } } }, - "bookmark_added": { - "name": "bookmark_added", + "filter_frames": { + "name": "filter_frames", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,11v6.97l-5-2.14l-5,2.14V5h6V3H7C5.9,3,5,3.9,5,5v16l7-3l7,3V11H17z M17.83,9L15,6.17l1.41-1.41l1.41,1.41l3.54-3.54 l1.41,1.41L17.83,9z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM6 18h12V8H6v10zm2-8h8v6H8v-6z\"></path>" } } }, - "bookmark_border": { - "name": "bookmark_border", + "dirty_lens": { + "name": "dirty_lens", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19h-7.02 c-0.22-0.84-0.52-1.76-0.13-2.33c0.81-1.12,2.67,1.77,3.81-0.09c0.77-1.57-1.58-1.29-1.64-2.12c-0.05-0.84,3.68,0.17,3.04-1.66 c-0.61-1.73-2.42,0.48-2.76-0.53c-0.58-1.74,4.7-1.68,2.85-4.01c-1.76-2.22-2.47,2.85-4.41,2.33c-1.34-0.36-1.01-2.88-2.65-2.44 c-1.88,0.51,1.03,2.2,0,2.86c-0.96,0.63-1.72-0.92-2.51-1.19c-0.2-0.07-0.69-0.05-0.91,0.19c-0.78,0.86,0.28,1.16,0.25,1.91 c-0.02,0.75-1.59,0.49-1.51,1.49c0.12,1.6,2.18,0.45,2.4,1.24c0.55,1.98-1.89,2.15-0.5,3.27c1.53,0.71,1.91-1.94,2.8-1.35 c0.58,0.38,0.3,1.45,0.16,2.43H4V7h4.05l1.83-2h4.24l1.83,2H20V19z\"></path><path d=\"M17.28,17.15c0,0.48,0.39,0.86,0.86,0.86c0.48,0,0.86-0.38,0.86-0.86s-0.39-0.86-0.86-0.86 C17.66,16.29,17.28,16.67,17.28,17.15z\"></path></g></g>" } } }, - "bookmark_remove": { - "name": "bookmark_remove", + "5mp": { + "name": "5mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13.5,9v5.78l-3.5-1.4l-3.5,1.4V4.5H11V3H6.5C5.67,3,5,3.67,5,4.5V17l5-2l5,2V9H13.5z M12.75,4.25v1.5h4.5v-1.5H12.75z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,11v6.97l-5-2.14l-5,2.14V5h6V3H7C5.9,3,5,3.9,5,5v16l7-3l7,3V11H17z M21,7h-6V5h6V7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M14.5,10.5V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H10V9h3v1h-3v1.5h3.5C14.05,11.5,14.5,11.05,14.5,10.5z\"></path></g></g>" } } }, - "book_online": { - "name": "book_online", + "exposure": { + "name": "exposure", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,4H7V3h10V4z M17,21H7v-1h10V21z M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1 L17,1z M7,6h10v12H7V6z M16,11V9.14C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 l0,1.76C8,15.49,8.45,16,9,16h6c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1.41 2L5 17.59V5h12.59zM6.41 19L19 6.41V19H6.41zM6 7h5v1.5H6zm10 5.5h-1.5v2h-2V16h2v2H16v-2h2v-1.5h-2z\"></path>" } } }, - "bug_report": { - "name": "bug_report", + "photo_camera_back": { + "name": "photo_camera_back", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-4 4v3c0 .22-.03.47-.07.7l-.1.65-.37.65c-.72 1.24-2.04 2-3.46 2s-2.74-.77-3.46-2l-.37-.64-.1-.65C8.03 15.48 8 15.23 8 15v-4c0-.23.03-.48.07-.7l.1-.65.37-.65c.3-.52.72-.97 1.21-1.31l.57-.39.74-.18c.31-.08.63-.12.94-.12.32 0 .63.04.95.12l.68.16.61.42c.5.34.91.78 1.21 1.31l.38.65.1.65c.04.22.07.47.07.69v1zm-6 2h4v2h-4zm0-4h4v2h-4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z\"></path><polygon points=\"11.25,16 9,13 6,17 18,17 14.25,12\"></polygon></g></g>" } } }, - "build": { - "name": "build", + "transform": { + "name": "transform", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22.61 18.99l-9.08-9.08c.93-2.34.45-5.1-1.44-7C9.79.61 6.21.4 3.66 2.26L7.5 6.11 6.08 7.52 2.25 3.69C.39 6.23.6 9.82 2.9 12.11c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.4-.38.4-1.01 0-1.41zm-3 1.6l-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25C3.37 9.76 2.93 8.5 3 7.26l3.09 3.09 4.24-4.24-3.09-3.09c1.24-.07 2.49.37 3.44 1.31 1.08 1.08 1.49 2.57 1.24 3.96-.12.71-.42 1.37-.88 1.96l9.45 9.45-.88.89z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z\"></path>" } } }, - "build_circle": { - "name": "build_circle", + "color_lens": { + "name": "color_lens", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6 S13.31,16,10,16z\"></path><path d=\"M10.75,7.21C9.98,6.44,8.83,6.3,7.91,6.78l1.63,1.63L8.51,9.44L6.88,7.81C6.4,8.73,6.54,9.88,7.31,10.65 c0.66,0.66,1.61,0.85,2.45,0.59l2.26,2.26l1.38-1.38l-2.17-2.17C11.64,9.05,11.49,7.95,10.75,7.21z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8s8,3.59,8,8C20,16.41,16.41,20,12,20z\" fill-rule=\"evenodd\"></path><path d=\"M13.49,11.38c0.43-1.22,0.17-2.64-0.81-3.62c-1.11-1.11-2.79-1.3-4.1-0.59 l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32-0.52,2.99,0.59,4.1c0.98,0.98,2.4,1.24,3.62,0.81l3.41,3.41c0.2,0.2,0.51,0.2,0.71,0 l1.4-1.4c0.2-0.2,0.2-0.51,0-0.71L13.49,11.38z\" fill-rule=\"evenodd\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z\"></path><circle cx=\"6.5\" cy=\"11.5\" r=\"1.5\"></circle><circle cx=\"9.5\" cy=\"7.5\" r=\"1.5\"></circle><circle cx=\"14.5\" cy=\"7.5\" r=\"1.5\"></circle><circle cx=\"17.5\" cy=\"11.5\" r=\"1.5\"></circle>" } } }, - "cached": { - "name": "cached", + "16mp": { + "name": "16mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 8l-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M13,11.5h2.5c0.55,0,1-0.45,1-1V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H13c-0.55,0-1,0.45-1,1v4C12,11.05,12.45,11.5,13,11.5z M13.5,9H15v1.5h-1.5V9z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon></g></g>" } } }, - "calendar_today": { - "name": "calendar_today", + "currency_lira": { + "name": "currency_lira", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M8,7.32L5.5,8.89v1.77L8,9.09v1.77l-2.5,1.57v1.77L8,12.63V17h1.5c3.04,0,5.5-2.46,5.5-5.5h-1.5c0,2.21-1.79,4-4,4v-3.81 l3-1.88V8.04l-3,1.88V8.15l3-1.88V4.5l-3,1.88V3H8V7.32z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V10h16v11zm0-13H4V5h16v3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M9,8.76V3h2v4.51L15,5v2.36l-4,2.51l0.01,2.35L15,9.72v2.36l-4,2.51V19c2.76,0,5-2.24,5-5h2c0,3.87-3.13,7-7,7H9v-5.16 l-3,1.88l0-2.36l3-1.88v-2.36L6,13l0-2.36L9,8.76z\"></path></g>" } } }, - "calendar_view_day": { - "name": "calendar_view_day", + "crop_16_9": { + "name": "crop_16_9", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z\"></path>" } } }, - "calendar_view_month": { - "name": "calendar_view_month", + "crop_original": { + "name": "crop_original", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M8,11H4V6h4V11z M14,11h-4V6h4V11z M20,11h-4V6h4V11z M8,18H4v-5h4V18z M14,18h-4v-5h4V18z M20,18h-4v-5h4V18z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z\"></path>" } } }, - "calendar_view_week": { - "name": "calendar_view_week", + "filter_4": { + "name": "filter_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M13,6h2.5v12H13V6z M11,18H8.5V6H11 V18z M4,6h2.5v12H4V6z M20,18h-2.5V6H20V18z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\"></path>" } } }, - "camera_enhance": { - "name": "camera_enhance", + "filter_vintage": { + "name": "filter_vintage", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 10l-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12zM12 8c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-.91-.52-1.95-.8-3.01-.8-1.02 0-2.05.26-2.99.8-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-.94-.54-1.97-.8-2.99-.8-1.05 0-2.1.28-3.01.8 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19.91.52 1.95.8 3.01.8 1.02 0 2.05-.26 2.99-.8.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54.94.54 1.97.8 2.99.8 1.05 0 2.1-.28 3.01-.8-.01-2.07-1.08-4.08-3-5.19zm-2.54-3.88c.21-.17.38-.29.54-.37.61-.35 1.3-.54 2-.54.27 0 .53.03.79.08-.31.91-.94 1.69-1.78 2.18-.17.1-.36.18-.58.27l-1.38.52c-.17-.46-.41-.87-.72-1.24l1.13-.9zM12 3.37c.63.72 1 1.66 1 2.63 0 .19-.02.41-.05.63l-.23 1.44C12.48 8.03 12.24 8 12 8s-.48.03-.71.07l-.23-1.44C11.02 6.41 11 6.19 11 6c0-.98.37-1.91 1-2.63zM4.51 7.68c.26-.06.53-.08.8-.08.69 0 1.38.18 1.99.54.15.09.32.2.49.35l1.15.96c-.3.36-.53.76-.7 1.2l-1.38-.52c-.21-.09-.4-.18-.56-.27-.87-.5-1.49-1.27-1.79-2.18zm3.33 7.79c-.21.17-.38.29-.54.37-.61.35-1.3.54-2 .54-.27 0-.53-.03-.79-.08.31-.91.94-1.69 1.78-2.18.17-.1.36-.18.58-.27l1.38-.52c.16.46.41.88.72 1.24l-1.13.9zM12 20.63c-.63-.72-1-1.66-1-2.63 0-.2.02-.41.06-.65l.22-1.42c.23.04.47.07.72.07.24 0 .48-.03.71-.07l.23 1.44c.04.22.06.44.06.63 0 .98-.37 1.91-1 2.63zm6.69-4.24c-.69 0-1.38-.18-1.99-.54-.18-.1-.34-.22-.49-.34l-1.15-.96c.3-.36.54-.76.7-1.21l1.38.52c.22.08.41.17.57.26.85.49 1.47 1.27 1.78 2.18-.27.07-.54.09-.8.09z\"></path>" } } }, - "cancel_schedule_send": { - "name": "cancel_schedule_send", + "nature_people": { + "name": "nature_people", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><polygon points=\"15.41,11.88 14,13.29 12.59,11.88 11.88,12.59 13.29,14 11.88,15.41 12.59,16.12 14,14.71 15.41,16.12 16.12,15.41 14.71,14 16.12,12.59\"></polygon><g><path d=\"M1.5,11.94l8-1.09c-0.14,0.2-0.27,0.41-0.38,0.63l0.29-0.61L1.5,11.94v4.3l7.06-3.09l0.05-0.25 c0.02-0.08,0.03-0.16,0.05-0.23C8.56,13.09,8.5,13.54,8.5,14v-0.76l-0.7,0.24l-6.3,2.76V11.94z M19.5,14c0-3.03-2.47-5.5-5.5-5.5 C17.03,8.5,19.5,10.97,19.5,14z M10.9,9.35L1.5,8.06v-4.3v4.3l9.54,1.3c-0.29,0.18-0.55,0.39-0.8,0.62L10.9,9.35z M12.54,8.59 l-5.1-2.23l5.25,2.3l0.03-0.01c-0.32,0.08-0.64,0.18-0.93,0.32L12.54,8.59z\"></path><path d=\"M1,3v5.5l8.82,1.2c-0.22,0.21-0.41,0.44-0.59,0.68L1,11.5V17l7-3.06c0,0.02,0,0.04,0,0.06c0,3.31,2.69,6,6,6s6-2.69,6-6 s-2.69-6-6-6c-0.43,0-0.85,0.05-1.26,0.14L1,3L1,3z M10.94,8.85L2,7.63v-3.1l9.35,4.09C11.21,8.69,11.07,8.77,10.94,8.85 L10.94,8.85z M14,19c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S16.76,19,14,19L14,19z M2,15.47v-3.1l6.56-0.89 c-0.19,0.42-0.35,0.85-0.44,1.31L2,15.47L2,15.47z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l10.06,1.34c-0.42,0.44-0.78,0.93-1.09,1.46L1,14l0.01,7l8.07-3.46 C9.59,21.19,12.71,24,16.5,24c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M3,8.25l0.01-2.22l7.51,3.22L3,8.25z M9.1,15.36L3,17.97 v-2.22l6.17-0.82C9.14,15.07,9.12,15.21,9.1,15.36z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5 S19.53,22,16.5,22z\"></path><polygon points=\"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"4.5\" cy=\"9.5\" r=\"1.5\"></circle><path d=\"M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\"></path>" } } }, - "card_giftcard": { - "name": "card_giftcard", + "navigate_before": { + "name": "navigate_before", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.61 7.41L14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z\"></path>" } } }, - "card_membership": { - "name": "card_membership", + "add_photo_alternate": { + "name": "add_photo_alternate", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 20H4V6h9V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2v9zm-7.79-3.17l-1.96-2.36L5.5 18h11l-3.54-4.71zM20 4V1h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V6h3V4h-3z\"></path>" } } }, - "card_travel": { - "name": "card_travel", + "12mp": { + "name": "12mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><path d=\"M16.5,10h-3V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H12V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5h4.5V10z\"></path></g></g>" } } }, - "change_history": { - "name": "change_history", + "filter_drama": { + "name": "filter_drama", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z\"></path>" } } }, - "check_circle": { - "name": "check_circle", + "brightness_2": { + "name": "brightness_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07C10.9 17.77 12 14.95 12 12s-1.1-5.77-3.01-7.93C9.32 4.02 9.66 4 10 4m0-2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z\"></path>" } } }, - "check_circle_outline": { - "name": "check_circle_outline", + "video_camera_back": { + "name": "video_camera_back", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M16,18 H4V6h12V18z M11.62,11.5L9,15l-1.62-2.17L5,16h10L11.62,11.5z\"></path></g>" } } }, - "chrome_reader_mode": { - "name": "chrome_reader_mode", + "add_a_photo": { + "name": "add_a_photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM3 19V6h8v13H3zm18 0h-8V6h8v13zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21 6h-3.17L16 4h-6v2h5.12l1.83 2H21v12H5v-9H3v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 6h3V4H5V1H3v3H0v2h3v3h2z\"></path>" } } }, - "circle_notifications": { - "name": "circle_notifications", + "nature": { + "name": "nature", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,18.5c0.83,0,1.5-0.67,1.5-1.5h-3C10.5,17.83,11.17,18.5,12,18.5z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10 c5.52,0,10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8c4.41,0,8,3.59,8,8S16.41,20,12,20z M16,11.39 c0-2.11-1.03-3.92-3-4.39V6.5c0-0.57-0.43-1-1-1s-1,0.43-1,1V7c-1.97,0.47-3,2.27-3,4.39V14H7v2h10v-2h-1V11.39z M14,14h-4v-3 c0-1.1,0.9-2,2-2s2,0.9,2,2V14z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 16.12h-.03c3.49-.4 6.2-3.36 6.2-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88zM7.17 9.17c0-2.76 2.24-5 5-5s5 2.24 5 5-2.24 5-5 5-5-2.24-5-5z\"></path>" } } }, - "class": { - "name": "class", + "image_not_supported": { + "name": "image_not_supported", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect><path d=\"M17.07,17.07L2.93,2.93L2.22,3.64L4,5.41V15c0,0.55,0.45,1,1,1h9.59l1.78,1.78L17.07,17.07z M5,15V6.41l5.41,5.41 l-1.05,1.32L8,11.33L6,14h6.59l1,1H5z M6.41,5l-1-1H15c0.55,0,1,0.45,1,1v9.59l-1-1V5H6.41z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.9,21.9l-6.1-6.1l-2.69-2.69l0,0L5,5l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31 L21.9,21.9z M5,19V7.83l6.84,6.84L11,15.72L9,13l-3,4h8.17l2,2H5z M7.83,5l-2-2H19c1.1,0,2,0.9,2,2v13.17l-2-2V5H7.83z\"></path></g>" } } }, - "close_fullscreen": { - "name": "close_fullscreen", + "currency_franc": { + "name": "currency_franc", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><polygon points=\"14.5,4.5 14.5,3 6,3 6,13 4.5,13 4.5,14.5 6,14.5 6,17 7.5,17 7.5,14.5 11,14.5 11,13 7.5,13 7.5,10.5 14,10.5 14,9 7.5,9 7.5,4.5\"></polygon></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><polygon points=\"18,5 18,3 7,3 7,16 5,16 5,18 7,18 7,21 9,21 9,18 13,18 13,16 9,16 9,13 17,13 17,11 9,11 9,5\"></polygon></g>" } } }, - "code": { - "name": "code", + "tune": { + "name": "tune", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z\"></path>" } } }, - "code_off": { - "name": "code_off", + "face_retouching_off": { + "name": "face_retouching_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,10l-2.94,2.94L14,11.88L15.88,10l-3.94-3.94L13,5L18,10z M16.01,18.13l1.06-1.06L2.93,2.93L1.87,3.99l3.07,3.07L2,10 l5,5l1.06-1.06L4.12,10L6,8.12L16.01,18.13z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.17,12l-4.58-4.59L16,6l6,6l-3.59,3.59L17,14.17L19.17,12z M1.39,4.22l4.19,4.19L2,12l6,6l1.41-1.41L4.83,12L7,9.83 l12.78,12.78l1.41-1.41L2.81,2.81L1.39,4.22z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"9\" cy=\"13\" r=\"1.25\"></circle><path d=\"M17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12c0,1.22-0.28,2.37-0.77,3.4l1.49,1.49 C21.53,15.44,22,13.78,22,12c0-5.52-4.48-10-10-10c-1.78,0-3.44,0.47-4.89,1.28l5.33,5.33C13.93,9.49,15.65,10,17.5,10z M10.66,4.12C11.09,4.05,11.54,4,12,4c2.9,0,5.44,1.56,6.84,3.88C18.41,7.95,17.96,8,17.5,8C14.6,8,12.06,6.44,10.66,4.12z\"></path><path d=\"M1.89,3.72l2.19,2.19C2.78,7.6,2,9.71,2,12c0,5.52,4.48,10,10,10c2.29,0,4.4-0.78,6.09-2.08l2.19,2.19l1.41-1.41 L3.31,2.31L1.89,3.72z M16.66,18.49C15.35,19.44,13.74,20,12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14 c1.39-0.52,2.63-1.35,3.64-2.39L16.66,18.49z M6.23,8.06C5.7,8.61,5.09,9.09,4.42,9.47C4.68,8.7,5.05,7.99,5.51,7.34L6.23,8.06z\"></path></g></g>" } } }, - "comment_bank": { - "name": "comment_bank", + "crop_3_2": { + "name": "crop_3_2", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"15,11 15,5 11,5 11,11 13,9.69\"></polygon><path d=\"M16,3H4C3.45,3,3,3.45,3,4v13l3-3h10c0.55,0,1-0.45,1-1V4C17,3.45,16.55,3,16,3z M16,13H5.59L4,14.59V4h12V13z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"18,14 18,6 13,6 13,14 15.5,12.5\"></polygon><path d=\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z\"></path>" } } }, - "commute": { - "name": "commute", + "mic_external_on": { + "name": "mic_external_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M9.22,7C9.7,6.47,10,5.77,10,5c0-1.66-1.34-3-3-3S4,3.34,4,5c0,0.77,0.3,1.47,0.78,2H9.22z\"></path><path d=\"M16,2c-2.21,0-4,1.79-4,4v12c0,1.1-0.9,2-2,2s-2-0.9-2-2h1l1-10H4l1,10h1c0,2.21,1.79,4,4,4s4-1.79,4-4V6c0-1.1,0.9-2,2-2 s2,0.9,2,2v16h2V6C20,3.79,18.21,2,16,2z M7.19,16H6.81l-0.6-6h1.58L7.19,16z\"></path></g></g>" } } }, - "compare_arrows": { - "name": "compare_arrows", + "panorama_photosphere": { + "name": "panorama_photosphere", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21.95,8.15c-0.29-0.16-0.61-0.31-0.93-0.46C19.4,4.33,15.98,2,12,2C8.02,2,4.6,4.33,2.99,7.68 c-0.33,0.15-0.64,0.3-0.93,0.46C1.41,8.5,1,9.17,1,9.91v4.18c0,0.74,0.41,1.41,1.05,1.77c0.29,0.16,0.61,0.31,0.93,0.46 C4.6,19.67,8.02,22,12,22c3.98,0,7.4-2.33,9.01-5.68c0.33-0.15,0.64-0.3,0.93-0.46C22.59,15.5,23,14.83,23,14.09V9.91 C23,9.17,22.59,8.5,21.95,8.15z M21,9.91C21,9.91,21,9.91,21,9.91l0,4.19C18.81,15.31,15.53,16,12,16c-3.53,0-6.81-0.7-9-1.91 c0,0,0,0,0,0l0-4.18C5.2,8.69,8.47,8,12,8C15.53,8,18.81,8.7,21,9.91z M12,4c2.37,0,4.49,1.04,5.95,2.68C16.17,6.25,14.15,6,12,6 C9.85,6,7.83,6.25,6.05,6.68C7.51,5.04,9.63,4,12,4z M12,20c-2.37,0-4.49-1.04-5.95-2.68C7.83,17.75,9.85,18,12,18 s4.17-0.25,5.95-0.68C16.49,18.96,14.37,20,12,20z\"></path></g></g>" } } }, - "compress": { - "name": "compress", + "currency_ruble": { + "name": "currency_ruble", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M11.25,3H6v7H4.5v1.5H6V13H4.5v1.5H6V17h1.5v-2.5H11V13H7.5v-1.5h3.75c2.35,0,4.25-1.9,4.25-4.25C15.5,4.9,13.6,3,11.25,3z M11.25,10H7.5V4.5h3.75C12.77,4.5,14,5.73,14,7.25S12.77,10,11.25,10z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M4,9v2h16V9H4z M16,4l-1.41-1.41L13,4.17V1h-2v3.19L9.39,2.61L8,4l4,4L16,4z M4,14h16v-2H4V14z M8,19l1.39,1.39L11,18.81 V22h2v-3.17l1.59,1.59L16,19l-4-4L8,19z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13.5,3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04,0,5.5-2.46,5.5-5.5C19,5.46,16.54,3,13.5,3z M13.5,12H9V5h4.5 C15.43,5,17,6.57,17,8.5S15.43,12,13.5,12z\"></path></g>" } } }, - "contactless": { - "name": "contactless", + "mp": { + "name": "mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S13.31,16,10,16z\"></path><path d=\"M6.72,8.71C6.9,9.11,6.99,9.53,7,9.98c0.01,0.44-0.09,0.88-0.28,1.31l0.91,0.41C7.88,11.14,8.01,10.56,8,9.97 C7.99,9.38,7.87,8.82,7.63,8.29L6.72,8.71z\"></path><path d=\"M11.17,6.72C11.72,7.83,12,8.93,12,9.99c0,1.06-0.28,2.17-0.83,3.3l0.9,0.44C12.69,12.46,13,11.2,13,9.99 c0-1.22-0.31-2.46-0.93-3.71L11.17,6.72z\"></path><path d=\"M8.94,7.69C9.31,8.44,9.5,9.25,9.5,10.08c0,0.83-0.19,1.57-0.55,2.22l0.87,0.49c0.45-0.8,0.68-1.71,0.68-2.71 c0-0.99-0.23-1.95-0.67-2.84L8.94,7.69z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\"></path><path d=\"M7.1,10.18c0.26,0.56,0.39,1.16,0.4,1.8c0.01,0.63-0.13,1.25-0.4,1.86l1.37,0.62c0.37-0.81,0.55-1.65,0.54-2.5 c-0.01-0.84-0.19-1.65-0.54-2.4L7.1,10.18z\"></path><path d=\"M13.33,7.33c0.78,1.57,1.18,3.14,1.18,4.64c0,1.51-0.4,3.09-1.18,4.69l1.35,0.66c0.88-1.81,1.33-3.61,1.33-5.35 c0-1.74-0.45-3.53-1.33-5.31L13.33,7.33z\"></path><path d=\"M10.2,8.72c0.53,1.07,0.8,2.21,0.8,3.4c0,1.17-0.26,2.23-0.78,3.15l1.3,0.74c0.65-1.15,0.98-2.45,0.98-3.89 c0-1.42-0.32-2.79-0.96-4.07L10.2,8.72z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17,9h-3.5v6H15v-1.5h2c0.55,0,1-0.45,1-1V10C18,9.45,17.55,9,17,9z M16.5,12H15v-1.5h1.5V12z\"></path><path d=\"M11.5,9H7c-0.55,0-1,0.45-1,1v5h1.5v-4.5h1v3H10v-3h1V15h1.5v-5C12.5,9.45,12.05,9,11.5,9z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5V19c0,1.1,0.9,2,2,2H19c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M5,19L5,5h14l0,14L5,19z\"></path></g></g>" } } }, - "contact_page": { - "name": "contact_page", + "auto_awesome_mosaic": { + "name": "auto_awesome_mosaic", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M12,14 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C10,13.1,10.9,14,12,14z M16,17.43c0-0.81-0.48-1.53-1.22-1.85 C13.93,15.21,12.99,15,12,15c-0.99,0-1.93,0.21-2.78,0.58C8.48,15.9,8,16.62,8,17.43V18h8V17.43z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,5v14c0,1.1,0.89,2,2,2h6V3H5C3.89,3,3,3.9,3,5z M9,19H5V5h4V19z\"></path><path d=\"M19,3h-6v8h8V5C21,3.9,20.1,3,19,3z M19,9h-4V5h4V9z\"></path><path d=\"M13,21h6c1.1,0,2-0.9,2-2v-6h-8V21z M15,15h4v4h-4V15z\"></path></g></g>" } } }, - "contact_support": { - "name": "contact_support", + "raw_off": { + "name": "raw_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 23.59v-3.6c-5.01-.26-9-4.42-9-9.49C2 5.26 6.26 1 11.5 1S21 5.26 21 10.5c0 4.95-3.44 9.93-8.57 12.4l-1.43.69zM11.5 3C7.36 3 4 6.36 4 10.5S7.36 18 11.5 18H13v2.3c3.64-2.3 6-6.08 6-9.8C19 6.36 15.64 3 11.5 3zm-1 11.5h2v2h-2zm2-1.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"17.15,14.32 17.74,11.96 18.5,15 19.98,15 21.48,9 19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 14.72,11.9\"></polygon><path d=\"M1.39,4.22L6.17,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-0.67l1.43,1.43L8.75,15h1.5l0.38-1.5h0.04 l9.11,9.11l1.41-1.41L2.81,2.81L1.39,4.22z M6.5,11.5h-2v-1h2V11.5z\"></path></g></g>" } } }, - "copyright": { - "name": "copyright", + "portrait": { + "name": "portrait", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.42zM8.48 16c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\"></path>" } } }, - "credit_card": { - "name": "credit_card", + "photo_size_select_small": { + "name": "photo_size_select_small", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z\"></path>" } } }, - "credit_card_off": { - "name": "credit_card_off", + "auto_fix_off": { + "name": "auto_fix_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.78,17.78L2.22,2.22L1.16,3.28L2.38,4.5C2.15,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16 h10.38l2.84,2.84L17.78,17.78z M4.88,7H3.5V5.62L4.88,7z M3.5,14.5V10h4.38l4.5,4.5H3.5z M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9 c0,0.38-0.15,0.73-0.38,1l-1.12-1.12V10h-4.38l-3-3h7.38V5.5H7.62L6.12,4z\" enable-background=\"new\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M6.83,4H20c1.11,0,2,0.89,2,2v12c0,0.34-0.08,0.66-0.23,0.94L20,17.17V12h-5.17l-4-4H20V6H8.83 L6.83,4z M20.49,23.31L17.17,20H4c-1.11,0-2-0.89-2-2L2.01,6c0-0.34,0.08-0.66,0.23-0.93L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M4,6.83V8h1.17L4,6.83z M15.17,18l-6-6H4v6H15.17z\" enable-background=\"new\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><polygon points=\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\"></polygon><path d=\"M14.17,8.42l1.41,1.41l-1.46,1.46l1.41,1.41l2.17-2.17c0.39-0.39,0.39-1.02,0-1.41l-2.83-2.83C14.68,6.1,14.43,6,14.17,6 c-0.26,0-0.51,0.1-0.71,0.29l-2.17,2.17l1.41,1.41L14.17,8.42z\"></path><path d=\"M1.39,4.22l7.07,7.07l-6.17,6.17c-0.39,0.39-0.39,1.02,0,1.41l2.83,2.83C5.32,21.9,5.57,22,5.83,22s0.51-0.1,0.71-0.29 l6.17-6.17l7.07,7.07l1.41-1.41L2.81,2.81L1.39,4.22z M11.29,14.12l-5.46,5.46l-1.41-1.41l5.46-5.46L11.29,14.12z\"></path></g></g>" } } }, - "dangerous": { - "name": "dangerous", + "22mp": { + "name": "22mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><path d=\"M0,0h20v20H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12.89,3H7.11L3,7.11v5.77L7.11,17h5.77L17,12.89V7.11L12.89,3z M15.5,12.27l-3.23,3.23H7.73L4.5,12.27V7.73L7.73,4.5 h4.53l3.23,3.23V12.27z\"></path><polygon points=\"12.22,6.72 10,8.94 7.78,6.72 6.72,7.78 8.94,10 6.72,12.22 7.78,13.28 10,11.06 12.22,13.28 13.28,12.22 11.06,10 13.28,7.78\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3z M19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1V14.9z M14.83,7.76L12,10.59L9.17,7.76L7.76,9.17L10.59,12l-2.83,2.83l1.41,1.41L12,13.41l2.83,2.83l1.41-1.41L13.41,12l2.83-2.83 L14.83,7.76z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\"></path><path d=\"M17.5,10h-3V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H13V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5h4.5V10z\"></path></g></g>" } } }, - "dashboard": { - "name": "dashboard", + "blur_off": { + "name": "blur_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v2h-4V5h4M9 5v6H5V5h4m10 8v6h-4v-6h4M9 17v2H5v-2h4M21 3h-8v6h8V3zM11 3H3v10h8V3zm10 8h-8v10h8V11zm-10 4H3v6h8v-6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"14\" cy=\"6\" r=\"1\"></circle><path d=\"M13.8 11.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\"></path><circle cx=\"18\" cy=\"10\" r=\"1\"></circle><circle cx=\"18\" cy=\"6\" r=\"1\"></circle><path d=\"M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\"></path><circle cx=\"10\" cy=\"6\" r=\"1\"></circle><circle cx=\"18\" cy=\"14\" r=\"1\"></circle><circle cx=\"6\" cy=\"18\" r=\"1\"></circle><path d=\"M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\"></path><circle cx=\"10\" cy=\"18\" r=\"1\"></circle><path d=\"M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\"></path><circle cx=\"6\" cy=\"14\" r=\"1\"></circle><path d=\"M2.5 5.27L6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z\"></path>" } } }, - "dashboard_customize": { - "name": "dashboard_customize", + "looks_6": { + "name": "looks_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M3,11h8V3H3V11z M5,5h4v4H5V5z\"></path><path d=\"M13,3v8h8V3H13z M19,9h-4V5h4V9z\"></path><path d=\"M3,21h8v-8H3V21z M5,15h4v4H5V15z\"></path><polygon points=\"18,13 16,13 16,16 13,16 13,18 16,18 16,21 18,21 18,18 21,18 21,16 18,16\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 17h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2zm8-10H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\"></path>" } } }, - "data_exploration": { - "name": "data_exploration", + "tag_faces": { + "name": "tag_faces", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8l0,0h6.5c0.83,0,1.5-0.67,1.5-1.5V10C18,5.58,14.42,2,10,2z M16.75,16 c0,0.41-0.34,0.75-0.75,0.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75C16.41,15.25,16.75,15.59,16.75,16z M10,16.5 c-2.27,0-4.28-1.17-5.44-2.94l2.45-2.45l2.49,2.44l4-4V11H15V7h-4v1.5h1.43l-2.94,2.94L7,9l-3.14,3.14C3.63,11.47,3.5,10.75,3.5,10 c0-3.58,2.92-6.5,6.5-6.5s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10h8c1.1,0,2-0.9,2-2v-8C22,6.48,17.52,2,12,2z M12,20c-2.89,0-5.43-1.54-6.83-3.84 l2.95-2.95L11.41,16L16,11.42V13h2V8h-5v2h1.58l-3.28,3.28L8,10.5l-3.69,3.7C4.11,13.5,4,12.76,4,12c0-4.41,3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.05,20.5,19.5,20.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\"></path>" } } }, - "date_range": { - "name": "date_range", + "looks": { + "name": "looks", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 11h2v2H7v-2zm14-5v14c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2l.01-14c0-1.1.88-2 1.99-2h1V2h2v2h8V2h2v2h1c1.1 0 2 .9 2 2zM5 8h14V6H5v2zm14 12V10H5v10h14zm-4-7h2v-2h-2v2zm-4 0h2v-2h-2v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z\"></path>" } } }, - "delete": { - "name": "delete", + "motion_photos_auto": { + "name": "motion_photos_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 9v10H8V9h8m-1.5-6h-5l-1 1H5v2h14V4h-3.5l-1-1zM18 7H6v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99z M11.29,7.5h1.43 l3.01,8h-1.39l-0.72-2.04h-3.23L9.66,15.5H8.28L11.29,7.5z\"></path>" } } }, - "delete_forever": { - "name": "delete_forever", + "details": { + "name": "details", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z\"></path>" } } }, - "delete_outline": { - "name": "delete_outline", + "filter_3": { + "name": "filter_3", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z\"></path>" } } }, - "description": { - "name": "description", + "auto_awesome": { + "name": "auto_awesome", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><polygon points=\"19,9 20.25,6.25 23,5 20.25,3.75 19,1 17.75,3.75 15,5 17.75,6.25\"></polygon><polygon points=\"19,15 17.75,17.75 15,19 17.75,20.25 19,23 20.25,20.25 23,19 20.25,17.75\"></polygon><path d=\"M11.5,9.5L9,4L6.5,9.5L1,12l5.5,2.5L9,20l2.5-5.5L17,12L11.5,9.5z M9.99,12.99L9,15.17l-0.99-2.18L5.83,12l2.18-0.99 L9,8.83l0.99,2.18L12.17,12L9.99,12.99z\"></path></g></g>" } } }, - "disabled_by_default": { - "name": "disabled_by_default", + "auto_fix_normal": { + "name": "auto_fix_normal", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,19H5V5h14V19z M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7 L17,8.41L13.41,12L17,15.59z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><polygon points=\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\"></polygon><path d=\"M17.71,9.12l-2.83-2.83C14.68,6.1,14.43,6,14.17,6c-0.26,0-0.51,0.1-0.71,0.29L2.29,17.46c-0.39,0.39-0.39,1.02,0,1.41 l2.83,2.83C5.32,21.9,5.57,22,5.83,22s0.51-0.1,0.71-0.29l11.17-11.17C18.1,10.15,18.1,9.51,17.71,9.12z M14.17,8.42l1.41,1.41 L14.41,11L13,9.59L14.17,8.42z M5.83,19.59l-1.41-1.41L11.59,11L13,12.41L5.83,19.59z\"></path></g></g>" } } }, - "disabled_visible": { - "name": "disabled_visible", + "gradient": { + "name": "gradient", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14.25,12.5c1.67,0,3.21,0.78,4.04,2c-0.83,1.22-2.37,2-4.04,2s-3.21-0.78-4.04-2C11.04,13.28,12.58,12.5,14.25,12.5z M14.25,11c-2.61,0-4.85,1.45-5.75,3.5c0.9,2.05,3.14,3.5,5.75,3.5s4.85-1.45,5.75-3.5C19.1,12.45,16.86,11,14.25,11z M14.25,15.75 c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25S14.94,15.75,14.25,15.75z M17.99,10.38 C18,10.26,18,10.13,18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,4.24,3.3,7.71,7.47,7.98c-0.73-0.53-1.35-1.18-1.83-1.93 C5.22,15.11,3.5,12.75,3.5,10c0-1.52,0.53-2.92,1.41-4.03l4.85,4.85c0.43-0.29,0.9-0.53,1.39-0.73L5.97,4.91 C7.08,4.03,8.48,3.5,10,3.5c3.51,0,6.39,2.81,6.5,6.3C17.02,9.95,17.52,10.14,17.99,10.38z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,15c1.95,0,3.76,0.98,4.75,2.5C20.76,19.02,18.95,20,17,20s-3.76-0.98-4.75-2.5C13.24,15.98,15.05,15,17,15z M17,13 c-3.18,0-5.9,1.87-7,4.5c1.1,2.63,3.82,4.5,7,4.5s5.9-1.87,7-4.5C22.9,14.87,20.18,13,17,13z M17,19c-0.83,0-1.5-0.67-1.5-1.5 S16.17,16,17,16s1.5,0.67,1.5,1.5S17.83,19,17,19z M21.99,12.34C22,12.23,22,12.11,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12 c0,5.17,3.93,9.43,8.96,9.95c-0.93-0.73-1.72-1.64-2.32-2.68C5.9,18,4,15.22,4,12c0-1.85,0.63-3.55,1.69-4.9l5.66,5.66 c0.56-0.4,1.17-0.73,1.82-1L7.1,5.69C8.45,4.63,10.15,4,12,4c4.24,0,7.7,3.29,7.98,7.45C20.69,11.67,21.37,11.97,21.99,12.34z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z\"></path>" } } }, - "dns": { - "name": "dns", + "wb_incandescent": { + "name": "wb_incandescent", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 15v4H5v-4h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 18.5c-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM19 5v4H5V5h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 8.5c-.82 0-1.5-.67-1.5-1.5S6.18 5.5 7 5.5s1.5.68 1.5 1.5S7.83 8.5 7 8.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3.55 19.09l1.41 1.41 1.79-1.8-1.41-1.41zM11 20h2v3h-2zM1 11h3v2H1zm12-6.95v3.96l1 .58c1.24.72 2 2.04 2 3.46 0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.42.77-2.74 2-3.46l1-.58V4.05h2m2-2H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19V2.05zM20 11h3v2h-3zm-2.76 7.71l1.79 1.8 1.41-1.41-1.8-1.79z\"></path>" } } }, - "done": { - "name": "done", + "landscape": { + "name": "landscape", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z\"></path>" } } }, - "done_all": { - "name": "done_all", + "incomplete_circle": { + "name": "incomplete_circle", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-2.21,0.9-4.21,2.34-5.66L10,10V2C14.42,2,18,5.58,18,10z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-2.76,1.12-5.26,2.93-7.07L12,12V2C17.52,2,22,6.48,22,12z\"></path>" } } }, - "done_outline": { - "name": "done_outline", + "hdr_on": { + "name": "hdr_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.77 4.93l1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z\"></path>" } } }, - "donut_large": { - "name": "donut_large", + "contrast": { + "name": "contrast", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8S2,5.58,2,10z M10.75,3.55C13.98,3.92,16.5,6.67,16.5,10 s-2.52,6.08-5.75,6.45V3.55z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,22c5.52,0,10-4.48,10-10S17.52,2,12,2S2,6.48,2,12S6.48,22,12,22z M13,4.07c3.94,0.49,7,3.85,7,7.93s-3.05,7.44-7,7.93 V4.07z\"></path></g>" } } }, - "donut_small": { - "name": "donut_small", + "blur_circular": { + "name": "blur_circular", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.82 11h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13c.85.31 1.51.97 1.82 1.82zM15 4.58C17 5.4 18.6 7 19.42 9h-3.43c-.28-.37-.62-.71-.99-.99V4.58zM2 12c0 5.19 3.95 9.45 9 9.95v-7.13C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95zm7-7.42v3.44c-1.23.92-2 2.39-2 3.98 0 1.59.77 3.06 2 3.99v3.44C6.04 18.24 4 15.35 4 12c0-3.35 2.04-6.24 5-7.42zm4 10.24v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13c-.31.85-.97 1.51-1.82 1.82zm2 1.17c.37-.28.71-.61.99-.99h3.43C18.6 17 17 18.6 15 19.42v-3.43z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\"></path>" } } }, - "drag_indicator": { - "name": "drag_indicator", + "wb_twilight": { + "name": "wb_twilight", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><rect height=\"1.5\" width=\"16\" x=\"2\" y=\"14.5\"></rect><rect height=\"2.5\" width=\"1.5\" x=\"9.25\" y=\"3\"></rect><rect height=\"1.5\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.1972 12.8523)\" width=\"2.5\" x=\"14.16\" y=\"5.91\"></rect><rect height=\"2.5\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -3.3852 5.1557)\" width=\"1.5\" x=\"3.78\" y=\"5.41\"></rect><path d=\"M10,7c-3.31,0-6,2.69-6,6h12C16,9.69,13.31,7,10,7z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" transform=\"matrix(0.7069 -0.7074 0.7074 0.7069 -0.3887 15.676)\" width=\"3\" x=\"17.22\" y=\"7.31\"></rect><rect height=\"2\" width=\"20\" x=\"2\" y=\"18\"></rect><rect height=\"3\" width=\"2\" x=\"11\" y=\"4\"></rect><rect height=\"3\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.2992 6.1783)\" width=\"2\" x=\"4.31\" y=\"6.78\"></rect><path d=\"M5,16h14c0-3.87-3.13-7-7-7S5,12.13,5,16z\"></path></g></g>" } } }, - "dynamic_form": { - "name": "dynamic_form", + "crop": { + "name": "crop", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,11H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h9V11z M4,9h7V6H4V9z M15,20H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h11V20z M4,18h9v-3H4V18z M22,9h-2l2-5h-7v7h2v9L22,9z M4.75,17.25h1.5v-1.5h-1.5V17.25z M4.75,8.25h1.5v-1.5h-1.5V8.25z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z\"></path>" } } }, - "eco": { - "name": "eco", + "blur_linear": { + "name": "blur_linear", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M5.54,7.04c-2.05,2.05-2.05,5.37,0,7.42C6.56,15.49,7.91,16,9.25,16c1.34,0,2.69-0.51,3.71-1.54C15.57,11.85,16,4,16,4 S8.15,4.43,5.54,7.04z M12.26,13.76c-0.8,0.8-1.87,1.24-3.01,1.24c-0.71,0-1.39-0.19-2.01-0.52c0.65-2.36,1.99-4.44,3.8-5.98 c-2.13,1.1-3.89,2.86-5.04,4.97c-1.4-1.67-1.33-4.16,0.23-5.72c1.63-1.63,6.09-2.39,8.66-2.65C14.65,7.66,13.89,12.12,12.26,13.76z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6.05,8.05c-2.73,2.73-2.73,7.17,0,9.9C7.42,19.32,9.21,20,11,20s3.58-0.68,4.95-2.05C19.43,14.47,20,4,20,4 S9.53,4.57,6.05,8.05z M14.54,16.54C13.59,17.48,12.34,18,11,18c-0.89,0-1.73-0.25-2.48-0.68c0.92-2.88,2.62-5.41,4.88-7.32 c-2.63,1.36-4.84,3.46-6.37,6c-1.48-1.96-1.35-4.75,0.44-6.54C9.21,7.72,14.04,6.65,17.8,6.2C17.35,9.96,16.28,14.79,14.54,16.54z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z\"></path>" } } }, - "edit_calendar": { - "name": "edit_calendar", + "switch_camera": { + "name": "switch_camera", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M4.5,9h11v1H17V5.5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11C3,17.32,3.67,18,4.5,18h5v-1.5 h-5V9z M4.5,5.5h11v2h-11V5.5z M18.42,13.34l-0.65,0.65l-1.77-1.77l0.65-0.65c0.29-0.29,0.77-0.29,1.06,0l0.71,0.71 C18.72,12.58,18.72,13.05,18.42,13.34z M15.42,12.81l1.77,1.77L12.77,19H11v-1.77L15.42,12.81z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M5,10h14v2h2V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h7v-2H5V10z M5,6h14v2H5 V6z M22.84,16.28l-0.71,0.71l-2.12-2.12l0.71-0.71c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71C23.23,15.26,23.23,15.89,22.84,16.28z M19.3,15.58l2.12,2.12l-5.3,5.3H14v-2.12L19.3,15.58z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM9.88 4h4.24l1.83 2H20v12H4V6h4.05\"></path><path d=\"M15 11H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z\"></path>" } } }, - "edit_off": { - "name": "edit_off", + "photo_album": { + "name": "photo_album", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M14.5,2h-9C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5v-13C16,2.67,15.33,2,14.5,2z M14.5,16.5h-9v-13H9V10l2-1l2,1V3.5h1.5V16.5z\"></path><polygon points=\"9.5,14 8.12,12.17 6,15 14,15 11.38,11.5\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M14.06,9.02l0.92,0.92l-1.11,1.11l1.41,1.41l2.52-2.52l-3.75-3.75l-2.52,2.52l1.41,1.41L14.06,9.02z M20.71,7.04 c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34C18.17,3.09,17.92,3,17.66,3s-0.51,0.1-0.7,0.29l-1.83,1.83l3.75,3.75L20.71,7.04z M2.81,2.81L1.39,4.22l7.32,7.32L3,17.25V21h3.75l5.71-5.71l7.32,7.32l1.41-1.41L2.81,2.81z M5.92,19H5v-0.92l5.13-5.13l0.92,0.92 L5.92,19z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,20H6V4h5v7l2.5-1.5L16,11V4h2V20 z M13.62,13.5L17,18H7l2.38-3.17L11,17L13.62,13.5z\"></path>" } } }, - "eject": { - "name": "eject", + "deblur": { + "name": "deblur", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"5.5\" cy=\"11.5\" r=\".75\"></circle><circle cx=\"5.5\" cy=\"14.5\" r=\".75\"></circle><circle cx=\"5.5\" cy=\"8.5\" r=\".75\"></circle><circle cx=\"3\" cy=\"8.5\" r=\".5\"></circle><circle cx=\"5.5\" cy=\"5.5\" r=\".75\"></circle><circle cx=\"3\" cy=\"11.5\" r=\".5\"></circle><circle cx=\"8.5\" cy=\"17\" r=\".5\"></circle><circle cx=\"8.5\" cy=\"3\" r=\".5\"></circle><circle cx=\"8.5\" cy=\"5.5\" r=\".75\"></circle><circle cx=\"8.5\" cy=\"11.5\" r=\"1\"></circle><circle cx=\"8.5\" cy=\"8.5\" r=\"1\"></circle><circle cx=\"8.5\" cy=\"14.5\" r=\".75\"></circle><path d=\"M10,3v1.5c3.03,0,5.5,2.47,5.5,5.5s-2.47,5.5-5.5,5.5V17c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6l2.93 4.4H9.07L12 8.6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"6\" cy=\"14\" r=\"1\"></circle><circle cx=\"6\" cy=\"18\" r=\"1\"></circle><circle cx=\"6\" cy=\"10\" r=\"1\"></circle><circle cx=\"3\" cy=\"10\" r=\".5\"></circle><circle cx=\"6\" cy=\"6\" r=\"1\"></circle><circle cx=\"3\" cy=\"14\" r=\".5\"></circle><circle cx=\"10\" cy=\"21\" r=\".5\"></circle><circle cx=\"10\" cy=\"3\" r=\".5\"></circle><circle cx=\"10\" cy=\"6\" r=\"1\"></circle><circle cx=\"10\" cy=\"14\" r=\"1.5\"></circle><circle cx=\"10\" cy=\"10\" r=\"1.5\"></circle><circle cx=\"10\" cy=\"18\" r=\"1\"></circle><path d=\"M12,3v2c3.86,0,7,3.14,7,7s-3.14,7-7,7v2c4.96,0,9-4.04,9-9S16.96,3,12,3z\"></path></g></g>" } } }, - "euro_symbol": { - "name": "euro_symbol", + "currency_yen": { + "name": "currency_yen", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><polygon points=\"11.29,9.5 15.5,3 13.71,3 10,8.74 6.29,3 4.5,3 8.71,9.5 5.5,9.5 5.5,11 9.25,11 9.25,12.5 5.5,12.5 5.5,14 9.25,14 9.25,17 10.75,17 10.75,14 14.5,14 14.5,12.5 10.75,12.5 10.75,11 14.5,11 14.5,9.5\"></polygon></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><polygon points=\"13.92,11 18,11 18,13 13,13 13,15 18,15 18,17 13,17 13,21 11,21 11,17 6,17 6,15 11,15 11,13 6,13 6,11 10.08,11 5,3 7.37,3 12,10.29 16.63,3 19,3\"></polygon></g>" } } }, - "event": { - "name": "event", + "panorama_horizontal": { + "name": "panorama_horizontal", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z\"></path>" } } }, - "event_seat": { - "name": "event_seat", + "filter_1": { + "name": "filter_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 5v7H9V5h6m0-2H9c-1.1 0-2 .9-2 2v9h10V5c0-1.1-.9-2-2-2zm7 7h-3v3h3v-3zM5 10H2v3h3v-3zm15 5H4v6h2v-4h12v4h2v-6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\"></path>" } } }, - "exit_to_app": { - "name": "exit_to_app", + "compare": { + "name": "compare", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"></path>" } } }, - "expand": { - "name": "expand", + "grain": { + "name": "grain", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><rect height=\"2\" width=\"16\" x=\"4\" y=\"20\"></rect><rect height=\"2\" width=\"16\" x=\"4\" y=\"2\"></rect><polygon points=\"9.41,13.59 8,15 12,19 16,15 14.59,13.59 13,15.17 13,8.83 14.59,10.41 16,9 12,5 8,9 9.41,10.41 11,8.83 11,15.17\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" } } }, - "explore": { - "name": "explore", + "17mp": { + "name": "17mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><path d=\"M13.25,11.5H15l1.46-4.71c0.19-0.64-0.29-1.29-0.96-1.29H12V7h2.62L13.25,11.5z\"></path></g></g>" } } }, - "explore_off": { - "name": "explore_off", + "looks_4": { + "name": "looks_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4zm2.91 8.08L17.5 6.5l-5.58 2.59 2.99 2.99zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm3.02 3.01l3.98 3.98-2.6 5.58 5.58-2.59 3.98 3.98c-1.2.7-2.58 1.11-4.06 1.11-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06z\"></path>" + "path": "<path d=\"M.04 0h24v24h-24V0z\" fill=\"none\"></path><path d=\"M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-14V5h14v14zm-6-2h2V7h-2v4h-2V7h-2v6h4z\"></path>" } } }, - "extension": { - "name": "extension", + "monochrome_photos": { + "name": "monochrome_photos", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.5 4.5c.28 0 .5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5h-2v6h-2.12c-.68-1.75-2.39-3-4.38-3s-3.7 1.25-4.38 3H4v-2.12c1.75-.68 3-2.39 3-4.38 0-1.99-1.24-3.7-2.99-4.38L4 7h6V5c0-.28.22-.5.5-.5m0-2C9.12 2.5 8 3.62 8 5H4c-1.1 0-1.99.9-1.99 2v3.8h.29c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-.3c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7v.3H17c1.1 0 2-.9 2-2v-4c1.38 0 2.5-1.12 2.5-2.5S20.38 11 19 11V7c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z\"></path>" } } }, - "extension_off": { - "name": "extension_off", + "looks_two": { + "name": "looks_two", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V8c1.1,0,2,0.9,2,2s-0.9,2-2,2v3.5C3,16.33,3.67,17,4.5,17H8c0-1.1,0.9-2,2-2 s2,0.9,2,2h2.88l1.13,1.13L17.07,17.07z M10,13.5c-1.39,0-2.6,0.82-3.16,2H4.5v-2.34c1.18-0.56,2-1.77,2-3.16 c0-0.76-0.24-1.46-0.66-2.03l6.19,6.19C11.46,13.74,10.76,13.5,10,13.5z M19,10c0,1.1-0.9,2-2,2v2.88l-1.5-1.5V10.5H17 c0.28,0,0.5-0.22,0.5-0.5S17.28,9.5,17,9.5h-1.5v-5h-5V3c0-0.28-0.22-0.5-0.5-0.5S9.5,2.72,9.5,3v1.5H6.62L5.12,3H8c0-1.1,0.9-2,2-2 s2,0.9,2,2h3.5C16.33,3,17,3.67,17,4.5V8C18.1,8,19,8.9,19,10z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M1.39,4.22l1.62,1.62c0,0.05-0.01,0.1-0.01,0.16v3.8C5.7,9.8,6,11.96,6,12.5c0,0.54-0.29,2.7-3,2.7V19c0,1.1,0.9,2,2,2h3.8 c0-2.71,2.16-3,2.7-3c0.54,0,2.7,0.29,2.7,3H18c0.06,0,0.11,0,0.16-0.01l1.61,1.61l1.41-1.41L2.81,2.81L1.39,4.22z M11.5,16 c-1.5,0-3.57,0.83-4.37,3H5v-2.13c2.17-0.8,3-2.87,3-4.37c0-0.69-0.18-1.5-0.58-2.25l6.33,6.33C13,16.18,12.19,16,11.5,16z M8.83,6 l-2-2H9c0-1.38,1.12-2.5,2.5-2.5S14,2.62,14,4h4c1.1,0,2,0.9,2,2v4c1.38,0,2.5,1.12,2.5,2.5S21.38,15,20,15v2.17l-2-2V13h2 c0.28,0,0.5-0.22,0.5-0.5S20.28,12,20,12h-2V6h-6V4c0-0.28-0.22-0.5-0.5-0.5S11,3.72,11,4v2H8.83z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V9c0-1.11-.9-2-2-2H9v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z\"></path>" } } }, - "face": { - "name": "face", + "auto_stories": { + "name": "auto_stories", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><path d=\"M22.47,5.2C22,4.96,21.51,4.76,21,4.59v12.03C19.86,16.21,18.69,16,17.5,16c-1.9,0-3.78,0.54-5.5,1.58V5.48 C10.38,4.55,8.51,4,6.5,4C4.71,4,3.02,4.44,1.53,5.2C1.2,5.36,1,5.71,1,6.08v12.08c0,0.58,0.47,0.99,1,0.99 c0.16,0,0.32-0.04,0.48-0.12C3.69,18.4,5.05,18,6.5,18c2.07,0,3.98,0.82,5.5,2c1.52-1.18,3.43-2,5.5-2c1.45,0,2.81,0.4,4.02,1.04 c0.16,0.08,0.32,0.12,0.48,0.12c0.52,0,1-0.41,1-0.99V6.08C23,5.71,22.8,5.36,22.47,5.2z M10,16.62C8.86,16.21,7.69,16,6.5,16 c-1.19,0-2.36,0.21-3.5,0.62V6.71C4.11,6.24,5.28,6,6.5,6C7.7,6,8.89,6.25,10,6.72V16.62z M19,0.5l-5,5V15l5-4.5V0.5z\"></path></g>" } } }, - "face_unlock": { - "name": "face_unlock", + "view_compact": { + "name": "view_compact", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5v14h19V5H3zm2 2h15v4H5V7zm0 10v-4h4v4H5zm6 0v-4h9v4h-9z\"></path>" } } }, - "fact_check": { - "name": "fact_check", + "camera_front": { + "name": "camera_front", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16,4H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V5 C17,4.45,16.55,4,16,4z M16,15H4V5h12V15z\" fill-rule=\"evenodd\"></path><rect fill-rule=\"evenodd\" height=\"1\" width=\"4\" x=\"5\" y=\"7\"></rect><rect fill-rule=\"evenodd\" height=\"1\" width=\"4\" x=\"5\" y=\"9.5\"></rect><rect fill-rule=\"evenodd\" height=\"1\" width=\"4\" x=\"5\" y=\"12\"></rect><polygon fill-rule=\"evenodd\" points=\"11.97,11.77 14.8,8.94 14.1,8.23 11.97,10.35 11.27,9.65 10.56,10.35\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M20,19H4V5h16V19z\" fill-rule=\"evenodd\"></path><polygon fill-rule=\"evenodd\" points=\"19.41,10.42 17.99,9 14.82,12.17 13.41,10.75 12,12.16 14.82,15\"></polygon><rect fill-rule=\"evenodd\" height=\"2\" width=\"5\" x=\"5\" y=\"7\"></rect><rect fill-rule=\"evenodd\" height=\"2\" width=\"5\" x=\"5\" y=\"11\"></rect><rect fill-rule=\"evenodd\" height=\"2\" width=\"5\" x=\"5\" y=\"15\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zM11.99 8C13.1 8 14 7.1 14 6s-.9-2-2.01-2S10 4.9 10 6s.89 2 1.99 2zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7v-2h10v2zm0-3.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2h10v10.5z\"></path>" } } }, - "favorite": { - "name": "favorite", + "8mp": { + "name": "8mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H11c-0.55,0-1,0.45-1,1v4C10,11.05,10.45,11.5,11,11.5z M11.5,6.5H13 V8h-1.5V6.5z M11.5,9H13v1.5h-1.5V9z\"></path></g></g>" } } }, - "favorite_border": { - "name": "favorite_border", + "blur_on": { + "name": "blur_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z\"></path>" } } }, - "feedback": { - "name": "feedback", + "image_search": { + "name": "image_search", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z\"></path>" } } }, - "file_present": { - "name": "file_present", + "shutter_speed": { + "name": "shutter_speed", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h8v4h4V20z M12,17L12,17 c-1.1,0-2-0.9-2-2l0-5.5C10,9.22,10.22,9,10.5,9h0C10.78,9,11,9.22,11,9.5V15h2V9.5C13,8.12,11.88,7,10.5,7h0C9.12,7,8,8.12,8,9.5 L8,15c0,2.21,1.79,4,4,4h0c2.21,0,4-1.79,4-4v-4h-2v4C14,16.1,13.1,17,12,17z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 1H9v2h6V1zm4.03 6.39l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z\"></path>" } } }, - "filter_alt": { - "name": "filter_alt", + "hdr_plus": { + "name": "hdr_plus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24 M24,24H0\" fill=\"none\"></path><path d=\"M7,6h10l-5.01,6.3L7,6z M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6 c0,0,3.72-4.8,5.74-7.39C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M8.13,19c1.15,0.64,2.47,1,3.87,1c4.41,0,8-3.59,8-8s-3.59-8-8-8s-8,3.59-8,8c0,2.52,1.17,4.77,3,6.24V13h3.5 c0.8,0,1.5,0.7,1.5,1.5v1c0,0.6-0.4,1.1-0.9,1.4L12,19h-1.5l-0.9-2H8.5v2H8.13z M12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10 S2,17.52,2,12S6.48,2,12,2z M17.5,16H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16z M10.5,15.5v-1h-2v1H10.5z M10.5,8V6H12v6 h-1.5V9.5h-2V12H7V6h1.5v2H10.5z M16,6c0.8,0,1.5,0.7,1.5,1.5v3c0,0.8-0.7,1.5-1.5,1.5h-3V6H16z M16,10.5v-3h-1.5v3H16z\"></path></g></g>" } } }, - "find_in_page": { - "name": "find_in_page", + "panorama_wide_angle_select": { + "name": "panorama_wide_angle_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 4h7l5 5v8.58l-1.84-1.84c1.28-1.94 1.07-4.57-.64-6.28C14.55 8.49 13.28 8 12 8c-1.28 0-2.55.49-3.53 1.46-1.95 1.95-1.95 5.11 0 7.05.97.97 2.25 1.46 3.53 1.46.96 0 1.92-.28 2.75-.83L17.6 20H6V4zm8.11 11.1c-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11c.56-.57 1.31-.88 2.11-.88s1.55.31 2.11.88c.56.56.88 1.31.88 2.11s-.31 1.55-.88 2.11z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M12,4C8.03,4,5.15,4.63,3,5c-0.55,1.97-1,3.92-1,7c0,3.03,0.45,5.05,1,7c2.15,0.37,4.98,1,9,1c3.97,0,6.85-0.63,9-1 c0.57-2.02,1-3.99,1-7c0-3.03-0.45-5.05-1-7C18.85,4.63,16.02,4,12,4z\"></path></g></g></g>" } } }, - "find_replace": { - "name": "find_replace", + "timelapse": { + "name": "timelapse", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.24 7.75c-1.17-1.17-2.7-1.76-4.24-1.76v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 1.99c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" } } }, - "fingerprint": { - "name": "fingerprint", + "photo_size_select_large": { + "name": "photo_size_select_large", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8l2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z\"></path>" } } }, - "fit_screen": { - "name": "fit_screen", + "panorama_horizontal_select": { + "name": "panorama_horizontal_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M6,16h12V8H6V16z M8,10h8v4H8V10z M4,15H2v3c0,1.1,0.9,2,2,2h3v-2H4V15z M4,6h3V4H4C2.9,4,2,4.9,2,6v3h2V6z M20,4h-3v2h3v3 h2V6C22,4.9,21.1,4,20,4z M20,18h-3v2h3c1.1,0,2-0.9,2-2v-3h-2V18z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,5.5c-3.89,0-6.95-0.84-8.69-1.43C2.67,3.85,2,4.33,2,5.02L2,19c0,0.68,0.66,1.17,1.31,0.95 C5.36,19.26,8.1,18.5,12,18.5c3.87,0,6.66,0.76,8.69,1.45C21.34,20.16,22,19.68,22,19l0-14c0-0.68-0.66-1.17-1.31-0.95 C18.66,4.73,15.86,5.5,12,5.5z\"></path></g>" } } }, - "flaky": { - "name": "flaky", + "timer_3": { + "name": "timer_3", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M6,6.71L6.71,6l1.06,1.06L8.83,6l0.71,0.71L8.47,7.77l1.06,1.06L8.83,9.54L7.77,8.47L6.71,9.54L6,8.83l1.06-1.06L6,6.71z M10,16 c-1.65,0-3.15-0.67-4.24-1.76l8.48-8.48C15.33,6.85,16,8.35,16,10C16,13.31,13.31,16,10,16z\" fill-rule=\"evenodd\"></path></g><g><polygon fill-rule=\"evenodd\" points=\"11.41,12.59 10.41,11.59 9.71,12.29 11.41,14 14.21,11.21 13.5,10.5\"></polygon></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z\" fill-rule=\"evenodd\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z\"></path>" } } }, - "flight_land": { - "name": "flight_land", + "center_focus_weak": { + "name": "center_focus_weak", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm7 3c-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 2zm7-11h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z\"></path>" } } }, - "flight_takeoff": { - "name": "flight_takeoff", + "center_focus_strong": { + "name": "center_focus_strong", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49L21 11.49c.81-.23 1.28-1.05 1.07-1.85z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5 3c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm-7 0H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z\"></path>" } } }, - "flip_to_back": { - "name": "flip_to_back", + "auto_awesome_motion": { + "name": "auto_awesome_motion", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M14,2H4C2.9,2,2,2.9,2,4v10h2V4h10V2z M18,6H8C6.9,6,6,6.9,6,8v10h2V8h10V6z M20,10h-8c-1.1,0-2,0.9-2,2v8 c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-8C22,10.9,21.1,10,20,10z M20,20h-8v-8h8V20z\"></path></g></g>" } } }, - "flip_to_front": { - "name": "flip_to_front", + "filter_5": { + "name": "filter_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2z\"></path>" } } }, - "flutter_dash": { - "name": "flutter_dash", + "exposure_plus_1": { + "name": "exposure_plus_1", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M9.26,9.56c0.23-0.32,0.65-0.45,1.01-0.3c0.14,0.06,0.26,0.15,0.35,0.26c0.18,0.22,0.2,0.47,0.17,0.68 c-0.04,0.27-0.2,0.5-0.43,0.63c0,0-3.89,2.36-4.06,2.15C6.14,12.78,9.26,9.56,9.26,9.56z M18,8.2c0,2-0.8,2.4-1.2,2.4 c-0.19,0-0.35-0.08-0.5-0.21c-0.38,2.65-1.89,4.25-4.26,4.79c0.08,0.35,0.39,0.62,0.76,0.62l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 c-0.11-0.17-0.26-0.45-0.26-0.82c0-0.24,0.03-0.45,0.08-0.64c-0.62-0.13-1.11-0.62-1.24-1.25c-0.39,0.05-0.8,0.08-1.23,0.08 c-0.71,0-1.36-0.07-1.96-0.2C8.02,15.26,8,15.33,8,15.4c0,0.44,0.36,0.8,0.8,0.8l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 C8.54,18.25,8.4,17.97,8.4,17.6c0-0.24,0.03-0.45,0.08-0.64c-0.73-0.15-1.28-0.8-1.28-1.57c0-0.15,0.03-0.29,0.06-0.42 c-1.97-0.69-3.22-2.22-3.57-4.59c-0.15,0.13-0.31,0.21-0.5,0.21C2.8,10.6,2,10.2,2,8.2c0-1.81,1.36-3.6,2.4-3.6 c0.34,0,0.39,0.39,0.4,0.68c1.02-1.43,2.61-2.41,4.44-2.63C9.4,1.88,10.1,1.4,10.8,1.4v0.8c0,0,0.26-0.4,0.8-0.4 c0.54,0,0.8,0.4,0.8,0.4c-0.39,0-0.68,0.28-0.76,0.62c1.46,0.39,2.71,1.27,3.57,2.46c0.01-0.29,0.06-0.68,0.4-0.68 C16.64,4.6,18,6.39,18,8.2z M4.4,9c0,0.65,0.08,1.23,0.2,1.77c0.15-0.55,0.37-1.07,0.67-1.54C5.1,8.85,5,8.44,5,8 c0-1.66,1.34-3,3-3c0.77,0,1.47,0.3,2,0.78C10.53,5.3,11.23,5,12,5c1.66,0,3,1.34,3,3c0,0.44-0.1,0.85-0.27,1.23 c0.3,0.47,0.53,0.99,0.67,1.55c0.12-0.54,0.2-1.12,0.2-1.78c0-3.09-2.51-5.6-5.6-5.6C6.91,3.4,4.4,5.91,4.4,9z M14.78,12.44 c0-0.08,0.02-0.15,0.02-0.24c0-0.8-0.21-1.56-0.56-2.22C13.69,10.6,12.9,11,12,11c-0.22,0-0.43-0.02-0.63-0.07 c0.11-0.19,0.18-0.4,0.21-0.62c0.01-0.05,0.01-0.1,0.01-0.16c0.13,0.03,0.27,0.04,0.4,0.04c1.21,0,2.2-0.99,2.2-2.2 S13.21,5.8,12,5.8c-0.53,0-1.05,0.2-1.46,0.57L10,6.86L9.46,6.37C9.05,6,8.53,5.8,8,5.8C6.79,5.8,5.8,6.79,5.8,8 c0,1.07,0.77,1.97,1.79,2.16l-0.61,0.66c-0.48-0.17-0.89-0.47-1.22-0.84C5.41,10.65,5.2,11.4,5.2,12.2c0,0.07,0.01,0.12,0.01,0.19 C6.1,13.85,7.71,14.6,10,14.6C12.3,14.6,13.9,13.87,14.78,12.44z M13.2,8c0,0.77-0.54,1.4-1.2,1.4S10.8,8.77,10.8,8 s0.54-1.4,1.2-1.4S13.2,7.23,13.2,8z M12.6,7.3c0-0.17-0.13-0.3-0.3-0.3C12.13,7,12,7.13,12,7.3s0.13,0.3,0.3,0.3 C12.47,7.6,12.6,7.47,12.6,7.3z M9.2,8c0,0.77-0.54,1.4-1.2,1.4S6.8,8.77,6.8,8S7.34,6.6,8,6.6S9.2,7.23,9.2,8z M8.6,7.3 C8.6,7.13,8.47,7,8.3,7C8.13,7,8,7.13,8,7.3s0.13,0.3,0.3,0.3C8.47,7.6,8.6,7.47,8.6,7.3z\"></path></g>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M11.07,11.7c0.29-0.39,0.81-0.56,1.27-0.37c0.17,0.07,0.32,0.18,0.43,0.33c0.22,0.28,0.25,0.59,0.22,0.85 c-0.05,0.33-0.25,0.63-0.54,0.79c0,0-4.87,2.95-5.07,2.69S11.07,11.7,11.07,11.7z M22,10c0,2.5-1,3-1.5,3 c-0.23,0-0.44-0.1-0.62-0.26c-0.48,3.32-2.36,5.31-5.33,5.99c0.11,0.44,0.48,0.77,0.95,0.77l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C15.18,22.07,15,21.71,15,21.26c0-0.3,0.04-0.57,0.09-0.8c-0.78-0.16-1.39-0.78-1.55-1.56c-0.49,0.06-1,0.1-1.54,0.1 c-0.88,0-1.7-0.09-2.45-0.25C9.53,18.83,9.5,18.91,9.5,19c0,0.55,0.45,1,1,1l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C10.18,22.57,10,22.21,10,21.76c0-0.3,0.04-0.57,0.09-0.8C9.19,20.77,8.5,19.96,8.5,19c0-0.18,0.03-0.36,0.08-0.53 c-2.46-0.86-4.03-2.78-4.46-5.74C3.94,12.9,3.74,13,3.5,13C3,13,2,12.5,2,10c0-2.27,1.7-4.5,3-4.5c0.43,0,0.49,0.49,0.5,0.85 c1.28-1.78,3.26-3.02,5.55-3.29C11.25,2.1,12.13,1.5,13,1.5v1c0,0,0.33-0.5,1-0.5c0.67,0,1,0.5,1,0.5c-0.49,0-0.85,0.35-0.96,0.77 c1.82,0.48,3.39,1.59,4.46,3.08C18.51,5.99,18.57,5.5,19,5.5C20.3,5.5,22,7.73,22,10z M5,11c0,0.81,0.1,1.53,0.25,2.21 c0.18-0.69,0.46-1.33,0.83-1.92c-0.21-0.47-0.34-0.99-0.34-1.54C5.75,7.68,7.43,6,9.5,6c0.96,0,1.84,0.37,2.5,0.97 C12.66,6.37,13.54,6,14.5,6c2.07,0,3.75,1.68,3.75,3.75c0,0.55-0.12,1.07-0.34,1.54c0.37,0.59,0.66,1.24,0.84,1.94 C18.9,12.55,19,11.82,19,11c0-3.86-3.14-7-7-7C8.14,4,5,7.14,5,11z M17.98,15.29c0-0.1,0.02-0.19,0.02-0.29 c0-1.01-0.26-1.95-0.7-2.78c-0.69,0.78-1.68,1.28-2.8,1.28c-0.27,0-0.54-0.03-0.79-0.09c0.14-0.23,0.23-0.49,0.27-0.77 c0.01-0.07,0.01-0.13,0.02-0.19c0.17,0.03,0.33,0.05,0.5,0.05c1.52,0,2.75-1.23,2.75-2.75S16.02,7,14.5,7 c-0.67,0-1.32,0.25-1.83,0.72L12,8.32l-0.67-0.6C10.82,7.25,10.17,7,9.5,7C7.98,7,6.75,8.23,6.75,9.75c0,1.34,0.96,2.46,2.23,2.7 l-0.76,0.83c-0.6-0.22-1.12-0.59-1.53-1.05C6.26,13.06,6,14,6,15c0,0.08,0.01,0.15,0.01,0.24C7.13,17.06,9.14,18,12,18 C14.88,18,16.88,17.09,17.98,15.29z M16,9.75c0,0.97-0.67,1.75-1.5,1.75S13,10.72,13,9.75S13.67,8,14.5,8S16,8.78,16,9.75z M15.25,8.88c0-0.21-0.17-0.38-0.38-0.38S14.5,8.67,14.5,8.88s0.17,0.38,0.38,0.38S15.25,9.08,15.25,8.88z M11,9.75 c0,0.97-0.67,1.75-1.5,1.75S8,10.72,8,9.75S8.67,8,9.5,8S11,8.78,11,9.75z M10.25,8.88c0-0.21-0.17-0.38-0.38-0.38 S9.5,8.67,9.5,8.88s0.17,0.38,0.38,0.38S10.25,9.08,10.25,8.88z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 7H8v4H4v2h4v4h2v-4h4v-2h-4V7zm10 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z\"></path>" } } }, - "free_cancellation": { - "name": "free_cancellation", + "audiotrack": { + "name": "audiotrack", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.21,16.5H4.5V9h11v3.09l1.5-1.5V5.5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11 C3,17.32,3.67,18,4.5,18h6.21L9.21,16.5z M4.5,5.5h11v2h-11V5.5z M13.33,16.38l3.54-3.54l1.06,1.06l-4.6,4.6l-2.83-2.83l1.06-1.06 L13.33,16.38z M8.81,12.25L10,13.44L8.94,14.5l-1.19-1.19L6.56,14.5L5.5,13.44l1.19-1.19L5.5,11.06L6.56,10l1.19,1.19L8.94,10 L10,11.06L8.81,12.25z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11.21,20H5V10h14v4.38l2-2V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h8.21 L11.21,20z M5,6h14v2H5V6z M16.54,22.5L13,18.96l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,22.5z M10.41,14L12,15.59L10.59,17 L9,15.41L7.41,17L6,15.59L7.59,14L6,12.41L7.41,11L9,12.59L10.59,11L12,12.41L10.41,14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6zm-2 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\"></path>" } } }, - "gavel": { - "name": "gavel", + "wb_cloudy": { + "name": "wb_cloudy", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.01 6c2.61 0 4.89 1.86 5.4 4.43l.3 1.5 1.52.11c1.56.11 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3h-13c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.95 6 12.01 6m0-2C9.12 4 6.6 5.64 5.35 8.04 2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96C18.68 6.59 15.65 4 12.01 4z\"></path>" } } }, - "generating_tokens": { - "name": "generating_tokens", + "music_note": { + "name": "music_note", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.06,4.94L13,4l2.06-0.94L16,1l0.94,2.06L19,4l-2.06,0.94L16,7L15.06,4.94z M16,19l0.94-2.06L19,16l-2.06-0.94L16,13 l-0.94,2.06L13,16l2.06,0.94L16,19z M2.5,10c0,2.76,2.24,5,5,5s5-2.24,5-5s-2.24-5-5-5S2.5,7.24,2.5,10z M7.5,3.5 c3.59,0,6.5,2.91,6.5,6.5s-2.91,6.5-6.5,6.5S1,13.59,1,10S3.91,3.5,7.5,3.5L7.5,3.5z M10,7.5H5v1.25h1.75V13h1.5V8.75H10V7.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9,4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8C17,7.58,13.42,4,9,4z M9,18c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S12.31,18,9,18z M12,10.5h-2v5H8v-5H6V9h6V10.5z M20.25,3.75L23,5l-2.75,1.25L19,9l-1.25-2.75L15,5l2.75-1.25L19,1 L20.25,3.75z M20.25,17.75L23,19l-2.75,1.25L19,23l-1.25-2.75L15,19l2.75-1.25L19,15L20.25,17.75z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 3l.01 10.55c-.59-.34-1.27-.55-2-.55C7.79 13 6 14.79 6 17s1.79 4 4.01 4S14 19.21 14 17V7h4V3h-6zm-1.99 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\"></path>" } } }, - "get_app": { - "name": "get_app", + "brush": { + "name": "brush", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 5v6h1.17L12 13.17 9.83 11H11V5h2m2-2H9v6H5l7 7 7-7h-4V3zm4 15H5v2h14v-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 16c.55 0 1 .45 1 1 0 1.1-.9 2-2 2-.17 0-.33-.02-.5-.05.31-.55.5-1.21.5-1.95 0-.55.45-1 1-1M18.67 3c-.26 0-.51.1-.71.29L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29zM7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3z\"></path>" } } }, - "gif": { - "name": "gif", + "photo": { + "name": "photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.5 9H13v6h-1.5V9zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z\"></path>" } } }, - "grade": { - "name": "grade", + "18mp": { + "name": "18mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7.13l.97 2.29.47 1.11 1.2.1 2.47.21-1.88 1.63-.91.79.27 1.18.56 2.41-2.12-1.28-1.03-.64-1.03.62-2.12 1.28.56-2.41.27-1.18-.91-.79-1.88-1.63 2.47-.21 1.2-.1.47-1.11.97-2.27M12 2L9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><path d=\"M13,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H13c-0.55,0-1,0.45-1,1v4C12,11.05,12.45,11.5,13,11.5z M13.5,6.5H15 V8h-1.5V6.5z M13.5,9H15v1.5h-1.5V9z\"></path></g></g>" } } }, - "grading": { - "name": "grading", + "loupe": { + "name": "loupe", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"1\" width=\"10\" x=\"5\" y=\"4\"></rect><rect height=\"1\" width=\"4.5\" x=\"5\" y=\"15\"></rect><rect height=\"1\" width=\"4.5\" x=\"5\" y=\"12.25\"></rect><rect height=\"1\" width=\"10\" x=\"5\" y=\"6.75\"></rect><rect height=\"1\" width=\"10\" x=\"5\" y=\"9.5\"></rect><polygon points=\"12.17,14.59 11.46,13.88 10.76,14.59 12.17,16 15,13.17 14.29,12.46\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" } } }, - "group_work": { - "name": "group_work", + "currency_rupee": { + "name": "currency_rupee", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M11.4,17h2.11l-5.4-5.5h0.65c2.26,0,4.11-1.77,4.24-4l1.51,0l0-1.5l-1.69,0c-0.17-0.56-0.46-1.07-0.82-1.5l2.51,0l0-1.5 l-9,0v1.5l3.25,0c1.07,0,1.99,0.61,2.45,1.5L5.5,6v1.5l5.99,0c-0.13,1.4-1.3,2.5-2.74,2.5L6,10v1.5L11.4,17z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path><circle cx=\"8\" cy=\"14\" r=\"2\"></circle><circle cx=\"12\" cy=\"8\" r=\"2\"></circle><circle cx=\"16\" cy=\"14\" r=\"2\"></circle>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M13.66,7C13.1,5.82,11.9,5,10.5,5L6,5V3h12v2l-3.26,0c0.48,0.58,0.84,1.26,1.05,2L18,7v2l-2.02,0c-0.25,2.8-2.61,5-5.48,5 H9.77l6.73,7h-2.77L7,14v-2h3.5c1.76,0,3.22-1.3,3.46-3L6,9V7L13.66,7z\"></path></g></g>" } } }, - "g_translate": { - "name": "g_translate", + "flip": { + "name": "flip", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z\"></path>" } } }, - "help": { - "name": "help", + "remove_red_eye": { + "name": "remove_red_eye", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6.5c3.79 0 7.17 2.13 8.82 5.5-1.65 3.37-5.02 5.5-8.82 5.5S4.83 15.37 3.18 12C4.83 8.63 8.21 6.5 12 6.5m0-2C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5-2.5-1.12-2.5-2.5 1.12-2.5 2.5-2.5m0-2c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5z\"></path>" } } }, - "help_center": { - "name": "help_center", - "keywords": [ - "action" + "texture": { + "name": "texture", + "keywords": [ + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13.25,16.74c0,0.69-0.53,1.26-1.25,1.26c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 C12.71,15.49,13.25,16.04,13.25,16.74z M11.99,6c-1.77,0-2.98,1.15-3.43,2.49l1.64,0.69c0.22-0.67,0.74-1.48,1.8-1.48 c1.62,0,1.94,1.52,1.37,2.33c-0.54,0.77-1.47,1.29-1.96,2.16c-0.39,0.69-0.31,1.49-0.31,1.98h1.82c0-0.93,0.07-1.12,0.22-1.41 c0.39-0.72,1.11-1.06,1.87-2.17c0.68-1,0.42-2.36-0.02-3.08C14.48,6.67,13.47,6,11.99,6z M19,5H5v14h14V5 M19,3c1.1,0,2,0.9,2,2v14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2H19L19,3z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.51 3.08L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3L3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z\"></path>" } } }, - "help_outline": { - "name": "help_outline", + "flash_on": { + "name": "flash_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 2v11h3v9l7-12h-4l3-8z\"></path>" } } }, - "hide_source": { - "name": "hide_source", + "7mp": { + "name": "7mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.41L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l10.94,10.94C14.86,19.59,13.48,20,12,20z M7.94,5.12 L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46C19.59,14.86,20,13.48,20,12 c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11.25,11.5H13l1.46-4.71c0.19-0.64-0.29-1.29-0.96-1.29H10V7h2.62L11.25,11.5z\"></path></g></g>" } } }, - "highlight_alt": { - "name": "highlight_alt", + "wb_shade": { + "name": "wb_shade", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,5h-2V3h2V5z M15,15v6l2.29-2.29L19.59,21L21,19.59l-2.29-2.29L21,15H15z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2 v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2 V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3C3.9,3,3,3.9,3,5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14,12v2.5l5.5,5.5H22L14,12z M14,20h3l-3-3V20z M8,4l-6,6h2v10h8V10h2L8,4z M9,14H7v-4h2V14z\"></path></g></g>" } } }, - "highlight_off": { - "name": "highlight_off", + "receipt_long": { + "name": "receipt_long", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" + "path": "<path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path><g><path d=\"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M15,20H6c-0.55,0-1-0.45-1-1v-1h10V20z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z\"></path><rect height=\"2\" width=\"6\" x=\"9\" y=\"7\"></rect><rect height=\"2\" width=\"2\" x=\"16\" y=\"7\"></rect><rect height=\"2\" width=\"6\" x=\"9\" y=\"10\"></rect><rect height=\"2\" width=\"2\" x=\"16\" y=\"10\"></rect></g>" } } }, - "history": { - "name": "history", + "rotate_right": { + "name": "rotate_right", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.55 5.55L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42l1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z\"></path>" } } }, - "history_toggle_off": { - "name": "history_toggle_off", + "crop_rotate": { + "name": "crop_rotate", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M7.45,4.58l-0.5-0.87C7.73,3.33,8.59,3.09,9.5,3.03v1C8.77,4.09,8.08,4.28,7.45,4.58z M15.97,9.5h1 c-0.06-0.91-0.3-1.77-0.69-2.55l-0.87,0.5C15.72,8.08,15.91,8.77,15.97,9.5z M12.55,4.58l0.5-0.87c-0.78-0.38-1.64-0.62-2.55-0.69 v1C11.23,4.09,11.92,4.28,12.55,4.58z M6.58,5.08l-0.5-0.87c-0.74,0.5-1.37,1.14-1.87,1.87l0.87,0.5C5.48,5.99,5.99,5.48,6.58,5.08 z M14.92,6.58l0.87-0.5c-0.5-0.74-1.14-1.37-1.87-1.87l-0.5,0.87C14.01,5.49,14.52,5.99,14.92,6.58z M7.45,15.42l-0.5,0.87 c0.78,0.38,1.64,0.62,2.55,0.69v-1C8.77,15.91,8.08,15.72,7.45,15.42z M4.03,10.5h-1c0.06,0.91,0.3,1.77,0.69,2.55l0.87-0.5 C4.28,11.92,4.09,11.23,4.03,10.5z M10.5,15.97v1c0.91-0.06,1.77-0.3,2.55-0.69l-0.5-0.87C11.92,15.72,11.23,15.91,10.5,15.97z M5.08,13.42l-0.87,0.5c0.5,0.74,1.14,1.37,1.87,1.87l0.5-0.87C5.99,14.52,5.48,14.01,5.08,13.42z M4.58,7.45l-0.87-0.5 C3.33,7.73,3.09,8.59,3.03,9.5h1C4.09,8.77,4.28,8.08,4.58,7.45z M15.97,10.5c-0.06,0.73-0.25,1.42-0.55,2.05l0.87,0.5 c0.38-0.78,0.62-1.64,0.69-2.55H15.97z M13.42,14.92l0.5,0.87c0.74-0.5,1.37-1.14,1.87-1.87l-0.87-0.5 C14.52,14.01,14.01,14.51,13.42,14.92z M10.5,7.05h-1v4l3.17,1.9l0.5-0.82l-2.67-1.58V7.05z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8c0-1.11-.9-2-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2h2v-2H8z\"></path>" } } }, - "home": { - "name": "home", + "2mp": { + "name": "2mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5.69l5 4.5V18h-2v-6H9v6H7v-7.81l5-4.5M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M14.5,10h-3V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H10V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5h4.5V10z\"></path></g></g>" } } }, - "horizontal_split": { - "name": "horizontal_split", + "raw_on": { + "name": "raw_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 15v2H5v-2h14m2-10H3v2h18V5zm0 4H3v2h18V9zm0 4H3v6h18v-6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M6.5,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-1C8,9.7,7.3,9,6.5,9z M6.5,11.5h-2v-1h2V11.5z\"></path><path d=\"M10.25,9l-1.5,6h1.5l0.38-1.5h1.75l0.37,1.5h1.5l-1.5-6H10.25z M11,12l0.25-1h0.5L12,12H11z\"></path><polygon points=\"19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 15.5,15 16.98,15 17.74,11.96 18.5,15 19.98,15 21.48,9\"></polygon></g></g>" } } }, - "hotel_class": { - "name": "hotel_class", + "rotate_left": { + "name": "rotate_left", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9,6.88L9.85,9.5h2.86l-2.38,1.89l0.8,2.58L9,12.36l-2.12,1.61l0.8-2.58L5.3,9.5h2.86L9,6.88z M7.06,8H1l4.94,3.93L4.06,18 L9,14.25L13.94,18l-1.88-6.07L17,8h-6.06L9,2L7.06,8z M11.36,4.44l0.67,2.06h1.58L12.15,2L11.36,4.44z M16.9,10l-3.1,2.47l1.23,3.97 L17.08,18l-1.55-5l3.77-3H16.9z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,8.89L11.94,12h2.82l-2.27,1.62l0.93,3.01L11,14.79l-2.42,1.84l0.93-3.01L7.24,12h2.82L11,8.89z M8.58,10H1l6.17,4.41 L4.83,22L11,17.31L17.18,22l-2.35-7.59L21,10h-7.58L11,2L8.58,10z M21.36,22l-1.86-6.01L23.68,13h-3.44l-3.08,2.2l1.46,4.72 L21.36,22z M17,8l-1.82-6l-1.04,3.45L14.91,8H17z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.11 8.53L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z\"></path>" } } }, - "hourglass_disabled": { - "name": "hourglass_disabled", + "crop_portrait": { + "name": "crop_portrait", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"7,4 13,4 13,6.59 10.5,9.09 11.21,9.79 14,7 14,7 14,3 6,3 6,4.59 7,5.59\"></polygon><path d=\"M2.93,2.93L2.22,3.64l6.57,6.57L6,13h0v4h8v-1.59l2.36,2.36l0.71-0.71L2.93,2.93z M13,16H7l0-2.59l2.5-2.5l3.5,3.5V16z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17\"></polygon><path d=\"M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z\"></path>" } } }, - "hourglass_empty": { - "name": "hourglass_empty", + "flip_camera_android": { + "name": "flip_camera_android", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M8,10c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S8,8.9,8,10z M11,10c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S11,9.45,11,10z\"></path><path d=\"M7,7H4.83C5.86,5.21,7.79,4,10,4c2.61,0,4.82,1.67,5.65,4h1.06C15.85,5.11,13.17,3,10,3C7.44,3,5.22,4.39,4,6.44V4H3v4h4 V7z\"></path><path d=\"M13,12v1h2.17c-1.04,1.79-2.96,3-5.17,3c-2.61,0-4.82-1.67-5.65-4H3.29c0.86,2.89,3.54,5,6.71,5c2.56,0,4.78-1.39,6-3.44 V16h1v-4H13z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z\"></path><path d=\"M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z\"></path><path d=\"M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z\"></path></g></g>" } } }, - "hourglass_full": { - "name": "hourglass_full", + "rotate_90_degrees_ccw": { + "name": "rotate_90_degrees_ccw", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z\"></path>" } } }, - "http": { - "name": "http", + "photo_filter": { + "name": "photo_filter", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\"></path><path d=\"M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 10v9H4.98V5h9V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zm-2.94-2.06L17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7zM12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z\"></path>" } } }, - "https": { - "name": "https", + "exposure_plus_2": { + "name": "exposure_plus_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17c.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM8 7H6v4H2v2h4v4h2v-4h4v-2H8V7z\"></path>" } } }, - "important_devices": { - "name": "important_devices", + "motion_photos_pause": { + "name": "motion_photos_pause", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z M9.25,12.5h-1.5v-5h1.5V12.5z M12.25,12.5 h-1.5v-5h1.5V12.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4c0-1.11-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M11,15H9V9h2V15z M15,15h-2V9h2V15z\"></path>" } } }, - "info": { - "name": "info", + "assistant": { + "name": "assistant", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-1l1.88-4.12L18 11l-4.12-1.88L12 5l-1.88 4.12L6 11l4.12 1.88z\"></path>" } } }, - "input": { - "name": "input", + "flare": { + "name": "flare", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g fill=\"none\"><path d=\"M0 0h24v24H0V0z\"></path><path d=\"M0 0h24v24H0V0z\" opacity=\".87\"></path></g><path d=\"M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3zM21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24l2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71l1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z\"></path>" } } }, - "integration_instructions": { - "name": "integration_instructions", + "picture_as_pdf": { + "name": "picture_as_pdf", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><circle cx=\"12\" cy=\"3.5\" fill=\"none\" r=\".75\"></circle><circle cx=\"12\" cy=\"3.5\" fill=\"none\" r=\".75\"></circle><polygon fill=\"none\" points=\"5,15 5,16 5,19 19,19 19,16 19,15 19,5 5,5\"></polygon><g><polygon points=\"11,14.17 8.83,12 11,9.83 9.59,8.41 6,12 9.59,15.59\"></polygon><polygon points=\"14.41,15.59 18,12 14.41,8.41 13,9.83 15.17,12 13,14.17\"></polygon><path d=\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v10v1v3c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2v-3v-1V5C21,3.9,20.1,3,19,3z M12,2.75 c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,15v1v3H5v-3v-1V5h14V15z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm12 6V9c0-.55-.45-1-1-1h-2v5h2c.55 0 1-.45 1-1zm-2-3h1v3h-1V9zm4 2h1v-1h-1V9h1V8h-2v5h1zm-8 0h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9v5h1v-2zm0-2h1v1h-1V9z\"></path>" } } }, - "invert_colors": { - "name": "invert_colors", + "brightness_4": { + "name": "brightness_4", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14.53,6.59L14.53,6.59L10,2L5.5,6.56c-1.08,1.11-1.75,2.62-1.75,4.28c0,3.4,2.8,6.16,6.25,6.16s6.25-2.76,6.25-6.16 C16.25,9.19,15.6,7.7,14.53,6.59z M5.25,10.84c0-1.21,0.47-2.35,1.32-3.22L10,4.14V15.5C7.38,15.5,5.25,13.41,5.25,10.84z\"></path>" - }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,4.81L12,19c-3.31,0-6-2.63-6-5.87c0-1.56,0.62-3.03,1.75-4.14L12,4.81 M12,2L6.35,7.56l0,0C4.9,8.99,4,10.96,4,13.13 C4,17.48,7.58,21,12,21c4.42,0,8-3.52,8-7.87c0-2.17-0.9-4.14-2.35-5.57l0,0L12,2z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12.29 7c-.74 0-1.45.17-2.08.46 1.72.79 2.92 2.53 2.92 4.54s-1.2 3.75-2.92 4.54c.63.29 1.34.46 2.08.46 2.76 0 5-2.24 5-5s-2.24-5-5-5z\"></path>" } } }, - "label": { - "name": "label", + "camera_rear": { + "name": "camera_rear", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z\"></path>" } } }, - "label_important": { - "name": "label_important", + "circle": { + "name": "circle", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 18.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.47,2,2,6.47,2,12c0,5.53,4.47,10,10,10s10-4.47,10-10C22,6.47,17.53,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z\"></path></g>" } } }, - "label_off": { - "name": "label_off", + "dehaze": { + "name": "dehaze", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 7l3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zM14.97 17H5V7.03L14.97 17z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z\"></path>" } } }, - "language": { - "name": "language", + "filter_6": { + "name": "filter_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2z\"></path>" } } }, - "launch": { - "name": "launch", + "motion_photos_paused": { + "name": "motion_photos_paused", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z\"></path></g>" } } }, - "leaderboard": { - "name": "leaderboard", + "crop_landscape": { + "name": "crop_landscape", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M16,11V3H8v6H2v12h20V11H16z M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z\"></path>" } } }, - "lightbulb": { - "name": "lightbulb", + "linked_camera": { + "name": "linked_camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 9v11H4V8h4.05l1.83-2H15V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-2zm.67-1.01H22C21.99 4.68 19.31 2 16 2v1.33c2.58 0 4.66 2.08 4.67 4.66zm-2.67 0h1.33c-.01-1.84-1.49-3.32-3.33-3.32V6c1.11 0 1.99.89 2 1.99zM7 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm8 0c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3 3 1.34 3 3z\"></path>" } } }, - "line_style": { - "name": "line_style", + "24mp": { + "name": "24mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M17,12.5h-3.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5C18,12.95,17.55,12.5,17,12.5z M16.5,15.5H15V14h1.5V15.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\"></path><polygon points=\"16,11.5 17.5,11.5 17.5,10 18.5,10 18.5,8.5 17.5,8.5 17.5,5.5 16,5.5 16,8.5 14.5,8.5 14.5,5.5 13,5.5 13,10 16,10\"></polygon></g></g>" } } }, - "line_weight": { - "name": "line_weight", + "logo_dev": { + "name": "logo_dev", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M6.46,8.43H5.93v3.15h0.53c0.12,0,0.23-0.04,0.35-0.13c0.12-0.09,0.18-0.22,0.18-0.39v-2.1c0-0.18-0.06-0.31-0.18-0.39 C6.69,8.47,6.58,8.43,6.46,8.43z\"></path><path d=\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M6.38,12.49h-1.4V7.49h1.43c1.07,0,1.43,0.86,1.43,1.43l0,2.14C7.84,11.63,7.49,12.49,6.38,12.49z M10.31,9.55v0.89H9.33v1.16 h1.61v0.89H9.06c-0.34,0.01-0.62-0.26-0.63-0.59V8.12C8.43,7.78,8.7,7.5,9.03,7.5h1.91l0,0.89H9.33v1.16H10.31z M14.07,11.87 c-0.4,0.93-1.11,0.74-1.43,0L11.47,7.5h0.98l0.9,3.43l0.89-3.43h0.98L14.07,11.87z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.68,14.98H6V9h1.71 c1.28,0,1.71,1.03,1.71,1.71l0,2.56C9.42,13.95,9,14.98,7.68,14.98z M12.38,11.46v1.07h-1.18v1.39h1.93v1.07h-2.25 c-0.4,0.01-0.74-0.31-0.75-0.71V9.75c-0.01-0.4,0.31-0.74,0.71-0.75h2.28l0,1.07h-1.92v1.39H12.38z M16.88,14.23 c-0.48,1.11-1.33,0.89-1.71,0L13.77,9h1.18l1.07,4.11L17.09,9h1.18L16.88,14.23z\"></path><path d=\"M7.77,10.12H7.14v3.77h0.63c0.14,0,0.28-0.05,0.42-0.16c0.14-0.1,0.21-0.26,0.21-0.47v-2.52c0-0.21-0.07-0.37-0.21-0.47 C8.05,10.17,7.91,10.12,7.77,10.12z\"></path></g></g>" } } }, - "list": { - "name": "list", + "15mp": { + "name": "15mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g fill=\"none\"><path d=\"M0 0h24v24H0V0z\"></path><path d=\"M0 0h24v24H0V0z\" opacity=\".87\"></path></g><path d=\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><path d=\"M16.5,10.5V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H12V9h3v1h-3v1.5h3.5C16.05,11.5,16.5,11.05,16.5,10.5z\"></path></g></g>" } } }, - "lock": { - "name": "lock", + "panorama_vertical": { + "name": "panorama_vertical", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g fill=\"none\"><path d=\"M0 0h24v24H0V0z\"></path><path d=\"M0 0h24v24H0V0z\" opacity=\".87\"></path></g><path d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8s-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8s.39 5.4 1.16 8H6.54z\"></path>" } } }, - "lock_clock": { - "name": "lock_clock", + "motion_photos_off": { + "name": "motion_photos_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g><g><g><path d=\"M5.5,16.5v-8h9v1.03c0.53,0.05,1.03,0.17,1.5,0.36V8.5C16,7.67,15.33,7,14.5,7H14V5c0-2.21-1.79-4-4-4S6,2.79,6,5v2H5.5 C4.67,7,4,7.67,4,8.5v8C4,17.33,4.67,18,5.5,18h3.9c-0.3-0.46-0.53-0.96-0.68-1.5H5.5z M7.5,5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5v2h-5V5z\"></path><path d=\"M14,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,12.79,16.21,11,14,11z M15.15,16.85l-1.65-1.65V13h1v1.79 l1.35,1.35L15.15,16.85z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M6,20V10h12v1c0.7,0,1.37,0.1,2,0.29V10c0-1.1-0.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v2H6c-1.1,0-2,0.9-2,2v10 c0,1.1,0.9,2,2,2h6.26c-0.42-0.6-0.75-1.28-0.97-2H6z M9,6c0-1.66,1.34-3,3-3s3,1.34,3,3v2H9V6z\"></path><path d=\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M19.65,20.35l-2.15-2.15V15h1v2.79l1.85,1.85 L19.65,20.35z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.42L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l10.93,10.94C14.86,19.59,13.48,20,12,20z\"></path><path d=\"M12,4c4.41,0,8,3.59,8,8c0,1.48-0.41,2.86-1.12,4.05l1.45,1.45C21.39,15.93,22,14.04,22,12c0-5.52-4.48-10-10-10 C9.96,2,8.07,2.61,6.49,3.66l1.45,1.45C9.14,4.41,10.52,4,12,4z\"></path></g></g>" } } }, - "lock_open": { - "name": "lock_open", + "panorama_vertical_select": { + "name": "panorama_vertical_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18.5,12c0-3.89,0.84-6.95,1.43-8.69C20.15,2.67,19.67,2,18.98,2L5,2C4.32,2,3.84,2.66,4.05,3.31C4.74,5.36,5.5,8.1,5.5,12 c0,3.87-0.76,6.66-1.45,8.69C3.84,21.34,4.32,22,5,22h14c0.68,0,1.17-0.66,0.95-1.31C19.27,18.66,18.5,15.86,18.5,12z\"></path></g>" } } }, - "login": { - "name": "login", + "grid_off": { + "name": "grid_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10,4v1h6v10h-6v1h6c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1H10z\"></path><polygon points=\"9.5,6.5 8.79,7.21 11.09,9.5 3,9.5 3,10.5 11.09,10.5 8.79,12.79 9.5,13.5 13,10\"></polygon></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14L0 2.55l2 2V20c0 1.1.9 2 2 2h15.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z\"></path>" } } }, - "logout": { - "name": "logout", + "panorama_fish_eye": { + "name": "panorama_fish_eye", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M17,8l-1.41,1.41L17.17,11H9v2h8.17l-1.58,1.58L17,16l4-4L17,8z M5,5h7V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h7v-2H5V5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" } } }, - "loyalty": { - "name": "loyalty", + "autofps_select": { + "name": "autofps_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z\"></path><circle cx=\"6.5\" cy=\"6.5\" r=\"1.5\"></circle><path d=\"M8.9 12.55c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45 0-1.13-.92-2.05-2.05-2.05-.57 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.89-.61-1.45-.61-1.13 0-2.05.92-2.05 2.05z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"12.03,6.3 11.97,6.3 10.95,9.19 13.05,9.19\"></polygon><rect height=\"5\" width=\"2\" x=\"3\" y=\"17\"></rect><path d=\"M12,15c3.31,0,6-2.69,6-6s-2.69-6-6-6S6,5.69,6,9S8.69,15,12,15z M11.37,5h1.25l2.63,7h-1.21l-0.63-1.79h-2.83L9.96,12 H8.74L11.37,5z\"></path><rect height=\"5\" width=\"2\" x=\"7\" y=\"17\"></rect><rect height=\"5\" width=\"2\" x=\"11\" y=\"17\"></rect><rect height=\"5\" width=\"6\" x=\"15\" y=\"17\"></rect></g></g>" } } }, - "manage_accounts": { - "name": "manage_accounts", + "photo_size_select_actual": { + "name": "photo_size_select_actual", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M4,18v-0.65c0-0.34,0.16-0.66,0.41-0.81C6.1,15.53,8.03,15,10,15c0.03,0,0.05,0,0.08,0.01c0.1-0.7,0.3-1.37,0.59-1.98 C10.45,13.01,10.23,13,10,13c-2.42,0-4.68,0.67-6.61,1.82C2.51,15.34,2,16.32,2,17.35V20h9.26c-0.42-0.6-0.75-1.28-0.97-2H4z\"></path><path d=\"M10,12c2.21,0,4-1.79,4-4s-1.79-4-4-4C7.79,4,6,5.79,6,8S7.79,12,10,12z M10,6c1.1,0,2,0.9,2,2s-0.9,2-2,2 c-1.1,0-2-0.9-2-2S8.9,6,10,6z\"></path><path d=\"M20.75,16c0-0.22-0.03-0.42-0.06-0.63l1.14-1.01l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L18,11h-2l-0.3,1.49 c-0.4,0.15-0.76,0.36-1.08,0.63l-1.45-0.49l-1,1.73l1.14,1.01c-0.03,0.21-0.06,0.41-0.06,0.63s0.03,0.42,0.06,0.63l-1.14,1.01 l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L16,21h2l0.3-1.49c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1.01 C20.72,16.42,20.75,16.22,20.75,16z M17,18c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S18.1,18,17,18z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z\"></path>" } } }, - "markunread_mailbox": { - "name": "markunread_mailbox", + "9mp": { + "name": "9mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M14.5,10.5v-4c0-0.55-0.45-1-1-1H11c-0.55,0-1,0.45-1,1V8c0,0.55,0.45,1,1,1h2v1h-3v1.5h3.5 C14.05,11.5,14.5,11.05,14.5,10.5z M13,8h-1.5V6.5H13V8z\"></path></g></g>" } } }, - "mark_as_unread": { - "name": "mark_as_unread", + "filter_7": { + "name": "filter_7", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g><g><g><path d=\"M12.5,5.5h2.42c-0.13-0.39-0.41-0.72-0.79-0.9L8.5,2L2.87,4.6C2.34,4.84,2,5.37,2,5.96v6.54C2,13.33,2.67,14,3.5,14V5.96 l5-2.31L12.5,5.5z\"></path><path d=\"M16.5,7h-10C5.67,7,5,7.67,5,8.5v7C5,16.33,5.67,17,6.5,17h10c0.83,0,1.5-0.67,1.5-1.5v-7C18,7.67,17.33,7,16.5,7z M16.5,15.5h-10v-5.28l5,2.78l5-2.78V15.5z M11.5,11.28l-5-2.78h10L11.5,11.28z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16.23,7h2.6c-0.06-0.47-0.36-0.94-0.79-1.17L10.5,2L2.8,5.83C2.32,6.09,2,6.64,2,7.17V15c0,1.1,0.9,2,2,2V7.4L10.5,4 L16.23,7z\"></path><path d=\"M20,8H7c-1.1,0-2,0.9-2,2v9c0,1.1,0.9,2,2,2h13c1.1,0,2-0.9,2-2v-9C22,8.9,21.1,8,20,8z M20,19H7v-7l6.5,3.33L20,12V19z M13.5,13.33L7,10h13L13.5,13.33z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2l4-8V5h-6v2h4l-4 8h2z\"></path>" } } }, - "maximize": { - "name": "maximize", + "flip_camera_ios": { + "name": "flip_camera_ios", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16,5h-2l-2-2H8L6,5H4C3.45,5,3,5.45,3,6v9c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V6C17,5.45,16.55,5,16,5z M16,15H4V6h2 h0.41l0.29-0.29L8.41,4h3.17l1.71,1.71L13.59,6H14h2V15z\"></path><path d=\"M10,6C9.28,6,8.62,6.2,8.04,6.54l0.73,0.73C9.15,7.1,9.56,7,10,7c1.65,0,3,1.35,3,3h-1.5l2,2l2-2H14C14,7.79,12.21,6,10,6 z\"></path><path d=\"M10,13c-1.65,0-3-1.35-3-3h1.5l-2-2l-2,2H6c0,2.21,1.79,4,4,4c0.72,0,1.38-0.2,1.96-0.54l-0.73-0.73 C10.85,12.9,10.44,13,10,13z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 3h18v2H3V3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h3.17h0.88l0.59-0.65L9.88,5h4.24l1.24,1.35L15.95,7h0.88H20V19z\"></path></g><g><path d=\"M12,17c-2.21,0-4-1.79-4-4h2l-2.5-2.5L5,13h2c0,2.76,2.24,5,5,5c0.86,0,1.65-0.24,2.36-0.62l-0.74-0.74 C13.13,16.87,12.58,17,12,17z\"></path></g><g><path d=\"M12,8c-0.86,0-1.65,0.24-2.36,0.62l0.74,0.73C10.87,9.13,11.42,9,12,9c2.21,0,4,1.79,4,4h-2l2.5,2.5L19,13h-2 C17,10.24,14.76,8,12,8z\"></path></g></g></g>" } } }, - "mediation": { - "name": "mediation", + "currency_yuan": { + "name": "currency_yuan", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><polygon points=\"10.97,10 15.5,3 13.71,3 10,8.74 6.29,3 4.5,3 9.03,10 5.5,10 5.5,11.5 9.25,11.5 9.25,17 10.75,17 10.75,11.5 14.5,11.5 14.5,10\"></polygon></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,16l4-4l-4-4v3h-5.06c-0.34-3.1-2.26-5.72-4.94-7.05C7.96,2.31,6.64,1,5,1C3.34,1,2,2.34,2,4s1.34,3,3,3 c0.95,0,1.78-0.45,2.33-1.14C9.23,6.9,10.6,8.77,10.92,11h-3.1C7.4,9.84,6.3,9,5,9c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.3,0,2.4-0.84,2.82-2h3.1c-0.32,2.23-1.69,4.1-3.58,5.14C6.78,17.45,5.95,17,5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.64,0,2.96-1.31,2.99-2.95c2.68-1.33,4.6-3.95,4.94-7.05H18V16z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><polygon points=\"13.28,12 18,12 18,14 13,14 13,21 11,21 11,14 6,14 6,12 10.72,12 5,3 7.37,3 12,10.29 16.63,3 19,3\"></polygon></g>" } } }, - "minimize": { - "name": "minimize", + "video_camera_front": { + "name": "video_camera_front", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 19h12v2H6v-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M16,9.69V18H4V6h12V9.69z\"></path><circle cx=\"10\" cy=\"10\" r=\"2\"></circle><path d=\"M14,15.43c0-0.81-0.48-1.53-1.22-1.85C11.93,13.21,10.99,13,10,13c-0.99,0-1.93,0.21-2.78,0.58C6.48,13.9,6,14.62,6,15.43 V16h8V15.43z\"></path></g></g>" } } }, - "model_training": { - "name": "model_training", + "movie_filter": { + "name": "movie_filter", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><path d=\"M9.25,16h1.5v-1h-1.5V16z M10,8L10,8L10,8C10,8,10,8,10,8c-1.38,0-2.5,1.12-2.5,2.5C7.5,12,9.25,13,9.25,14 c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5C12.5,9.12,11.38,8,10,8z M6.47,13.53l-0.71,0.71C4.67,13.16,4,11.66,4,10 c0-3.31,2.69-6,6-6V2l2.5,2.5L10,7V5c-2.76,0-5,2.24-5,5C5,11.38,5.56,12.63,6.47,13.53z M14.24,14.24l-0.71-0.71 C14.44,12.63,15,11.38,15,10s-0.56-2.63-1.47-3.53l0.71-0.71C15.33,6.84,16,8.34,16,10S15.33,13.16,14.24,14.24z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 11l-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94zm8.01-7l2 4h-3l-2-4h-2l2 4h-3l-2-4h-2l2 4h-3l-2-4h-1c-1.1 0-1.99.9-1.99 2l-.01 12c0 1.1.9 2 2 2h16c1.1 0 1.99-.9 1.99-2V4h-3.99zm2 14h-16V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4.01v8z\"></path>" } } }, - "new_label": { - "name": "new_label", + "collections": { + "name": "collections", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,10l-3.55,4.44C13.17,14.79,12.73,15,12.28,15H10.5v-1.5h1.78l2.8-3.5l-2.8-3.5H5.5v2H4v-2C4,5.67,4.67,5,5.5,5h6.78 c0.46,0,0.89,0.21,1.17,0.56L17,10z M9,12H7v-2H5.5v2h-2v1.5h2v2H7v-2h2V12z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,12l-4.37,6.16C16.26,18.68,15.65,19,15,19h-3l0-2h3l3.55-5L15,7H5v3H3V7c0-1.1,0.9-2,2-2h10c0.65,0,1.26,0.31,1.63,0.84 L21,12z M10,15H7v-3H5v3H2v2h3v3h2v-3h3V15z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z\"></path>" } } }, - "next_plan": { - "name": "next_plan", + "tonality": { + "name": "tonality", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S13.31,16,10,16z\"></path><path d=\"M10,8.5c-1.83,0-3.41,1.1-4.11,2.68l0.96,0.32C7.42,10.32,8.61,9.5,10,9.5c0.84,0,1.59,0.31,2.19,0.81l-1.19,1.19H14V8.5 l-1.09,1.09C12.13,8.91,11.12,8.5,10,8.5z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\"></path><path d=\"M15.97,11.03C14.87,9.79,13.28,9,11.5,9c-2.82,0-5.18,1.95-5.82,4.56l0.96,0.32C7.15,11.66,9.13,10,11.5,10 c1.51,0,2.85,0.68,3.76,1.74L13,14h5V9L15.97,11.03z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z\"></path>" } } }, - "nightlight_round": { - "name": "nightlight_round", + "music_off": { + "name": "music_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M15.5,22c1.05,0,2.05-0.16,3-0.46c-4.06-1.27-7-5.06-7-9.54s2.94-8.27,7-9.54C17.55,2.16,16.55,2,15.5,2 c-5.52,0-10,4.48-10,10S9.98,22,15.5,22L15.5,22z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 7h4V3h-6v4.61l2 2zm-2 3.44L4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44zM10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\"></path>" } } }, - "note_add": { - "name": "note_add", + "photo_library": { + "name": "photo_library", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 11h-2v3H8v2h3v3h2v-3h3v-2h-3zm1-9H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z\"></path>" } } }, - "not_accessible": { - "name": "not_accessible", + "filter_none": { + "name": "filter_none", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10.95,14h1c-0.24,1.69-1.69,3-3.45,3C6.57,17,5,15.43,5,13.5c0-1.76,1.31-3.21,3-3.45v1c-1.14,0.23-2,1.24-2,2.45 C6,14.88,7.12,16,8.5,16C9.71,16,10.72,15.14,10.95,14z M8.5,4.5C8.5,5.33,9.17,6,10,6s1.5-0.67,1.5-1.5S10.83,3,10,3 S8.5,3.67,8.5,4.5z M11,9.59V8.96l0.47,0.43c0.17,0.16,0.35,0.3,0.53,0.43c0.77,0.57,1.68,0.89,2.66,0.89v-1 c-0.94,0-1.81-0.36-2.49-1.04L12,8.52l-1.15-1.05c0,0-0.49-0.47-0.85-0.47C9.57,7,9.21,7.28,9.07,7.66L11,9.59z M16.36,16.36 L3.64,3.64L2.93,4.34L9,10.41V12c0,0.55,0.45,1,1,1h1.59l4.07,4.07L16.36,16.36z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M10,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M19,13v-2c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05 C15.29,12.12,17.25,12.99,19,13z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9 c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2 h2.17l5.61,5.61l1.41-1.41L2.81,2.81z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\"></path>" } } }, - "not_started": { - "name": "not_started", + "vignette": { + "name": "vignette", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><path d=\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3 L10,3z M10,13l4-3l-4-3V13z M8,7v6h1V7H8z\"></path>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M11,8H9v8h2V8z M17,12l-5-4v8L17,12z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 5v14H3V5h18m0-2H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 5c3.25 0 6 1.83 6 4s-2.75 4-6 4-6-1.83-6-4 2.75-4 6-4m0-2c-4.42 0-8 2.69-8 6s3.58 6 8 6 8-2.69 8-6-3.58-6-8-6z\"></path>" } } }, - "no_accounts": { - "name": "no_accounts", + "hide_image": { + "name": "hide_image", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M15.18,10.94c0.2-0.44,0.32-0.92,0.32-1.44C15.5,7.57,13.93,6,12,6c-0.52,0-1,0.12-1.44,0.32L15.18,10.94z\"></path><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M4,12c0-1.85,0.63-3.55,1.69-4.9l2.86,2.86 c0.21,1.56,1.43,2.79,2.99,2.99l2.2,2.2C13.17,15.05,12.59,15,12,15c-2.32,0-4.45,0.8-6.14,2.12C4.7,15.73,4,13.95,4,12z M12,20 c-1.74,0-3.34-0.56-4.65-1.5C8.66,17.56,10.26,17,12,17s3.34,0.56,4.65,1.5C15.34,19.44,13.74,20,12,20z M18.31,16.9L7.1,5.69 C8.45,4.63,10.15,4,12,4c4.42,0,8,3.58,8,8C20,13.85,19.37,15.54,18.31,16.9z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,5v11.17l2,2V5c0-1.1-0.9-2-2-2H5.83l2,2H19z\"></path><path d=\"M2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61l1.41-1.41L2.81,2.81z M5,19V7.83l7.07,7.07L11.25,16 L9,13l-3,4h8.17l2,2H5z\"></path></g></g>" } } }, - "offline_bolt": { - "name": "offline_bolt", + "4mp": { + "name": "4mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm0 17.96c-4.4 0-7.98-3.58-7.98-7.98S7.6 4.02 12 4.02 19.98 7.6 19.98 12 16.4 19.98 12 19.98zM12.75 5l-4.5 8.5h3.14V19l4.36-8.5h-3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"12.5,11.5 14,11.5 14,10 15,10 15,8.5 14,8.5 14,5.5 12.5,5.5 12.5,8.5 11,8.5 11,5.5 9.5,5.5 9.5,10 12.5,10\"></polygon></g></g>" } } }, - "offline_pin": { - "name": "offline_pin", + "30fps_select": { + "name": "30fps_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M4,4v2h5v2H5v2h4v2H4v2h5c1.1,0,2-0.9,2-2v-1.5C11,9.67,10.83,9,10,9c0.83,0,1-0.67,1-1.5V6c0-1.1-0.9-2-2-2H4z M18,4 c1.1,0,2,0.9,2,2v6c0,1.1-0.9,2-2,2h-3c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H18z M18,6h-3v6h3V6z M5,22H3v-5h2V22z M9,22H7v-5h2V22 z M13,22h-2v-5h2V22z M21,22h-6v-5h6V22z\"></path></g></g>" } } }, - "online_prediction": { - "name": "online_prediction", + "looks_5": { + "name": "looks_5", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><path d=\"M9.25,14h1.5v1h-1.5V14z M10,7L10,7L10,7C10,7,10,7,10,7C8.62,7,7.5,8.12,7.5,9.5C7.5,11,9.25,12,9.25,13 c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5C12.5,8.12,11.38,7,10,7z M4,10c0-1.65,0.67-3.15,1.76-4.24L5.05,5.05 C3.78,6.32,3,8.07,3,10c0,1.93,0.78,3.68,2.05,4.95l0.71-0.71C4.67,13.15,4,11.65,4,10z M17,10c0-1.93-0.78-3.68-2.05-4.95 l-0.71,0.71C15.33,6.85,16,8.35,16,10c0,1.65-0.67,3.15-1.76,4.24l0.71,0.71C16.22,13.68,17,11.93,17,10z M6.46,13.54l0.71-0.71 C6.45,12.1,6,11.1,6,10c0-1.1,0.45-2.1,1.17-2.83L6.46,6.46C5.56,7.37,5,8.62,5,10C5,11.38,5.56,12.63,6.46,13.54z M14,10 c0,1.1-0.45,2.1-1.17,2.83l0.71,0.71C14.44,12.63,15,11.38,15,10c0-1.38-0.56-2.63-1.46-3.54l-0.71,0.71C13.55,7.9,14,8.9,14,10z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-2c0-1.11-.9-2-2-2h-2V9h4V7H9v6h4v2H9v2h4c1.1 0 2-.89 2-2z\"></path>" } } }, - "opacity": { - "name": "opacity", + "exposure_zero": { + "name": "exposure_zero", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M24 0H0v24h24V0zm0 0H0v24h24V0zM0 24h24V0H0v24z\" fill=\"none\"></path><path d=\"M17.66 8L12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.14 12.5c0 1-.1 1.85-.3 2.55s-.48 1.27-.83 1.7c-.36.44-.79.75-1.3.95s-1.07.3-1.7.3c-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95s-.65-1.01-.85-1.7c-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04h-.01zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19s-.61.06-.86.18-.47.31-.64.58-.31.62-.4 1.06-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19.62-.06.87-.19.46-.33.63-.61.3-.64.39-1.09.13-.99.13-1.62v-2.66h-.01z\"></path>" } } }, - "open_in_browser": { - "name": "open_in_browser", + "11mp": { + "name": "11mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6l-4 4h3v6h2v-6h3l-4-4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path></g><g><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path></g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path></g><g><polygon points=\"9.5,11.5 11,11.5 11,5.5 8,5.5 8,7 9.5,7\"></polygon></g><g><polygon points=\"14.5,11.5 16,11.5 16,5.5 13,5.5 13,7 14.5,7\"></polygon></g></g></g>" } } }, - "open_in_full": { - "name": "open_in_full", + "healing": { + "name": "healing", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><polygon points=\"21,11 21,3 13,3 16.29,6.29 6.29,16.29 3,13 3,21 11,21 7.71,17.71 17.71,7.71\"></polygon>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.73 12.02l3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34c-.39-.39-1.02-.39-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z\"></path>" } } }, - "open_in_new": { - "name": "open_in_new", + "exposure_neg_1": { + "name": "exposure_neg_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 11v2h8v-2H4zm15 7h-2V7.38L14 8.4V6.7L18.7 5h.3v13z\"></path>" } } }, - "open_in_new_off": { - "name": "open_in_new_off", + "filter": { + "name": "filter", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,14.88l-1.5-1.5V10H17V14.88z M10,4.5V3H5.12l1.5,1.5H10z M15.03,6.03L17,8V3h-5l1.97,1.97l-3.44,3.44l1.06,1.06 L15.03,6.03z M16.01,18.13L14.88,17H4.5C3.67,17,3,16.33,3,15.5V5.12L1.87,3.99l1.06-1.06l14.14,14.14L16.01,18.13z M13.38,15.5 l-3.91-3.91L8.06,13L7,11.94l1.41-1.41L4.5,6.62v8.88H13.38z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16.79,5.8L14,3h7v7l-2.79-2.8l-4.09,4.09l-1.41-1.41L16.79,5.8z M19,12v4.17l2,2V12H19z M19.78,22.61L18.17,21H5 c-1.11,0-2-0.9-2-2V5.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M16.17,19l-4.88-4.88L9.7,15.71L8.29,14.3l1.59-1.59L5,7.83 V19H16.17z M7.83,5H12V3H5.83L7.83,5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.96 10.29l-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\"></path>" } } }, - "open_with": { - "name": "open_with", + "filter_9_plus": { + "name": "filter_9_plus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8c0-1.11-.9-2-2-2h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z\"></path>" } } }, - "outbond": { - "name": "outbond", + "movie_creation": { + "name": "movie_creation", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z\"></path>" } } }, - "outbound": { - "name": "outbound", + "add_to_photos": { + "name": "add_to_photos", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z\"></path>" } } }, - "outbox": { - "name": "outbox", + "crop_free": { + "name": "crop_free", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-3h2.34c0.56,1.18,1.77,2,3.16,2s2.6-0.82,3.16-2h2.34V15.5z M15.5,11H12c0,1.1-0.9,2-2,2s-2-0.9-2-2H4.5V4.5h11 V11z\"></path><polygon points=\"9.25,8.37 9.25,11 10.75,11 10.75,8.37 11.94,9.56 13,8.5 10,5.5 7,8.5 8.06,9.56\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"11,9.83 11,14 13,14 13,9.83 14.59,11.41 16,10 12,6 8,10 9.41,11.41\"></polygon><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5v-3h3.02 c0.91,1.21,2.35,2,3.98,2s3.06-0.79,3.98-2H19V19z M19,14h-4.18c-0.41,1.16-1.51,2-2.82,2s-2.4-0.84-2.82-2H5V5h14V14z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z\"></path>" } } }, - "outlet": { - "name": "outlet", + "filter_tilt_shift": { + "name": "filter_tilt_shift", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z M10,11V8c0-0.55-0.45-1-1-1h0C8.45,7,8,7.45,8,8v3c0,0.55,0.45,1,1,1h0C9.55,12,10,11.55,10,11z M16,11V8 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h0C15.55,12,16,11.55,16,11z M14,16c0-1.1-0.9-2-2-2h0 c-1.1,0-2,0.9-2,2v2h4V16z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z\"></path>" } } }, - "pageview": { - "name": "pageview", + "hdr_strong": { + "name": "hdr_strong", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.49 16c.88 0 1.7-.26 2.39-.7l2.44 2.44 1.42-1.42-2.44-2.43c.44-.7.7-1.51.7-2.39C16 9.01 13.99 7 11.5 7S7 9.01 7 11.5 9.01 16 11.49 16zm.01-7c1.38 0 2.5 1.12 2.5 2.5S12.88 14 11.5 14 9 12.88 9 11.5 10.12 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 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>" } } }, - "paid": { - "name": "paid", + "wb_auto": { + "name": "wb_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z M12.89,11.1c-1.78-0.59-2.64-0.96-2.64-1.9c0-1.02,1.11-1.39,1.81-1.39 c1.31,0,1.79,0.99,1.9,1.34l1.58-0.67c-0.15-0.44-0.82-1.91-2.66-2.23V5h-1.75v1.26c-2.6,0.56-2.62,2.85-2.62,2.96 c0,2.27,2.25,2.91,3.35,3.31c1.58,0.56,2.28,1.07,2.28,2.03c0,1.13-1.05,1.61-1.98,1.61c-1.82,0-2.34-1.87-2.4-2.09L8.1,14.75 c0.63,2.19,2.28,2.78,3.02,2.96V19h1.75v-1.24c0.52-0.09,3.02-0.59,3.02-3.22C15.9,13.15,15.29,11.93,12.89,11.1z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L9 7H7zm-.15 5.65L8 9l1.15 3.65h-2.3zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76l-.01.01C12.76 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c2.96 0 5.55-1.61 6.93-4 .03-.06.05-.12.08-.18.05-.08.09-.17.14-.25l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-8.63 7.67C12.38 16.64 10.35 18 8 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6c0 .96-.23 1.86-.63 2.67z\"></path>" } } }, - "pan_tool": { - "name": "pan_tool", + "filter_2": { + "name": "filter_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M18 24h-6.55c-1.08 0-2.14-.45-2.89-1.23l-7.3-7.61 2.07-1.83c.62-.55 1.53-.66 2.26-.27L8 14.34V4.79c0-1.38 1.12-2.5 2.5-2.5.17 0 .34.02.51.05.09-1.3 1.17-2.33 2.49-2.33.86 0 1.61.43 2.06 1.09.29-.12.61-.18.94-.18 1.38 0 2.5 1.12 2.5 2.5v.28c.16-.03.33-.05.5-.05 1.38 0 2.5 1.12 2.5 2.5V20c0 2.21-1.79 4-4 4zM4.14 15.28l5.86 6.1c.38.39.9.62 1.44.62H18c1.1 0 2-.9 2-2V6.15c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V3.42c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V2.51c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V4.79c0-.28-.22-.5-.5-.5s-.5.23-.5.5v12.87l-5.35-2.83-.51.45z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z\"></path>" } } }, - "payment": { - "name": "payment", + "looks_3": { + "name": "looks_3", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.11-.9-2-2-2H9v2h4v2h-2v2h2v2H9v2h4c1.1 0 2-.89 2-2z\"></path>" } } }, - "pending": { - "name": "pending", + "collections_bookmark": { + "name": "collections_bookmark", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6 c0-3.31,2.69-6,6-6s6,2.69,6,6C16,13.31,13.31,16,10,16z\"></path><circle cx=\"6.5\" cy=\"10\" r=\"1\"></circle><circle cx=\"13.5\" cy=\"10\" r=\"1\"></circle><circle cx=\"10\" cy=\"10\" r=\"1\"></circle></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z\"></path><circle cx=\"7\" cy=\"12\" r=\"1.5\"></circle><circle cx=\"12\" cy=\"12\" r=\"1.5\"></circle><circle cx=\"17\" cy=\"12\" r=\"1.5\"></circle></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 2v5l-1-.75L15 9V4h2zm3 12H8V4h5v9l3-2.25L19 13V4h1v12z\"></path>" } } }, - "pending_actions": { - "name": "pending_actions", + "brightness_6": { + "name": "brightness_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5v11c3.03 0 5.5-2.47 5.5-5.5S15.03 6.5 12 6.5z\"></path>" } } }, - "perm_camera_mic": { - "name": "perm_camera_mic", + "timer_10": { + "name": "timer_10", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2s2-.9 2-2V8c0-1.1-.9-2-2-2zm8-1h-3.17l-1.86-2H8.96L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7v-1.09c2.83-.48 5-2.94 5-5.91h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6c0 2.97 2.17 5.43 5 5.91V19H4V7h4.21l.59-.65L10.04 5h4.24l1.24 1.35.59.65H20v12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z\"></path>" } } }, - "perm_contact_calendar": { - "name": "perm_contact_calendar", + "palette": { + "name": "palette", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M10,2c-4.41,0-8,3.59-8,8s3.59,8,8,8c1.1,0,2-0.9,2-2c0-0.49-0.18-0.96-0.51-1.34c-0.24-0.3-0.02-0.66,0.3-0.66h1.42 c2.65,0,4.8-2.15,4.8-4.8C18,5.23,14.41,2,10,2z M13.2,12.5h-1.42c-1.05,0-1.9,0.85-1.9,1.9c0,0.47,0.19,0.92,0.47,1.25 c0.34,0.39,0.02,0.85-0.36,0.85c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5s6.5,2.56,6.5,5.7C16.5,11.02,15.02,12.5,13.2,12.5z\"></path><circle cx=\"14.5\" cy=\"9.5\" r=\"1.25\"></circle><circle cx=\"12\" cy=\"6.5\" r=\"1.25\"></circle><circle cx=\"5.5\" cy=\"9.5\" r=\"1.25\"></circle><circle cx=\"8\" cy=\"6.5\" r=\"1.25\"></circle></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.84 4.22c-.05-.12-.11-.23-.18-.34-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-1V1h-2v2H8V1H6v2H5c-.42 0-.8.13-1.12.34-.21.14-.4.33-.54.54-.07.11-.13.22-.18.34-.1.24-.16.5-.16.78v14c0 1.1.89 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.28-.06-.54-.16-.78zM5 19V5h14v14H5zm7-6.12c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31zM12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><g><path d=\"M12,22C6.49,22,2,17.51,2,12S6.49,2,12,2s10,4.04,10,9c0,3.31-2.69,6-6,6h-1.77c-0.28,0-0.5,0.22-0.5,0.5 c0,0.12,0.05,0.23,0.13,0.33c0.41,0.47,0.64,1.06,0.64,1.67C14.5,20.88,13.38,22,12,22z M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8 c0.28,0,0.5-0.22,0.5-0.5c0-0.16-0.08-0.28-0.14-0.35c-0.41-0.46-0.63-1.05-0.63-1.65c0-1.38,1.12-2.5,2.5-2.5H16 c2.21,0,4-1.79,4-4C20,7.14,16.41,4,12,4z\"></path><circle cx=\"6.5\" cy=\"11.5\" r=\"1.5\"></circle><circle cx=\"9.5\" cy=\"7.5\" r=\"1.5\"></circle><circle cx=\"14.5\" cy=\"7.5\" r=\"1.5\"></circle><circle cx=\"17.5\" cy=\"11.5\" r=\"1.5\"></circle></g></g></g></g>" } } }, - "perm_data_setting": { - "name": "perm_data_setting", + "edit": { + "name": "edit", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83v6.74zm5.78 8.75l-1.07-.83c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32zm-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.06 9.02l.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z\"></path>" } } }, - "perm_device_information": { - "name": "perm_device_information", + "crop_square": { + "name": "crop_square", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 7h2v2h-2zm0 4h2v6h-2zm6-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zM7 4V3h10v1H7z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z\"></path>" } } }, - "perm_identity": { - "name": "perm_identity", + "19mp": { + "name": "19mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 9c2.7 0 5.8 1.29 6 2v1H6v-.99c.2-.72 3.3-2.01 6-2.01m0-11C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><path d=\"M16.5,10.5v-4c0-0.55-0.45-1-1-1H13c-0.55,0-1,0.45-1,1V8c0,0.55,0.45,1,1,1h2v1h-3v1.5h3.5 C16.05,11.5,16.5,11.05,16.5,10.5z M15,8h-1.5V6.5H15V8z\"></path></g></g>" } } }, - "perm_media": { - "name": "perm_media", + "timer": { + "name": "timer", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.45,6.61l1.08-1.08l-1.06-1.06l-1.08,1.08C13.19,4.58,11.66,4,10,4c-3.87,0-7,3.13-7,7s3.13,7,7,7c3.87,0,7-3.13,7-7 C17,9.34,16.42,7.81,15.45,6.61z M10,16.5c-3.03,0-5.5-2.47-5.5-5.5S6.97,5.5,10,5.5s5.5,2.47,5.5,5.5S13.03,16.5,10,16.5z\"></path><rect height=\"1.5\" width=\"5\" x=\"7.5\" y=\"1.5\"></rect><rect height=\"5\" width=\"1.5\" x=\"9.25\" y=\"7\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm5 9h14l-3.5-4.5-2.5 3.01L11.5 9zM22 4h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H6V4h5.17l1.41 1.41.59.59H22v10z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M15,1H9v2h6V1z M11,14h2V8h-2V14z M19.03,7.39l1.42-1.42c-0.43-0.51-0.9-0.99-1.41-1.41l-1.42,1.42 C16.07,4.74,14.12,4,12,4c-4.97,0-9,4.03-9,9s4.02,9,9,9s9-4.03,9-9C21,10.88,20.26,8.93,19.03,7.39z M12,20c-3.87,0-7-3.13-7-7 s3.13-7,7-7s7,3.13,7,7S15.87,20,12,20z\"></path></g></g></g>" } } }, - "perm_phone_msg": { - "name": "perm_phone_msg", + "hdr_enhanced_select": { + "name": "hdr_enhanced_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM12 3v10l3-3h6V3h-9zm7 5h-5V5h5v3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S8.69,2,12,2z M12,4C9.79,4,8,5.79,8,8s1.79,4,4,4s4-1.79,4-4 S14.21,4,12,4z M13,11h-2V9H9V7h2V5h2v2h2v2h-2V11z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M18,18.5c0,0.6-0.4,1.1-0.9,1.4 L18,22h-1.5l-0.9-2h-1.1v2H13v-6h3.5c0.8,0,1.5,0.7,1.5,1.5V18.5z M16.5,18.5v-1h-2v1H16.5z M3.5,18v-2H5v6H3.5v-2.5h-2V22H0v-6 h1.5v2H3.5z M10,16c0.8,0,1.5,0.7,1.5,1.5v3c0,0.8-0.7,1.5-1.5,1.5H6.5v-6H10z M10,20.5v-3H8v3H10z\"></path></g></g>" } } }, - "perm_scan_wifi": { - "name": "perm_scan_wifi", + "flash_off": { + "name": "flash_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zM2.92 7.65C5.8 5.85 8.74 5 12 5c3.25 0 6.18.85 9.08 2.67L12 18.83 2.92 7.65zM11 10h2v6h-2zm0-4h2v2h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z\"></path>" } } }, - "pets": { - "name": "pets", + "panorama_wide_angle": { + "name": "panorama_wide_angle", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"4.5\" cy=\"9.5\" r=\"2.5\"></circle><circle cx=\"9\" cy=\"5.5\" r=\"2.5\"></circle><circle cx=\"15\" cy=\"5.5\" r=\"2.5\"></circle><circle cx=\"19.5\" cy=\"9.5\" r=\"2.5\"></circle><path d=\"M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z\"></path>" } } }, - "picture_in_picture": { - "name": "picture_in_picture", + "thermostat_auto": { + "name": "thermostat_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 7h-8v6h8V7zm-2 4h-4V9h4v2zm4-8H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M11,12V6c0-1.66-1.34-3-3-3S5,4.34,5,6v6c-1.21,0.91-2,2.37-2,4c0,1.12,0.38,2.14,1,2.97V19h0.02c0.91,1.21,2.35,2,3.98,2 s3.06-0.79,3.98-2H12v-0.03c0.62-0.83,1-1.85,1-2.97C13,14.37,12.21,12.91,11,12z M5,16c0-0.94,0.45-1.84,1.2-2.4L7,13V6 c0-0.55,0.45-1,1-1s1,0.45,1,1v7l0.8,0.6c0.75,0.57,1.2,1.46,1.2,2.4H5z M18.62,4h-1.61l-3.38,9h1.56L16,10.7h3.63l0.8,2.3H22 L18.62,4z M16.47,9.39l1.31-3.72h0.08l1.31,3.72H16.47z\"></path></g>" } } }, - "picture_in_picture_alt": { - "name": "picture_in_picture_alt", + "camera_alt": { + "name": "camera_alt", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 11h-8v6h8v-6zm-2 4h-4v-2h4v2zm4-12H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4.98C23 3.88 22.1 3 21 3zm0 16.02H3V4.97h18v14.05z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z\"></path>" } } }, - "pin_end": { - "name": "pin_end", + "60fps_select": { + "name": "60fps_select", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.5,10V5.5h-13v9H12c0.01,0.02,0,1.5,0,1.5H3.5C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4h13C17.33,4,18,4.67,18,5.5 V10H16.5z M15.75,11.5c-1.24,0-2.25,1.01-2.25,2.25s1,2.25,2.25,2.25c1.24,0,2.25-1.01,2.25-2.25S16.99,11.5,15.75,11.5z M10,11.24 V9.56l2.21,2.21l1.06-1.06L11.06,8.5h1.68V7H8.5v4.24H10z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,12V6H4v12h10l0,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v6H20z M19,14c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.66,0,3-1.34,3-3S20.66,14,19,14z M14.66,8H9v5.66h2v-2.24l2.95,2.95l1.41-1.41L12.41,10h2.24V8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18,6v6h-3V6H18z M18,4h-3c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M11,6V4H6 C4.9,4,4,4.9,4,6v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H6V6H11z M9,10v2H6v-2H9z M5,22H3v-5h2V22z M9,22H7v-5h2 V22z M13,22h-2v-5h2V22z M21,22h-6v-5h6V22z\"></path></g></g>" } } }, - "pin_invoke": { - "name": "pin_invoke", + "style": { + "name": "style", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,10v4.5c0,0.83-0.67,1.5-1.5,1.5h-13C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4H12c0,0,0.01,1.48,0,1.5H3.5v9h13V10 H18z M18,6.25C18,5.01,16.99,4,15.75,4C14.5,4,13.5,5.01,13.5,6.25s1.01,2.25,2.25,2.25S18,7.49,18,6.25z M7.76,10h1.68l-2.21,2.21 l1.06,1.06l2.21-2.21v1.68H12V8.5H7.76V10z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,12v6c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10l0,2H4v12h16v-6H22z M22,7c0-1.66-1.34-3-3-3 c-1.66,0-3,1.34-3,3s1.34,3,3,3C20.66,10,22,8.66,22,7z M9.34,12h2.24l-2.95,2.95l1.41,1.41L13,13.42v2.24h2V10H9.34V12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2.53 19.65l1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zm-9.2 3.8L7.87 7.79l7.35-3.04h.01l4.95 11.95-7.35 3.05z\"></path><circle cx=\"11\" cy=\"9\" r=\"1\"></circle><path d=\"M5.88 19.75c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z\"></path>" } } }, - "plagiarism": { - "name": "plagiarism", + "rotate_90_degrees_cw": { + "name": "rotate_90_degrees_cw", "keywords": [ - "action" + "image" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M12,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V7L12,3z M15,16H5V4h6v4h4V16z\"></path><path d=\"M7.73,9.73c-0.98,0.98-0.98,2.56,0,3.54c0.86,0.86,2.18,0.96,3.15,0.32l1.45,1.45l0.71-0.71l-1.45-1.45 c0.64-0.97,0.54-2.29-0.32-3.15C10.29,8.76,8.71,8.76,7.73,9.73z M10.56,12.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C11.15,11.03,11.15,11.97,10.56,12.56z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M9,11l5,5l5-5l-5-5L9,11z M14,13.88L11.12,11L14,8.12L16.88,11L14,13.88z\"></path><path d=\"M2,11c0,3.87,3.13,7,7,7c1.43,0,2.76-0.43,3.86-1.17l-1.09-1.09C10.96,16.22,10.01,16.5,9,16.5c-3.03,0-5.5-2.47-5.5-5.5 c0-3.02,2.46-5.56,5.62-5.49l0,0L7.94,6.69L9,7.75l3-3l-3.01-3L7.93,2.81l1.2,1.2C5.16,3.93,2,7.12,2,11z\"></path></g></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20L6,20V4h7v5h5V20z\"></path><path d=\"M9.03,11.03c-1.37,1.37-1.37,3.58,0,4.95c1.12,1.12,2.8,1.31,4.13,0.59l1.88,1.88l1.41-1.41l-1.88-1.88 c0.71-1.33,0.53-3.01-0.59-4.13C12.61,9.66,10.39,9.66,9.03,11.03z M12.56,14.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C13.15,13.03,13.15,13.97,12.56,14.56z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M2,13c0,4.97,4.03,9,9,9c1.76,0,3.4-0.51,4.79-1.38l-1.46-1.46C13.34,19.69,12.2,20,11,20c-3.86,0-7-3.14-7-7s3.14-7,7-7 h0.17L9.59,7.59L11,9l4-4l-4-4L9.58,2.41L11.17,4H11C6.03,4,2,8.03,2,13z M11,13l6,6l6-6l-6-6L11,13z M17,16.17L13.83,13L17,9.83 L20.17,13L17,16.17z\"></path></g></g>" } } }, - "play_for_work": { - "name": "play_for_work", + "panorama": { + "name": "panorama", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H3V6h18v12zm-6.5-7L11 15.51 8.5 12.5 5 17h14z\"></path>" } } }, - "polymer": { - "name": "polymer", + "filter_b_and_w": { + "name": "filter_b_and_w", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8L19 4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16l-7-8v8H5l7-8V5h7v14z\"></path>" } } }, - "power_settings_new": { - "name": "power_settings_new", + "mic_external_off": { + "name": "mic_external_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M10,5c0-1.66-1.34-3-3-3C6.38,2,5.81,2.19,5.33,2.5l4.15,4.15C9.8,6.18,10,5.61,10,5z\"></path><path d=\"M14,6c0-1.1,0.9-2,2-2s2,0.9,2,2v9.17l2,2V6c0-2.21-1.79-4-4-4s-4,1.79-4,4v3.17l2,2V6z\"></path><path d=\"M2.1,2.1L0.69,3.51L5.17,8H4l1,10h1c0,2.21,1.79,4,4,4s4-1.79,4-4v-1.17l6.49,6.49l1.41-1.41L2.1,2.1z M7.19,16H6.81 l-0.6-6h0.96l0.56,0.56L7.19,16z M12,18c0,1.1-0.9,2-2,2s-2-0.9-2-2h1l0.56-5.61L12,14.83V18z\"></path></g></g>" } } }, - "pregnant_woman": { - "name": "pregnant_woman", + "looks_one": { + "name": "looks_one", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-7-2h2V7h-4v2h2z\"></path>" } } }, - "preview": { - "name": "preview", + "slideshow": { + "name": "slideshow", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M12,10.5 c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13C8.52,11.46,10.16,10.5,12,10.5 M12,9 c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\"></path>" } } }, - "print": { - "name": "print", + "image_aspect_ratio": { + "name": "image_aspect_ratio", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 12v2H8v-4h8v2zm2-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z\"></path><circle cx=\"18\" cy=\"11.5\" r=\"1\"></circle>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z\"></path>" } } }, - "privacy_tip": { - "name": "privacy_tip", + "photo_camera_front": { + "name": "photo_camera_front", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,3.6l5,2.25v3.5c0,3.18-2.22,6.32-5,7.12c-2.78-0.8-5-3.94-5-7.12v-3.5L10,3.6 M10,2.5L4,5.2v4.15 c0,3.63,2.56,7.33,6,8.15c3.44-0.82,6-4.52,6-8.15V5.2L10,2.5L10,2.5z M10.5,9h-1v4h1V9z M10.5,7h-1v1h1V7z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,3.19l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12 c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z\"></path><circle cx=\"12\" cy=\"11\" r=\"2\"></circle><path d=\"M14.78,14.58C13.93,14.21,12.99,14,12,14s-1.93,0.21-2.78,0.58C8.48,14.9,8,15.62,8,16.43V17h8v-0.57 C16,15.62,15.52,14.9,14.78,14.58z\"></path></g></g>" } } }, - "private_connectivity": { - "name": "private_connectivity", + "crop_5_4": { + "name": "crop_5_4", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.45,9.25C15.08,6.57,12.78,4.5,10,4.5S4.92,6.57,4.55,9.25H2v1.5h2.55C4.92,13.43,7.22,15.5,10,15.5s5.08-2.07,5.45-4.75 H18v-1.5H15.45z M10,14c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C14,12.21,12.21,14,10,14z M12,8.5h-0.5V8 c0-0.82-0.67-1.5-1.5-1.5S8.5,7.18,8.5,8v0.5H8C7.72,8.5,7.5,8.72,7.5,9v3c0,0.28,0.22,0.5,0.5,0.5h4c0.28,0,0.5-0.22,0.5-0.5V9 C12.5,8.72,12.28,8.5,12,8.5z M10,11.1c-0.33,0-0.6-0.27-0.6-0.6S9.67,9.9,10,9.9s0.6,0.27,0.6,0.6S10.33,11.1,10,11.1z M10.75,8.5 h-1.5V8c0-0.41,0.34-0.75,0.75-0.75S10.75,7.59,10.75,8V8.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,7c2.76,0,5,2.24,5,5s-2.24,5-5,5s-5-2.24-5-5S9.24,7,12,7z M5.07,13c0.49,3.39,3.4,6,6.93,6c3.53,0,6.44-2.61,6.93-6 L22,13v-2l-3.07,0c-0.49-3.39-3.4-6-6.93-6l0,0c-3.53,0-6.44,2.61-6.93,6c0,0-3.07,0-3.07,0v2L5.07,13z M14,10.5V9.61 c0-1-0.68-1.92-1.66-2.08C11.08,7.32,10,8.29,10,9.5v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C15,10.95,14.55,10.5,14,10.5z M12,13.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75 C12.75,13.41,12.41,13.75,12,13.75z M13,10.5h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V10.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z\"></path>" } } }, - "production_quantity_limits": { - "name": "production_quantity_limits", + "control_point": { + "name": "control_point", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,10h-2V8h2V10z M13,6h-2V1h2V6z M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18z M17,18 c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2S18.1,18,17,18z M8.1,13h7.45c0.75,0,1.41-0.41,1.75-1.03L21,4.96L19.25,4l-3.7,7 H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37,5.48,17,7,17h12v-2H7L8.1,13z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" } } }, - "published_with_changes": { - "name": "published_with_changes", + "brightness_7": { + "name": "brightness_7", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18.6,19.5H21v2h-6v-6h2v2.73c1.83-1.47,3-3.71,3-6.23c0-4.07-3.06-7.44-7-7.93V2.05c5.05,0.5,9,4.76,9,9.95 C22,14.99,20.68,17.67,18.6,19.5z M4,12c0-2.52,1.17-4.77,3-6.23V8.5h2v-6H3v2h2.4C3.32,6.33,2,9.01,2,12c0,5.19,3.95,9.45,9,9.95 v-2.02C7.06,19.44,4,16.07,4,12z M16.24,8.11l-5.66,5.66l-2.83-2.83l-1.41,1.41l4.24,4.24l7.07-7.07L16.24,8.11z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-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><circle cx=\"12\" cy=\"12\" r=\"2\"></circle>" } } }, - "query_builder": { - "name": "query_builder", + "control_point_duplicate": { + "name": "control_point_duplicate", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\"></path>" } } }, - "question_answer": { - "name": "question_answer", + "exposure_neg_2": { + "name": "exposure_neg_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 4v7H5.17l-.59.59-.58.58V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 11v2h8v-2H2z\"></path>" } } }, - "quickreply": { - "name": "quickreply", + "hdr_weak": { + "name": "hdr_weak", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M4,14.59V4h12v5h1V4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v13l3-3h7v-1H5.59L4,14.59z\"></path></g><g><polygon points=\"18,13 16.4,13 17.64,10 14,10 14,14.36 15.45,14.36 15.45,18\"></polygon></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M4,17.17V4h16v6h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-2H5.17L4,17.17z\"></path></g><g><polygon points=\"22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\"></path>" } } }, - "receipt": { - "name": "receipt", + "grid_on": { + "name": "grid_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.5 3.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5zM19 19.09H5V4.91h14v14.18zM6 15h12v2H6zm0-4h12v2H6zm0-4h12v2H6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z\"></path>" } } }, - "record_voice_over": { - "name": "record_voice_over", + "flash_auto": { + "name": "flash_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM15.08 7.05c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z\"></path>" } } }, - "redeem": { - "name": "redeem", + "face_retouching_natural": { + "name": "face_retouching_natural", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19.89,10.75C19.96,11.16,20,11.57,20,12c0,4.41-3.59,8-8,8s-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14 c2.6-0.98,4.69-2.99,5.74-5.55c3.38,4.14,7.97,3.73,8.99,3.61l-0.89-1.93c-0.13,0.01-4.62,0.38-7.18-3.86 c1.01-0.16,1.71-0.15,2.59-0.01c2.52-1.15,1.93-0.89,2.76-1.26C14.78,2.3,13.43,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10 s10-4.48,10-10c0-1.43-0.3-2.78-0.84-4.01L19.89,10.75z M8.08,5.03C7.45,6.92,6.13,8.5,4.42,9.47C5.05,7.58,6.37,6,8.08,5.03z\"></path><circle cx=\"15\" cy=\"13\" r=\"1.25\"></circle><circle cx=\"9\" cy=\"13\" r=\"1.25\"></circle><polygon points=\"23,4.5 20.6,3.4 19.5,1 18.4,3.4 16,4.5 18.4,5.6 19.5,8 20.6,5.6\"></polygon></g></g>" } } }, - "remove_done": { - "name": "remove_done", + "leak_add": { + "name": "leak_add", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M4.84,1.98L3.43,3.39l10.38,10.38l-1.41,1.41l-4.24-4.24l-1.41,1.41l5.66,5.66l2.83-2.83l6.6,6.6l1.41-1.41L4.84,1.98z M18.05,12.36L23,7.4L21.57,6l-4.94,4.94L18.05,12.36z M17.34,7.4l-1.41-1.41l-2.12,2.12l1.41,1.41L17.34,7.4z M1.08,12.35 l5.66,5.66l1.41-1.41l-5.66-5.66L1.08,12.35z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z\"></path>" } } }, - "remove_shopping_cart": { - "name": "remove_shopping_cart", + "navigate_next": { + "name": "navigate_next", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1.41 1.13L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7zM20 4H7.12l2 2h9.19l-2.76 5h-1.44l1.94 1.94c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.02 6L8.61 7.41 13.19 12l-4.58 4.59L10.02 18l6-6-6-6z\"></path>" } } }, - "reorder": { - "name": "reorder", + "colorize": { + "name": "colorize", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.66 5.41l.92.92-2.69 2.69-.92-.92 2.69-2.69M17.67 3c-.26 0-.51.1-.71.29l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42l-2.34-2.34c-.2-.19-.45-.29-.7-.29zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z\"></path>" } } }, - "report_problem": { - "name": "report_problem", + "radio": { + "name": "radio", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6H8.3l8.26-3.34L15.88 1 3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2zm0 2v3h-2V9h-2v2H4V8h16zM4 20v-7h16v7H4z\"></path><circle cx=\"8\" cy=\"16.48\" r=\"2.5\"></circle>" } } }, - "request_page": { - "name": "request_page", + "speed": { + "name": "speed", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M15,11h-4v1h3 c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20.38 8.57l-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z\"></path><path d=\"M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z\"></path>" } } }, - "restore": { - "name": "restore", + "volume_off": { + "name": "volume_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4.34 2.93L2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM10 15.17L7.83 13H5v-2h2.83l.88-.88L10 11.41v3.76zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8l-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z\"></path>" } } }, - "restore_from_trash": { - "name": "restore_from_trash", + "shuffle": { + "name": "shuffle", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2-5V9h8v10H8v-5zm2 4h4v-4h2l-4-4-4 4h2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z\"></path>" } } }, - "restore_page": { - "name": "restore_page", + "4k": { + "name": "4k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7.17L18 8.83V20zm-9.55-9.43L7.28 9.4V13h3.6l-1.44-1.44c.52-1.01 1.58-1.71 2.79-1.71 1.74 0 3.15 1.41 3.15 3.15s-1.41 3.15-3.15 3.15c-1.07 0-2.02-.54-2.58-1.35H8.1c.69 1.58 2.28 2.7 4.12 2.7 2.48 0 4.5-2.02 4.5-4.5s-2.02-4.5-4.5-4.5c-1.59 0-2.97.83-3.77 2.07z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14zm-9.5-4H11v-1.49h1V12h-1V9H9.5v3H8V9H6.5v4.5h3zm8.7 0l-2-3 2-3h-1.7l-2 3 2 3zm-3.7-3V9H13v6h1.5z\"></path>" } } }, - "room": { - "name": "room", + "featured_play_list": { + "name": "featured_play_list", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z\"></path><circle cx=\"12\" cy=\"9\" r=\"2.5\"></circle>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 10h9v2H5zm0-3h9v2H5z\"></path>" } } }, - "rounded_corner": { - "name": "rounded_corner", + "closed_caption": { + "name": "closed_caption", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7 15h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm7 0h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z\"></path>" } } }, - "rowing": { - "name": "rowing", + "queue_music": { + "name": "queue_music", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"5\"></rect><rect height=\"1.5\" width=\"6\" x=\"3\" y=\"11\"></rect><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"8\"></rect><path d=\"M18,5h-4v6.21C13.69,11.08,13.36,11,13,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5v-7H18V5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M8.5 14.5L4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M22,6h-5v8.18C16.69,14.07,16.35,14,16,14c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3V8h3V6z M15,6H3v2h12V6z M15,10H3v2h12 V10z M11,14H3v2h8V14z\"></path></g>" } } }, - "rule": { - "name": "rule", + "subtitles": { + "name": "subtitles", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z\"></path>" } } }, - "saved_search": { - "name": "saved_search", + "art_track": { + "name": "art_track", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14.73,13.31C15.52,12.24,16,10.93,16,9.5C16,5.91,13.09,3,9.5,3S3,5.91,3,9.5C3,13.09,5.91,16,9.5,16 c1.43,0,2.74-0.48,3.81-1.27L19.59,21L21,19.59L14.73,13.31z M9.5,14C7.01,14,5,11.99,5,9.5S7.01,5,9.5,5S14,7.01,14,9.5 S11.99,14,9.5,14z\"></path><polygon points=\"10.29,8.44 9.5,6 8.71,8.44 6.25,8.44 8.26,10.03 7.49,12.5 9.5,10.97 11.51,12.5 10.74,10.03 12.75,8.44\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6l-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z\"></path>" } } }, - "savings": { - "name": "savings", + "album": { + "name": "album", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13.21,3.61C13.11,3.95,13,4.35,13,5.12L15.88,8h0.62v2.8l-1.95,0.43l-1.19,4.27H11.5V14H7v1.5H5.13 C4.49,13.26,3.5,9.46,3.5,8c0-1.65,1.35-3,3-3l4.9,0C11.73,4.43,12.33,3.85,13.21,3.61z M14,2c-2.17,0-3.35,1.5-3.35,1.5H6.5 C4.05,3.5,2,5.47,2,8c0,2.33,2,9,2,9h4.5v-1.5H10V17h4.5l1.25-4.5L18,12V6.5h-1.5l-2-2C14.5,4.14,15,3.52,15,3C15,2.45,14.55,2,14,2 L14,2z M11,7.5H7V6h4V7.5z M13.25,9c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S14,7.84,14,8.25 C14,8.66,13.66,9,13.25,9z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M15,10c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S15,10.55,15,10z M8,9h5V7H8V9z M22,7.5v6.97l-2.82,0.94L17.5,21 L12,21v-2h-2v2l-5.5,0C4.5,21,2,12.54,2,9.5S4.46,4,7.5,4l5,0c0.91-1.21,2.36-2,4-2C17.33,2,18,2.67,18,3.5 c0,0.21-0.04,0.4-0.12,0.58c-0.14,0.34-0.26,0.73-0.32,1.15l2.27,2.27H22z M20,9.5h-1L15.5,6c0-0.65,0.09-1.29,0.26-1.91 C14.79,4.34,14,5.06,13.67,6L7.5,6C5.57,6,4,7.57,4,9.5c0,1.88,1.22,6.65,2.01,9.5L8,19v-2h6v2l2.01,0l1.55-5.15L20,13.03V9.5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" } } }, - "schedule": { - "name": "schedule", + "replay_circle_filled": { + "name": "replay_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,18.5c-3.31,0-6-2.69-6-6h2c0,2.21,1.79,4,4,4 s4-1.79,4-4c0-2.24-1.85-4.09-4.16-3.99l1.57,1.57L12,11.5l-4-4l4-4l1.41,1.41l-1.6,1.6C15.28,6.4,18,9.18,18,12.5 C18,15.81,15.31,18.5,12,18.5z\"></path></g>" } } }, - "schedule_send": { - "name": "schedule_send", + "hd": { + "name": "hd", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z\"></path><path d=\"M11,12l-6-1.5V7.01l8.87,3.74c0.94-0.47,2-0.75,3.13-0.75c0.1,0,0.19,0.01,0.28,0.01L3,4v16l7-2.95c0-0.02,0-0.03,0-0.05 c0-0.8,0.14-1.56,0.39-2.28L5,16.99V13.5L11,12z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zM18 14v-4c0-.55-.45-1-1-1h-4v6h4c.55 0 1-.45 1-1zm-1.5-.5h-2v-3h2v3z\"></path>" } } }, - "search": { - "name": "search", + "3k": { + "name": "3k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,14v-4c0-0.55-0.45-1-1-1H6.5v1.5h3v1h-2v1h2v1h-3V15H10C10.55,15,11,14.55,11,14z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon></g></g></g>" } } }, - "search_off": { - "name": "search_off", + "not_interested": { + "name": "not_interested", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M12,11.29c0.62-0.77,1-1.73,1-2.79C13,6.01,10.99,4,8.5,4C6.19,4,4.3,5.75,4.05,8h1C5.29,6.31,6.74,5,8.5,5 C10.43,5,12,6.57,12,8.5S10.43,12,8.5,12c-0.17,0-0.34-0.03-0.5-0.05v1C8.17,12.97,8.33,13,8.5,13c1.06,0,2.02-0.38,2.79-1 l3.57,3.57l0.71-0.71L12,11.29z\"></path><polygon points=\"5.91,9.38 4.5,10.79 3.09,9.38 2.38,10.09 3.79,11.5 2.38,12.91 3.09,13.62 4.5,12.21 5.91,13.62 6.62,12.91 5.21,11.5 6.62,10.09\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z\"></path><polygon points=\"6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\"></path>" } } }, - "segment": { - "name": "segment", + "fiber_smart_record": { + "name": "fiber_smart_record", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M9,18h12v-2H9V18z M3,6v2h18V6H3z M9,13h12v-2H9V13z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm8-13.74v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74z\"></path>" } } }, - "send_and_archive": { - "name": "send_and_archive", + "snooze": { + "name": "snooze", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><g><path d=\"M9,10L4.5,8.5V6.22l7.1,2.84C12.33,8.7,13.14,8.5,14,8.5c0.1,0,0.19,0.01,0.29,0.01L3,4v12l5.51-2.2 c0.02-0.62,0.15-1.21,0.36-1.76L4.5,13.78V11.5L9,10z\"></path></g><g><path d=\"M14,10c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,11.79,16.21,10,14,10z M14.71,15.29L14,16l-0.71-0.71 l-1.54-1.54l0.71-0.71l1.04,1.04V12h1v2.09l1.04-1.04l0.71,0.71L14.71,15.29z\"></path></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M11,12l-6-1.5V7.01l8.87,3.73c0.94-0.47,2-0.75,3.13-0.75c0.1,0,0.19,0.01,0.28,0.01L3,4v16l7-2.95c0-0.02,0-0.03,0-0.05 c0-0.8,0.14-1.56,0.39-2.28L5,16.99V13.5L11,12z\"></path></g><g><path d=\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S19.76,12,17,12z M17,20l-3-3l0.71-0.71l1.79,1.79V14h1v4.09l1.79-1.79 L20,17L17,20z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2zm7.056-7.654l1.282-1.535 4.607 3.85-1.28 1.54zM3.336 7.19l-1.28-1.536L6.662 1.81l1.28 1.536zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z\"></path>" } } }, - "sensors": { - "name": "sensors", + "1k_plus": { + "name": "1k_plus", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M5.41,14.59l-1.06,1.06C2.9,14.21,2,12.21,2,10c0-2.21,0.9-4.21,2.34-5.66l1.06,1.06C4.23,6.58,3.5,8.21,3.5,10 S4.23,13.42,5.41,14.59z M16.5,10c0,1.79-0.73,3.42-1.91,4.59l1.06,1.06C17.1,14.21,18,12.21,18,10c0-2.21-0.9-4.21-2.34-5.66 l-1.06,1.06C15.77,6.58,16.5,8.21,16.5,10z M13.5,10c0,0.96-0.39,1.84-1.03,2.47l1.06,1.06C14.44,12.63,15,11.38,15,10 c0-1.38-0.56-2.63-1.46-3.54l-1.06,1.06C13.11,8.16,13.5,9.04,13.5,10z M6.5,10c0-0.96,0.39-1.84,1.03-2.47L6.46,6.46 C5.56,7.37,5,8.62,5,10c0,1.38,0.56,2.63,1.46,3.54l1.06-1.06C6.89,11.84,6.5,10.96,6.5,10z M10,8.25c-0.97,0-1.75,0.78-1.75,1.75 s0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75S10.97,8.25,10,8.25z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.76,16.24C6.67,15.16,6,13.66,6,12s0.67-3.16,1.76-4.24l1.42,1.42C8.45,9.9,8,10.9,8,12c0,1.1,0.45,2.1,1.17,2.83 L7.76,16.24z M16.24,16.24C17.33,15.16,18,13.66,18,12s-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12 c0,1.1-0.45,2.1-1.17,2.83L16.24,16.24z M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M20,12 c0,2.21-0.9,4.21-2.35,5.65l1.42,1.42C20.88,17.26,22,14.76,22,12s-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z M6.35,6.35L4.93,4.93C3.12,6.74,2,9.24,2,12s1.12,5.26,2.93,7.07l1.42-1.42C4.9,16.21,4,14.21,4,12S4.9,7.79,6.35,6.35z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><polygon points=\"7.5,15 9,15 9,9 6,9 6,10.5 7.5,10.5\"></polygon><polygon points=\"12,12.75 13.75,15 15.5,15 13.25,12 15.5,9 13.75,9 12,11.25 12,9 10.5,9 10.5,15 12,15\"></polygon></g></g></g>" } } }, - "sensors_off": { - "name": "sensors_off", + "pause_circle_outline": { + "name": "pause_circle_outline", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M6.71,8.84C6.58,9.2,6.5,9.59,6.5,10c0,0.96,0.39,1.84,1.03,2.47l-1.06,1.06C5.56,12.63,5,11.38,5,10 c0-0.83,0.22-1.61,0.58-2.3L4.47,6.59C3.86,7.59,3.5,8.75,3.5,10c0,1.79,0.73,3.42,1.91,4.59l-1.06,1.06C2.9,14.21,2,12.21,2,10 c0-1.67,0.51-3.21,1.38-4.5L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06L6.71,8.84z M14.59,5.41l1.06-1.06C17.1,5.79,18,7.79,18,10 c0,1.67-0.51,3.22-1.38,4.5l-1.09-1.09c0.61-0.99,0.97-2.16,0.97-3.41C16.5,8.21,15.77,6.58,14.59,5.41z M12.47,7.53l1.06-1.06 C14.44,7.37,15,8.62,15,10c0,0.83-0.2,1.62-0.57,2.31l-1.14-1.14c0.13-0.37,0.2-0.76,0.2-1.18C13.5,9.04,13.11,8.16,12.47,7.53z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M8.14,10.96C8.05,11.29,8,11.64,8,12c0,1.1,0.45,2.1,1.17,2.83l-1.42,1.42C6.67,15.16,6,13.66,6,12 c0-0.93,0.21-1.8,0.58-2.59L5.11,7.94C4.4,9.13,4,10.52,4,12c0,2.21,0.9,4.21,2.35,5.65l-1.42,1.42C3.12,17.26,2,14.76,2,12 c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L8.14,10.96z M17.42,14.59C17.79,13.8,18,12.93,18,12 c0-1.66-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12c0,0.36-0.05,0.71-0.14,1.04L17.42,14.59z M20,12 c0,1.48-0.4,2.87-1.11,4.06l1.45,1.45C21.39,15.93,22,14.04,22,12c0-2.76-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z\"></path>" } } }, - "settings": { - "name": "settings", + "airplay": { + "name": "airplay", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<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>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><polygon points=\"6,22 18,22 12,16\"></polygon><path d=\"M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z\"></path></g></g>" } } }, - "settings_accessibility": { - "name": "settings_accessibility", + "add_to_queue": { + "name": "add_to_queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20.5,4c-2.61,0.7-5.67,1-8.5,1S6.11,4.7,3.5,4L3,6c1.86,0.5,4,0.83,6,1v12h2v-6h2v6h2V7c2-0.17,4.14-0.5,6-1L20.5,4z M12,4c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,4,12,4z M7,24h2v-2H7V24z M11,24h2v-2h-2V24z M15,24h2v-2h-2V24z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z\"></path>" } } }, - "settings_applications": { - "name": "settings_applications", + "9k": { + "name": "9k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.21 13.97l1.2 2.07c.08.13.23.18.37.13l1.49-.6c.31.24.64.44 1.01.59l.22 1.59c.03.14.15.25.3.25h2.4c.15 0 .27-.11.3-.26l.22-1.59c.36-.15.7-.35 1.01-.59l1.49.6c.14.05.29 0 .37-.13l1.2-2.07c.08-.13.04-.29-.07-.39l-1.27-.99c.03-.19.04-.39.04-.58 0-.2-.02-.39-.04-.59l1.27-.99c.11-.09.15-.26.07-.39l-1.2-2.07c-.08-.13-.23-.18-.37-.13l-1.49.6c-.31-.24-.64-.44-1.01-.59l-.22-1.59c-.03-.14-.15-.25-.3-.25h-2.4c-.15 0-.27.11-.3.26l-.22 1.59c-.36.15-.71.34-1.01.58l-1.49-.6c-.14-.05-.29 0-.37.13l-1.2 2.07c-.08.13-.04.29.07.39l1.27.99c-.03.2-.05.39-.05.59 0 .2.02.39.04.59l-1.27.99c-.11.1-.14.26-.06.39zM12 10.29c.94 0 1.71.77 1.71 1.71s-.77 1.71-1.71 1.71-1.71-.77-1.71-1.71.77-1.71 1.71-1.71zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M11,14v-4c0-0.55-0.45-1-1-1H7.5c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h2v1h-3V15H10C10.55,15,11,14.55,11,14z M9.5,11.5H8V10h1.5V11.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon></g></g></g>" } } }, - "settings_backup_restore": { - "name": "settings_backup_restore", + "10k": { + "name": "10k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,9v6v4H5v-8.5h1V15h1.5V9H5V5 h14V9z\"></path><polygon points=\"15.5,11.25 15.5,9 14,9 14,15 15.5,15 15.5,12.75 17.25,15 19,15 16.75,12 19,9 17.25,9\"></polygon><path d=\"M9.5,15H12c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H9.5c-0.55,0-1,0.45-1,1v4C8.5,14.55,8.95,15,9.5,15z M10,10.5h1.5v3 H10V10.5z\"></path></g></g></g>" } } }, - "settings_bluetooth": { - "name": "settings_bluetooth", + "audio_file": { + "name": "audio_file", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M12,2H5.5C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5V6L12,2z M5.5,16.5v-13H11V7h3.5v9.5 H5.5z M10,9h3.5v2H11v3c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,0.9-2,2-2c0.37,0,0.7,0.11,1,0.28V9z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v5h5v11H6z M16,11h-4v3.88 c-0.36-0.24-0.79-0.38-1.25-0.38c-1.24,0-2.25,1.01-2.25,2.25c0,1.24,1.01,2.25,2.25,2.25S13,17.99,13,16.75V13h3V11z\"></path></g>" } } }, - "settings_brightness": { - "name": "settings_brightness", + "3k_plus": { + "name": "3k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><path d=\"M10,14v-4c0-0.55-0.45-1-1-1H5.5v1.5h3v1h-2v1h2v1h-3V15H9C9.55,15,10,14.55,10,14z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon></g></g></g>" } } }, - "settings_cell": { - "name": "settings_cell", + "2k": { + "name": "2k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM16 .01L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 18H8v-1h8v1zm0-3H8V5h8v10zm0-12H8V2h8v1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,13.5H8v-1h2c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H6.5v1.5h3v1h-2c-0.55,0-1,0.45-1,1V15H11V13.5z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon></g></g></g>" } } }, - "settings_ethernet": { - "name": "settings_ethernet", + "play_circle_filled": { + "name": "play_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z\"></path>" } } }, - "settings_input_antenna": { - "name": "settings_input_antenna", + "high_quality": { + "name": "high_quality", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zm6.5 2h.75v1.5h1.5V15H17c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5h2v3h-2v-3z\"></path>" } } }, - "settings_input_component": { - "name": "settings_input_component", + "new_releases": { + "name": "new_releases", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23 12l-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-4.51 2.11l.26 2.79-2.74.62-1.43 2.41L12 18.82l-2.58 1.11-1.43-2.41-2.74-.62.26-2.8L3.66 12l1.85-2.12-.26-2.78 2.74-.61 1.43-2.41L12 5.18l2.58-1.11 1.43 2.41 2.74.62-.26 2.79L20.34 12l-1.85 2.11zM11 15h2v2h-2zm0-8h2v6h-2z\"></path>" } } }, - "settings_input_composite": { - "name": "settings_input_composite", + "queue_play_next": { + "name": "queue_play_next", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2zm-8 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8l-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z\"></path>" } } }, - "settings_input_hdmi": { - "name": "settings_input_hdmi", + "pause_circle": { + "name": "pause_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\"></path><rect height=\"6\" width=\"1.5\" x=\"7.5\" y=\"7\"></rect><rect height=\"6\" width=\"1.5\" x=\"11\" y=\"7\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2.01V5h-1v2H11V5h-1v2H8V4zm9 8.53l-3 6V20h-4v-1.47l-3-6V9h10v3.53z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M9,16h2V8H9V16z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z M13,16h2V8h-2V16z\"></path></g></g>" } } }, - "settings_input_svideo": { - "name": "settings_input_svideo", + "closed_caption_disabled": { + "name": "closed_caption_disabled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1h-1.5v-0.5h-2v1L13,10z M16.5,13.5l1.21,1.21C17.89,14.52,18,14.27,18,14v-1 h-1.5V13.5z M8.83,6H19v10.17l1.98,1.98c0-0.05,0.02-0.1,0.02-0.16V6c0-1.1-0.9-2-2-2H6.83L8.83,6z M19.78,22.61L17.17,20H5 c-1.11,0-2-0.9-2-2V6c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M7.5,13.5h2V13h0.67l-2.5-2.5H7.5 V13.5z M15.17,18L11,13.83V14c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.32,0.16-0.59,0.4-0.78L5,7.83V18H15.17z\"></path>" } } }, - "settings_overscan": { - "name": "settings_overscan", + "control_camera": { + "name": "control_camera", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5.54 8.46L2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm6.46 10l-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zm6.46-10l-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-10-2.92l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle>" } } }, - "settings_phone": { - "name": "settings_phone", + "games": { + "name": "games", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 9h2v2h-2zm4 0h2v2h-2zm5 6.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM19 9h2v2h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5l-3 3V22h6v-5.5l-3-3z\"></path>" } } }, - "settings_power": { - "name": "settings_power", + "replay": { + "name": "replay", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z\"></path></g>" } } }, - "settings_remote": { - "name": "settings_remote", + "call_to_action": { + "name": "call_to_action", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-1 12h-4V11h4v10z\"></path><circle cx=\"12\" cy=\"13\" r=\"1\"></circle><path d=\"M7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 15h14v3H5z\"></path>" } } }, - "settings_voice": { - "name": "settings_voice", + "featured_video": { + "name": "featured_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 22h2v2H7zm5-9c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .56-.44 1-1 1-.55 0-1-.45-1-1V4zm0 18h2v2h-2zm4 0h2v2h-2zm4-12h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM4 6h9v7H4z\"></path>" } } }, - "shop": { - "name": "shop", + "volume_mute": { + "name": "volume_mute", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 18l7.5-5L9 9z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 8.83v6.34L11.83 13H9v-2h2.83L14 8.83M16 4l-5 5H7v6h4l5 5V4z\"></path>" } } }, - "shopping_bag": { - "name": "shopping_bag", + "music_video": { + "name": "music_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8 h2V20z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z\"></path>" } } }, - "shopping_basket": { - "name": "shopping_basket", + "mic_none": { + "name": "mic_none", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 9h-4.79l-4.38-6.56c-.19-.28-.51-.42-.83-.42s-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM12 4.8L14.8 9H9.2L12 4.8zM18.5 19l-12.99.01L3.31 11H20.7l-2.2 8zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z\"></path>" } } }, - "shopping_cart": { - "name": "shopping_cart", + "playlist_add_circle": { + "name": "playlist_add_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z M8.5,11H6v1.5h2.5V11z M11.5,6H6v1.5h5.5V6z M11.5,8.5H6V10h5.5V8.5z M15.5,11v1.5H14V14 h-1.5v-1.5H11V11h1.5V9.5H14V11H15.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M14,10H7v2h7V10z M14,7H7v2h7V7z M7,15h3v-2H7V15z M19,13v2h-2v2h-2v-2h-2v-2h2v-2h2v2H19z\"></path>" } } }, - "shop_2": { - "name": "shop_2", + "remove_from_queue": { + "name": "remove_from_queue", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M2.5,7H1v9.5C1,17.33,1.67,18,2.5,18H16v-1.5H2.5V7z\"></path><path d=\"M15,4V2.5C15,1.67,14.33,1,13.5,1h-4C8.67,1,8,1.67,8,2.5V4H4v9.5C4,14.33,4.67,15,5.5,15h12c0.83,0,1.5-0.67,1.5-1.5V4 H15z M9.5,2.5h4V4h-4V2.5z M17.5,13.5h-12v-8h12V13.5z\"></path><polygon points=\"10,6.5 10,12.5 14.5,9.5\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,9H1v11c0,1.11,0.89,2,2,2h16v-2H3V9z\"></path><path d=\"M18,5V3c0-1.11-0.89-2-2-2h-4c-1.11,0-2,0.89-2,2v2H5v11c0,1.11,0.89,2,2,2h14c1.11,0,2-0.89,2-2V5H18z M12,3h4v2h-4V3z M21,16H7V7h14V16z\"></path><polygon points=\"12,8 12,15 17.5,11.5\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2H8v-2h8z\"></path>" } } }, - "shop_two": { - "name": "shop_two", + "web_asset": { + "name": "web_asset", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9zm-9-1l5.5-4L12 8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z\"></path>" } } }, - "smart_button": { - "name": "smart_button", + "sort_by_alpha": { + "name": "sort_by_alpha", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z\"></path>" } } }, - "source": { - "name": "source", + "6k": { + "name": "6k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon><path d=\"M7.5,15H10c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H8v-1h3V9H7.5c-0.55,0-1,0.45-1,1v4C6.5,14.55,6.95,15,7.5,15z M8,12.5h1.5V14H8V12.5z\"></path></g></g></g>" } } }, - "space_dashboard": { - "name": "space_dashboard", + "7k_plus": { + "name": "7k_plus", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,4.5C17,3.67,16.33,3,15.5,3h-11C3.67,3,3,3.67,3,4.5v10.94C3,16.3,3.7,17,4.56,17H15.5c0.83,0,1.5-0.67,1.5-1.5V4.5z M15.5,4.5v4h-4.75v-4H15.5z M4.5,15.5v-11h4.75v11H4.5z M15.5,15.5h-4.75V10h4.75V15.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M5,19V5h6v14H5z M19,19h-6v-7h6V19z M19,10h-6V5h6V10z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><path d=\"M6.75,15H8.5l1.46-4.71C10.15,9.65,9.67,9,9,9H5.5v1.5h2.63L6.75,15z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon></g></g></g>" } } }, - "speaker_notes": { - "name": "speaker_notes", + "playlist_add_check": { + "name": "playlist_add_check", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><polygon points=\"16.94,9.34 13.4,12.88 11.64,11.11 10.58,12.17 13.4,15 18,10.4\"></polygon><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"5\"></rect><rect height=\"1.5\" width=\"6\" x=\"3\" y=\"11.25\"></rect><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"8.12\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM6 12h2v2H6zm0-3h2v2H6zm0-3h2v2H6zm4 6h5v2h-5zm0-3h8v2h-8zm0-3h8v2h-8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"11\" x=\"3\" y=\"10\"></rect><rect height=\"2\" width=\"11\" x=\"3\" y=\"6\"></rect><rect height=\"2\" width=\"7\" x=\"3\" y=\"14\"></rect><polygon points=\"20.59,11.93 16.34,16.17 14.22,14.05 12.81,15.46 16.34,19 22,13.34\"></polygon></g></g>" } } }, - "speaker_notes_off": { - "name": "speaker_notes_off", + "fiber_pin": { + "name": "fiber_pin", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4v12h-1.34l1.91 1.91C21.39 17.66 22 16.9 22 16V4c0-1.1-.9-2-2-2H4.66l2 2H20zM6 12h2v2H6zm12-3h-6.34l2 2H18zm0-3h-8v1.34l.66.66H18zM1.41 1.59L0 3l2.01 2.01L2 22l4-4h9l5.73 5.73 1.41-1.41L1.41 1.59zM5.17 16L4 17.17V7l2 2v2h2l5 5H5.17z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 15h1.5V9H11v6zm7.75-6v3.5L16.25 9H15v6h1.25v-3.5L18.8 15H20V9h-1.25zM7.5 9H4v6h1.5v-2h2c.85 0 1.5-.65 1.5-1.5v-1C9 9.65 8.35 9 7.5 9zm0 2.5h-2v-1h2v1z\"></path>" } } }, - "spellcheck": { - "name": "spellcheck", + "fiber_dvr": { + "name": "fiber_dvr", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.87 12.43l-1-3.43h-1.5l1.75 6h1.5l1.75-6h-1.5zM21 11.5v-1c0-.85-.65-1.5-1.5-1.5H16v6h1.5v-2h1.15l.85 2H21l-.9-2.1c.5-.25.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zM6.5 9H3v6h3.5c.85 0 1.5-.65 1.5-1.5v-3C8 9.65 7.35 9 6.5 9zm0 4.5h-2v-3h2v3z\"></path>" } } }, - "stars": { - "name": "stars", + "5k": { + "name": "5k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm7.48 7.16l-5.01-.43-2-4.71c3.21.19 5.91 2.27 7.01 5.14zm-5.07 6.26L12 13.98l-2.39 1.44.63-2.72-2.11-1.83 2.78-.24L12 8.06l1.09 2.56 2.78.24-2.11 1.83.64 2.73zm-2.86-11.4l-2 4.72-5.02.43c1.1-2.88 3.8-4.97 7.02-5.15zM4 12c0-.64.08-1.26.23-1.86l3.79 3.28-1.11 4.75C5.13 16.7 4 14.48 4 12zm3.84 6.82L12 16.31l4.16 2.5c-1.22.75-2.64 1.19-4.17 1.19-1.52 0-2.94-.44-4.15-1.18zm9.25-.65l-1.11-4.75 3.79-3.28c.14.59.23 1.22.23 1.86 0 2.48-1.14 4.7-2.91 6.17z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,14v-1.5c0-0.55-0.45-1-1-1H8v-1h3V9H6.5v3.5h3v1h-3V15H10C10.55,15,11,14.55,11,14z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon></g></g></g>" } } }, - "star_rate": { - "name": "star_rate", + "4k_plus": { + "name": "4k_plus", "keywords": [ - "action" + "av" ], "heights": { - "18": { - "width": 18, - "path": "<path d=\"M0 0h18v18H0V0z\" fill=\"none\"></path><path d=\"M9 11.3l3.71 2.7-1.42-4.36L15 7h-4.55L9 2.5 7.55 7H3l3.71 2.64L5.29 14 9 11.3z\"></path>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M12,2l-2.42,8H2 l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35-7.59L22,10h-7.58L12,2L12,2z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><polygon points=\"8.5,15 10,15 10,13.5 11,13.5 11,12 10,12 10,9 8.5,9 8.5,12 7,12 7,9 5.5,9 5.5,13.5 8.5,13.5\"></polygon><polygon points=\"13,12.75 14.75,15 16.5,15 14.25,12 16.5,9 14.75,9 13,11.25 13,9 11.5,9 11.5,15 13,15\"></polygon></g></g></g>" } } }, - "sticky_note_2": { - "name": "sticky_note_2", + "sd": { + "name": "sd", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,5v9l-5,0l0,5H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h10l6-6V5C21,3.9,20.1,3,19,3z M12,14H7v-2h5V14z M17,10H7V8h10V10z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7,15h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H7.5v-1h2V11H11v-1c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v1.5 c0,0.55,0.45,1,1,1h2.5v1h-2V13H6v1C6,14.55,6.45,15,7,15z\"></path><path d=\"M18,14v-4c0-0.55-0.45-1-1-1h-4v6h4C17.55,15,18,14.55,18,14z M16.5,13.5h-2v-3h2V13.5z\"></path><path d=\"M20,4H4C2.89,4,2,4.9,2,6v12c0,1.1,0.89,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\"></path></g></g>" } } }, - "store": { - "name": "store", + "replay_10": { + "name": "replay_10", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.36 9l.6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z\"></path>" } } }, - "subject": { - "name": "subject", + "8k": { + "name": "8k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M7.5,15H10c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H7.5c-0.55,0-1,0.45-1,1v4C6.5,14.55,6.95,15,7.5,15z M8,10h1.5v1.5H8 V10z M8,12.5h1.5V14H8V12.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon></g></g></g>" } } }, - "subtitles_off": { - "name": "subtitles_off", + "stop": { + "name": "stop", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"1\" width=\"2\" x=\"5\" y=\"11\"></rect><polygon points=\"15,12 15,11 12.41,11 13.41,12\"></polygon><path d=\"M16,5v9.59l0.87,0.87C16.95,15.32,17,15.17,17,15V5c0-0.55-0.45-1-1-1H5.41l1,1H16z\"></path><path d=\"M2.93,2.93L2.22,3.64l0.9,0.9C3.05,4.68,3,4.83,3,5v10c0,0.55,0.45,1,1,1h10.59l1.78,1.78l0.71-0.71L2.93,2.93z M4,15 V5.41L9.59,11H8v1h2.59l1,1H5v1h7v-0.59L13.59,15H4z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z\"></path><polygon points=\"18,10 12.83,10 14.83,12 18,12\"></polygon><path d=\"M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,6.83 L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 8v8H8V8h8m2-2H6v12h12V6z\"></path>" } } }, - "supervised_user_circle": { - "name": "supervised_user_circle", + "play_arrow": { + "name": "play_arrow", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.5 10c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6.5 2c1.11 0 2-.89 2-2 0-1.11-.89-2-2-2-1.11 0-2.01.89-2 2 0 1.11.89 2 2 2zM11.99 2.01c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.84 17.12c.68-.54 2.27-1.11 3.66-1.11.07 0 .15.01.23.01.24-.64.67-1.29 1.3-1.86-.56-.1-1.09-.16-1.53-.16-1.3 0-3.39.45-4.73 1.43-.5-1.04-.78-2.2-.78-3.43 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.2-.27 2.34-.75 3.37-1-.59-2.36-.87-3.24-.87-1.52 0-4.5.81-4.5 2.7v2.78c-2.27-.13-4.29-1.21-5.66-2.86z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 8.64L15.27 12 10 15.36V8.64M8 5v14l11-7L8 5z\"></path>" } } }, - "supervisor_account": { - "name": "supervisor_account", + "9k_plus": { + "name": "9k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm.05 10H4.77c.99-.5 2.7-1 4.23-1 .11 0 .23.01.34.01.34-.73.93-1.33 1.64-1.81-.73-.13-1.42-.2-1.98-.2-2.34 0-7 1.17-7 3.5V19h7v-1.5c0-.17.02-.34.05-.5zm7.45-2.5c-1.84 0-5.5 1.01-5.5 3V19h11v-1.5c0-1.99-3.66-3-5.5-3zm1.21-1.82c.76-.43 1.29-1.24 1.29-2.18C19 9.12 17.88 8 16.5 8S14 9.12 14 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M10,14v-4c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h1.5v1H6V15h3C9.55,15,10,14.55,10,14z M8.5,11.5h-1V10h1V11.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon></g></g></g>" } } }, - "support": { - "name": "support", + "av_timer": { + "name": "av_timer", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M12.16,4.41c1.57,0.61,2.82,1.85,3.43,3.42 l-2.78,1.15c-0.3-0.83-0.96-1.49-1.79-1.79L12.16,4.41z M7.84,4.41L9,7.18c-0.85,0.3-1.51,0.96-1.82,1.81v0L4.41,7.84 C5.02,6.27,6.27,5.02,7.84,4.41z M7.83,15.59c-1.57-0.61-2.82-1.86-3.43-3.43l2.78-1.15v0c0.3,0.84,0.97,1.51,1.81,1.81L7.83,15.59 z M8,10c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S8,11.1,8,10z M12.17,15.59l-1.15-2.78c0.84-0.3,1.5-0.97,1.79-1.81l2.77,1.16 C14.98,13.74,13.74,14.98,12.17,15.59z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z\"></path>" } } }, - "swap_horiz": { - "name": "swap_horiz", + "note": { + "name": "note", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 4H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6zM4 18.01V6h11v5h5v7.01H4z\"></path>" } } }, - "swap_horizontal_circle": { - "name": "swap_horizontal_circle", + "repeat_one_on": { + "name": "repeat_one_on", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,19H6.83l1.58,1.58L7,22l-4-4 l4-4l1.41,1.42L6.83,17H17v-4h2V19z M10,10.5V9h3v6h-1.5v-4.5H10z M17,10l-1.41-1.42L17.17,7H7v4H5V5h12.17l-1.58-1.58L17,2l4,4 L17,10z\"></path></g>" } } }, - "swap_vert": { - "name": "swap_vert", + "video_label": { + "name": "video_label", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z\"></path>" } } }, - "swap_vertical_circle": { - "name": "swap_vertical_circle", + "fiber_manual_record": { + "name": "fiber_manual_record", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM6.5 9L10 5.5 13.5 9H11v4H9V9zm11 6L14 18.5 10.5 15H13v-4h2v4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6m0-2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8z\"></path>" } } }, - "swipe": { - "name": "swipe", + "explicit": { + "name": "explicit", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M16.5,2v1.48C14.86,1.95,12.56,1,10,1S5.14,1.95,3.5,3.48V2H2v4h4V4.5H4.91C6.23,3.39,8.02,2.7,10,2.7s3.77,0.69,5.09,1.8 H14V6h4V2H16.5z\"></path><path d=\"M9,6.5c0.28,0,0.5,0.22,0.5,0.5v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52l-0.61,4.29H8.62L5.12,14l0.34-0.34 l3.04,0.76V7C8.5,6.72,8.72,6.5,9,6.5 M9,5C7.9,5,7,5.9,7,7v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3,14l4.56,4.56 C7.84,18.84,8.22,19,8.62,19h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29c0.12-0.85-0.32-1.69-1.09-2.07L12,10h-1V7 C11,5.9,10.1,5,9,5L9,5z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M20.5,2v2.02C18.18,2.13,15.22,1,12,1S5.82,2.13,3.5,4.02V2H2v3.5V7h1.5H7V5.5H4.09c2.11-1.86,4.88-3,7.91-3 s5.79,1.14,7.91,3H17V7h3.5H22V5.5V2H20.5z\"></path><g><path d=\"M18.89,13.77l-3.8-1.67C14.96,12.04,14.81,12,14.65,12H14l0-4.37c0-1.32-0.96-2.5-2.27-2.62C10.25,4.88,9,6.05,9,7.5 v8.15l-1.87-0.4c-0.19-0.03-1.02-0.15-1.73,0.56L4,17.22l5.12,5.19C9.49,22.79,10,23,10.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67 l0.92-5.44C20.12,15.03,19.68,14.17,18.89,13.77z M18,15.56L17.08,21h-6.55l-3.7-3.78L11,18.11V7.5C11,7.22,11.22,7,11.5,7 S12,7.22,12,7.5v6.18h1.76L18,15.56z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h4v-2h-4V9h4V7H9v10h6z\"></path>" } } }, - "sync_alt": { - "name": "sync_alt", + "repeat": { + "name": "repeat", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><polygon points=\"14,10 17,7 14,4 14,6 4,6 4,8 14,8\"></polygon><polygon points=\"6,10 3,13 6,16 6,14 16,14 16,12 6,12\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M22,8l-4-4v3H3v2h15v3L22,8z\"></path><path d=\"M2,16l4,4v-3h15v-2H6v-3L2,16z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z\"></path>" } } }, - "system_update_alt": { - "name": "system_update_alt", + "forward_30": { + "name": "forward_30", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 16l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 13l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z\"></path>" } } }, - "tab": { - "name": "tab", + "equalizer": { + "name": "equalizer", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z\"></path>" } } }, - "table_view": { - "name": "table_view", + "play_circle_outline": { + "name": "play_circle_outline", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 16.5l6-4.5-6-4.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" } } }, - "tab_unselected": { - "name": "tab_unselected", + "shuffle_on": { + "name": "shuffle_on", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M5.41,4l5.18,5.17l-1.41,1.42 L4,5.42L5.41,4z M20,20h-6v-2h2.61l-3.2-3.2l1.42-1.42l3.13,3.13L18,16.55V14h2V20z M20,10h-2V7.42L5.41,20L4,18.59L16.58,6H14V4h6 V10z\"></path></g>" } } }, - "task_alt": { - "name": "task_alt", + "playlist_play": { + "name": "playlist_play", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><polygon points=\"13,10.5 13,17 18,13.75\"></polygon><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"5\"></rect><rect height=\"1.5\" width=\"6\" x=\"3\" y=\"11.25\"></rect><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"8.12\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M19.79,10.22C19.92,10.79,20,11.39,20,12 c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-4.42,3.58-8,8-8c1.58,0,3.04,0.46,4.28,1.25l1.44-1.44C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12 c0,5.52,4.48,10,10,10s10-4.48,10-10c0-1.19-0.22-2.33-0.6-3.39L19.79,10.22z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"11\" x=\"3\" y=\"10\"></rect><rect height=\"2\" width=\"11\" x=\"3\" y=\"6\"></rect><rect height=\"2\" width=\"7\" x=\"3\" y=\"14\"></rect><polygon points=\"16,13 16,21 22,17\"></polygon></g></g>" } } }, - "text_rotate_up": { - "name": "text_rotate_up", + "mic": { + "name": "mic", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 4l-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13L10 11.13v3.74L4.98 13z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z\"></path><path d=\"M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z\"></path></g></g>" } } }, - "text_rotate_vertical": { - "name": "text_rotate_vertical", + "6k_plus": { + "name": "6k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon><path d=\"M7,15h2c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H7.5v-1H10V9H7c-0.55,0-1,0.45-1,1v4C6,14.55,6.45,15,7,15z M7.5,12.5 h1V14h-1V12.5z\"></path></g></g></g>" } } }, - "text_rotation_angledown": { - "name": "text_rotation_angledown", + "7k": { + "name": "7k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05l-2.23 4.87-2.64-2.64 4.87-2.23z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M7.75,15H9.5l1.46-4.71C11.15,9.65,10.67,9,10,9H6.5v1.5h2.63L7.75,15z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon></g></g></g>" } } }, - "text_rotation_angleup": { - "name": "text_rotation_angleup", + "play_circle": { + "name": "play_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\"></path><polygon points=\"8,13.5 13.5,10 8,6.5\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.76 9l1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75l3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M9.5,16.5l7-4.5l-7-4.5V16.5z\"></path></g>" } } }, - "text_rotation_down": { - "name": "text_rotation_down", + "subscriptions": { + "name": "subscriptions", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 20l3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6h16v2H4zm2-4h12v2H6zm14 8H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10H4v-8h16v8zm-10-7.27v6.53L16 16z\"></path>" } } }, - "text_rotation_none": { - "name": "text_rotation_none", + "queue": { + "name": "queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 18l-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98L13.87 10h-3.74L12 4.98z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z\"></path>" } } }, - "theaters": { - "name": "theaters", + "stop_circle": { + "name": "stop_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,15.5c-3.04,0-5.5-2.46-5.5-5.5 c0-3.04,2.46-5.5,5.5-5.5s5.5,2.46,5.5,5.5C15.5,13.04,13.04,15.5,10,15.5z M13,13H7V7h6V13z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm4-2h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8s3.58-8,8-8 s8,3.58,8,8S16.42,20,12,20z M16,16H8V8h8V16z\"></path>" } } }, - "thumbs_up_down": { - "name": "thumbs_up_down", + "5k_plus": { + "name": "5k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10v.13zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5zm-.5 7.79l-1.93 1.93.57-2.72H14v-.13L16.08 12H22v5.79z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><path d=\"M10,14v-1.5c0-0.55-0.45-1-1-1H7.5v-1H10V9H6v3.5h2.5v1H6V15h3C9.55,15,10,14.55,10,14z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon></g></g></g>" } } }, - "thumb_down": { - "name": "thumb_down", + "video_file": { + "name": "video_file", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M16,6v10.5c0,0.83-0.67,1.5-1.5,1.5h-9C4.67,18,4,17.33,4,16.5v-13C4,2.67,4.67,2,5.5,2H12L16,6z M14.5,16.5V7H11V3.5H5.5 v13H14.5z M11.5,10.5c0-0.28-0.22-0.5-0.5-0.5H7.5C7.22,10,7,10.22,7,10.5V14c0,0.28,0.22,0.5,0.5,0.5H11c0.28,0,0.5-0.22,0.5-0.5 v-1.05C12.22,13.45,13,14,13,14v-3.5l-1.5,1.05V10.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v5h5v11H6z M14,14l2-1.06v4.12L14,16v1 c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1V14z\"></path></g>" } } }, - "thumb_down_off_alt": { - "name": "thumb_down_off_alt", + "branding_watermark": { + "name": "branding_watermark", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M15,3H6C5.17,3,4.46,3.5,4.16,4.22l-3.02,7.05C1.05,11.5,1,11.74,1,12v2c0,1.1,0.9,2,2,2h6.31l-0.95,4.57l-0.03,0.32 c0,0.41,0.17,0.79,0.44,1.06L9.83,23l6.59-6.59C16.78,16.05,17,15.55,17,15V5C17,3.9,16.1,3,15,3z M15,15l-4.34,4.34L12,14H3v-2 l3-7h9V15z M19,3h4v12h-4V3z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-7h9v6h-9z\"></path>" } } }, - "thumb_up": { - "name": "thumb_up", + "replay_30": { + "name": "replay_30", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z\"></path>" } } }, - "thumb_up_off_alt": { - "name": "thumb_up_off_alt", + "recent_actors": { + "name": "recent_actors", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect></g><g><g><path d=\"M9,21h9c0.83,0,1.54-0.5,1.84-1.22l3.02-7.05C22.95,12.5,23,12.26,23,12v-2c0-1.1-0.9-2-2-2h-6.31l0.95-4.57l0.03-0.32 c0-0.41-0.17-0.79-0.44-1.06L14.17,1L7.58,7.59C7.22,7.95,7,8.45,7,9v10C7,20.1,7.9,21,9,21z M9,9l4.34-4.34L12,10h9v2l-3,7H9V9z M1,9h4v12H1V9z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 5h2v14h-2zm-4 0h2v14h-2zm-3 0H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H3V7h10v10z\"></path><circle cx=\"8\" cy=\"9.94\" r=\"1.95\"></circle><path d=\"M11.89 15.35c0-1.3-2.59-1.95-3.89-1.95s-3.89.65-3.89 1.95V16h7.78v-.65z\"></path>" } } }, - "timeline": { - "name": "timeline", + "fast_rewind": { + "name": "fast_rewind", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 9.86v4.28L14.97 12 18 9.86m-9 0v4.28L5.97 12 9 9.86M20 6l-8.5 6 8.5 6V6zm-9 0l-8.5 6 8.5 6V6z\"></path>" } } }, - "tips_and_updates": { - "name": "tips_and_updates", + "play_disabled": { + "name": "play_disabled", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M4.5,14h6v1.5h-6V14z M13.5,8c0,2.09-1.07,3.93-2.69,5H4.19C2.57,11.93,1.5,10.09,1.5,8c0-3.31,2.69-6,6-6S13.5,4.69,13.5,8 z M12,8c0-2.48-2.02-4.5-4.5-4.5S3,5.52,3,8c0,1.37,0.62,2.65,1.67,3.5h5.65C11.38,10.65,12,9.37,12,8z M7.5,18 C8.33,18,9,17.33,9,16.5H6C6,17.33,6.67,18,7.5,18z M18.5,8l0.47-1.03L20,6.5l-1.03-0.47L18.5,5l-0.47,1.03L17,6.5l1.03,0.47L18.5,8 z M15.5,5l0.78-1.72L18,2.5l-1.72-0.78L15.5,0l-0.78,1.72L13,2.5l1.72,0.78L15.5,5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect><path d=\"M7,20h4c0,1.1-0.9,2-2,2S7,21.1,7,20z M5,19h8v-2H5V19z M16.5,9.5c0,3.82-2.66,5.86-3.77,6.5H5.27 C4.16,15.36,1.5,13.32,1.5,9.5C1.5,5.36,4.86,2,9,2S16.5,5.36,16.5,9.5z M14.5,9.5C14.5,6.47,12.03,4,9,4S3.5,6.47,3.5,9.5 c0,2.47,1.49,3.89,2.35,4.5h6.3C13.01,13.39,14.5,11.97,14.5,9.5z M21.37,7.37L20,8l1.37,0.63L22,10l0.63-1.37L24,8l-1.37-0.63L22,6 L21.37,7.37z M19,6l0.94-2.06L22,3l-2.06-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"16.45,13.62 19,12 8,5 8,5.17\"></polygon><path d=\"M2.81,2.81L1.39,4.22L8,10.83V19l4.99-3.18l6.78,6.78l1.41-1.41L2.81,2.81z M10,15.36v-2.53l1.55,1.55L10,15.36z\"></path></g></g>" } } }, - "toc": { - "name": "toc", + "forward_5": { + "name": "forward_5", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z\"></path>" } } }, - "today": { - "name": "today", + "slow_motion_video": { + "name": "slow_motion_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM7 11h5v5H7z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13.05 9.79L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z\"></path>" } } }, - "toll": { - "name": "toll", + "repeat_one": { + "name": "repeat_one", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z\"></path>" } } }, - "touch_app": { - "name": "touch_app", + "playlist_add_check_circle": { + "name": "playlist_add_check_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14.24,10.4l1.06,1.06L11.76,15l-2.12-2.12l1.06-1.06l1.06,1.06L14.24,10.4z M3.5,10c0,3.58,2.92,6.5,6.5,6.5 s6.5-2.92,6.5-6.5S13.58,3.5,10,3.5S3.5,6.42,3.5,10z M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8s3.58-8,8-8S18,5.58,18,10z M8.5,11H6 v1.5h2.5V11z M11.5,6H6v1.5h5.5V6z M11.5,8.5H6V10h5.5V8.5z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18.19,12.44l-3.24-1.62c1.29-1,2.12-2.56,2.12-4.32c0-3.03-2.47-5.5-5.5-5.5s-5.5,2.47-5.5,5.5c0,2.13,1.22,3.98,3,4.89 v3.26c-2.15-0.46-2.02-0.44-2.26-0.44c-0.53,0-1.03,0.21-1.41,0.59L4,16.22l5.09,5.09C9.52,21.75,10.12,22,10.74,22h6.3 c0.98,0,1.81-0.7,1.97-1.67l0.8-4.71C20.03,14.32,19.38,13.04,18.19,12.44z M17.84,15.29L17.04,20h-6.3 c-0.09,0-0.17-0.04-0.24-0.1l-3.68-3.68l4.25,0.89V6.5c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5v6h1.76l3.46,1.73 C17.69,14.43,17.91,14.86,17.84,15.29z M8.07,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5c0,0.95-0.38,1.81-1,2.44V6.5 c0-1.38-1.12-2.5-2.5-2.5c-1.38,0-2.5,1.12-2.5,2.5v2.44C8.45,8.31,8.07,7.45,8.07,6.5z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4z M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M14,10H7v2h7V10z M14,7H7v2h7V7z M7,15h3v-2H7V15z M19,13.41L17.59,12l-3.54,3.54 l-1.41-1.41l-1.41,1.41l2.83,2.83L19,13.41z\"></path>" } } }, - "tour": { - "name": "tour", + "fiber_new": { + "name": "fiber_new", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M17.14,9.74l0.9,2.26H12h-1H7V6h5h1h5.05l-0.9,2.26L16.85,9L17.14,9.74z M14,9c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,7.9,14,9z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.25 12.5L4.75 9H3.5v6h1.25v-3.5L7.3 15h1.2V9H7.25zM9.5 15h4v-1.25H11v-1.11h2.5v-1.26H11v-1.12h2.5V9h-4zm9.75-6v4.5h-1.12V9.99h-1.25v3.52h-1.13V9H14.5v5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V9h-1.25z\"></path>" } } }, - "track_changes": { - "name": "track_changes", + "video_library": { + "name": "video_library", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.07 4.93l-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM12 5.5v9l6-4.5z\"></path>" } } }, - "translate": { - "name": "translate", + "video_settings": { + "name": "video_settings", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M3,5h14v4h1V5c0-0.55-0.45-1-1-1H3C2.45,4,2,4.45,2,5v10c0,0.55,0.45,1,1,1h8v-1H3V5z\"></path><path d=\"M19.1,14.2l0.87-0.69l-0.88-1.52l-1.03,0.4c-0.16-0.12-0.34-0.22-0.53-0.3L17.38,11h-1.75l-0.16,1.1 c-0.18,0.08-0.36,0.18-0.52,0.3l-1.04-0.41l-0.88,1.52l0.87,0.7c-0.02,0.2-0.03,0.4,0,0.6l-0.87,0.69l0.88,1.52l1.03-0.4 c0.16,0.12,0.34,0.22,0.53,0.3L15.63,18h1.75l0.16-1.1c0.18-0.08,0.36-0.18,0.52-0.3l1.04,0.41l0.88-1.52l-0.87-0.7 C19.12,14.59,19.12,14.4,19.1,14.2z M16.5,15.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C17.5,15.05,17.05,15.5,16.5,15.5z\"></path><polygon points=\"8,13 12.5,10 8,7\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z\"></path><polygon points=\"15,12 9,8 9,16\"></polygon><path d=\"M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z\"></path></g></g>" } } }, - "trending_down": { - "name": "trending_down", + "forward_10": { + "name": "forward_10", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z\"></path><polygon points=\"10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16\"></polygon><path d=\"M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z\"></path></g></g>" } } }, - "trending_flat": { - "name": "trending_flat", + "playlist_remove": { + "name": "playlist_remove", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M3,5h9v1.5H3V5z M3,11.25h6v1.5H3V11.25z M3,8.12h9v1.5H3V8.12z M12.07,17.02l1.94-1.95l1.94,1.95l1.07-1.07l-1.95-1.94 l1.95-1.94L15.95,11l-1.94,1.95L12.07,11L11,12.07l1.95,1.94L11,15.95L12.07,17.02z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 12l-4-4v3H3v2h15v3l4-4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14,10H3v2h11V10z M14,6H3v2h11V6z M3,16h7v-2H3V16z M14.41,22L17,19.41L19.59,22L21,20.59L18.41,18L21,15.41L19.59,14 L17,16.59L14.41,14L13,15.41L15.59,18L13,20.59L14.41,22z\"></path></g>" } } }, - "trending_up": { - "name": "trending_up", + "video_call": { + "name": "video_call", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM15 16H5V8h10v8zm-6-1h2v-2h2v-2h-2V9H9v2H7v2h2z\"></path>" } } }, - "try": { - "name": "try", + "library_add_check": { + "name": "library_add_check", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><g><path d=\"M4,16h10v1H4c-0.55,0-1-0.45-1-1V6h1V16z M17,4v9c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1h9 C16.55,3,17,3.45,17,4z M16,4H7v9h9V4z M8.67,8.5L7.96,9.21l2.12,2.12l4.95-4.95l-0.71-0.71l-4.24,4.24L8.67,8.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect></g><g><g><path d=\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z\"></path><polygon points=\"12,15 13.57,11.57 17,10 13.57,8.43 12,5 10.43,8.43 7,10 10.43,11.57\"></polygon></g></g>" + "path": "<g><path d=\"M20,4v12H8V4H20 M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2L20,2z M12.47,14 L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g>" } } }, - "turned_in": { - "name": "turned_in", + "hearing": { + "name": "hearing", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z\"></path>" } } }, - "turned_in_not": { - "name": "turned_in_not", + "movie": { + "name": "movie", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6.47L5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z\"></path>" } } }, - "unpublished": { - "name": "unpublished", + "5g": { + "name": "5g", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M12,10.5h2V12h-3V8h4c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1V9.5h-3V10.5z\"></path></g><g><path d=\"M9,8H6v1.5h2c0.55,0,1,0.45,1,1V12c0,0.55-0.45,1-1,1H5v-1h3v-1.5H5V7h4V8z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.94,5.12L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.86,20,13.48,20,12c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z M17.66,9.53l-1.41-1.41l-2.65,2.65l1.41,1.41 L17.66,9.53z M19.78,22.61l-2.27-2.27C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22 l1.41-1.41l18.38,18.38L19.78,22.61z M16.06,18.88l-3.88-3.88l-1.59,1.59l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18L5.12,7.94 C4.41,9.14,4,10.52,4,12c0,4.41,3.59,8,8,8C13.48,20,14.86,19.59,16.06,18.88z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z\"></path><path d=\"M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z\"></path></g></g>" } } }, - "update": { - "name": "update", + "fast_forward": { + "name": "fast_forward", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M15,9.86L18.03,12L15,14.14V9.86 M6,9.86L9.03,12L6,14.14V9.86 M13,6v12l8.5-6L13,6L13,6z M4,6v12l8.5-6L4,6L4,6z\"></path></g>" } } }, - "update_disabled": { - "name": "update_disabled", + "closed_caption_off": { + "name": "closed_caption_off", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10.75,6v2.63l-1.5-1.5V6H10.75z M15.9,13.77c0.7-1.09,1.1-2.38,1.1-3.77h-1.5c0,0.97-0.25,1.89-0.7,2.68L15.9,13.77z M2.93,2.93L1.87,3.99L4.1,6.23C3.41,7.31,3,8.61,3,10c0,3.87,3.13,7,7,7c1.39,0,2.69-0.41,3.77-1.1l2.24,2.24l1.06-1.06L2.93,2.93z M10,15.5c-3.03,0-5.5-2.47-5.5-5.5c0-0.97,0.25-1.89,0.7-2.68l7.48,7.48C11.89,15.25,10.97,15.5,10,15.5z M10,4.5 c1.7,0,3.22,0.78,4.22,2H12V8h5V3h-1.5v2.71C14.22,4.07,12.24,3,10,3C8.61,3,7.31,3.41,6.23,4.1L7.32,5.2C8.11,4.75,9.03,4.5,10,4.5 z\"></path>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><path d=\"M20.94,13c-0.15,1.38-0.62,2.67-1.33,3.79l-1.47-1.47c0.38-0.71,0.65-1.49,0.77-2.32H20.94z M8.67,5.84 C9.66,5.31,10.8,5,12,5c2.37,0,4.47,1.19,5.74,3H15v2h6V4h-2v2.36C17.35,4.32,14.83,3,12,3c-1.76,0-3.4,0.51-4.78,1.39L8.67,5.84z M11,7v1.17l2,2V7H11z M19.78,22.61l-3-3C15.39,20.48,13.76,21,12,21c-4.97,0-9-4.03-9-9c0-1.76,0.51-3.4,1.39-4.78L1.39,4.22 l1.41-1.41l18.38,18.38L19.78,22.61z M15.32,18.15L5.84,8.67C5.31,9.66,5,10.8,5,12c0,3.86,3.14,7,7,7 C13.2,19,14.34,18.69,15.32,18.15z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g enable-background=\"new\"><g><path d=\"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.1,4,19,4z M19,18H5V6h14V18z\"></path><path d=\"M7,15h3c0.55,0,1-0.45,1-1v-1H9.5v0.5h-2v-3h2V11H11v-1c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v4C6,14.55,6.45,15,7,15z\"></path><path d=\"M14,15h3c0.55,0,1-0.45,1-1v-1h-1.5v0.5h-2v-3h2V11H18v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4 C13,14.55,13.45,15,14,15z\"></path></g></g></g>" } } }, - "upgrade": { - "name": "upgrade", + "hearing_disabled": { + "name": "hearing_disabled", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13,14v1H7v-1H13z M9.5,8v5h1V8H13l-3-3L7,8H9.5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11,8c0,0.45-0.15,0.85-0.4,1.19L7.81,6.4C8.15,6.15,8.55,6,9,6C10.1,6,11,6.9,11,8z M17.07,17.07L2.93,2.93L2.22,3.64 l2.27,2.27C4.19,6.54,4,7.25,4,8h1c0-0.47,0.09-0.92,0.24-1.34l1.82,1.82C7.24,9.2,7.8,9.76,8.52,9.94l2.1,2.1c0,0,0,0,0,0 c-0.6,0.46-1.23,0.93-1.56,1.92c-0.39,1.16-0.81,1.58-1.42,1.9C7.42,15.95,7.17,16,6.92,16c-0.65,0-1.26-0.42-1.62-1H4.2 c0.42,1.12,1.5,2,2.72,2c0.4,0,0.8-0.08,1.16-0.24c0.96-0.5,1.51-1.21,1.93-2.49c0.23-0.69,0.64-1,1.21-1.43 c0.04-0.03,0.07-0.06,0.11-0.09l5.03,5.03L17.07,17.07z M9.04,4C11.26,4,13,5.71,13,7.9c0,0.72-0.22,1.51-0.63,2.24 c-0.1,0.19-0.21,0.34-0.32,0.49l0.72,0.72c0.16-0.22,0.32-0.45,0.47-0.72C13.73,9.75,14,8.78,14,7.9C14,5.15,11.83,3,9.04,3 C7.75,3,6.59,3.5,5.7,4.29l0.71,0.71C7.12,4.38,8.03,4,9.04,4z M16,8c0-2.19-1-4.14-2.58-5.42l-0.72,0.72C14.1,4.39,15,6.09,15,8 c0,1.55-0.6,2.95-1.57,4.02l0.71,0.71C15.29,11.48,16,9.83,16,8z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z\"></path></g>" } } }, - "verified": { - "name": "verified", + "8k_plus": { + "name": "8k_plus", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M18,10l-1.77-2.03l0.25-2.69l-2.63-0.6l-1.37-2.32L10,3.43L7.53,2.36L6.15,4.68L3.53,5.28l0.25,2.69L2,10l1.77,2.03 l-0.25,2.69l2.63,0.6l1.37,2.32L10,16.56l2.47,1.07l1.37-2.32l2.63-0.6l-0.25-2.69L18,10z M15.23,12.12l0.17,1.81l-1.77,0.4 l-0.42,0.1l-0.22,0.37l-0.93,1.56l-1.66-0.72L10,15.47l-0.4,0.17l-1.66,0.72l-0.93-1.56l-0.22-0.37l-0.42-0.1l-1.77-0.4l0.17-1.82 l0.04-0.43l-0.28-0.32L3.33,10l1.2-1.38l0.28-0.32L4.77,7.87L4.6,6.06l1.77-0.4l0.42-0.09l0.22-0.37l0.93-1.56L9.6,4.35L10,4.52 l0.4-0.17l1.66-0.72l0.93,1.56l0.22,0.37l0.42,0.1l1.77,0.4l-0.17,1.81L15.19,8.3l0.28,0.32l1.2,1.37l-1.2,1.37l-0.28,0.32 L15.23,12.12z\"></path><polygon points=\"8.59,11.65 7.17,10.24 6.46,10.95 8.59,13.07 13.54,8.12 12.83,7.41\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M23,11.99l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79 l-0.34,3.7l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,11.99z M19.05,13.47l-0.56,0.65l0.08,0.85 l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99-1.67l-0.44-0.74 l-0.84-0.19l-1.9-0.43l0.18-1.96l0.08-0.85l-0.56-0.65l-1.29-1.47l1.29-1.48l0.56-0.65L5.43,9.01L5.25,7.07l1.9-0.43l0.84-0.19 l0.44-0.74l0.99-1.68l1.78,0.77L12,5.14l0.79-0.34l1.78-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85 l0.56,0.65l1.29,1.47L19.05,13.47z\"></path><polygon points=\"10.09,13.75 7.77,11.42 6.29,12.91 10.09,16.72 17.43,9.36 15.95,7.87\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M7,15h2c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v4C6,14.55,6.45,15,7,15z M7.5,10h1v1.5h-1V10z M7.5,12.5h1V14h-1V12.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon></g></g></g>" } } }, - "verified_user": { - "name": "verified_user", + "2k_plus": { + "name": "2k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11 7 3.11V11zm-11.59.59L6 13l4 4 8-8-1.41-1.42L10 14.17z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><path d=\"M10,13.5H7.5v-1H9c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H6v1.5h2.5v1H7c-0.55,0-1,0.45-1,1V15h4V13.5z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon></g></g></g>" } } }, - "vertical_split": { - "name": "vertical_split", + "skip_next": { + "name": "skip_next", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm16 2v10h-4V7h4m2-2h-8v14h8V5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 18l8.5-6L6 6v12zm2-8.14L11.03 12 8 14.14V9.86zM16 6h2v12h-2z\"></path>" } } }, - "view_agenda": { - "name": "view_agenda", + "replay_5": { + "name": "replay_5", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v3C3,8.33,3.67,9,4.5,9h11C16.33,9,17,8.33,17,7.5v-3C17,3.67,16.33,3,15.5,3z M15.5,7.5 h-11v-3h11V7.5z\"></path><path d=\"M15.5,11h-11C3.67,11,3,11.67,3,12.5v3C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-3C17,11.67,16.33,11,15.5,11z M15.5,15.5h-11v-3h11V15.5z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v4H4V5h15m0 10v4H4v-4h15m1-12H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm0 10H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9l.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z\"></path>" } } }, - "view_array": { - "name": "view_array", + "1k": { + "name": "1k", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3,5h2v10H3V5z M15,5v10h2V5H15z M6,5h8v10H6V5z M7.5,13.5h5v-7h-5V13.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15,7v10H9V7H15z M21,5h-3v14h3V5z M17,5H7v14h10V5z M6,5H3v14h3V5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,15 10,15 10,9 7,9 7,10.5 8.5,10.5\"></polygon><polygon points=\"13.5,12.75 15.25,15 17,15 14.75,12 17,9 15.25,9 13.5,11.25 13.5,9 12,9 12,15 13.5,15\"></polygon></g></g></g>" } } }, - "view_carousel": { - "name": "view_carousel", + "web": { + "name": "web", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M2,6.5h3v7H2V6.5z M15,6.5v7h3v-7H15z M6,5h8v10H6V5z M7.5,13.5h5v-7h-5V13.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2,7h4v10H2V7z M7,19h10V5H7V19z M9,7h6v10H9V7z M18,7h4v10h-4V7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,9h10.5v3.5H4V9z M4,14.5 h10.5V18L4,18V14.5z M20,18l-3.5,0V9H20V18z\"></path></g>" } } }, - "view_column": { - "name": "view_column", + "playlist_add": { + "name": "playlist_add", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M3,5v10h14V5H3z M7.17,13.5H4.5v-7h2.67V13.5z M11.33,13.5H8.67v-7h2.67V13.5z M15.5,13.5h-2.67v-7h2.67V13.5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"5\"></rect><rect height=\"1.5\" width=\"6\" x=\"3\" y=\"11.25\"></rect><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"8.12\"></rect><polygon points=\"14.75,11.25 14.75,8 13.25,8 13.25,11.25 10,11.25 10,12.75 13.25,12.75 13.25,16 14.75,16 14.75,12.75 18,12.75 18,11.25\"></polygon></g></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,5v14h18V5H3z M8.33,17H5V7h3.33V17z M13.67,17h-3.33V7h3.33V17z M19,17h-3.33V7H19V17z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14,10H3v2h11V10z M14,6H3v2h11V6z M18,14v-4h-2v4h-4v2h4v4h2v-4h4v-2H18z M3,16h7v-2H3V16z\"></path></g>" } } }, - "view_day": { - "name": "view_day", + "volume_up": { + "name": "volume_up", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 9v6h4l5 5V4L7 9H3zm7-.17v6.34L7.83 13H5v-2h2.83L10 8.83zM16.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z\"></path>" } } }, - "view_headline": { - "name": "view_headline", + "missed_video_call": { + "name": "missed_video_call", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zm-2-1.83V16H5V8h10v.67zm-7.89 2.44L11 15l3.77-3.79-.78-.79L11 13.43l-3.11-3.1h2.55V9.22H6v4.44h1.11z\"></path>" } } }, - "view_in_ar": { - "name": "view_in_ar", + "library_add": { + "name": "library_add", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect></g><g><g><path d=\"M3,4c0-0.55,0.45-1,1-1h2V1H4C2.34,1,1,2.34,1,4v2h2V4z\"></path><path d=\"M3,20v-2H1v2c0,1.66,1.34,3,3,3h2v-2H4C3.45,21,3,20.55,3,20z\"></path><path d=\"M20,1h-2v2h2c0.55,0,1,0.45,1,1v2h2V4C23,2.34,21.66,1,20,1z\"></path><path d=\"M21,20c0,0.55-0.45,1-1,1h-2v2h2c1.66,0,3-1.34,3-3v-2h-2V20z\"></path><path d=\"M19,14.87V9.13c0-0.72-0.38-1.38-1-1.73l-5-2.88c-0.31-0.18-0.65-0.27-1-0.27s-0.69,0.09-1,0.27L6,7.39 C5.38,7.75,5,8.41,5,9.13v5.74c0,0.72,0.38,1.38,1,1.73l5,2.88c0.31,0.18,0.65,0.27,1,0.27s0.69-0.09,1-0.27l5-2.88 C18.62,16.25,19,15.59,19,14.87z M11,17.17l-4-2.3v-4.63l4,2.33V17.17z M12,10.84L8.04,8.53L12,6.25l3.96,2.28L12,10.84z M17,14.87l-4,2.3v-4.6l4-2.33V14.87z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z\"></path>" } } }, - "view_list": { - "name": "view_list", + "surround_sound": { + "name": "surround_sound", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3,5v10h14V5H3z M15.5,7.83h-8V6.5h8V7.83z M7.5,9.33h8v1.33h-8V9.33z M6,10.67H4.5V9.33H6V10.67z M6,6.5v1.33H4.5V6.5H6z M4.5,12.17H6v1.33H4.5V12.17z M7.5,13.5v-1.33h8v1.33H7.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,5v14h18V5H3z M7,7v2H5V7H7z M5,13v-2h2v2H5z M5,15h2v2H5V15z M19,17H9v-2h10V17z M19,13H9v-2h10V13z M19,9H9V7h10V9z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\"></path><path d=\"M8.29,15.71C7.27,14.69,6.75,13.35,6.75,12c0-1.35,0.52-2.69,1.53-3.72L7.05,7.05C5.68,8.41,5,10.21,5,12 s0.68,3.59,2.06,4.94L8.29,15.71z\"></path><path d=\"M12,15.5c1.93,0,3.5-1.57,3.5-3.5c0-1.93-1.57-3.5-3.5-3.5c-1.93,0-3.5,1.57-3.5,3.5C8.5,13.93,10.07,15.5,12,15.5z M12,10.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S11.17,10.5,12,10.5z\"></path><path d=\"M15.72,15.72l1.23,1.23C18.32,15.59,19,13.79,19,12s-0.68-3.59-2.06-4.94l-1.23,1.23c1.02,1.02,1.54,2.36,1.54,3.71 C17.25,13.35,16.73,14.69,15.72,15.72z\"></path></g></g>" } } }, - "view_module": { - "name": "view_module", + "skip_previous": { + "name": "skip_previous", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3,5v10h14V5H3z M15.5,9.25h-2.67V6.5h2.67V9.25z M8.67,9.25V6.5h2.67v2.75H8.67z M11.33,10.75v2.75H8.67v-2.75H11.33z M7.17,6.5v2.75H4.5V6.5H7.17z M4.5,10.75h2.67v2.75H4.5V10.75z M12.83,13.5v-2.75h2.67v2.75H12.83z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,5v14h18V5H3z M19,11h-3.33V7H19V11z M13.67,11h-3.33V7h3.33V11z M8.33,7v4H5V7H8.33z M5,17v-4h3.33v4H5z M10.33,17v-4 h3.33v4H10.33z M15.67,17v-4H19v4H15.67z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 6h2v12H6zm3.5 6l8.5 6V6l-8.5 6zm6.5 2.14L12.97 12 16 9.86v4.28z\"></path>" } } }, - "view_quilt": { - "name": "view_quilt", + "mic_off": { + "name": "mic_off", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M3,5v10h14V5H3z M7.17,13.5H4.5v-7h2.67V13.5z M11.33,13.5H8.67v-2.75h2.67V13.5z M15.5,13.5h-2.67v-2.75h2.67V13.5z M15.5,9.25H8.67V6.5h6.83V9.25z\"></path></g>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,5v14h18V5H3z M8.33,17H5V7h3.33V17z M13.67,17h-3.33v-4h3.33V17z M19,17h-3.33v-4H19V17z M19,11h-8.67V7H19V11z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 3.91L15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65l1.76 1.76V4.9zM19 11h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86L3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86z\"></path>" } } }, - "view_sidebar": { - "name": "view_sidebar", + "pause_circle_filled": { + "name": "pause_circle_filled", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3,4v12h14V4H3z M16,7.67h-2.5V5H16V7.67z M13.5,8.67H16v2.67h-2.5V8.67z M4,5h8.5v10H4V5z M13.5,15v-2.67H16V15H13.5z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M2,4v16h20V4H2z M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M11,16H9V8h2V16z M15,16h-2V8h2V16z\"></path></g>" } } }, - "view_stream": { - "name": "view_stream", + "library_music": { + "name": "library_music", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3,6.5v7C3,14.33,3.67,15,4.5,15h11c0.83,0,1.5-0.67,1.5-1.5v-7C17,5.67,16.33,5,15.5,5h-11C3.67,5,3,5.67,3,6.5z M15.5,6.5 v2.75h-11V6.5H15.5z M4.5,13.5v-2.75h11v2.75H4.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,7v10c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V7c0-1.1-0.9-2-2-2H5C3.9,5,3,5.9,3,7z M19,17H5v-4h14V17z M5,11V7h14v4H5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.5-1c1.38 0 2.5-1.12 2.5-2.5V7h3V5h-4v5.51c-.42-.32-.93-.51-1.5-.51-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z\"></path>" } } }, - "view_week": { - "name": "view_week", + "videocam_off": { + "name": "videocam_off", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M11.67,5.5v9H8.33v-9H11.67z M3.5,5.5h3.33v9H3.5V5.5z M16.5,14.5h-3.33v-9h3.33V14.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M8,18H4V6h4V18z M14,18h-4V6h4V18z M20,18h-4V6h4V18z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.56 8l-2-2-4.15-4.14L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41-8.86-8.86L9.56 8zM5 16V8h1.73l8 8H5zm10-8v2.61l6 6V6.5l-4 4V7c0-.55-.45-1-1-1h-5.61l2 2H15z\"></path>" } } }, - "visibility": { - "name": "visibility", + "repeat_on": { + "name": "repeat_on", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c3.79 0 7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5c1.38 0 2.5 1.12 2.5 2.5S13.38 14 12 14s-2.5-1.12-2.5-2.5S10.62 9 12 9m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,19H6.83l1.58,1.58L7,22l-4-4 l4-4l1.41,1.42L6.83,17H17v-4h2V19z M17,10l-1.41-1.42L17.17,7H7v4H5V5h12.17l-1.58-1.58L17,2l4,4L17,10z\"></path></g>" } } }, - "visibility_off": { - "name": "visibility_off", + "library_books": { + "name": "library_books", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM10 9h8v2h-8zm0 3h4v2h-4zm0-6h8v2h-8z\"></path>" } } }, - "voice_over_off": { - "name": "voice_over_off", + "loop": { + "name": "loop", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.76 5.36l-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86L3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86zM3 19c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zm6-8c-1.1 0-2-.9-2-2 0-.22.04-.42.11-.62l2.51 2.51c-.2.07-.4.11-.62.11z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z\"></path>" } } }, - "watch_later": { - "name": "watch_later", + "interpreter_mode": { + "name": "interpreter_mode", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M12,10c1.66,0,3-1.34,3-3s-1.34-3-3-3S9,5.34,9,7S10.34,10,12,10z M12,5.5c0.83,0,1.5,0.67,1.5,1.5S12.83,8.5,12,8.5 S10.5,7.83,10.5,7S11.17,5.5,12,5.5z M16.87,13.38c-0.62,0-1.12-0.5-1.12-1.12v-1.88c0-0.62,0.5-1.12,1.13-1.12 c0.62,0,1.12,0.5,1.12,1.12v1.88C18,12.87,17.5,13.38,16.87,13.38z M16.5,16h0.75c0,0,0-1.15,0-1.15c1.27-0.18,2.25-1.28,2.25-2.6 h-0.75c0,1.03-0.84,1.88-1.88,1.88S15,13.28,15,12.25h-0.75c0,1.32,0.98,2.42,2.25,2.6C16.5,14.85,16.5,16,16.5,16z M8.38,9.67 C7.83,8.92,7.5,8,7.5,7c0-1,0.33-1.92,0.88-2.67C7.96,4.12,7.5,4,7,4C5.34,4,4,5.34,4,7s1.34,3,3,3C7.5,10,7.96,9.88,8.38,9.67z M13.45,11.1C12.97,11.04,12.49,11,12,11c-1.84,0-3.56,0.5-5.03,1.37C6.36,12.72,6,13.39,6,14.09V16l9.24,0 c-0.68-0.33-1.24-0.85-1.61-1.5l-6.13,0v-0.41c0-0.18,0.09-0.34,0.22-0.42C9.02,12.9,10.5,12.5,12,12.5c0.38,0,0.75,0.03,1.13,0.08 C13.13,12.05,13.25,11.56,13.45,11.1z M4.5,16H1v-1.91c0-0.7,0.36-1.36,0.97-1.72c1.29-0.76,2.76-1.23,4.33-1.35 C5.89,11.22,4.5,12.2,4.5,14.09V16z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12.5,7H11v6l5.2,3.2l0.8-1.3l-4.5-2.7V7z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20.5,16.5c-0.83,0-1.5-0.67-1.5-1.5v-2.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5V15C22,15.83,21.33,16.5,20.5,16.5z M20,20h1c0,0,0-1.54,0-1.54c1.69-0.24,3-1.7,3-3.46h-1c0,1.38-1.12,2.5-2.5,2.5S18,16.38,18,15h-1c0,1.76,1.31,3.22,3,3.46 C20,18.46,20,20,20,20z M9,12c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4c0.47,0,0.92,0.08,1.34,0.23C9.5,5.26,9,6.57,9,8 c0,1.43,0.5,2.74,1.34,3.77C9.92,11.92,9.47,12,9,12z M7.11,13.13C5.79,14.05,5,15.57,5,17.22V20H1v-2.78 c0-1.12,0.61-2.15,1.61-2.66C3.85,13.92,5.37,13.37,7.11,13.13z M11,8c0-2.21,1.79-4,4-4s4,1.79,4,4c0,2.21-1.79,4-4,4 S11,10.21,11,8z M13,8c0,1.1,0.9,2,2,2s2-0.9,2-2c0-1.1-0.9-2-2-2S13,6.9,13,8z M15,15c-2.37,0-4.29,0.73-5.48,1.34 C9.2,16.5,9,16.84,9,17.22V18l7.17,0c0.5,0.86,1.25,1.56,2.15,2L7,20v-2.78c0-1.12,0.61-2.15,1.61-2.66C10.29,13.7,12.47,13,15,13 c0.39,0,0.77,0.02,1.14,0.05c-0.33,0.59-0.55,1.26-0.62,1.96C15.35,15,15.18,15,15,15z\"></path>" } } }, - "wifi_protected_setup": { - "name": "wifi_protected_setup", + "pause": { + "name": "pause", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M15,4H9v6l1.8-1.8c1.22,0.91,2.01,2.35,2.01,3.99c0,0.75-0.18,1.45-0.47,2.09c1.49-0.98,2.47-2.67,2.47-4.59 c0-1.52-0.62-2.89-1.61-3.89L15,4z\"></path></g><g><path d=\"M7.19,7.84c0-0.75,0.18-1.45,0.47-2.09c-1.49,0.98-2.47,2.67-2.47,4.59c0,1.52,0.62,2.89,1.61,3.89L5,16h6v-5.97 l-1.8,1.8C7.99,10.91,7.19,9.47,7.19,7.84z\"></path></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z\"></path></g><g><path d=\"M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 19h4V5H6v14zm8-14v14h4V5h-4z\"></path>" } } }, - "work": { - "name": "work", + "volume_down": { + "name": "volume_down", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zM5 9v6h4l5 5V4L9 9H5zm7-.17v6.34L9.83 13H7v-2h2.83L12 8.83z\"></path>" } } }, - "work_off": { - "name": "work_off", + "videocam": { + "name": "videocam", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 4h4v2h-3.6l2 2H20v7.6l2 2V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4zM3.4 1.84L1.99 3.25 4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l2 2 1.41-1.41L3.4 1.84zM4 19V8h2.74l11 11H4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 8v8H5V8h10m1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1z\"></path>" } } }, - "work_outline": { - "name": "work_outline", + "web_asset_off": { + "name": "web_asset_off", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M17.78,17.78L2.22,2.22L1.16,3.28L2.38,4.5C2.14,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16h10.38l2.84,2.84L17.78,17.78z M3.5,14.5V7h1.38l7.5,7.5H3.5z M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9c0,0.38-0.14,0.73-0.38,1l-1.12-1.12V7H9.12L6.12,4z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 6V4h-4v2h4zM4 8v11h16V8H4zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M6.83,4H20c1.11,0,2,0.9,2,2v12c0,0.34-0.09,0.66-0.23,0.94L20,17.17V8h-9.17L6.83,4z M20.49,23.31L17.17,20H4 c-1.11,0-2-0.9-2-2V6c0-0.34,0.08-0.66,0.23-0.94L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M15.17,18l-10-10H4v10H15.17z\"></path>" } } }, - "wysiwyg": { - "name": "wysiwyg", + "shield_moon": { + "name": "shield_moon", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,2L3.5,4.5v4.77c0,4.04,2.77,7.81,6.5,8.73c3.73-0.92,6.5-4.69,6.5-8.73V4.5L10,2z M15,9.27c0,3.26-2.13,6.27-5,7.17 c-2.87-0.9-5-3.91-5-7.17V5.53l5-1.92l5,1.92V9.27z\"></path><path d=\"M7.65,11.7c1.36,1.69,3.98,1.75,5.41,0.06c0.18-0.21,0.06-0.53-0.21-0.58c-1-0.17-1.93-0.76-2.48-1.71s-0.6-2.05-0.25-3 c0.1-0.25-0.13-0.51-0.39-0.47C7.14,6.48,5.94,9.59,7.65,11.7z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\"></path><path d=\"M9.01,14.33c1.75,2.17,5.12,2.24,6.96,0.07c0.23-0.27,0.08-0.68-0.26-0.74c-1.29-0.21-2.48-0.98-3.18-2.2 c-0.71-1.22-0.78-2.63-0.32-3.86c0.12-0.33-0.16-0.66-0.51-0.6C8.36,7.62,6.81,11.61,9.01,14.33z\"></path></g></g>" } } }, - "youtube_searched_for": { - "name": "youtube_searched_for", + "sensor_window": { + "name": "sensor_window", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V4C16,3.45,15.55,3,15,3z M15,16H5v-6h10V16z M15,9 h-3.5V8h-3v1H5V4h10V9z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v7h-4v-1h-4v1H6V4H18z M6,20 v-7h12v7H6z\"></path></g>" } } }, - "zoom_in": { - "name": "zoom_in", + "sensor_door": { + "name": "sensor_door", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15,4v12H5V4H15 M15,3H5C4.45,3,4,3.45,4,4v13h12V4C16,3.45,15.55,3,15,3L15,3z M13,9c-0.55,0-1,0.45-1,1s0.45,1,1,1 s1-0.45,1-1S13.55,9,13,9z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2L18,2z M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5S16.33,10.5,15.5,10.5z\"></path></g>" } } }, - "zoom_out": { - "name": "zoom_out", + "calendar_view_month": { + "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M8,11H4V6h4V11z M14,11h-4V6h4V11z M20,11h-4V6h4V11z M8,18H4v-5h4V18z M14,18h-4v-5h4V18z M20,18h-4v-5h4V18z\"></path></g>" } } }, - "add_alert": { - "name": "add_alert", + "density_large": { + "name": "density_large", "keywords": [ - "alert" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"14\" x=\"3\" y=\"3\"></rect><rect height=\"1.5\" width=\"14\" x=\"3\" y=\"15.5\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><rect height=\"2\" width=\"18\" x=\"3\" y=\"19\"></rect></g></g>" } } }, - "auto_delete": { - "name": "auto_delete", + "tips_and_updates": { + "name": "tips_and_updates", "keywords": [ - "alert" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"13,4 11,4 10,3 6,3 5,4 3,4 3,5 13,5\"></polygon><path d=\"M12.5,8c-0.17,0-0.33,0.03-0.5,0.05V6H4v8c0,0.55,0.45,1,1,1h3.76c0.81,1.21,2.18,2,3.74,2c2.49,0,4.5-2.01,4.5-4.5 S14.99,8,12.5,8z M8.28,14H5V7h6v1.28C9.26,8.9,8,10.54,8,12.5C8,13.03,8.11,13.53,8.28,14z M12.5,16C10.57,16,9,14.43,9,12.5 S10.57,9,12.5,9s3.5,1.57,3.5,3.5S14.43,16,12.5,16z\"></path><polygon points=\"13,12.42 13,10 12,10 12,13 14.6,14.5 15.1,13.63\"></polygon></g></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M4.5,14h6v1.5h-6V14z M13.5,8c0,2.09-1.07,3.93-2.69,5H4.19C2.57,11.93,1.5,10.09,1.5,8c0-3.31,2.69-6,6-6S13.5,4.69,13.5,8 z M12,8c0-2.48-2.02-4.5-4.5-4.5S3,5.52,3,8c0,1.37,0.62,2.65,1.67,3.5h5.65C11.38,10.65,12,9.37,12,8z M7.5,18 C8.33,18,9,17.33,9,16.5H6C6,17.33,6.67,18,7.5,18z M18.5,8l0.47-1.03L20,6.5l-1.03-0.47L18.5,5l-0.47,1.03L17,6.5l1.03,0.47L18.5,8 z M15.5,5l0.78-1.72L18,2.5l-1.72-0.78L15.5,0l-0.78,1.72L13,2.5l1.72,0.78L15.5,5z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4\"></polygon><path d=\"M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M9,16c0,0.34,0.03,0.67,0.08,1H4V7h8v3.26C10.19,11.53,9,13.62,9,16z M16,21c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z\"></path><polygon points=\"16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2\"></polygon></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect><path d=\"M7,20h4c0,1.1-0.9,2-2,2S7,21.1,7,20z M5,19h8v-2H5V19z M16.5,9.5c0,3.82-2.66,5.86-3.77,6.5H5.27 C4.16,15.36,1.5,13.32,1.5,9.5C1.5,5.36,4.86,2,9,2S16.5,5.36,16.5,9.5z M14.5,9.5C14.5,6.47,12.03,4,9,4S3.5,6.47,3.5,9.5 c0,2.47,1.49,3.89,2.35,4.5h6.3C13.01,13.39,14.5,11.97,14.5,9.5z M21.37,7.37L20,8l1.37,0.63L22,10l0.63-1.37L24,8l-1.37-0.63L22,6 L21.37,7.37z M19,6l0.94-2.06L22,3l-2.06-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6z\"></path>" } } }, - "error": { - "name": "error", + "assignment_returned": { + "name": "assignment_returned", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 12h-3V8h-4v4H7l5 5zm2-9h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\"></path>" } } }, - "error_outline": { - "name": "error_outline", + "query_builder": { + "name": "query_builder", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\"></path>" } } }, - "notification_important": { - "name": "notification_important", + "view_agenda": { + "name": "view_agenda", "keywords": [ - "alert" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v3C3,8.33,3.67,9,4.5,9h11C16.33,9,17,8.33,17,7.5v-3C17,3.67,16.33,3,15.5,3z M15.5,7.5 h-11v-3h11V7.5z\"></path><path d=\"M15.5,11h-11C3.67,11,3,11.67,3,12.5v3C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-3C17,11.67,16.33,11,15.5,11z M15.5,15.5h-11v-3h11V15.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM11 8h2v4h-2zm0 6h2v2h-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect></g><g><g><path d=\"M19,13H5c-1.1,0-2,0.9-2,2v4c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-4C21,13.9,20.1,13,19,13z M19,19H5v-4h14V19z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v4c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,9H5V5h14V9z\"></path></g></g>" } } }, - "warning": { - "name": "warning", + "assured_workload": { + "name": "assured_workload", "keywords": [ - "alert" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"6.5\" width=\"1.5\" x=\"9.25\" y=\"8\"></rect><rect height=\"6.5\" width=\"1.5\" x=\"4\" y=\"8\"></rect><path d=\"M18,5l-8-4L2,5v2h16V5z M4.35,5.5L10,2.68l5.65,2.82H4.35z\"></path><path d=\"M2,15.5V17h10.66c-0.05-0.22-0.16-0.71-0.16-1.5H2z\"></path><polygon points=\"16,10.82 16,8 14.5,8 14.5,11.57\"></polygon><path d=\"M17,12l-3,1.5v2.14c0,2.02,1.28,3.91,3,4.36c1.72-0.46,3-2.35,3-4.36V13.5L17,12z M16.43,17.5l-1.55-1.54l0.71-0.71 l0.82,0.81L18.39,14l0.73,0.68L16.43,17.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"7\" width=\"2\" x=\"5\" y=\"10\"></rect><rect height=\"7\" width=\"2\" x=\"11\" y=\"10\"></rect><path d=\"M22,6L12,1L2,6v2h20V6z M6.47,6L12,3.24L17.53,6H6.47z\"></path><path d=\"M2,19v2h12.4c-0.21-0.64-0.32-1.31-0.36-2H2z\"></path><polygon points=\"19,12.26 19,10 17,10 17,13.26\"></polygon><path d=\"M20,14l-4,2v2.55c0,2.52,1.71,4.88,4,5.45c2.29-0.57,4-2.93,4-5.45V16L20,14z M19.28,21l-2.03-2.03l1.06-1.06l0.97,0.97 l2.41-2.38l1.06,1.06L19.28,21z\"></path></g></g>" } } }, - "warning_amber": { - "name": "warning_amber", + "perm_device_information": { + "name": "perm_device_information", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 7h2v2h-2zm0 4h2v6h-2zm6-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zM7 4V3h10v1H7z\"></path>" } } }, - "10k": { - "name": "10k", + "plagiarism": { + "name": "plagiarism", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M12,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V7L12,3z M15,16H5V4h6v4h4V16z\"></path><path d=\"M7.73,9.73c-0.98,0.98-0.98,2.56,0,3.54c0.86,0.86,2.18,0.96,3.15,0.32l1.45,1.45l0.71-0.71l-1.45-1.45 c0.64-0.97,0.54-2.29-0.32-3.15C10.29,8.76,8.71,8.76,7.73,9.73z M10.56,12.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C11.15,11.03,11.15,11.97,10.56,12.56z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,9v6v4H5v-8.5h1V15h1.5V9H5V5 h14V9z\"></path><polygon points=\"15.5,11.25 15.5,9 14,9 14,15 15.5,15 15.5,12.75 17.25,15 19,15 16.75,12 19,9 17.25,9\"></polygon><path d=\"M9.5,15H12c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H9.5c-0.55,0-1,0.45-1,1v4C8.5,14.55,8.95,15,9.5,15z M10,10.5h1.5v3 H10V10.5z\"></path></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20L6,20V4h7v5h5V20z\"></path><path d=\"M9.03,11.03c-1.37,1.37-1.37,3.58,0,4.95c1.12,1.12,2.8,1.31,4.13,0.59l1.88,1.88l1.41-1.41l-1.88-1.88 c0.71-1.33,0.53-3.01-0.59-4.13C12.61,9.66,10.39,9.66,9.03,11.03z M12.56,14.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C13.15,13.03,13.15,13.97,12.56,14.56z\"></path></g></g>" } } }, - "1k": { - "name": "1k", + "settings_remote": { + "name": "settings_remote", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,15 10,15 10,9 7,9 7,10.5 8.5,10.5\"></polygon><polygon points=\"13.5,12.75 15.25,15 17,15 14.75,12 17,9 15.25,9 13.5,11.25 13.5,9 12,9 12,15 13.5,15\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-1 12h-4V11h4v10z\"></path><circle cx=\"12\" cy=\"13\" r=\"1\"></circle><path d=\"M7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z\"></path>" } } }, - "1k_plus": { - "name": "1k_plus", + "record_voice_over": { + "name": "record_voice_over", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><polygon points=\"7.5,15 9,15 9,9 6,9 6,10.5 7.5,10.5\"></polygon><polygon points=\"12,12.75 13.75,15 15.5,15 13.25,12 15.5,9 13.75,9 12,11.25 12,9 10.5,9 10.5,15 12,15\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM15.08 7.05c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z\"></path>" } } }, - "2k": { - "name": "2k", + "swap_horizontal_circle": { + "name": "swap_horizontal_circle", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,13.5H8v-1h2c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H6.5v1.5h3v1h-2c-0.55,0-1,0.45-1,1V15H11V13.5z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z\"></path>" } } }, - "2k_plus": { - "name": "2k_plus", + "payment": { + "name": "payment", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><path d=\"M10,13.5H7.5v-1H9c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H6v1.5h2.5v1H7c-0.55,0-1,0.45-1,1V15h4V13.5z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\"></path>" } } }, - "3k": { - "name": "3k", + "flip_to_front": { + "name": "flip_to_front", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,14v-4c0-0.55-0.45-1-1-1H6.5v1.5h3v1h-2v1h2v1h-3V15H10C10.55,15,11,14.55,11,14z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z\"></path>" } } }, - "3k_plus": { - "name": "3k_plus", + "update": { + "name": "update", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><path d=\"M10,14v-4c0-0.55-0.45-1-1-1H5.5v1.5h3v1h-2v1h2v1h-3V15H9C9.55,15,10,14.55,10,14z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z\"></path></g></g>" } } }, - "4k": { - "name": "4k", + "segment": { + "name": "segment", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14zm-9.5-4H11v-1.49h1V12h-1V9H9.5v3H8V9H6.5v4.5h3zm8.7 0l-2-3 2-3h-1.7l-2 3 2 3zm-3.7-3V9H13v6h1.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M9,18h12v-2H9V18z M3,6v2h18V6H3z M9,13h12v-2H9V13z\"></path></g>" } } }, - "4k_plus": { - "name": "4k_plus", + "open_in_full": { + "name": "open_in_full", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><polygon points=\"8.5,15 10,15 10,13.5 11,13.5 11,12 10,12 10,9 8.5,9 8.5,12 7,12 7,9 5.5,9 5.5,13.5 8.5,13.5\"></polygon><polygon points=\"13,12.75 14.75,15 16.5,15 14.25,12 16.5,9 14.75,9 13,11.25 13,9 11.5,9 11.5,15 13,15\"></polygon></g></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><polygon points=\"21,11 21,3 13,3 16.29,6.29 6.29,16.29 3,13 3,21 11,21 7.71,17.71 17.71,7.71\"></polygon>" } } }, - "5g": { - "name": "5g", + "cached": { + "name": "cached", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M12,10.5h2V12h-3V8h4c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1V9.5h-3V10.5z\"></path></g><g><path d=\"M9,8H6v1.5h2c0.55,0,1,0.45,1,1V12c0,0.55-0.45,1-1,1H5v-1h3v-1.5H5V7h4V8z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z\"></path><path d=\"M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 8l-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z\"></path>" } } }, - "5k": { - "name": "5k", + "upgrade": { + "name": "upgrade", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13,14v1H7v-1H13z M9.5,8v5h1V8H13l-3-3L7,8H9.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,14v-1.5c0-0.55-0.45-1-1-1H8v-1h3V9H6.5v3.5h3v1h-3V15H10C10.55,15,11,14.55,11,14z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z\"></path></g>" } } }, - "5k_plus": { - "name": "5k_plus", + "api": { + "name": "api", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><path d=\"M10,14v-1.5c0-0.55-0.45-1-1-1H7.5v-1H10V9H6v3.5h2.5v1H6V15h3C9.55,15,10,14.55,10,14z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z\"></path></g>" } } }, - "6k": { - "name": "6k", + "book": { + "name": "book", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon><path d=\"M7.5,15H10c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H8v-1h3V9H7.5c-0.55,0-1,0.45-1,1v4C6.5,14.55,6.95,15,7.5,15z M8,12.5h1.5V14H8V12.5z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z\"></path>" } } }, - "6k_plus": { - "name": "6k_plus", + "view_sidebar": { + "name": "view_sidebar", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3,4v12h14V4H3z M16,7.67h-2.5V5H16V7.67z M13.5,8.67H16v2.67h-2.5V8.67z M4,5h8.5v10H4V5z M13.5,15v-2.67H16V15H13.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon><path d=\"M7,15h2c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H7.5v-1H10V9H7c-0.55,0-1,0.45-1,1v4C6,14.55,6.45,15,7,15z M7.5,12.5 h1V14h-1V12.5z\"></path></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M2,4v16h20V4H2z M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z\"></path></g></g>" } } }, - "7k": { - "name": "7k", + "accessibility_new": { + "name": "accessibility_new", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M7.75,15H9.5l1.46-4.71C11.15,9.65,10.67,9,10,9H6.5v1.5h2.63L7.75,15z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\"></path>" } } }, - "7k_plus": { - "name": "7k_plus", + "highlight_off": { + "name": "highlight_off", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><path d=\"M6.75,15H8.5l1.46-4.71C10.15,9.65,9.67,9,9,9H5.5v1.5h2.63L6.75,15z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" } } }, - "8k": { - "name": "8k", + "perm_phone_msg": { + "name": "perm_phone_msg", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M7.5,15H10c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H7.5c-0.55,0-1,0.45-1,1v4C6.5,14.55,6.95,15,7.5,15z M8,10h1.5v1.5H8 V10z M8,12.5h1.5V14H8V12.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM12 3v10l3-3h6V3h-9zm7 5h-5V5h5v3z\"></path>" } } }, - "8k_plus": { - "name": "8k_plus", + "g_translate": { + "name": "g_translate", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M7,15h2c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v4C6,14.55,6.45,15,7,15z M7.5,10h1v1.5h-1V10z M7.5,12.5h1V14h-1V12.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z\"></path>" } } }, - "9k": { - "name": "9k", + "lock_open": { + "name": "lock_open", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M11,14v-4c0-0.55-0.45-1-1-1H7.5c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h2v1h-3V15H10C10.55,15,11,14.55,11,14z M9.5,11.5H8V10h1.5V11.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\"></path>" } } }, - "9k_plus": { - "name": "9k_plus", + "redeem": { + "name": "redeem", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M10,14v-4c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h1.5v1H6V15h3C9.55,15,10,14.55,10,14z M8.5,11.5h-1V10h1V11.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\"></path><polygon points=\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z\"></path>" } } }, - "add_to_queue": { - "name": "add_to_queue", + "feedback": { + "name": "feedback", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z\"></path>" } } }, - "airplay": { - "name": "airplay", + "dns": { + "name": "dns", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><polygon points=\"6,22 18,22 12,16\"></polygon><path d=\"M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 15v4H5v-4h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 18.5c-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM19 5v4H5V5h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 8.5c-.82 0-1.5-.67-1.5-1.5S6.18 5.5 7 5.5s1.5.68 1.5 1.5S7.83 8.5 7 8.5z\"></path>" } } }, - "album": { - "name": "album", + "mediation": { + "name": "mediation", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,16l4-4l-4-4v3h-5.06c-0.34-3.1-2.26-5.72-4.94-7.05C7.96,2.31,6.64,1,5,1C3.34,1,2,2.34,2,4s1.34,3,3,3 c0.95,0,1.78-0.45,2.33-1.14C9.23,6.9,10.6,8.77,10.92,11h-3.1C7.4,9.84,6.3,9,5,9c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.3,0,2.4-0.84,2.82-2h3.1c-0.32,2.23-1.69,4.1-3.58,5.14C6.78,17.45,5.95,17,5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.64,0,2.96-1.31,2.99-2.95c2.68-1.33,4.6-3.95,4.94-7.05H18V16z\"></path></g>" } } }, - "art_track": { - "name": "art_track", + "view_compact_alt": { + "name": "view_compact_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"3\" width=\"3\" x=\"6.5\" y=\"6.5\"></rect><rect height=\"3\" width=\"3\" x=\"10.5\" y=\"6.5\"></rect><rect height=\"3\" width=\"3\" x=\"6.5\" y=\"10.5\"></rect><rect height=\"3\" width=\"3\" x=\"10.5\" y=\"10.5\"></rect><path d=\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M16.5,14.5h-13v-9h13V14.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6l-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\"></path><rect height=\"4\" width=\"4\" x=\"7.5\" y=\"7.5\"></rect><rect height=\"4\" width=\"4\" x=\"12.5\" y=\"7.5\"></rect><rect height=\"4\" width=\"4\" x=\"7.5\" y=\"12.5\"></rect><rect height=\"4\" width=\"4\" x=\"12.5\" y=\"12.5\"></rect></g></g>" } } }, - "av_timer": { - "name": "av_timer", + "label_important": { + "name": "label_important", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 18.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99z\"></path>" } } }, - "branding_watermark": { - "name": "branding_watermark", + "token": { + "name": "token", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect><path d=\"M16.75,6.25L10,2.5L3.25,6.25v7.5L10,17.5l6.75-3.75L16.75,6.25z M10,4.22l4.43,2.46l-2.26,1.25C11.63,7.36,10.86,7,10,7 S8.37,7.36,7.83,7.93L5.57,6.68L10,4.22z M9.25,15.37l-4.5-2.5V7.94l2.35,1.3C7.03,9.49,7,9.74,7,10c0,1.4,0.96,2.57,2.25,2.91 V15.37z M8.5,10c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S8.5,10.83,8.5,10z M10.75,15.37v-2.46 C12.04,12.57,13,11.4,13,10c0-0.26-0.03-0.51-0.1-0.76l2.35-1.3l0,4.93L10.75,15.37z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-7h9v6h-9z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect><path d=\"M21,7l-9-5L3,7v10l9,5l9-5L21,7z M12,4.29l5.91,3.28L14.9,9.24C14.17,8.48,13.14,8,12,8S9.83,8.48,9.1,9.24L6.09,7.57 L12,4.29z M11,19.16l-6-3.33V9.26l3.13,1.74C8.04,11.31,8,11.65,8,12c0,1.86,1.27,3.43,3,3.87V19.16z M10,12c0-1.1,0.9-2,2-2 s2,0.9,2,2s-0.9,2-2,2S10,13.1,10,12z M13,19.16v-3.28c1.73-0.44,3-2.01,3-3.87c0-0.35-0.04-0.69-0.13-1.01L19,9.26l0,6.57L13,19.16 z\"></path>" } } }, - "call_to_action": { - "name": "call_to_action", + "extension": { + "name": "extension", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 15h14v3H5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.5 4.5c.28 0 .5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5h-2v6h-2.12c-.68-1.75-2.39-3-4.38-3s-3.7 1.25-4.38 3H4v-2.12c1.75-.68 3-2.39 3-4.38 0-1.99-1.24-3.7-2.99-4.38L4 7h6V5c0-.28.22-.5.5-.5m0-2C9.12 2.5 8 3.62 8 5H4c-1.1 0-1.99.9-1.99 2v3.8h.29c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-.3c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7v.3H17c1.1 0 2-.9 2-2v-4c1.38 0 2.5-1.12 2.5-2.5S20.38 11 19 11V7c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5z\"></path>" } } }, - "closed_caption": { - "name": "closed_caption", + "settings_cell": { + "name": "settings_cell", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7 15h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm7 0h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM16 .01L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 18H8v-1h8v1zm0-3H8V5h8v10zm0-12H8V2h8v1z\"></path>" } } }, - "closed_caption_disabled": { - "name": "closed_caption_disabled", + "display_settings": { + "name": "display_settings", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16.5,3h-13C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v2h6v-2h3.5c0.83,0,1.5-0.67,1.5-1.5v-9 C18,3.67,17.33,3,16.5,3z M16.5,13.5h-13v-9h13V13.5z\"></path><rect height=\"1\" width=\"7\" x=\"5\" y=\"7\"></rect><polygon points=\"14,8 15,8 15,7 14,7 14,6 13,6 13,9 14,9\"></polygon><rect height=\"1\" width=\"7\" x=\"8\" y=\"10\"></rect><polygon points=\"6,12 7,12 7,9 6,9 6,10 5,10 5,11 6,11\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1h-1.5v-0.5h-2v1L13,10z M16.5,13.5l1.21,1.21C17.89,14.52,18,14.27,18,14v-1 h-1.5V13.5z M8.83,6H19v10.17l1.98,1.98c0-0.05,0.02-0.1,0.02-0.16V6c0-1.1-0.9-2-2-2H6.83L8.83,6z M19.78,22.61L17.17,20H5 c-1.11,0-2-0.9-2-2V6c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M7.5,13.5h2V13h0.67l-2.5-2.5H7.5 V13.5z M15.17,18L11,13.83V14c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.32,0.16-0.59,0.4-0.78L5,7.83V18H15.17z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,3H4C2.89,3,2,3.89,2,5v12c0,1.1,0.89,2,2,2h4v2h8v-2h4c1.1,0,2-0.9,2-2V5C22,3.89,21.1,3,20,3z M20,17H4V5h16V17z\"></path><rect height=\"1.5\" width=\"8\" x=\"6\" y=\"8.25\"></rect><polygon points=\"16.5,9.75 18,9.75 18,8.25 16.5,8.25 16.5,7 15,7 15,11 16.5,11\"></polygon><rect height=\"1.5\" width=\"8\" x=\"10\" y=\"12.25\"></rect><polygon points=\"7.5,15 9,15 9,11 7.5,11 7.5,12.25 6,12.25 6,13.75 7.5,13.75\"></polygon></g></g>" } } }, - "closed_caption_off": { - "name": "closed_caption_off", + "task_alt": { + "name": "task_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g enable-background=\"new\"><g><path d=\"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.1,4,19,4z M19,18H5V6h14V18z\"></path><path d=\"M7,15h3c0.55,0,1-0.45,1-1v-1H9.5v0.5h-2v-3h2V11H11v-1c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v4C6,14.55,6.45,15,7,15z\"></path><path d=\"M14,15h3c0.55,0,1-0.45,1-1v-1h-1.5v0.5h-2v-3h2V11H18v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4 C13,14.55,13.45,15,14,15z\"></path></g></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M19.79,10.22C19.92,10.79,20,11.39,20,12 c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-4.42,3.58-8,8-8c1.58,0,3.04,0.46,4.28,1.25l1.44-1.44C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12 c0,5.52,4.48,10,10,10s10-4.48,10-10c0-1.19-0.22-2.33-0.6-3.39L19.79,10.22z\"></path>" } } }, - "control_camera": { - "name": "control_camera", + "http": { + "name": "http", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5.54 8.46L2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm6.46 10l-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zm6.46-10l-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-10-2.92l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z\"></path><circle cx=\"12\" cy=\"12\" r=\"3\"></circle>" + "path": "<path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\"></path><path d=\"M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z\"></path>" } } }, - "equalizer": { - "name": "equalizer", + "today": { + "name": "today", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM7 11h5v5H7z\"></path>" } } }, - "explicit": { - "name": "explicit", + "settings_input_svideo": { + "name": "settings_input_svideo", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h4v-2h-4V9h4V7H9v10h6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z\"></path>" } } }, - "fast_forward": { - "name": "fast_forward", + "input": { + "name": "input", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M15,9.86L18.03,12L15,14.14V9.86 M6,9.86L9.03,12L6,14.14V9.86 M13,6v12l8.5-6L13,6L13,6z M4,6v12l8.5-6L4,6L4,6z\"></path></g>" + "path": "<g fill=\"none\"><path d=\"M0 0h24v24H0V0z\"></path><path d=\"M0 0h24v24H0V0z\" opacity=\".87\"></path></g><path d=\"M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3zM21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z\"></path>" } } }, - "fast_rewind": { - "name": "fast_rewind", + "commute": { + "name": "commute", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 9.86v4.28L14.97 12 18 9.86m-9 0v4.28L5.97 12 9 9.86M20 6l-8.5 6 8.5 6V6zm-9 0l-8.5 6 8.5 6V6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" } } }, - "featured_play_list": { - "name": "featured_play_list", + "view_quilt": { + "name": "view_quilt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M3,5v10h14V5H3z M7.17,13.5H4.5v-7h2.67V13.5z M11.33,13.5H8.67v-2.75h2.67V13.5z M15.5,13.5h-2.67v-2.75h2.67V13.5z M15.5,9.25H8.67V6.5h6.83V9.25z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 10h9v2H5zm0-3h9v2H5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,5v14h18V5H3z M8.33,17H5V7h3.33V17z M13.67,17h-3.33v-4h3.33V17z M19,17h-3.33v-4H19V17z M19,11h-8.67V7H19V11z\"></path>" } } }, - "featured_video": { - "name": "featured_video", + "store": { + "name": "store", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM4 6h9v7H4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.36 9l.6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z\"></path>" } } }, - "fiber_dvr": { - "name": "fiber_dvr", + "play_for_work": { + "name": "play_for_work", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.87 12.43l-1-3.43h-1.5l1.75 6h1.5l1.75-6h-1.5zM21 11.5v-1c0-.85-.65-1.5-1.5-1.5H16v6h1.5v-2h1.15l.85 2H21l-.9-2.1c.5-.25.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zM6.5 9H3v6h3.5c.85 0 1.5-.65 1.5-1.5v-3C8 9.65 7.35 9 6.5 9zm0 4.5h-2v-3h2v3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z\"></path>" } } }, - "fiber_manual_record": { - "name": "fiber_manual_record", + "rounded_corner": { + "name": "rounded_corner", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6m0-2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z\"></path>" } } }, - "fiber_new": { - "name": "fiber_new", + "track_changes": { + "name": "track_changes", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.25 12.5L4.75 9H3.5v6h1.25v-3.5L7.3 15h1.2V9H7.25zM9.5 15h4v-1.25H11v-1.11h2.5v-1.26H11v-1.12h2.5V9h-4zm9.75-6v4.5h-1.12V9.99h-1.25v3.52h-1.13V9H14.5v5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V9h-1.25z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.07 4.93l-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z\"></path>" } } }, - "fiber_pin": { - "name": "fiber_pin", + "zoom_in": { + "name": "zoom_in", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 15h1.5V9H11v6zm7.75-6v3.5L16.25 9H15v6h1.25v-3.5L18.8 15H20V9h-1.25zM7.5 9H4v6h1.5v-2h2c.85 0 1.5-.65 1.5-1.5v-1C9 9.65 8.35 9 7.5 9zm0 2.5h-2v-1h2v1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z\"></path>" } } }, - "fiber_smart_record": { - "name": "fiber_smart_record", + "thumb_down": { + "name": "thumb_down", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm8-13.74v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z\"></path>" } } }, - "forward_10": { - "name": "forward_10", + "disabled_by_default": { + "name": "disabled_by_default", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z\"></path><polygon points=\"10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16\"></polygon><path d=\"M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,19H5V5h14V19z M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7 L17,8.41L13.41,12L17,15.59z\"></path>" } } }, - "forward_30": { - "name": "forward_30", + "account_balance": { + "name": "account_balance", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-6.74L16.71 6H6.29l5.21-2.74m0-2.26L2 6v2h19V6l-9.5-5z\"></path>" } } }, - "forward_5": { - "name": "forward_5", + "flutter_dash": { + "name": "flutter_dash", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M9.26,9.56c0.23-0.32,0.65-0.45,1.01-0.3c0.14,0.06,0.26,0.15,0.35,0.26c0.18,0.22,0.2,0.47,0.17,0.68 c-0.04,0.27-0.2,0.5-0.43,0.63c0,0-3.89,2.36-4.06,2.15C6.14,12.78,9.26,9.56,9.26,9.56z M18,8.2c0,2-0.8,2.4-1.2,2.4 c-0.19,0-0.35-0.08-0.5-0.21c-0.38,2.65-1.89,4.25-4.26,4.79c0.08,0.35,0.39,0.62,0.76,0.62l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 c-0.11-0.17-0.26-0.45-0.26-0.82c0-0.24,0.03-0.45,0.08-0.64c-0.62-0.13-1.11-0.62-1.24-1.25c-0.39,0.05-0.8,0.08-1.23,0.08 c-0.71,0-1.36-0.07-1.96-0.2C8.02,15.26,8,15.33,8,15.4c0,0.44,0.36,0.8,0.8,0.8l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 C8.54,18.25,8.4,17.97,8.4,17.6c0-0.24,0.03-0.45,0.08-0.64c-0.73-0.15-1.28-0.8-1.28-1.57c0-0.15,0.03-0.29,0.06-0.42 c-1.97-0.69-3.22-2.22-3.57-4.59c-0.15,0.13-0.31,0.21-0.5,0.21C2.8,10.6,2,10.2,2,8.2c0-1.81,1.36-3.6,2.4-3.6 c0.34,0,0.39,0.39,0.4,0.68c1.02-1.43,2.61-2.41,4.44-2.63C9.4,1.88,10.1,1.4,10.8,1.4v0.8c0,0,0.26-0.4,0.8-0.4 c0.54,0,0.8,0.4,0.8,0.4c-0.39,0-0.68,0.28-0.76,0.62c1.46,0.39,2.71,1.27,3.57,2.46c0.01-0.29,0.06-0.68,0.4-0.68 C16.64,4.6,18,6.39,18,8.2z M4.4,9c0,0.65,0.08,1.23,0.2,1.77c0.15-0.55,0.37-1.07,0.67-1.54C5.1,8.85,5,8.44,5,8 c0-1.66,1.34-3,3-3c0.77,0,1.47,0.3,2,0.78C10.53,5.3,11.23,5,12,5c1.66,0,3,1.34,3,3c0,0.44-0.1,0.85-0.27,1.23 c0.3,0.47,0.53,0.99,0.67,1.55c0.12-0.54,0.2-1.12,0.2-1.78c0-3.09-2.51-5.6-5.6-5.6C6.91,3.4,4.4,5.91,4.4,9z M14.78,12.44 c0-0.08,0.02-0.15,0.02-0.24c0-0.8-0.21-1.56-0.56-2.22C13.69,10.6,12.9,11,12,11c-0.22,0-0.43-0.02-0.63-0.07 c0.11-0.19,0.18-0.4,0.21-0.62c0.01-0.05,0.01-0.1,0.01-0.16c0.13,0.03,0.27,0.04,0.4,0.04c1.21,0,2.2-0.99,2.2-2.2 S13.21,5.8,12,5.8c-0.53,0-1.05,0.2-1.46,0.57L10,6.86L9.46,6.37C9.05,6,8.53,5.8,8,5.8C6.79,5.8,5.8,6.79,5.8,8 c0,1.07,0.77,1.97,1.79,2.16l-0.61,0.66c-0.48-0.17-0.89-0.47-1.22-0.84C5.41,10.65,5.2,11.4,5.2,12.2c0,0.07,0.01,0.12,0.01,0.19 C6.1,13.85,7.71,14.6,10,14.6C12.3,14.6,13.9,13.87,14.78,12.44z M13.2,8c0,0.77-0.54,1.4-1.2,1.4S10.8,8.77,10.8,8 s0.54-1.4,1.2-1.4S13.2,7.23,13.2,8z M12.6,7.3c0-0.17-0.13-0.3-0.3-0.3C12.13,7,12,7.13,12,7.3s0.13,0.3,0.3,0.3 C12.47,7.6,12.6,7.47,12.6,7.3z M9.2,8c0,0.77-0.54,1.4-1.2,1.4S6.8,8.77,6.8,8S7.34,6.6,8,6.6S9.2,7.23,9.2,8z M8.6,7.3 C8.6,7.13,8.47,7,8.3,7C8.13,7,8,7.13,8,7.3s0.13,0.3,0.3,0.3C8.47,7.6,8.6,7.47,8.6,7.3z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M11.07,11.7c0.29-0.39,0.81-0.56,1.27-0.37c0.17,0.07,0.32,0.18,0.43,0.33c0.22,0.28,0.25,0.59,0.22,0.85 c-0.05,0.33-0.25,0.63-0.54,0.79c0,0-4.87,2.95-5.07,2.69S11.07,11.7,11.07,11.7z M22,10c0,2.5-1,3-1.5,3 c-0.23,0-0.44-0.1-0.62-0.26c-0.48,3.32-2.36,5.31-5.33,5.99c0.11,0.44,0.48,0.77,0.95,0.77l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C15.18,22.07,15,21.71,15,21.26c0-0.3,0.04-0.57,0.09-0.8c-0.78-0.16-1.39-0.78-1.55-1.56c-0.49,0.06-1,0.1-1.54,0.1 c-0.88,0-1.7-0.09-2.45-0.25C9.53,18.83,9.5,18.91,9.5,19c0,0.55,0.45,1,1,1l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C10.18,22.57,10,22.21,10,21.76c0-0.3,0.04-0.57,0.09-0.8C9.19,20.77,8.5,19.96,8.5,19c0-0.18,0.03-0.36,0.08-0.53 c-2.46-0.86-4.03-2.78-4.46-5.74C3.94,12.9,3.74,13,3.5,13C3,13,2,12.5,2,10c0-2.27,1.7-4.5,3-4.5c0.43,0,0.49,0.49,0.5,0.85 c1.28-1.78,3.26-3.02,5.55-3.29C11.25,2.1,12.13,1.5,13,1.5v1c0,0,0.33-0.5,1-0.5c0.67,0,1,0.5,1,0.5c-0.49,0-0.85,0.35-0.96,0.77 c1.82,0.48,3.39,1.59,4.46,3.08C18.51,5.99,18.57,5.5,19,5.5C20.3,5.5,22,7.73,22,10z M5,11c0,0.81,0.1,1.53,0.25,2.21 c0.18-0.69,0.46-1.33,0.83-1.92c-0.21-0.47-0.34-0.99-0.34-1.54C5.75,7.68,7.43,6,9.5,6c0.96,0,1.84,0.37,2.5,0.97 C12.66,6.37,13.54,6,14.5,6c2.07,0,3.75,1.68,3.75,3.75c0,0.55-0.12,1.07-0.34,1.54c0.37,0.59,0.66,1.24,0.84,1.94 C18.9,12.55,19,11.82,19,11c0-3.86-3.14-7-7-7C8.14,4,5,7.14,5,11z M17.98,15.29c0-0.1,0.02-0.19,0.02-0.29 c0-1.01-0.26-1.95-0.7-2.78c-0.69,0.78-1.68,1.28-2.8,1.28c-0.27,0-0.54-0.03-0.79-0.09c0.14-0.23,0.23-0.49,0.27-0.77 c0.01-0.07,0.01-0.13,0.02-0.19c0.17,0.03,0.33,0.05,0.5,0.05c1.52,0,2.75-1.23,2.75-2.75S16.02,7,14.5,7 c-0.67,0-1.32,0.25-1.83,0.72L12,8.32l-0.67-0.6C10.82,7.25,10.17,7,9.5,7C7.98,7,6.75,8.23,6.75,9.75c0,1.34,0.96,2.46,2.23,2.7 l-0.76,0.83c-0.6-0.22-1.12-0.59-1.53-1.05C6.26,13.06,6,14,6,15c0,0.08,0.01,0.15,0.01,0.24C7.13,17.06,9.14,18,12,18 C14.88,18,16.88,17.09,17.98,15.29z M16,9.75c0,0.97-0.67,1.75-1.5,1.75S13,10.72,13,9.75S13.67,8,14.5,8S16,8.78,16,9.75z M15.25,8.88c0-0.21-0.17-0.38-0.38-0.38S14.5,8.67,14.5,8.88s0.17,0.38,0.38,0.38S15.25,9.08,15.25,8.88z M11,9.75 c0,0.97-0.67,1.75-1.5,1.75S8,10.72,8,9.75S8.67,8,9.5,8S11,8.78,11,9.75z M10.25,8.88c0-0.21-0.17-0.38-0.38-0.38 S9.5,8.67,9.5,8.88s0.17,0.38,0.38,0.38S10.25,9.08,10.25,8.88z\"></path></g>" } } }, - "games": { - "name": "games", + "accessible_forward": { + "name": "accessible_forward", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5l-3 3V22h6v-5.5l-3-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"18\" cy=\"4.54\" r=\"2\"></circle><path d=\"M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z\"></path>" } } }, - "hd": { - "name": "hd", + "text_rotation_angleup": { + "name": "text_rotation_angleup", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zM18 14v-4c0-.55-.45-1-1-1h-4v6h4c.55 0 1-.45 1-1zm-1.5-.5h-2v-3h2v3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.76 9l1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75l3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z\"></path>" } } }, - "hearing": { - "name": "hearing", + "all_inbox": { + "name": "all_inbox", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-2 7h-3v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-4zM5 17h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z\"></path>" } } }, - "hearing_disabled": { - "name": "hearing_disabled", + "saved_search": { + "name": "saved_search", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11,8c0,0.45-0.15,0.85-0.4,1.19L7.81,6.4C8.15,6.15,8.55,6,9,6C10.1,6,11,6.9,11,8z M17.07,17.07L2.93,2.93L2.22,3.64 l2.27,2.27C4.19,6.54,4,7.25,4,8h1c0-0.47,0.09-0.92,0.24-1.34l1.82,1.82C7.24,9.2,7.8,9.76,8.52,9.94l2.1,2.1c0,0,0,0,0,0 c-0.6,0.46-1.23,0.93-1.56,1.92c-0.39,1.16-0.81,1.58-1.42,1.9C7.42,15.95,7.17,16,6.92,16c-0.65,0-1.26-0.42-1.62-1H4.2 c0.42,1.12,1.5,2,2.72,2c0.4,0,0.8-0.08,1.16-0.24c0.96-0.5,1.51-1.21,1.93-2.49c0.23-0.69,0.64-1,1.21-1.43 c0.04-0.03,0.07-0.06,0.11-0.09l5.03,5.03L17.07,17.07z M9.04,4C11.26,4,13,5.71,13,7.9c0,0.72-0.22,1.51-0.63,2.24 c-0.1,0.19-0.21,0.34-0.32,0.49l0.72,0.72c0.16-0.22,0.32-0.45,0.47-0.72C13.73,9.75,14,8.78,14,7.9C14,5.15,11.83,3,9.04,3 C7.75,3,6.59,3.5,5.7,4.29l0.71,0.71C7.12,4.38,8.03,4,9.04,4z M16,8c0-2.19-1-4.14-2.58-5.42l-0.72,0.72C14.1,4.39,15,6.09,15,8 c0,1.55-0.6,2.95-1.57,4.02l0.71,0.71C15.29,11.48,16,9.83,16,8z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14.73,13.31C15.52,12.24,16,10.93,16,9.5C16,5.91,13.09,3,9.5,3S3,5.91,3,9.5C3,13.09,5.91,16,9.5,16 c1.43,0,2.74-0.48,3.81-1.27L19.59,21L21,19.59L14.73,13.31z M9.5,14C7.01,14,5,11.99,5,9.5S7.01,5,9.5,5S14,7.01,14,9.5 S11.99,14,9.5,14z\"></path><polygon points=\"10.29,8.44 9.5,6 8.71,8.44 6.25,8.44 8.26,10.03 7.49,12.5 9.5,10.97 11.51,12.5 10.74,10.03 12.75,8.44\"></polygon></g></g>" } } }, - "high_quality": { - "name": "high_quality", + "switch_access_shortcut": { + "name": "switch_access_shortcut", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect><path d=\"M6.22,7.28L4.5,6.5l1.72-0.78L7,4l0.78,1.72L9.5,6.5L7.78,7.28L7,9L6.22,7.28z M7,17l0.78-1.72L9.5,14.5l-1.72-0.78L7,12 l-0.78,1.72L4.5,14.5l1.72,0.78L7,17z M4.5,12l0.47-1.03L6,10.5l-1.03-0.47L4.5,9l-0.47,1.03L3,10.5l1.03,0.47L4.5,12z M15.5,18 c-3.21-1.23-5.5-4.36-5.5-8c0-2.55,1.12-4.89,2.89-6.5L10,3.5V2h5.5v5.5H14l0-2.97c-1.52,1.33-2.5,3.31-2.5,5.47 c0,2.81,1.64,5.23,4,6.37L15.5,18z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zm6.5 2h.75v1.5h1.5V15H17c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5h2v3h-2v-3z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.06,8.94L5,8l2.06-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94z M8,21l0.94-2.06L11,18l-2.06-0.94L8,15l-0.94,2.06 L5,18l2.06,0.94L8,21z M4.37,12.37L3,13l1.37,0.63L5,15l0.63-1.37L7,13l-1.37-0.63L5,11L4.37,12.37z M12,12c0-3.09,1.38-5.94,3.44-8 L12,4V2h7v7h-2l0-3.72c-1.8,1.74-3,4.2-3,6.72c0,3.32,2.1,6.36,5,7.82L19,22C14.91,20.41,12,16.35,12,12z\"></path>" } } }, - "library_add": { - "name": "library_add", + "card_travel": { + "name": "card_travel", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z\"></path>" } } }, - "library_add_check": { - "name": "library_add_check", + "perm_data_setting": { + "name": "perm_data_setting", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><g><path d=\"M4,16h10v1H4c-0.55,0-1-0.45-1-1V6h1V16z M17,4v9c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1h9 C16.55,3,17,3.45,17,4z M16,4H7v9h9V4z M8.67,8.5L7.96,9.21l2.12,2.12l4.95-4.95l-0.71-0.71l-4.24,4.24L8.67,8.5z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><path d=\"M20,4v12H8V4H20 M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2L20,2z M12.47,14 L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83v6.74zm5.78 8.75l-1.07-.83c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32zm-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\"></path>" } } }, - "library_books": { - "name": "library_books", + "check_circle": { + "name": "check_circle", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM10 9h8v2h-8zm0 3h4v2h-4zm0-6h8v2h-8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z\"></path>" } } }, - "library_music": { - "name": "library_music", + "perm_scan_wifi": { + "name": "perm_scan_wifi", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.5-1c1.38 0 2.5-1.12 2.5-2.5V7h3V5h-4v5.51c-.42-.32-.93-.51-1.5-.51-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zM2.92 7.65C5.8 5.85 8.74 5 12 5c3.25 0 6.18.85 9.08 2.67L12 18.83 2.92 7.65zM11 10h2v6h-2zm0-4h2v2h-2z\"></path>" } } }, - "loop": { - "name": "loop", + "perm_camera_mic": { + "name": "perm_camera_mic", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2s2-.9 2-2V8c0-1.1-.9-2-2-2zm8-1h-3.17l-1.86-2H8.96L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7v-1.09c2.83-.48 5-2.94 5-5.91h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6c0 2.97 2.17 5.43 5 5.91V19H4V7h4.21l.59-.65L10.04 5h4.24l1.24 1.35.59.65H20v12z\"></path>" } } }, - "mic": { - "name": "mic", + "php": { + "name": "php", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10.5,8h1v4h-1v-1.5h-1V12h-1V8h1v1.5h1V8z M7,8.5V10c0,0.28-0.22,0.5-0.5,0.5H5V12H4V8h2.5C6.78,8,7,8.22,7,8.5z M6,9H5 v0.5h1V9z M16,8.5V10c0,0.28-0.22,0.5-0.5,0.5H14V12h-1V8h2.5C15.78,8,16,8.22,16,8.5z M15,9h-1v0.5h1V9z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z\"></path><path d=\"M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13,9h1.5v6H13v-2.5h-2V15H9.5V9H11v2h2V9z M8,10.5v1C8,12.3,7.3,13,6.5,13h-2v2H3V9h3.5C7.3,9,8,9.7,8,10.5z M6.5,10.5h-2 v1h2V10.5z M21.5,10.5v1c0,0.8-0.7,1.5-1.5,1.5h-2v2h-1.5V9H20C20.8,9,21.5,9.7,21.5,10.5z M20,10.5h-2v1h2V10.5z\"></path></g>" } } }, - "mic_none": { - "name": "mic_none", + "swap_horiz": { + "name": "swap_horiz", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z\"></path>" } } }, - "mic_off": { - "name": "mic_off", + "search_off": { + "name": "search_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M12,11.29c0.62-0.77,1-1.73,1-2.79C13,6.01,10.99,4,8.5,4C6.19,4,4.3,5.75,4.05,8h1C5.29,6.31,6.74,5,8.5,5 C10.43,5,12,6.57,12,8.5S10.43,12,8.5,12c-0.17,0-0.34-0.03-0.5-0.05v1C8.17,12.97,8.33,13,8.5,13c1.06,0,2.02-0.38,2.79-1 l3.57,3.57l0.71-0.71L12,11.29z\"></path><polygon points=\"5.91,9.38 4.5,10.79 3.09,9.38 2.38,10.09 3.79,11.5 2.38,12.91 3.09,13.62 4.5,12.21 5.91,13.62 6.62,12.91 5.21,11.5 6.62,10.09\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 3.91L15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65l1.76 1.76V4.9zM19 11h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86L3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z\"></path><polygon points=\"6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53\"></polygon></g></g>" } } }, - "missed_video_call": { - "name": "missed_video_call", + "exit_to_app": { + "name": "exit_to_app", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zm-2-1.83V16H5V8h10v.67zm-7.89 2.44L11 15l3.77-3.79-.78-.79L11 13.43l-3.11-3.1h2.55V9.22H6v4.44h1.11z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"></path>" } } }, - "movie": { - "name": "movie", + "send_and_archive": { + "name": "send_and_archive", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><g><path d=\"M9,10L4.5,8.5V6.22l7.1,2.84C12.33,8.7,13.14,8.5,14,8.5c0.1,0,0.19,0.01,0.29,0.01L3,4v12l5.51-2.2 c0.02-0.62,0.15-1.21,0.36-1.76L4.5,13.78V11.5L9,10z\"></path></g><g><path d=\"M14,10c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,11.79,16.21,10,14,10z M14.71,15.29L14,16l-0.71-0.71 l-1.54-1.54l0.71-0.71l1.04,1.04V12h1v2.09l1.04-1.04l0.71,0.71L14.71,15.29z\"></path></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6.47L5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M11,12l-6-1.5V7.01l8.87,3.73c0.94-0.47,2-0.75,3.13-0.75c0.1,0,0.19,0.01,0.28,0.01L3,4v16l7-2.95c0-0.02,0-0.03,0-0.05 c0-0.8,0.14-1.56,0.39-2.28L5,16.99V13.5L11,12z\"></path></g><g><path d=\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S19.76,12,17,12z M17,20l-3-3l0.71-0.71l1.79,1.79V14h1v4.09l1.79-1.79 L20,17L17,20z\"></path></g></g></g>" } } }, - "music_video": { - "name": "music_video", + "outlet": { + "name": "outlet", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z M10,11V8c0-0.55-0.45-1-1-1h0C8.45,7,8,7.45,8,8v3c0,0.55,0.45,1,1,1h0C9.55,12,10,11.55,10,11z M16,11V8 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h0C15.55,12,16,11.55,16,11z M14,16c0-1.1-0.9-2-2-2h0 c-1.1,0-2,0.9-2,2v2h4V16z\"></path>" } } }, - "new_releases": { - "name": "new_releases", + "hide_source": { + "name": "hide_source", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23 12l-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-4.51 2.11l.26 2.79-2.74.62-1.43 2.41L12 18.82l-2.58 1.11-1.43-2.41-2.74-.62.26-2.8L3.66 12l1.85-2.12-.26-2.78 2.74-.61 1.43-2.41L12 5.18l2.58-1.11 1.43 2.41 2.74.62-.26 2.79L20.34 12l-1.85 2.11zM11 15h2v2h-2zm0-8h2v6h-2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.41L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l10.94,10.94C14.86,19.59,13.48,20,12,20z M7.94,5.12 L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46C19.59,14.86,20,13.48,20,12 c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z\"></path></g>" } } }, - "note": { - "name": "note", + "autorenew": { + "name": "autorenew", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 4H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6zM4 18.01V6h11v5h5v7.01H4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z\"></path>" } } }, - "not_interested": { - "name": "not_interested", + "offline_pin": { + "name": "offline_pin", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z\"></path>" } } }, - "pause": { - "name": "pause", + "restore": { + "name": "restore", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 19h4V5H6v14zm8-14v14h4V5h-4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z\"></path>" } } }, - "pause_circle": { - "name": "pause_circle", + "donut_large": { + "name": "donut_large", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\"></path><rect height=\"6\" width=\"1.5\" x=\"7.5\" y=\"7\"></rect><rect height=\"6\" width=\"1.5\" x=\"11\" y=\"7\"></rect></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M9,16h2V8H9V16z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z M13,16h2V8h-2V16z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z\"></path>" } } }, - "pause_circle_filled": { - "name": "pause_circle_filled", + "open_with": { + "name": "open_with", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M11,16H9V8h2V16z M15,16h-2V8h2V16z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z\"></path>" } } }, - "pause_circle_outline": { - "name": "pause_circle_outline", + "hls_off": { + "name": "hls_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.5,12c0.28,0,0.5-0.22,0.5-0.5v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1v0.25h1V8.5C16,8.22,15.78,8,15.5,8h-2 C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5H15V11h-1v-0.25h-1v0.13L14.12,12H15.5z\"></path><polygon points=\"2.93,2.93 1.87,3.99 6,8.12 6,9.5 5,9.5 5,8 4,8 4,12 5,12 5,10.5 6,10.5 6,12 7,12 7,9.12 9,11.12 9,12 9.88,12 16.01,18.13 17.07,17.07\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M17.83,15h1.67c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H17v-1h2V11h1.5v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5 c0,0.55,0.45,1,1,1H19v1h-2V13h-1.17L17.83,15z M8,10.83V15H6.5v-2.5h-2V15H3V9h1.5v2h2V9.33L1.39,4.22l1.41-1.41l18.38,18.38 l-1.41,1.41L12.17,15H10v-2.17L8,10.83z\"></path></g>" } } }, - "playlist_add": { - "name": "playlist_add", + "history": { + "name": "history", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"5\"></rect><rect height=\"1.5\" width=\"6\" x=\"3\" y=\"11.25\"></rect><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"8.12\"></rect><polygon points=\"14.75,11.25 14.75,8 13.25,8 13.25,11.25 10,11.25 10,12.75 13.25,12.75 13.25,16 14.75,16 14.75,12.75 18,12.75 18,11.25\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14,10H3v2h11V10z M14,6H3v2h11V6z M18,14v-4h-2v4h-4v2h4v4h2v-4h4v-2H18z M3,16h7v-2H3V16z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z\"></path>" } } }, - "playlist_add_check": { - "name": "playlist_add_check", + "percent": { + "name": "percent", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><polygon points=\"16.94,9.34 13.4,12.88 11.64,11.11 10.58,12.17 13.4,15 18,10.4\"></polygon><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"5\"></rect><rect height=\"1.5\" width=\"6\" x=\"3\" y=\"11.25\"></rect><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"8.12\"></rect></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M6.5,4C5.12,4,4,5.12,4,6.5C4,7.88,5.12,9,6.5,9S9,7.88,9,6.5C9,5.12,7.88,4,6.5,4z M6.5,7.5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C7.5,7.05,7.05,7.5,6.5,7.5z M13.5,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5C16,12.12,14.88,11,13.5,11z M13.5,14.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C14.5,14.05,14.05,14.5,13.5,14.5z M5.06,16L4,14.94L14.94,4L16,5.06L5.06,16z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"11\" x=\"3\" y=\"10\"></rect><rect height=\"2\" width=\"11\" x=\"3\" y=\"6\"></rect><rect height=\"2\" width=\"7\" x=\"3\" y=\"14\"></rect><polygon points=\"20.59,11.93 16.34,16.17 14.22,14.05 12.81,15.46 16.34,19 22,13.34\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M7.5,4C5.57,4,4,5.57,4,7.5S5.57,11,7.5,11S11,9.43,11,7.5S9.43,4,7.5,4z M7.5,9C6.67,9,6,8.33,6,7.5S6.67,6,7.5,6 S9,6.67,9,7.5S8.33,9,7.5,9z M16.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S18.43,13,16.5,13z M16.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,18,16.5,18z M5.41,20L4,18.59L18.59,4L20,5.41L5.41,20z\"></path></g></g></g>" } } }, - "playlist_play": { - "name": "playlist_play", + "comment_bank": { + "name": "comment_bank", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><polygon points=\"13,10.5 13,17 18,13.75\"></polygon><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"5\"></rect><rect height=\"1.5\" width=\"6\" x=\"3\" y=\"11.25\"></rect><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"8.12\"></rect></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"15,11 15,5 11,5 11,11 13,9.69\"></polygon><path d=\"M16,3H4C3.45,3,3,3.45,3,4v13l3-3h10c0.55,0,1-0.45,1-1V4C17,3.45,16.55,3,16,3z M16,13H5.59L4,14.59V4h12V13z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"11\" x=\"3\" y=\"10\"></rect><rect height=\"2\" width=\"11\" x=\"3\" y=\"6\"></rect><rect height=\"2\" width=\"7\" x=\"3\" y=\"14\"></rect><polygon points=\"16,13 16,21 22,17\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"18,14 18,6 13,6 13,14 15.5,12.5\"></polygon><path d=\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z\"></path></g></g>" } } }, - "play_arrow": { - "name": "play_arrow", + "sync_alt": { + "name": "sync_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><polygon points=\"15,4 13.94,5.06 15.13,6.25 3,6.25 3,7.75 15.13,7.75 13.94,8.94 15,10 18,7\"></polygon><polygon points=\"6.06,11.06 5,10 2,13 5,16 6.06,14.94 4.87,13.75 17,13.75 17,12.25 4.87,12.25\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 8.64L15.27 12 10 15.36V8.64M8 5v14l11-7L8 5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><polygon points=\"7.41,13.41 6,12 2,16 6,20 7.41,18.59 5.83,17 21,17 21,15 5.83,15\"></polygon><polygon points=\"16.59,10.59 18,12 22,8 18,4 16.59,5.41 18.17,7 3,7 3,9 18.17,9\"></polygon></g></g>" } } }, - "play_circle": { - "name": "play_circle", + "alarm_on": { + "name": "alarm_on", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\"></path><polygon points=\"8,13.5 13.5,10 8,6.5\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M9.5,16.5l7-4.5l-7-4.5V16.5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\"></path>" } } }, - "play_circle_filled": { - "name": "play_circle_filled", + "text_rotate_up": { + "name": "text_rotate_up", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 4l-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13L10 11.13v3.74L4.98 13z\"></path>" } } }, - "play_circle_outline": { - "name": "play_circle_outline", + "settings_power": { + "name": "settings_power", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 16.5l6-4.5-6-4.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z\"></path>" } } }, - "play_disabled": { - "name": "play_disabled", + "manage_accounts": { + "name": "manage_accounts", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"16.45,13.62 19,12 8,5 8,5.17\"></polygon><path d=\"M2.81,2.81L1.39,4.22L8,10.83V19l4.99-3.18l6.78,6.78l1.41-1.41L2.81,2.81z M10,15.36v-2.53l1.55,1.55L10,15.36z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M4,18v-0.65c0-0.34,0.16-0.66,0.41-0.81C6.1,15.53,8.03,15,10,15c0.03,0,0.05,0,0.08,0.01c0.1-0.7,0.3-1.37,0.59-1.98 C10.45,13.01,10.23,13,10,13c-2.42,0-4.68,0.67-6.61,1.82C2.51,15.34,2,16.32,2,17.35V20h9.26c-0.42-0.6-0.75-1.28-0.97-2H4z\"></path><path d=\"M10,12c2.21,0,4-1.79,4-4s-1.79-4-4-4C7.79,4,6,5.79,6,8S7.79,12,10,12z M10,6c1.1,0,2,0.9,2,2s-0.9,2-2,2 c-1.1,0-2-0.9-2-2S8.9,6,10,6z\"></path><path d=\"M20.75,16c0-0.22-0.03-0.42-0.06-0.63l1.14-1.01l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L18,11h-2l-0.3,1.49 c-0.4,0.15-0.76,0.36-1.08,0.63l-1.45-0.49l-1,1.73l1.14,1.01c-0.03,0.21-0.06,0.41-0.06,0.63s0.03,0.42,0.06,0.63l-1.14,1.01 l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L16,21h2l0.3-1.49c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1.01 C20.72,16.42,20.75,16.22,20.75,16z M17,18c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S18.1,18,17,18z\"></path></g></g>" } } }, - "queue": { - "name": "queue", + "swipe_down_alt": { + "name": "swipe_down_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10.75,11.93C12.6,11.58,14,9.95,14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,1.95,1.4,3.58,3.25,3.93l0,3.2l-1.19-1.19 L7,15l3,3l3-3l-1.06-1.06l-1.19,1.19L10.75,11.93z M12.5,8c0,1.38-1.12,2.5-2.5,2.5c-1.38,0-2.5-1.12-2.5-2.5S8.62,5.5,10,5.5 C11.38,5.5,12.5,6.62,12.5,8z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13,13.9c2.28-0.46,4-2.48,4-4.9c0-2.76-2.24-5-5-5S7,6.24,7,9c0,2.42,1.72,4.44,4,4.9v4.27l-1.59-1.59L8,18l4,4l4-4 l-1.41-1.41L13,18.17V13.9z M15,9c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,7.34,15,9z\"></path></g>" } } }, - "queue_music": { - "name": "queue_music", + "open_in_new_off": { + "name": "open_in_new_off", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"5\"></rect><rect height=\"1.5\" width=\"6\" x=\"3\" y=\"11\"></rect><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"8\"></rect><path d=\"M18,5h-4v6.21C13.69,11.08,13.36,11,13,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5v-7H18V5z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,14.88l-1.5-1.5V10H17V14.88z M10,4.5V3H5.12l1.5,1.5H10z M15.03,6.03L17,8V3h-5l1.97,1.97l-3.44,3.44l1.06,1.06 L15.03,6.03z M16.01,18.13L14.88,17H4.5C3.67,17,3,16.33,3,15.5V5.12L1.87,3.99l1.06-1.06l14.14,14.14L16.01,18.13z M13.38,15.5 l-3.91-3.91L8.06,13L7,11.94l1.41-1.41L4.5,6.62v8.88H13.38z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M22,6h-5v8.18C16.69,14.07,16.35,14,16,14c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3V8h3V6z M15,6H3v2h12V6z M15,10H3v2h12 V10z M11,14H3v2h8V14z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16.79,5.8L14,3h7v7l-2.79-2.8l-4.09,4.09l-1.41-1.41L16.79,5.8z M19,12v4.17l2,2V12H19z M19.78,22.61L18.17,21H5 c-1.11,0-2-0.9-2-2V5.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M16.17,19l-4.88-4.88L9.7,15.71L8.29,14.3l1.59-1.59L5,7.83 V19H16.17z M7.83,5H12V3H5.83L7.83,5z\"></path>" } } }, - "queue_play_next": { - "name": "queue_play_next", + "settings_input_component": { + "name": "settings_input_component", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2zm-8 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8l-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z\"></path>" } } }, - "radio": { - "name": "radio", + "arrow_right_alt": { + "name": "arrow_right_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6H8.3l8.26-3.34L15.88 1 3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2zm0 2v3h-2V9h-2v2H4V8h16zM4 20v-7h16v7H4z\"></path><circle cx=\"8\" cy=\"16.48\" r=\"2.5\"></circle>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z\"></path>" } } }, - "recent_actors": { - "name": "recent_actors", + "no_accounts": { + "name": "no_accounts", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 5h2v14h-2zm-4 0h2v14h-2zm-3 0H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H3V7h10v10z\"></path><circle cx=\"8\" cy=\"9.94\" r=\"1.95\"></circle><path d=\"M11.89 15.35c0-1.3-2.59-1.95-3.89-1.95s-3.89.65-3.89 1.95V16h7.78v-.65z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M15.18,10.94c0.2-0.44,0.32-0.92,0.32-1.44C15.5,7.57,13.93,6,12,6c-0.52,0-1,0.12-1.44,0.32L15.18,10.94z\"></path><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M4,12c0-1.85,0.63-3.55,1.69-4.9l2.86,2.86 c0.21,1.56,1.43,2.79,2.99,2.99l2.2,2.2C13.17,15.05,12.59,15,12,15c-2.32,0-4.45,0.8-6.14,2.12C4.7,15.73,4,13.95,4,12z M12,20 c-1.74,0-3.34-0.56-4.65-1.5C8.66,17.56,10.26,17,12,17s3.34,0.56,4.65,1.5C15.34,19.44,13.74,20,12,20z M18.31,16.9L7.1,5.69 C8.45,4.63,10.15,4,12,4c4.42,0,8,3.58,8,8C20,13.85,19.37,15.54,18.31,16.9z\"></path></g></g>" } } }, - "remove_from_queue": { - "name": "remove_from_queue", + "css": { + "name": "css", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M8.5,11.5v-0.75h1V11h1v-0.75H9c-0.28,0-0.5-0.22-0.5-0.5V8.5C8.5,8.22,8.72,8,9,8h2c0.28,0,0.5,0.22,0.5,0.5v0.75h-1V9h-1 v0.75H11c0.28,0,0.5,0.22,0.5,0.5v1.25c0,0.28-0.22,0.5-0.5,0.5H9C8.72,12,8.5,11.78,8.5,11.5z M13.5,12h2c0.28,0,0.5-0.22,0.5-0.5 v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1v0.25h1V8.5C16,8.22,15.78,8,15.5,8h-2C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5 H15V11h-1v-0.25h-1v0.75C13,11.78,13.22,12,13.5,12z M6.5,12C6.77,12,7,11.78,7,11.5v-0.75H6V11H5V9h1v0.25h1L7,8.5 C7,8.22,6.78,8,6.5,8h-2C4.22,8,4,8.22,4,8.5v3C4,11.78,4.22,12,4.5,12H6.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2H8v-2h8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M9.5,14v-1H11v0.5h2v-1h-2.5c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1H13v-0.5h-2v1h2.5 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1h-3C9.95,15,9.5,14.55,9.5,14z M17,15h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1h-2.5v-1 h2V11H21v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h2.5v1h-2V13H16v1C16,14.55,16.45,15,17,15z M8,10 c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-1H6.5v0.5h-2v-3h2V11H8V10z\"></path></g>" } } }, - "repeat": { - "name": "repeat", + "highlight_alt": { + "name": "highlight_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,5h-2V3h2V5z M15,15v6l2.29-2.29L19.59,21L21,19.59l-2.29-2.29L21,15H15z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2 v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2 V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3C3.9,3,3,3.9,3,5z\"></path></g>" } } }, - "repeat_on": { - "name": "repeat_on", + "pets": { + "name": "pets", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,19H6.83l1.58,1.58L7,22l-4-4 l4-4l1.41,1.42L6.83,17H17v-4h2V19z M17,10l-1.41-1.42L17.17,7H7v4H5V5h12.17l-1.58-1.58L17,2l4,4L17,10z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"4.5\" cy=\"9.5\" r=\"2.5\"></circle><circle cx=\"9\" cy=\"5.5\" r=\"2.5\"></circle><circle cx=\"15\" cy=\"5.5\" r=\"2.5\"></circle><circle cx=\"19.5\" cy=\"9.5\" r=\"2.5\"></circle><path d=\"M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z\"></path>" } } }, - "repeat_one": { - "name": "repeat_one", + "done_outline": { + "name": "done_outline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.77 4.93l1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z\"></path>" } } }, - "repeat_one_on": { - "name": "repeat_one_on", + "date_range": { + "name": "date_range", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,19H6.83l1.58,1.58L7,22l-4-4 l4-4l1.41,1.42L6.83,17H17v-4h2V19z M10,10.5V9h3v6h-1.5v-4.5H10z M17,10l-1.41-1.42L17.17,7H7v4H5V5h12.17l-1.58-1.58L17,2l4,4 L17,10z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 11h2v2H7v-2zm14-5v14c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2l.01-14c0-1.1.88-2 1.99-2h1V2h2v2h8V2h2v2h1c1.1 0 2 .9 2 2zM5 8h14V6H5v2zm14 12V10H5v10h14zm-4-7h2v-2h-2v2zm-4 0h2v-2h-2v2z\"></path>" } } }, - "replay": { - "name": "replay", + "thumb_up_off_alt": { + "name": "thumb_up_off_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect></g><g><g><path d=\"M9,21h9c0.83,0,1.54-0.5,1.84-1.22l3.02-7.05C22.95,12.5,23,12.26,23,12v-2c0-1.1-0.9-2-2-2h-6.31l0.95-4.57l0.03-0.32 c0-0.41-0.17-0.79-0.44-1.06L14.17,1L7.58,7.59C7.22,7.95,7,8.45,7,9v10C7,20.1,7.9,21,9,21z M9,9l4.34-4.34L12,10h9v2l-3,7H9V9z M1,9h4v12H1V9z\"></path></g></g>" } } }, - "replay_10": { - "name": "replay_10", + "speaker_notes_off": { + "name": "speaker_notes_off", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4v12h-1.34l1.91 1.91C21.39 17.66 22 16.9 22 16V4c0-1.1-.9-2-2-2H4.66l2 2H20zM6 12h2v2H6zm12-3h-6.34l2 2H18zm0-3h-8v1.34l.66.66H18zM1.41 1.59L0 3l2.01 2.01L2 22l4-4h9l5.73 5.73 1.41-1.41L1.41 1.59zM5.17 16L4 17.17V7l2 2v2h2l5 5H5.17z\"></path>" } } }, - "replay_30": { - "name": "replay_30", + "home": { + "name": "home", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5.69l5 4.5V18h-2v-6H9v6H7v-7.81l5-4.5M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3z\"></path>" } } }, - "replay_5": { - "name": "replay_5", + "done": { + "name": "done", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9l.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z\"></path>" } } }, - "replay_circle_filled": { - "name": "replay_circle_filled", + "assignment_return": { + "name": "assignment_return", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,18.5c-3.31,0-6-2.69-6-6h2c0,2.21,1.79,4,4,4 s4-1.79,4-4c0-2.24-1.85-4.09-4.16-3.99l1.57,1.57L12,11.5l-4-4l4-4l1.41,1.41l-1.6,1.6C15.28,6.4,18,9.18,18,12.5 C18,15.81,15.31,18.5,12,18.5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 14h4v-4h-4V7l-5 5 5 5zm7-11h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\"></path>" } } }, - "sd": { - "name": "sd", + "swipe_left": { + "name": "swipe_left", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M15.39,11.36L12.5,10h-1V7c0-1.1-0.9-2-2-2s-2,0.9-2,2v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3.5,14l4.56,4.56 C8.34,18.84,8.72,19,9.12,19h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C16.6,12.57,16.16,11.74,15.39,11.36z M14.38,17.5H9.12 L5.62,14l0.34-0.34L9,14.42V7c0-0.28,0.22-0.5,0.5-0.5S10,6.72,10,7v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L14.38,17.5z M16.93,6C15.89,3.63,13.11,2,10,2C7.35,2,4.94,3.18,3.64,5L6,5v1H2V2h1l0,2.19C4.49,2.27,7.07,1,10,1c3.78,0,6.97,2.11,8,5 L16.93,6z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7,15h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H7.5v-1h2V11H11v-1c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v1.5 c0,0.55,0.45,1,1,1h2.5v1h-2V13H6v1C6,14.55,6.45,15,7,15z\"></path><path d=\"M18,14v-4c0-0.55-0.45-1-1-1h-4v6h4C17.55,15,18,14.55,18,14z M16.5,13.5h-2v-3h2V13.5z\"></path><path d=\"M20,4H4C2.89,4,2,4.9,2,6v12c0,1.1,0.89,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18.89,13.77l-3.8-1.67C14.96,12.04,14.81,12,14.65,12H14V7.5C14,6.12,12.88,5,11.5,5S9,6.12,9,7.5v8.15l-1.87-0.4 c-0.19-0.03-1.02-0.15-1.73,0.56L4,17.22l5.12,5.19C9.49,22.79,10,23,10.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67l0.92-5.44 C20.12,15.03,19.68,14.17,18.89,13.77z M17.08,21h-6.55l-3.7-3.78L11,18.11V7.5C11,7.22,11.22,7,11.5,7S12,7.22,12,7.5v6.18h1.76 L18,15.56L17.08,21z M4.09,5.5H7V7H2V2h1.5v2.02C5.82,2.13,8.78,1,12,1c5.49,0,9.27,3.12,10,6h-1.57C19.67,5.02,16.74,2.5,12,2.5 C8.97,2.5,6.21,3.64,4.09,5.5z\"></path></g>" } } }, - "shuffle": { - "name": "shuffle", + "donut_small": { + "name": "donut_small", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.82 11h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13c.85.31 1.51.97 1.82 1.82zM15 4.58C17 5.4 18.6 7 19.42 9h-3.43c-.28-.37-.62-.71-.99-.99V4.58zM2 12c0 5.19 3.95 9.45 9 9.95v-7.13C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95zm7-7.42v3.44c-1.23.92-2 2.39-2 3.98 0 1.59.77 3.06 2 3.99v3.44C6.04 18.24 4 15.35 4 12c0-3.35 2.04-6.24 5-7.42zm4 10.24v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13c-.31.85-.97 1.51-1.82 1.82zm2 1.17c.37-.28.71-.61.99-.99h3.43C18.6 17 17 18.6 15 19.42v-3.43z\"></path>" } } }, - "shuffle_on": { - "name": "shuffle_on", + "settings_applications": { + "name": "settings_applications", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M5.41,4l5.18,5.17l-1.41,1.42 L4,5.42L5.41,4z M20,20h-6v-2h2.61l-3.2-3.2l1.42-1.42l3.13,3.13L18,16.55V14h2V20z M20,10h-2V7.42L5.41,20L4,18.59L16.58,6H14V4h6 V10z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.21 13.97l1.2 2.07c.08.13.23.18.37.13l1.49-.6c.31.24.64.44 1.01.59l.22 1.59c.03.14.15.25.3.25h2.4c.15 0 .27-.11.3-.26l.22-1.59c.36-.15.7-.35 1.01-.59l1.49.6c.14.05.29 0 .37-.13l1.2-2.07c.08-.13.04-.29-.07-.39l-1.27-.99c.03-.19.04-.39.04-.58 0-.2-.02-.39-.04-.59l1.27-.99c.11-.09.15-.26.07-.39l-1.2-2.07c-.08-.13-.23-.18-.37-.13l-1.49.6c-.31-.24-.64-.44-1.01-.59l-.22-1.59c-.03-.14-.15-.25-.3-.25h-2.4c-.15 0-.27.11-.3.26l-.22 1.59c-.36.15-.71.34-1.01.58l-1.49-.6c-.14-.05-.29 0-.37.13l-1.2 2.07c-.08.13-.04.29.07.39l1.27.99c-.03.2-.05.39-.05.59 0 .2.02.39.04.59l-1.27.99c-.11.1-.14.26-.06.39zM12 10.29c.94 0 1.71.77 1.71 1.71s-.77 1.71-1.71 1.71-1.71-.77-1.71-1.71.77-1.71 1.71-1.71zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14z\"></path>" } } }, - "skip_next": { - "name": "skip_next", + "speaker_notes": { + "name": "speaker_notes", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 18l8.5-6L6 6v12zm2-8.14L11.03 12 8 14.14V9.86zM16 6h2v12h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM6 12h2v2H6zm0-3h2v2H6zm0-3h2v2H6zm4 6h5v2h-5zm0-3h8v2h-8zm0-3h8v2h-8z\"></path>" } } }, - "skip_previous": { - "name": "skip_previous", + "work_outline": { + "name": "work_outline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 6h2v12H6zm3.5 6l8.5 6V6l-8.5 6zm6.5 2.14L12.97 12 16 9.86v4.28z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 6V4h-4v2h4zM4 8v11h16V8H4zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z\"></path>" } } }, - "slow_motion_video": { - "name": "slow_motion_video", + "webhook": { + "name": "webhook", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10.5,3.5C9.12,3.5,8,4.62,8,6c0,1.17,0.81,2.15,1.89,2.43L7,12.92c0,0.03,0,0.05,0,0.08c0,0.55-0.45,1-1,1s-1-0.45-1-1 c0-0.43,0.27-0.8,0.66-0.94l2.05-3.19C6.96,8.14,6.5,7.12,6.5,6c0-2.21,1.79-4,4-4l0,0c2.21,0,4,1.79,4,4H13 C13,4.62,11.88,3.5,10.5,3.5z M8.5,12.25h4.84C13.51,12.09,13.75,12,14,12c0.55,0,1,0.45,1,1s-0.45,1-1,1 c-0.25,0-0.49-0.09-0.66-0.25l-3.41,0C9.58,15.6,7.95,17,6,17c-2.21,0-4-1.79-4-4c0-1.86,1.27-3.43,3-3.87l0,1.58 C4.12,11.1,3.5,11.98,3.5,13c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V12.25z M14,10.5c1.38,0,2.5,1.12,2.5,2.5 c0,1.38-1.12,2.5-2.5,2.5c-0.56,0-1.08-0.19-1.5-0.5l-1.97,0c0.69,1.2,1.98,2,3.46,2c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4l0,0 c-0.36,0-0.71,0.05-1.04,0.14l-1.47-2.95c0.01-0.06,0.02-0.12,0.02-0.18c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.39,0.23,0.73,0.56,0.9 l2.17,4.33C12.68,10.78,13.31,10.5,14,10.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13.05 9.79L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M10,15l5.88,0c0.27-0.31,0.67-0.5,1.12-0.5c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5c-0.44,0-0.84-0.19-1.12-0.5 l-3.98,0c-0.46,2.28-2.48,4-4.9,4c-2.76,0-5-2.24-5-5c0-2.42,1.72-4.44,4-4.9l0,2.07C4.84,13.58,4,14.7,4,16c0,1.65,1.35,3,3,3 s3-1.35,3-3V15z M12.5,4c1.65,0,3,1.35,3,3h2c0-2.76-2.24-5-5-5l0,0c-2.76,0-5,2.24-5,5c0,1.43,0.6,2.71,1.55,3.62l-2.35,3.9 C6.02,14.66,5.5,15.27,5.5,16c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5c0-0.16-0.02-0.31-0.07-0.45l3.38-5.63 C10.49,9.61,9.5,8.42,9.5,7C9.5,5.35,10.85,4,12.5,4z M17,13c-0.64,0-1.23,0.2-1.72,0.54l-3.05-5.07C11.53,8.35,11,7.74,11,7 c0-0.83,0.67-1.5,1.5-1.5S14,6.17,14,7c0,0.15-0.02,0.29-0.06,0.43l2.19,3.65C16.41,11.03,16.7,11,17,11l0,0c2.76,0,5,2.24,5,5 c0,2.76-2.24,5-5,5c-1.85,0-3.47-1.01-4.33-2.5l2.67,0C15.82,18.82,16.39,19,17,19c1.65,0,3-1.35,3-3S18.65,13,17,13z\"></path></g>" } } }, - "snooze": { - "name": "snooze", + "cancel_schedule_send": { + "name": "cancel_schedule_send", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><polygon points=\"15.41,11.88 14,13.29 12.59,11.88 11.88,12.59 13.29,14 11.88,15.41 12.59,16.12 14,14.71 15.41,16.12 16.12,15.41 14.71,14 16.12,12.59\"></polygon><g><path d=\"M1.5,11.94l8-1.09c-0.14,0.2-0.27,0.41-0.38,0.63l0.29-0.61L1.5,11.94v4.3l7.06-3.09l0.05-0.25 c0.02-0.08,0.03-0.16,0.05-0.23C8.56,13.09,8.5,13.54,8.5,14v-0.76l-0.7,0.24l-6.3,2.76V11.94z M19.5,14c0-3.03-2.47-5.5-5.5-5.5 C17.03,8.5,19.5,10.97,19.5,14z M10.9,9.35L1.5,8.06v-4.3v4.3l9.54,1.3c-0.29,0.18-0.55,0.39-0.8,0.62L10.9,9.35z M12.54,8.59 l-5.1-2.23l5.25,2.3l0.03-0.01c-0.32,0.08-0.64,0.18-0.93,0.32L12.54,8.59z\"></path><path d=\"M1,3v5.5l8.82,1.2c-0.22,0.21-0.41,0.44-0.59,0.68L1,11.5V17l7-3.06c0,0.02,0,0.04,0,0.06c0,3.31,2.69,6,6,6s6-2.69,6-6 s-2.69-6-6-6c-0.43,0-0.85,0.05-1.26,0.14L1,3L1,3z M10.94,8.85L2,7.63v-3.1l9.35,4.09C11.21,8.69,11.07,8.77,10.94,8.85 L10.94,8.85z M14,19c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S16.76,19,14,19L14,19z M2,15.47v-3.1l6.56-0.89 c-0.19,0.42-0.35,0.85-0.44,1.31L2,15.47L2,15.47z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2zm7.056-7.654l1.282-1.535 4.607 3.85-1.28 1.54zM3.336 7.19l-1.28-1.536L6.662 1.81l1.28 1.536zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l10.06,1.34c-0.42,0.44-0.78,0.93-1.09,1.46L1,14l0.01,7l8.07-3.46 C9.59,21.19,12.71,24,16.5,24c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M3,8.25l0.01-2.22l7.51,3.22L3,8.25z M9.1,15.36L3,17.97 v-2.22l6.17-0.82C9.14,15.07,9.12,15.21,9.1,15.36z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5 S19.53,22,16.5,22z\"></path><polygon points=\"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73\"></polygon></g></g>" } } }, - "sort_by_alpha": { - "name": "sort_by_alpha", + "flip_to_back": { + "name": "flip_to_back", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z\"></path>" } } }, - "speed": { - "name": "speed", + "logout": { + "name": "logout", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20.38 8.57l-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z\"></path><path d=\"M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M17,8l-1.41,1.41L17.17,11H9v2h8.17l-1.58,1.58L17,16l4-4L17,8z M5,5h7V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h7v-2H5V5z\"></path></g>" } } }, - "stop": { - "name": "stop", + "join_right": { + "name": "join_right", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,14.24c1.73-1.43,2-3.32,2-4.24c0-0.91-0.27-2.81-2-4.24C8.27,7.19,8,9.09,8,10C8,10.92,8.27,12.81,10,14.24z\"></path><path d=\"M10.85,14.81c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5c0-3.04-2.46-5.5-5.5-5.5 c-0.96,0-1.86,0.25-2.65,0.69C12.77,6.92,13,9.11,13,10C13,10.89,12.77,13.08,10.85,14.81z\"></path><path d=\"M6.5,15.5c0.96,0,1.86-0.25,2.65-0.69c-0.42-0.38-0.77-0.77-1.04-1.18C7.62,13.86,7.08,14,6.5,14c-2.21,0-4-1.79-4-4 s1.79-4,4-4c0.58,0,1.12,0.14,1.61,0.36c0.27-0.4,0.62-0.8,1.04-1.18C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10 C1,13.04,3.46,15.5,6.5,15.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 8v8H8V8h8m2-2H6v12h12V6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><ellipse cx=\"12\" cy=\"12\" rx=\"3\" ry=\"5.74\"></ellipse></g><g><path d=\"M16.5,12c0,0.97-0.23,4.16-3.03,6.5C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7s-3.14-7-7-7c-0.9,0-1.75,0.19-2.53,0.5 C16.27,7.84,16.5,11.03,16.5,12z\"></path></g><g><path d=\"M8,19c0.9,0,1.75-0.19,2.53-0.5c-0.61-0.51-1.1-1.07-1.49-1.63C8.71,16.95,8.36,17,8,17c-2.76,0-5-2.24-5-5s2.24-5,5-5 c0.36,0,0.71,0.05,1.04,0.13c0.39-0.56,0.88-1.12,1.49-1.63C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7S4.14,19,8,19z\"></path></g></g></g>" } } }, - "stop_circle": { - "name": "stop_circle", + "try": { + "name": "try", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7s3.13,7,7,7s7-3.13,7-7S13.87,3,10,3z M10,16 c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S13.31,16,10,16z\" fill-rule=\"evenodd\"></path><rect fill-rule=\"evenodd\" height=\"6\" width=\"6\" x=\"7\" y=\"7\"></rect></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"8\" width=\"8\" x=\"8\" y=\"8\"></rect><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect></g><g><g><path d=\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z\"></path><polygon points=\"12,15 13.57,11.57 17,10 13.57,8.43 12,5 10.43,8.43 7,10 10.43,11.57\"></polygon></g></g>" } } }, - "subscriptions": { - "name": "subscriptions", + "satellite_alt": { + "name": "satellite_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M17.5,12H19c0,3.87-3.13,7-7,7v-1.5C15.03,17.5,17.5,15.03,17.5,12z M12,14.5V16c2.21,0,4-1.79,4-4h-1.5 C14.5,13.38,13.38,14.5,12,14.5z M15.29,0.44l3.18,3.18c0.59,0.59,0.59,1.54,0,2.12l-2.83,2.83c-0.59,0.59-1.54,0.59-2.12,0 l-1.24-1.24l-0.71,0.71l1.24,1.24c0.59,0.59,0.59,1.54,0,2.12l-1.41,1.41c-0.59,0.59-1.54,0.59-2.12,0l-1.24-1.24l-0.71,0.71 l1.24,1.24c0.59,0.59,0.59,1.54,0,2.12l-2.83,2.83c-0.59,0.59-1.54,0.59-2.12,0l-3.18-3.18c-0.59-0.59-0.59-1.54,0-2.12l2.83-2.83 c0.59-0.59,1.54-0.59,2.12,0l1.24,1.24l0.71-0.71L6.1,9.63c-0.59-0.59-0.59-1.54,0-2.12L7.51,6.1c0.59-0.59,1.54-0.59,2.12,0 l1.24,1.24l0.71-0.71l-1.24-1.24c-0.59-0.59-0.59-1.54,0-2.12l2.83-2.83C13.75-0.15,14.7-0.15,15.29,0.44z M2.56,13.17L1.5,14.23 l3.18,3.18l1.06-1.06L2.56,13.17z M4.33,11.4l-1.06,1.06l3.18,3.18l1.06-1.06L4.33,11.4z M8.57,7.16L7.16,8.57l3.18,3.18l1.41-1.41 L8.57,7.16z M12.46,3.27L11.4,4.33l3.18,3.18l1.06-1.06L12.46,3.27z M14.23,1.5l-1.06,1.06l3.18,3.18l1.06-1.06L14.23,1.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6h16v2H4zm2-4h12v2H6zm14 8H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10H4v-8h16v8zm-10-7.27v6.53L16 16z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,14l2,0c0,4.97-4.03,9-9,9l0-2C17.87,21,21,17.87,21,14z M14,17l0,2c2.76,0,5-2.24,5-5l-2,0C17,15.66,15.66,17,14,17z M18.26,0.59l3.54,3.54c0.78,0.78,0.78,2.05,0,2.83l-3.18,3.18c-0.78,0.78-2.05,0.78-2.83,0l-1.24-1.24L13.84,9.6l1.24,1.24 c0.78,0.78,0.78,2.05,0,2.83l-1.41,1.41c-0.78,0.78-2.05,0.78-2.83,0L9.6,13.84l-0.71,0.71l1.24,1.24c0.78,0.78,0.78,2.05,0,2.83 L6.95,21.8c-0.78,0.78-2.05,0.78-2.83,0l-3.54-3.54c-0.78-0.78-0.78-2.05,0-2.83l3.18-3.18c0.78-0.78,2.05-0.78,2.83,0l1.24,1.24 l0.71-0.71L7.3,11.55c-0.78-0.78-0.78-2.05,0-2.83L8.72,7.3c0.78-0.78,2.05-0.78,2.83,0l1.24,1.24l0.71-0.71L12.25,6.6 c-0.78-0.78-0.78-2.05,0-2.83l3.18-3.18C16.22-0.2,17.48-0.2,18.26,0.59z M3.06,15.79L2,16.85l3.54,3.54l1.06-1.06L3.06,15.79z M5.18,13.67l-1.06,1.06l3.54,3.54l1.06-1.06L5.18,13.67z M10.13,8.72l-1.41,1.41l3.54,3.54l1.41-1.41L10.13,8.72z M14.73,4.12 l-1.06,1.06l3.54,3.54l1.06-1.06L14.73,4.12z M16.85,2l-1.06,1.06l3.54,3.54l1.06-1.06L16.85,2z\"></path></g>" } } }, - "subtitles": { - "name": "subtitles", + "picture_in_picture_alt": { + "name": "picture_in_picture_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 11h-8v6h8v-6zm-2 4h-4v-2h4v2zm4-12H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4.98C23 3.88 22.1 3 21 3zm0 16.02H3V4.97h18v14.05z\"></path>" } } }, - "surround_sound": { - "name": "surround_sound", + "calendar_view_day": { + "name": "calendar_view_day", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\"></path><path d=\"M8.29,15.71C7.27,14.69,6.75,13.35,6.75,12c0-1.35,0.52-2.69,1.53-3.72L7.05,7.05C5.68,8.41,5,10.21,5,12 s0.68,3.59,2.06,4.94L8.29,15.71z\"></path><path d=\"M12,15.5c1.93,0,3.5-1.57,3.5-3.5c0-1.93-1.57-3.5-3.5-3.5c-1.93,0-3.5,1.57-3.5,3.5C8.5,13.93,10.07,15.5,12,15.5z M12,10.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S11.17,10.5,12,10.5z\"></path><path d=\"M15.72,15.72l1.23,1.23C18.32,15.59,19,13.79,19,12s-0.68-3.59-2.06-4.94l-1.23,1.23c1.02,1.02,1.54,2.36,1.54,3.71 C17.25,13.35,16.73,14.69,15.72,15.72z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z\"></path>" } } }, - "videocam": { - "name": "videocam", + "star_rate": { + "name": "star_rate", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 8v8H5V8h10m1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M12,2l-2.42,8H2 l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35-7.59L22,10h-7.58L12,2L12,2z\"></path></g>" + }, + "18": { + "width": 18, + "path": "<path d=\"M0 0h18v18H0V0z\" fill=\"none\"></path><path d=\"M9 11.3l3.71 2.7-1.42-4.36L15 7h-4.55L9 2.5 7.55 7H3l3.71 2.64L5.29 14 9 11.3z\"></path>" } } }, - "videocam_off": { - "name": "videocam_off", + "translate": { + "name": "translate", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.56 8l-2-2-4.15-4.14L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41-8.86-8.86L9.56 8zM5 16V8h1.73l8 8H5zm10-8v2.61l6 6V6.5l-4 4V7c0-.55-.45-1-1-1h-5.61l2 2H15z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z\"></path>" } } }, - "video_call": { - "name": "video_call", + "offline_bolt": { + "name": "offline_bolt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM15 16H5V8h10v8zm-6-1h2v-2h2v-2h-2V9H9v2H7v2h2z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm0 17.96c-4.4 0-7.98-3.58-7.98-7.98S7.6 4.02 12 4.02 19.98 7.6 19.98 12 16.4 19.98 12 19.98zM12.75 5l-4.5 8.5h3.14V19l4.36-8.5h-3z\"></path>" } } }, - "video_label": { - "name": "video_label", + "visibility": { + "name": "visibility", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c3.79 0 7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5c1.38 0 2.5 1.12 2.5 2.5S13.38 14 12 14s-2.5-1.12-2.5-2.5S10.62 9 12 9m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z\"></path>" } } }, - "video_library": { - "name": "video_library", + "smart_button": { + "name": "smart_button", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM12 5.5v9l6-4.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z\"></path></g>" } } }, - "video_settings": { - "name": "video_settings", + "lock": { + "name": "lock", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M3,5h14v4h1V5c0-0.55-0.45-1-1-1H3C2.45,4,2,4.45,2,5v10c0,0.55,0.45,1,1,1h8v-1H3V5z\"></path><path d=\"M19.1,14.2l0.87-0.69l-0.88-1.52l-1.03,0.4c-0.16-0.12-0.34-0.22-0.53-0.3L17.38,11h-1.75l-0.16,1.1 c-0.18,0.08-0.36,0.18-0.52,0.3l-1.04-0.41l-0.88,1.52l0.87,0.7c-0.02,0.2-0.03,0.4,0,0.6l-0.87,0.69l0.88,1.52l1.03-0.4 c0.16,0.12,0.34,0.22,0.53,0.3L15.63,18h1.75l0.16-1.1c0.18-0.08,0.36-0.18,0.52-0.3l1.04,0.41l0.88-1.52l-0.87-0.7 C19.12,14.59,19.12,14.4,19.1,14.2z M16.5,15.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C17.5,15.05,17.05,15.5,16.5,15.5z\"></path><polygon points=\"8,13 12.5,10 8,7\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z\"></path><polygon points=\"15,12 9,8 9,16\"></polygon><path d=\"M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z\"></path></g></g>" + "path": "<g fill=\"none\"><path d=\"M0 0h24v24H0V0z\"></path><path d=\"M0 0h24v24H0V0z\" opacity=\".87\"></path></g><path d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\"></path>" } } }, - "volume_down": { - "name": "volume_down", + "view_in_ar": { + "name": "view_in_ar", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zM5 9v6h4l5 5V4L9 9H5zm7-.17v6.34L9.83 13H7v-2h2.83L12 8.83z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect></g><g><g><path d=\"M3,4c0-0.55,0.45-1,1-1h2V1H4C2.34,1,1,2.34,1,4v2h2V4z\"></path><path d=\"M3,20v-2H1v2c0,1.66,1.34,3,3,3h2v-2H4C3.45,21,3,20.55,3,20z\"></path><path d=\"M20,1h-2v2h2c0.55,0,1,0.45,1,1v2h2V4C23,2.34,21.66,1,20,1z\"></path><path d=\"M21,20c0,0.55-0.45,1-1,1h-2v2h2c1.66,0,3-1.34,3-3v-2h-2V20z\"></path><path d=\"M19,14.87V9.13c0-0.72-0.38-1.38-1-1.73l-5-2.88c-0.31-0.18-0.65-0.27-1-0.27s-0.69,0.09-1,0.27L6,7.39 C5.38,7.75,5,8.41,5,9.13v5.74c0,0.72,0.38,1.38,1,1.73l5,2.88c0.31,0.18,0.65,0.27,1,0.27s0.69-0.09,1-0.27l5-2.88 C18.62,16.25,19,15.59,19,14.87z M11,17.17l-4-2.3v-4.63l4,2.33V17.17z M12,10.84L8.04,8.53L12,6.25l3.96,2.28L12,10.84z M17,14.87l-4,2.3v-4.6l4-2.33V14.87z\"></path></g></g>" } } }, - "volume_mute": { - "name": "volume_mute", + "timeline": { + "name": "timeline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 8.83v6.34L11.83 13H9v-2h2.83L14 8.83M16 4l-5 5H7v6h4l5 5V4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z\"></path></g></g>" } } }, - "volume_off": { - "name": "volume_off", + "dashboard_customize": { + "name": "dashboard_customize", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4.34 2.93L2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM10 15.17L7.83 13H5v-2h2.83l.88-.88L10 11.41v3.76zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8l-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M3,11h8V3H3V11z M5,5h4v4H5V5z\"></path><path d=\"M13,3v8h8V3H13z M19,9h-4V5h4V9z\"></path><path d=\"M3,21h8v-8H3V21z M5,15h4v4H5V15z\"></path><polygon points=\"18,13 16,13 16,16 13,16 13,18 16,18 16,21 18,21 18,18 21,18 21,16 18,16\"></polygon></g></g>" } } }, - "volume_up": { - "name": "volume_up", + "filter_alt_off": { + "name": "filter_alt_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M13.39,5.5l-2.6,3.17l1.07,1.07l4.03-4.92C16.15,4.49,15.92,4,15.5,4H6.12l1.5,1.5H13.39z\"></path><path d=\"M2.93,2.93L1.87,3.99L9,11.12v4.38C9,15.78,9.22,16,9.5,16h1c0.28,0,0.5-0.22,0.5-0.5v-2.38l5.01,5.01l1.06-1.06 L2.93,2.93z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 9v6h4l5 5V4L7 9H3zm7-.17v6.34L7.83 13H5v-2h2.83L10 8.83zM16.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M16.95,6l-3.57,4.55l1.43,1.43c1.03-1.31,4.98-6.37,4.98-6.37C20.3,4.95,19.83,4,19,4H6.83l2,2H16.95z\"></path><path d=\"M2.81,2.81L1.39,4.22L10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-2.17l5.78,5.78l1.41-1.41L2.81,2.81z\"></path></g></g>" } } }, - "web": { - "name": "web", + "flaky": { + "name": "flaky", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M6,6.71L6.71,6l1.06,1.06L8.83,6l0.71,0.71L8.47,7.77l1.06,1.06L8.83,9.54L7.77,8.47L6.71,9.54L6,8.83l1.06-1.06L6,6.71z M10,16 c-1.65,0-3.15-0.67-4.24-1.76l8.48-8.48C15.33,6.85,16,8.35,16,10C16,13.31,13.31,16,10,16z\" fill-rule=\"evenodd\"></path></g><g><polygon fill-rule=\"evenodd\" points=\"11.41,12.59 10.41,11.59 9.71,12.29 11.41,14 14.21,11.21 13.5,10.5\"></polygon></g></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,9h10.5v3.5H4V9z M4,14.5 h10.5V18L4,18V14.5z M20,18l-3.5,0V9H20V18z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z\" fill-rule=\"evenodd\"></path></g>" } } }, - "web_asset": { - "name": "web_asset", + "pregnant_woman": { + "name": "pregnant_woman", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z\"></path>" } } }, - "web_asset_off": { - "name": "web_asset_off", + "text_rotate_vertical": { + "name": "text_rotate_vertical", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M17.78,17.78L2.22,2.22L1.16,3.28L2.38,4.5C2.14,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16h10.38l2.84,2.84L17.78,17.78z M3.5,14.5V7h1.38l7.5,7.5H3.5z M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9c0,0.38-0.14,0.73-0.38,1l-1.12-1.12V7H9.12L6.12,4z\"></path></g>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M6.83,4H20c1.11,0,2,0.9,2,2v12c0,0.34-0.09,0.66-0.23,0.94L20,17.17V8h-9.17L6.83,4z M20.49,23.31L17.17,20H4 c-1.11,0-2-0.9-2-2V6c0-0.34,0.08-0.66,0.23-0.94L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M15.17,18l-10-10H4v10H15.17z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z\"></path>" } } }, - "3p": { - "name": "3p", + "launch": { + "name": "launch", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,2H4.01c-1.1,0-2,0.9-2,2L2,22l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z M12,10 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,10,12,10z M16,13.43c0-0.81-0.48-1.53-1.22-1.85C13.93,11.21,12.99,11,12,11 c-0.99,0-1.93,0.21-2.78,0.58C8.48,11.9,8,12.62,8,13.43V14h8V13.43z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z\"></path>" } } }, - "add_ic_call": { - "name": "add_ic_call", + "switch_access_shortcut_add": { + "name": "switch_access_shortcut_add", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect><path d=\"M6.22,7.28L4.5,6.5l1.72-0.78L7,4l0.78,1.72L9.5,6.5L7.78,7.28L7,9L6.22,7.28z M7,17l0.78-1.72L9.5,14.5l-1.72-0.78L7,12 l-0.78,1.72L4.5,14.5l1.72,0.78L7,17z M4.5,12l0.47-1.03L6,10.5l-1.03-0.47L4.5,9l-0.47,1.03L3,10.5l1.03,0.47L4.5,12z M15.5,18 c-3.21-1.23-5.5-4.36-5.5-8c0-2.55,1.12-4.89,2.89-6.5L10,3.5V2h5.5v5.5H14l0-2.97c-1.52,1.33-2.5,3.31-2.5,5.47 c0,2.81,1.64,5.23,4,6.37L15.5,18z M20,11.5h-1.5V10H17v1.5h-1.5V13H17v1.5h1.5V13H20V11.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 15.45c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.92c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 5.95v-3h-2v3h-3v2h3v3h2v-3h3v-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.06,8.94L5,8l2.06-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94z M8,21l0.94-2.06L11,18l-2.06-0.94L8,15l-0.94,2.06 L5,18l2.06,0.94L8,21z M4.37,12.37L3,13l1.37,0.63L5,15l0.63-1.37L7,13l-1.37-0.63L5,11L4.37,12.37z M12,12c0-3.09,1.38-5.94,3.44-8 L12,4V2h7v7h-2l0-3.72c-1.8,1.74-3,4.2-3,6.72c0,3.32,2.1,6.36,5,7.82L19,22C14.91,20.41,12,16.35,12,12z M24,14h-2v-2h-2v2h-2v2h2 v2h2v-2h2V14z\"></path>" } } }, - "alternate_email": { - "name": "alternate_email", + "stars": { + "name": "stars", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 1.95c-5.52 0-10 4.48-10 10s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm7.48 7.16l-5.01-.43-2-4.71c3.21.19 5.91 2.27 7.01 5.14zm-5.07 6.26L12 13.98l-2.39 1.44.63-2.72-2.11-1.83 2.78-.24L12 8.06l1.09 2.56 2.78.24-2.11 1.83.64 2.73zm-2.86-11.4l-2 4.72-5.02.43c1.1-2.88 3.8-4.97 7.02-5.15zM4 12c0-.64.08-1.26.23-1.86l3.79 3.28-1.11 4.75C5.13 16.7 4 14.48 4 12zm3.84 6.82L12 16.31l4.16 2.5c-1.22.75-2.64 1.19-4.17 1.19-1.52 0-2.94-.44-4.15-1.18zm9.25-.65l-1.11-4.75 3.79-3.28c.14.59.23 1.22.23 1.86 0 2.48-1.14 4.7-2.91 6.17z\"></path>" } } }, - "app_registration": { - "name": "app_registration", + "subtitles_off": { + "name": "subtitles_off", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><g><rect height=\"3\" width=\"3\" x=\"8.5\" y=\"4\"></rect></g><g><rect height=\"3\" width=\"3\" x=\"4\" y=\"13\"></rect></g><g><rect height=\"3\" width=\"3\" x=\"4\" y=\"8.5\"></rect></g><g><rect height=\"3\" width=\"3\" x=\"4\" y=\"4\"></rect></g><g><rect height=\"3\" width=\"3\" x=\"13\" y=\"4\"></rect></g><g><polygon points=\"9,14.49 9,16 10.51,16 15.4,11.1 13.9,9.6\"></polygon></g><g><polygon points=\"11.5,9.88 11.5,8.5 8.5,8.5 8.5,11.5 9.87,11.5\"></polygon></g><g><path d=\"M16.85,8.94l-0.79-0.79c-0.2-0.2-0.51-0.2-0.71,0L14.6,8.9l1.5,1.5l0.75-0.75C17.05,9.45,17.05,9.13,16.85,8.94z\"></path></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"1\" width=\"2\" x=\"5\" y=\"11\"></rect><polygon points=\"15,12 15,11 12.41,11 13.41,12\"></polygon><path d=\"M16,5v9.59l0.87,0.87C16.95,15.32,17,15.17,17,15V5c0-0.55-0.45-1-1-1H5.41l1,1H16z\"></path><path d=\"M2.93,2.93L2.22,3.64l0.9,0.9C3.05,4.68,3,4.83,3,5v10c0,0.55,0.45,1,1,1h10.59l1.78,1.78l0.71-0.71L2.93,2.93z M4,15 V5.41L9.59,11H8v1h2.59l1,1H5v1h7v-0.59L13.59,15H4z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"4\" width=\"4\" x=\"10\" y=\"4\"></rect><rect height=\"4\" width=\"4\" x=\"4\" y=\"16\"></rect><rect height=\"4\" width=\"4\" x=\"4\" y=\"10\"></rect><rect height=\"4\" width=\"4\" x=\"4\" y=\"4\"></rect><rect height=\"4\" width=\"4\" x=\"16\" y=\"4\"></rect><polygon points=\"11,17.86 11,20 13.1,20 19.08,14.03 16.96,11.91\"></polygon><polygon points=\"14,12.03 14,10 10,10 10,14 12.03,14\"></polygon><path d=\"M20.85,11.56l-1.41-1.41c-0.2-0.2-0.51-0.2-0.71,0l-1.06,1.06l2.12,2.12l1.06-1.06C21.05,12.07,21.05,11.76,20.85,11.56z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z\"></path><polygon points=\"18,10 12.83,10 14.83,12 18,12\"></polygon><path d=\"M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,6.83 L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z\"></path></g></g>" } } }, - "business": { - "name": "business", + "report_problem": { + "name": "report_problem", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z\"></path>" } } }, - "call": { - "name": "call", + "print": { + "name": "print", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 12v2H8v-4h8v2zm2-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z\"></path><circle cx=\"18\" cy=\"11.5\" r=\"1\"></circle>" } } }, - "call_end": { - "name": "call_end", + "view_module": { + "name": "view_module", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3,5v10h14V5H3z M15.5,9.25h-2.67V6.5h2.67V9.25z M8.67,9.25V6.5h2.67v2.75H8.67z M11.33,10.75v2.75H8.67v-2.75H11.33z M7.17,6.5v2.75H4.5V6.5H7.17z M4.5,10.75h2.67v2.75H4.5V10.75z M12.83,13.5v-2.75h2.67v2.75H12.83z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.59 10.52c1.05.51 2.04 1.15 2.96 1.91l-1.07 1.07c-.58-.47-1.21-.89-1.88-1.27v-1.71m-13.2 0v1.7c-.65.37-1.28.79-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.38 2.94-1.9M12 7C7.46 7 3.34 8.78.29 11.67c-.18.18-.29.43-.29.71s.11.53.29.7l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.1.7-.28.79-.73 1.68-1.36 2.66-1.85.33-.16.56-.51.56-.9v-3.1C8.85 9.25 10.4 9 12 9s3.15.25 4.59.73v3.1c0 .4.23.74.56.9.98.49 1.88 1.11 2.67 1.85.18.17.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.11-.53-.29-.71C20.66 8.78 16.54 7 12 7z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,5v14h18V5H3z M19,11h-3.33V7H19V11z M13.67,11h-3.33V7h3.33V11z M8.33,7v4H5V7H8.33z M5,17v-4h3.33v4H5z M10.33,17v-4 h3.33v4H10.33z M15.67,17v-4H19v4H15.67z\"></path>" } } }, - "call_made": { - "name": "call_made", + "view_cozy": { + "name": "view_cozy", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"3\" width=\"3\" x=\"6.25\" y=\"6.25\"></rect><rect height=\"3\" width=\"3\" x=\"10.75\" y=\"6.25\"></rect><rect height=\"3\" width=\"3\" x=\"6.25\" y=\"10.75\"></rect><rect height=\"3\" width=\"3\" x=\"10.75\" y=\"10.75\"></rect><path d=\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M16.5,14.5h-13v-9h13V14.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"4\" width=\"4\" x=\"7.25\" y=\"7.25\"></rect><rect height=\"4\" width=\"4\" x=\"12.75\" y=\"7.25\"></rect><rect height=\"4\" width=\"4\" x=\"7.25\" y=\"12.75\"></rect><rect height=\"4\" width=\"4\" x=\"12.75\" y=\"12.75\"></rect><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\"></path></g></g>" } } }, - "call_merge": { - "name": "call_merge", + "update_disabled": { + "name": "update_disabled", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10.75,6v2.63l-1.5-1.5V6H10.75z M15.9,13.77c0.7-1.09,1.1-2.38,1.1-3.77h-1.5c0,0.97-0.25,1.89-0.7,2.68L15.9,13.77z M2.93,2.93L1.87,3.99L4.1,6.23C3.41,7.31,3,8.61,3,10c0,3.87,3.13,7,7,7c1.39,0,2.69-0.41,3.77-1.1l2.24,2.24l1.06-1.06L2.93,2.93z M10,15.5c-3.03,0-5.5-2.47-5.5-5.5c0-0.97,0.25-1.89,0.7-2.68l7.48,7.48C11.89,15.25,10.97,15.5,10,15.5z M10,4.5 c1.7,0,3.22,0.78,4.22,2H12V8h5V3h-1.5v2.71C14.22,4.07,12.24,3,10,3C8.61,3,7.31,3.41,6.23,4.1L7.32,5.2C8.11,4.75,9.03,4.5,10,4.5 z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><path d=\"M20.94,13c-0.15,1.38-0.62,2.67-1.33,3.79l-1.47-1.47c0.38-0.71,0.65-1.49,0.77-2.32H20.94z M8.67,5.84 C9.66,5.31,10.8,5,12,5c2.37,0,4.47,1.19,5.74,3H15v2h6V4h-2v2.36C17.35,4.32,14.83,3,12,3c-1.76,0-3.4,0.51-4.78,1.39L8.67,5.84z M11,7v1.17l2,2V7H11z M19.78,22.61l-3-3C15.39,20.48,13.76,21,12,21c-4.97,0-9-4.03-9-9c0-1.76,0.51-3.4,1.39-4.78L1.39,4.22 l1.41-1.41l18.38,18.38L19.78,22.61z M15.32,18.15L5.84,8.67C5.31,9.66,5,10.8,5,12c0,3.86,3.14,7,7,7 C13.2,19,14.34,18.69,15.32,18.15z\"></path>" } } }, - "call_missed": { - "name": "call_missed", + "sticky_note_2": { + "name": "sticky_note_2", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.59 7L12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9L19.59 7z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,5v9l-5,0l0,5H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h10l6-6V5C21,3.9,20.1,3,19,3z M12,14H7v-2h5V14z M17,10H7V8h10V10z\"></path>" } } }, - "call_missed_outgoing": { - "name": "call_missed_outgoing", + "perm_media": { + "name": "perm_media", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 8.41l9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm5 9h14l-3.5-4.5-2.5 3.01L11.5 9zM22 4h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H6V4h5.17l1.41 1.41.59.59H22v10z\"></path>" } } }, - "call_received": { - "name": "call_received", + "add_task": { + "name": "add_task", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41L20 5.41z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z\"></path>" } } }, - "call_split": { - "name": "call_split", + "add_card": { + "name": "add_card", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16H12v-1.5H3.5V10H18V5.5C18,4.67,17.33,4,16.5,4z M16.5,7h-13V5.5 h13V7z M20,15.5h-2.5V18H16v-2.5h-2.5V14H16v-2.5h1.5V14H20V15.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4h-6zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h10v-2H4v-6h18V6C22,4.89,21.11,4,20,4z M20,8H4V6h16V8z M24,17v2 h-3v3h-2v-3h-3v-2h3v-3h2v3H24z\"></path></g>" } } }, - "cancel_presentation": { - "name": "cancel_presentation", + "line_weight": { + "name": "line_weight", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9.41 15.95L12 13.36l2.59 2.59L16 14.54l-2.59-2.59L16 9.36l-1.41-1.41L12 10.54 9.41 7.95 8 9.36l2.59 2.59L8 14.54z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z\"></path>" } } }, - "cell_wifi": { - "name": "cell_wifi", + "support": { + "name": "support", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M12.16,4.41c1.57,0.61,2.82,1.85,3.43,3.42 l-2.78,1.15c-0.3-0.83-0.96-1.49-1.79-1.79L12.16,4.41z M7.84,4.41L9,7.18c-0.85,0.3-1.51,0.96-1.82,1.81v0L4.41,7.84 C5.02,6.27,6.27,5.02,7.84,4.41z M7.83,15.59c-1.57-0.61-2.82-1.86-3.43-3.43l2.78-1.15v0c0.3,0.84,0.97,1.51,1.81,1.81L7.83,15.59 z M8,10c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S8,11.1,8,10z M12.17,15.59l-1.15-2.78c0.84-0.3,1.5-0.97,1.79-1.81l2.77,1.16 C14.98,13.74,13.74,14.98,12.17,15.59z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6,22h16V5.97L6,22z M20,20h-2v-7.22l2-2V20z M5.22,7.22L3.93,5.93c3.9-3.91,10.24-3.91,14.15,0l-1.29,1.29 C13.6,4.03,8.41,4.03,5.22,7.22z M12.93,11.07L11,13l-1.93-1.93C10.14,10.01,11.86,10.01,12.93,11.07z M14.22,9.79 c-1.78-1.77-4.66-1.77-6.43,0L6.5,8.5c2.48-2.48,6.52-2.48,9,0L14.22,9.79z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z\"></path></g>" } } }, - "chat": { - "name": "chat", + "settings_bluetooth": { + "name": "settings_bluetooth", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h8v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z\"></path>" } } }, - "chat_bubble": { - "name": "chat_bubble", + "thumbs_up_down": { + "name": "thumbs_up_down", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10v.13zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5zm-.5 7.79l-1.93 1.93.57-2.72H14v-.13L16.08 12H22v5.79z\"></path>" } } }, - "chat_bubble_outline": { - "name": "chat_bubble_outline", + "explore": { + "name": "explore", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z\"></path>" } } }, - "clear_all": { - "name": "clear_all", - "keywords": [ - "communication" + "restore_from_trash": { + "name": "restore_from_trash", + "keywords": [ + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2-5V9h8v10H8v-5zm2 4h4v-4h2l-4-4-4 4h2z\"></path>" } } }, - "comment": { - "name": "comment", + "backup_table": { + "name": "backup_table", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M16,6v10H6v1h10c0.55,0,1-0.45,1-1V6H16z\"></path></g><g><path d=\"M14,13V4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v9c0,0.55,0.45,1,1,1h9C13.55,14,14,13.55,14,13z M4,4h9v4H4V4z M8,13H4 V9h4V13z M9,9h4v4H9V9z\"></path></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM20 4v13.17L18.83 16H4V4h16zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z\"></path><path d=\"M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z\"></path></g></g>" } } }, - "contacts": { - "name": "contacts", + "remove_done": { + "name": "remove_done", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM4 0h16v2H4zm0 22h16v2H4zm8-10c1.38 0 2.5-1.12 2.5-2.5S13.38 7 12 7 9.5 8.12 9.5 9.5 10.62 12 12 12zm0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 7.49C17 13.9 13.69 13 12 13s-5 .9-5 2.99V17h10v-1.01zm-8.19-.49c.61-.52 2.03-1 3.19-1 1.17 0 2.59.48 3.2 1H8.81z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M4.84,1.98L3.43,3.39l10.38,10.38l-1.41,1.41l-4.24-4.24l-1.41,1.41l5.66,5.66l2.83-2.83l6.6,6.6l1.41-1.41L4.84,1.98z M18.05,12.36L23,7.4L21.57,6l-4.94,4.94L18.05,12.36z M17.34,7.4l-1.41-1.41l-2.12,2.12l1.41,1.41L17.34,7.4z M1.08,12.35 l5.66,5.66l1.41-1.41l-5.66-5.66L1.08,12.35z\"></path></g>" } } }, - "contact_mail": { - "name": "contact_mail", + "settings": { + "name": "settings", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zM21 6h-7v5h7V6zm-1 2l-2.5 1.75L15 8V7l2.5 1.75L20 7v1zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z\"></path>" + "path": "<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>" } } }, - "contact_phone": { - "name": "contact_phone", + "done_all": { + "name": "done_all", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zm-2.99-1.01L21 16l-1.51-2h-1.64c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.64L21 8l-1.99-1.99c-1.31.98-2.28 2.37-2.73 3.99-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3.01 2.73 3.99zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z\"></path>" } } }, - "desktop_access_disabled": { - "name": "desktop_access_disabled", + "data_exploration": { + "name": "data_exploration", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8l0,0h6.5c0.83,0,1.5-0.67,1.5-1.5V10C18,5.58,14.42,2,10,2z M16.75,16 c0,0.41-0.34,0.75-0.75,0.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75C16.41,15.25,16.75,15.59,16.75,16z M10,16.5 c-2.27,0-4.28-1.17-5.44-2.94l2.45-2.45l2.49,2.44l4-4V11H15V7h-4v1.5h1.43l-2.94,2.94L7,9l-3.14,3.14C3.63,11.47,3.5,10.75,3.5,10 c0-3.58,2.92-6.5,6.5-6.5s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1.41 1.69L0 3.1l1 .99V16c0 1.1.89 2 1.99 2H10v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10h8c1.1,0,2-0.9,2-2v-8C22,6.48,17.52,2,12,2z M12,20c-2.89,0-5.43-1.54-6.83-3.84 l2.95-2.95L11.41,16L16,11.42V13h2V8h-5v2h1.58l-3.28,3.28L8,10.5l-3.69,3.7C4.11,13.5,4,12.76,4,12c0-4.41,3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.05,20.5,19.5,20.5z\"></path>" } } }, - "dialer_sip": { - "name": "dialer_sip", + "outbond": { + "name": "outbond", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 3h1v5h-1zm-1 2h-2V4h2V3h-3v3h2v1h-2v1h3zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.7.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.2-1.2c.85.24 1.71.39 2.59.45v1.5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\"></path>" } } }, - "dialpad": { - "name": "dialpad", + "face_unlock": { + "name": "face_unlock", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z\"></path>" } } }, - "document_scanner": { - "name": "document_scanner", + "card_membership": { + "name": "card_membership", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M6,2.5H3.5V5H2V1h4V2.5z M16.5,5l0-2.5l-2.5,0L14,1l4,0l0,4L16.5,5z M14,17.5h2.5V15H18v4h-4V17.5z M3.5,15l0,2.5l2.5,0 L6,19l-4,0l0-4L3.5,15z M13.49,14.5H6.5l0.01-9h6.99L13.49,14.5z M6.43,4C5.64,4,5,4.67,5,5.5v9C5,15.33,5.64,16,6.43,16h7.14 c0.79,0,1.43-0.67,1.43-1.5v-9C15,4.67,14.36,4,13.57,4H6.43z M12,7H8v1.5h4V7z M12,9.25H8v1.5h4V9.25z M12,11.5H8V13h4V11.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7,3H4v3H2V1h5V3z M22,6V1h-5v2h3v3H22z M7,21H4v-3H2v5h5V21z M20,18v3h-3v2h5v-5H20z M17,6H7v12h10V6z M19,18 c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2V18z M15,8H9v2h6V8z M15,11H9v2h6V11z M15,14H9v2h6V14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z\"></path>" } } }, - "domain_disabled": { - "name": "domain_disabled", + "search": { + "name": "search", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1.41 1.69L0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z\"></path>" } } }, - "domain_verification": { - "name": "domain_verification", + "online_prediction": { + "name": "online_prediction", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V7h10V15z\"></path><polygon points=\"13.18,9.23 12.47,8.53 8.94,12.06 7.53,10.65 6.82,11.35 8.94,13.47\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><path d=\"M9.25,14h1.5v1h-1.5V14z M10,7L10,7L10,7C10,7,10,7,10,7C8.62,7,7.5,8.12,7.5,9.5C7.5,11,9.25,12,9.25,13 c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5C12.5,8.12,11.38,7,10,7z M4,10c0-1.65,0.67-3.15,1.76-4.24L5.05,5.05 C3.78,6.32,3,8.07,3,10c0,1.93,0.78,3.68,2.05,4.95l0.71-0.71C4.67,13.15,4,11.65,4,10z M17,10c0-1.93-0.78-3.68-2.05-4.95 l-0.71,0.71C15.33,6.85,16,8.35,16,10c0,1.65-0.67,3.15-1.76,4.24l0.71,0.71C16.22,13.68,17,11.93,17,10z M6.46,13.54l0.71-0.71 C6.45,12.1,6,11.1,6,10c0-1.1,0.45-2.1,1.17-2.83L6.46,6.46C5.56,7.37,5,8.62,5,10C5,11.38,5.56,12.63,6.46,13.54z M14,10 c0,1.1-0.45,2.1-1.17,2.83l0.71,0.71C14.44,12.63,15,11.38,15,10c0-1.38-0.56-2.63-1.46-3.54l-0.71,0.71C13.55,7.9,14,8.9,14,10z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54\"></polygon><path d=\"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z\"></path></g>" } } }, - "duo": { - "name": "duo", + "power_settings_new": { + "name": "power_settings_new", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z\"></path>" } } }, - "email": { - "name": "email", + "perm_contact_calendar": { + "name": "perm_contact_calendar", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.84 4.22c-.05-.12-.11-.23-.18-.34-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-1V1h-2v2H8V1H6v2H5c-.42 0-.8.13-1.12.34-.21.14-.4.33-.54.54-.07.11-.13.22-.18.34-.1.24-.16.5-.16.78v14c0 1.1.89 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.28-.06-.54-.16-.78zM5 19V5h14v14H5zm7-6.12c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31zM12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z\"></path>" } } }, - "forum": { - "name": "forum", + "hourglass_full": { + "name": "hourglass_full", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 4v7H5.17L4 12.17V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z\"></path>" } } }, - "forward_to_inbox": { - "name": "forward_to_inbox", + "density_medium": { + "name": "density_medium", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15,12.5l3,3l-3,3V16h-3v-1h3V12.5z M11,15H4V6.18L10,10l6-3.82V12h1V5c0-0.55-0.45-1-1-1H4C3.45,4,3,4.45,3,5v10 c0,0.55,0.45,1,1,1h7L11,15z M16,5l-6,3.82L4,5H16z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"14\" x=\"3\" y=\"9.25\"></rect><rect height=\"1.5\" width=\"14\" x=\"3\" y=\"3\"></rect><rect height=\"1.5\" width=\"14\" x=\"3\" y=\"15.5\"></rect></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"18\" x=\"3\" y=\"3\"></rect><rect height=\"2\" width=\"18\" x=\"3\" y=\"19\"></rect><rect height=\"2\" width=\"18\" x=\"3\" y=\"11\"></rect></g></g>" } } }, - "hourglass_bottom": { - "name": "hourglass_bottom", + "chrome_reader_mode": { + "name": "chrome_reader_mode", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M6,17h8v-4l-3-3l3-3V3H6v4l3,3l-3,3V17z M7,6.59V4h6v2.59l-3,3L7,6.59z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM3 19V6h8v13H3zm18 0h-8V6h8v13zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z\"></path>" } } }, - "hourglass_top": { - "name": "hourglass_top", + "assignment": { + "name": "assignment", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M14,3H6v4l3,3l-3,3v4h8v-4l-3-3l3-3V3z M13,13.41V16H7v-2.59l3-3L13,13.41z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 15h7v2H7zm0-4h10v2H7zm0-4h10v2H7zm12-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\"></path>" } } }, - "import_contacts": { - "name": "import_contacts", + "hls": { + "name": "hls", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M6,8h1v4H6v-1.5H5V12H4V8h1v1.5h1V8z M13.5,12h2c0.28,0,0.5-0.22,0.5-0.5v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1v0.25h1V8.5 C16,8.22,15.78,8,15.5,8h-2C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5H15V11h-1v-0.25h-1v0.75 C13,11.78,13.22,12,13.5,12z M11.5,11H10V8H9v4l2.5,0V11z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6.5,9H8v6H6.5v-2.5h-2V15H3V9h1.5v2h2V9z M16.5,15h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H17v-1h2V11h1.5v-1 c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1H19v1h-2V13h-1.5v1C15.5,14.55,15.95,15,16.5,15z M14,15v-1.5h-2.5 V9H10v6H14z\"></path></g>" } } }, - "import_export": { - "name": "import_export", + "swap_vert": { + "name": "swap_vert", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z\"></path>" } } }, - "invert_colors_off": { - "name": "invert_colors_off", + "rocket_launch": { + "name": "rocket_launch", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M7.08,4.96L10,2l4.53,4.6l0,0c1.07,1.1,1.72,2.6,1.72,4.24c0,0.96-0.23,1.86-0.62,2.67L10,7.88V4.14L8.14,6.02L7.08,4.96z M16.01,18.13l-2.33-2.33C12.65,16.55,11.38,17,10,17c-3.45,0-6.25-2.76-6.25-6.16c0-1.39,0.47-2.67,1.26-3.7L1.87,3.99l1.06-1.06 l14.14,14.14L16.01,18.13z M10,12.12L6.09,8.21c-0.54,0.77-0.84,1.68-0.84,2.63c0,2.57,2.13,4.66,4.75,4.66V12.12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14.45,10.86l0.26,2.1c0.06,0.46-0.1,0.92-0.43,1.25l-3.55,3.55l-1.41-4.24l-2.83-2.83L2.25,9.27l3.55-3.55 c0.33-0.33,0.79-0.49,1.25-0.43l2.1,0.26C13.92,0.78,17.8,2.2,17.8,2.2C17.8,2.2,19.22,6.08,14.45,10.86z M10.2,6.62 C9.18,7.64,8.37,9.06,7.9,9.97l2.12,2.12c0.91-0.46,2.34-1.27,3.36-2.3C16.18,7,16.54,4.67,16.5,3.5C15.33,3.46,13,3.82,10.2,6.62 z M14,7.5C14,6.68,13.32,6,12.5,6C11.67,6,11,6.68,11,7.5S11.67,9,12.5,9C13.32,9,14,8.33,14,7.5z M7.99,6.92L6.86,6.78L5.02,8.61 l1.62,0.54C6.97,8.52,7.43,7.71,7.99,6.92z M10.85,13.36l0.54,1.62l1.83-1.83l-0.14-1.14C12.29,12.57,11.48,13.03,10.85,13.36z M5.25,12.5c-0.62,0-1.18,0.25-1.59,0.66C2.44,14.38,2,18,2,18s3.62-0.44,4.84-1.66c0.41-0.41,0.66-0.97,0.66-1.59 C7.5,13.51,6.49,12.5,5.25,12.5z M5.78,15.28c-0.44,0.44-1.87,0.81-1.87,0.81s0.37-1.43,0.81-1.87c0.29-0.29,0.77-0.29,1.06,0 S6.07,14.99,5.78,15.28z\"></path></g></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.19,21.19L2.81,2.81L1.39,4.22l4.2,4.2c-1,1.31-1.6,2.94-1.6,4.7C4,17.48,7.58,21,12,21c1.75,0,3.36-0.56,4.67-1.5 l3.1,3.1L21.19,21.19z M12,19c-3.31,0-6-2.63-6-5.87c0-1.19,0.36-2.32,1.02-3.28L12,14.83V19z M8.38,5.56L12,2l5.65,5.56l0,0 C19.1,8.99,20,10.96,20,13.13c0,1.18-0.27,2.29-0.74,3.3L12,9.17V4.81L9.8,6.97L8.38,5.56z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M6,15c-0.83,0-1.58,0.34-2.12,0.88C2.7,17.06,2,22,2,22s4.94-0.7,6.12-1.88C8.66,19.58,9,18.83,9,18C9,16.34,7.66,15,6,15 z M6.71,18.71c-0.28,0.28-2.17,0.76-2.17,0.76s0.47-1.88,0.76-2.17C5.47,17.11,5.72,17,6,17c0.55,0,1,0.45,1,1 C7,18.28,6.89,18.53,6.71,18.71z M17.42,13.65L17.42,13.65c6.36-6.36,4.24-11.31,4.24-11.31s-4.95-2.12-11.31,4.24l-2.49-0.5 C7.21,5.95,6.53,6.16,6.05,6.63L2,10.69l5,2.14L11.17,17l2.14,5l4.05-4.05c0.47-0.47,0.68-1.15,0.55-1.81L17.42,13.65z M7.41,10.83L5.5,10.01l1.97-1.97l1.44,0.29C8.34,9.16,7.83,10.03,7.41,10.83z M13.99,18.5l-0.82-1.91 c0.8-0.42,1.67-0.93,2.49-1.5l0.29,1.44L13.99,18.5z M16,12.24c-1.32,1.32-3.38,2.4-4.04,2.73l-2.93-2.93 c0.32-0.65,1.4-2.71,2.73-4.04c4.68-4.68,8.23-3.99,8.23-3.99S20.68,7.56,16,12.24z M15,11c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 S13.9,11,15,11z\"></path></g></g>" } } }, - "list_alt": { - "name": "list_alt", + "contact_page": { + "name": "contact_page", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM19 19H5V5h14v14z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M12,14 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C10,13.1,10.9,14,12,14z M16,17.43c0-0.81-0.48-1.53-1.22-1.85 C13.93,15.21,12.99,15,12,15c-0.99,0-1.93,0.21-2.78,0.58C8.48,15.9,8,16.62,8,17.43V18h8V17.43z\"></path>" } } }, - "live_help": { - "name": "live_help", + "123": { + "name": "123", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M6,12H5V9H4V8h2V12z M11,11H9v-0.5h1.5c0.28,0,0.5-0.22,0.5-0.5V8.5C11,8.22,10.78,8,10.5,8H8v1h2v0.5H8.5 C8.22,9.5,8,9.72,8,10v2h3V11z M15.5,11.5v-3C15.5,8.22,15.28,8,15,8h-2.5v1h2v0.5h-1v1h1V11h-2v1H15 C15.28,12,15.5,11.78,15.5,11.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-8-3h2v2h-2zm1-8c1.1 0 2 .9 2 2 0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M7,15H5.5v-4.5H4V9h3V15z M13.5,13.5h-3v-1h2c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H9v1.5h3v1h-2c-0.55,0-1,0.45-1,1V15 h4.5V13.5z M19.5,14v-4c0-0.55-0.45-1-1-1H15v1.5h3v1h-2v1h2v1h-3V15h3.5C19.05,15,19.5,14.55,19.5,14z\"></path></g>" } } }, - "location_off": { - "name": "location_off", + "maximize": { + "name": "maximize", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4c2.76 0 5 2.24 5 5 0 1.06-.39 2.32-1 3.62l1.49 1.49C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7-1.84 0-3.5.71-4.75 1.86l1.43 1.43C9.56 4.5 10.72 4 12 4zm0 2.5c-.59 0-1.13.21-1.56.56l3.5 3.5c.35-.43.56-.97.56-1.56 0-1.38-1.12-2.5-2.5-2.5zM3.41 2.86L2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 18.88c-2.01-2.58-4.8-6.74-4.98-9.59l6.92 6.92c-.65.98-1.33 1.89-1.94 2.67z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 3h18v2H3V3z\"></path>" } } }, - "location_on": { - "name": "location_on", + "voice_over_off": { + "name": "voice_over_off", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z\"></path><circle cx=\"12\" cy=\"9\" r=\"2.5\"></circle>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.76 5.36l-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86L3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86zM3 19c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zm6-8c-1.1 0-2-.9-2-2 0-.22.04-.42.11-.62l2.51 2.51c-.2.07-.4.11-.62.11z\"></path>" } } }, - "mail_outline": { - "name": "mail_outline", + "hotel_class": { + "name": "hotel_class", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9,6.88L9.85,9.5h2.86l-2.38,1.89l0.8,2.58L9,12.36l-2.12,1.61l0.8-2.58L5.3,9.5h2.86L9,6.88z M7.06,8H1l4.94,3.93L4.06,18 L9,14.25L13.94,18l-1.88-6.07L17,8h-6.06L9,2L7.06,8z M11.36,4.44l0.67,2.06h1.58L12.15,2L11.36,4.44z M16.9,10l-3.1,2.47l1.23,3.97 L17.08,18l-1.55-5l3.77-3H16.9z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,8.89L11.94,12h2.82l-2.27,1.62l0.93,3.01L11,14.79l-2.42,1.84l0.93-3.01L7.24,12h2.82L11,8.89z M8.58,10H1l6.17,4.41 L4.83,22L11,17.31L17.18,22l-2.35-7.59L21,10h-7.58L11,2L8.58,10z M21.36,22l-1.86-6.01L23.68,13h-3.44l-3.08,2.2l1.46,4.72 L21.36,22z M17,8l-1.82-6l-1.04,3.45L14.91,8H17z\"></path>" } } }, - "mark_chat_read": { - "name": "mark_chat_read", + "turned_in_not": { + "name": "turned_in_not", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,14H6l-3,3V4c0-0.55,0.45-1,1-1h12c0.55,0,1,0.45,1,1v4l-1-0.02V4H4v9l6,0V14z M18,10.76l-0.71-0.71l-3.54,3.54 l-1.41-1.41l-0.71,0.71L13.76,15L18,10.76z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,18l-6,0l-4,4V4c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v7l-2,0V4H4v12l8,0V18z M23,14.34l-1.41-1.41l-4.24,4.24l-2.12-2.12 l-1.41,1.41L17.34,20L23,14.34z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z\"></path>" } } }, - "mark_chat_unread": { - "name": "mark_chat_unread", + "visibility_off": { + "name": "visibility_off", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect><path d=\"M17,6.22V13c0,0.55-0.45,1-1,1H6l-3,3V4c0-0.55,0.45-1,1-1h8.18C12.07,3.31,12,3.65,12,4H4v9h12V6.82 C16.37,6.68,16.71,6.48,17,6.22z M13,4c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S13,2.9,13,4z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect><path d=\"M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3s0.04,0.68,0.1,1H4v12h16V7.9 C20.74,7.75,21.42,7.42,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z\"></path>" } } }, - "mark_email_read": { - "name": "mark_email_read", + "supervised_user_circle": { + "name": "supervised_user_circle", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,15H4V6.18L10,10l6-3.82V10h1V5c0-0.55-0.45-1-1-1H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1h6L10,15z M16,5l-6,3.82 L4,5H16z M13.76,17l-2.12-2.12l0.71-0.71l1.41,1.41l3.54-3.54L18,12.76L13.76,17z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h8l0-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z\"></path></g>" - } - } - }, - "mark_email_unread": { - "name": "mark_email_unread", - "keywords": [ - "communication" - ], - "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,7.22V15c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h8.18C12.07,4.31,12,4.65,12,5H4l6,3.82l2.81-1.79 c0.24,0.26,0.53,0.47,0.85,0.64L10,10L4,6.18V15h12V7.82C16.37,7.68,16.71,7.48,17,7.22z M13,5c0,1.1,0.9,2,2,2s2-0.9,2-2 s-0.9-2-2-2S13,3.9,13,5z\"></path></g>" - }, - "24": { - "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M22,8.98V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h10.1C14.04,4.32,14,4.66,14,5s0.04,0.68,0.1,1 H4l8,5l3.67-2.29c0.47,0.43,1.02,0.76,1.63,0.98L12,13L4,8v10h16V9.9C20.74,9.75,21.42,9.42,22,8.98z M16,5c0,1.66,1.34,3,3,3 s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.5 10c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6.5 2c1.11 0 2-.89 2-2 0-1.11-.89-2-2-2-1.11 0-2.01.89-2 2 0 1.11.89 2 2 2zM11.99 2.01c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.84 17.12c.68-.54 2.27-1.11 3.66-1.11.07 0 .15.01.23.01.24-.64.67-1.29 1.3-1.86-.56-.1-1.09-.16-1.53-.16-1.3 0-3.39.45-4.73 1.43-.5-1.04-.78-2.2-.78-3.43 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.2-.27 2.34-.75 3.37-1-.59-2.36-.87-3.24-.87-1.52 0-4.5.81-4.5 2.7v2.78c-2.27-.13-4.29-1.21-5.66-2.86z\"></path>" } } }, - "message": { - "name": "message", + "3d_rotation": { + "name": "3d_rotation", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h12v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z\"></path>" } } }, - "mobile_screen_share": { - "name": "mobile_screen_share", + "class": { + "name": "class", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05v-18C19 1.85 18.1 1 17 1zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z\"></path>" } } }, - "more_time": { - "name": "more_time", + "app_shortcut": { + "name": "app_shortcut", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"8.5,8.05 8.5,12.05 11.67,13.95 12.17,13.13 9.5,11.55 9.5,8.05\"></polygon><path d=\"M13.9,10c0.07,0.32,0.1,0.66,0.1,1c0,2.76-2.24,5-5,5s-5-2.24-5-5s2.24-5,5-5c0.71,0,1.39,0.15,2,0.42V5.35 C10.37,5.13,9.7,5,9,5c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6c0-0.34-0.04-0.67-0.09-1H13.9z\"></path><polygon points=\"15,6 15,4 14,4 14,6 14,6 12,6 12,7 14,7 14,9 15,9 15,7 15,7 17,7 17,6\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14.5,15h-9V5h9v1H16V2.5C16,1.67,15.33,1,14.5,1h-9C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9 c0.83,0,1.5-0.67,1.5-1.5V14h-1.5V15z M5.5,2.5h9v1h-9V2.5z M14.5,17.5h-9v-1h9V17.5z\"></path><polygon points=\"17.03,7.97 17.5,9 17.97,7.97 19,7.5 17.97,7.03 17.5,6 17.03,7.03 16,7.5\"></polygon><polygon points=\"13,7 12.06,9.06 10,10 12.06,10.94 13,13 13.94,10.94 16,10 13.94,9.06\"></polygon><polygon points=\"17.5,11 17.03,12.03 16,12.5 17.03,12.97 17.5,14 17.97,12.97 19,12.5 17.97,12.03\"></polygon></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8\"></polygon><path d=\"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z\"></path><polygon points=\"20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z\"></path><polygon points=\"20.38,9.62 21,11 21.62,9.62 23,9 21.62,8.38 21,7 20.38,8.38 19,9\"></polygon><polygon points=\"16,8 14.75,10.75 12,12 14.75,13.25 16,16 17.25,13.25 20,12 17.25,10.75\"></polygon><polygon points=\"21,13 20.38,14.38 19,15 20.38,15.62 21,17 21.62,15.62 23,15 21.62,14.38\"></polygon></g></g>" } } }, - "nat": { - "name": "nat", + "reorder": { + "name": "reorder", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M5.93,10.5H10v-1H5.93C5.71,8.64,4.93,8,4,8c-1.1,0-2,0.9-2,2s0.9,2,2,2C4.93,12,5.71,11.36,5.93,10.5z M4,11 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S4.55,11,4,11z\"></path><path d=\"M18,10l-3-2v1.5h-3.03C11.72,5.87,8.7,3,5,3v1c3.31,0,6,2.69,6,6s-2.69,6-6,6v1c3.7,0,6.72-2.87,6.97-6.5H15V12L18,10z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z\"></path><path d=\"M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z\"></path>" } } }, - "no_sim": { - "name": "no_sim", + "swipe": { + "name": "swipe", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M16.5,2v1.48C14.86,1.95,12.56,1,10,1S5.14,1.95,3.5,3.48V2H2v4h4V4.5H4.91C6.23,3.39,8.02,2.7,10,2.7s3.77,0.69,5.09,1.8 H14V6h4V2H16.5z\"></path><path d=\"M9,6.5c0.28,0,0.5,0.22,0.5,0.5v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52l-0.61,4.29H8.62L5.12,14l0.34-0.34 l3.04,0.76V7C8.5,6.72,8.72,6.5,9,6.5 M9,5C7.9,5,7,5.9,7,7v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3,14l4.56,4.56 C7.84,18.84,8.22,19,8.62,19h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29c0.12-0.85-0.32-1.69-1.09-2.07L12,10h-1V7 C11,5.9,10.1,5,9,5L9,5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21.26 21.21L3.79 3.74 2.38 5.15l2.74 2.74-.12.12V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.88 1.88 1.41-1.41zM7 19V9.77L16.23 19H7zm3.84-14H17v9.11l2 2V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06l1.41 1.41L10.84 5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M20.5,2v2.02C18.18,2.13,15.22,1,12,1S5.82,2.13,3.5,4.02V2H2v3.5V7h1.5H7V5.5H4.09c2.11-1.86,4.88-3,7.91-3 s5.79,1.14,7.91,3H17V7h3.5H22V5.5V2H20.5z\"></path><g><path d=\"M18.89,13.77l-3.8-1.67C14.96,12.04,14.81,12,14.65,12H14l0-4.37c0-1.32-0.96-2.5-2.27-2.62C10.25,4.88,9,6.05,9,7.5 v8.15l-1.87-0.4c-0.19-0.03-1.02-0.15-1.73,0.56L4,17.22l5.12,5.19C9.49,22.79,10,23,10.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67 l0.92-5.44C20.12,15.03,19.68,14.17,18.89,13.77z M18,15.56L17.08,21h-6.55l-3.7-3.78L11,18.11V7.5C11,7.22,11.22,7,11.5,7 S12,7.22,12,7.5v6.18h1.76L18,15.56z\"></path></g></g></g>" } } }, - "pause_presentation": { - "name": "pause_presentation", + "view_stream": { + "name": "view_stream", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3,6.5v7C3,14.33,3.67,15,4.5,15h11c0.83,0,1.5-0.67,1.5-1.5v-7C17,5.67,16.33,5,15.5,5h-11C3.67,5,3,5.67,3,6.5z M15.5,6.5 v2.75h-11V6.5H15.5z M4.5,13.5v-2.75h11v2.75H4.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .85-2 1.95v14c0 1.1.9 2.05 2 2.05h18c1.1 0 2-.95 2-2.05v-14C23 3.85 22.1 3 21 3zm0 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,7v10c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V7c0-1.1-0.9-2-2-2H5C3.9,5,3,5.9,3,7z M19,17H5v-4h14V17z M5,11V7h14v4H5z\"></path>" } } }, - "person_add_disabled": { - "name": "person_add_disabled", + "event": { + "name": "event", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 6c1.1 0 2 .9 2 2 0 .99-.73 1.82-1.67 1.97l-2.31-2.31C13.19 6.72 14.01 6 15 6m0-2c-2.21 0-4 1.79-4 4 0 .18.03.35.05.52l3.43 3.43c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4zm1.69 10.16L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zm-3.68 1.97L14.88 18H9c.08-.24.88-1.01 2.91-1.57l1.1-.3M1.41 1.71L0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71zM6 10v-.88l.88.88H6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z\"></path>" } } }, - "person_search": { - "name": "person_search", + "shop_2": { + "name": "shop_2", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M9.43,11.86c0.36-0.68,0.67-0.89,0.72-0.93C7.85,10.59,4,11.52,4,13.21V15h5.35c-0.15-0.32-0.25-0.66-0.3-1H5v-0.79 C5,12.71,7.33,11.72,9.43,11.86z\"></path><path d=\"M9,10c1.38,0,2.5-1.12,2.5-2.5C11.5,6.12,10.38,5,9,5C7.62,5,6.5,6.12,6.5,7.5C6.5,8.88,7.62,10,9,10z M9,6 c0.83,0,1.5,0.67,1.5,1.5S9.83,9,9,9S7.5,8.33,7.5,7.5S8.17,6,9,6z\"></path><path d=\"M16.06,16.35l-1.48-1.48c0.26-0.4,0.42-0.87,0.42-1.38c0-1.38-1.12-2.5-2.5-2.5S10,12.12,10,13.5c0,1.38,1.12,2.5,2.5,2.5 c0.51,0,0.98-0.15,1.38-0.42l1.48,1.48L16.06,16.35z M12.5,15c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S13.33,15,12.5,15z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M2.5,7H1v9.5C1,17.33,1.67,18,2.5,18H16v-1.5H2.5V7z\"></path><path d=\"M15,4V2.5C15,1.67,14.33,1,13.5,1h-4C8.67,1,8,1.67,8,2.5V4H4v9.5C4,14.33,4.67,15,5.5,15h12c0.83,0,1.5-0.67,1.5-1.5V4 H15z M9.5,2.5h4V4h-4V2.5z M17.5,13.5h-12v-8h12V13.5z\"></path><polygon points=\"10,6.5 10,12.5 14.5,9.5\"></polygon></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M10,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,5.79,6,8C6,10.21,7.79,12,10,12z M10,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S8,9.1,8,8C8,6.9,8.9,6,10,6z\"></path><path d=\"M4,18c0.22-0.72,3.31-2,6-2c0-0.7,0.13-1.37,0.35-1.99C7.62,13.91,2,15.27,2,18v2h9.54c-0.52-0.58-0.93-1.25-1.19-2H4z\"></path><path d=\"M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 c0.93,0.93,1.62,1.62,2.57,2.57L22,20.59C20.5,19.09,21.21,19.79,19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C18,17.1,17.1,18,16,18z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,9H1v11c0,1.11,0.89,2,2,2h16v-2H3V9z\"></path><path d=\"M18,5V3c0-1.11-0.89-2-2-2h-4c-1.11,0-2,0.89-2,2v2H5v11c0,1.11,0.89,2,2,2h14c1.11,0,2-0.89,2-2V5H18z M12,3h4v2h-4V3z M21,16H7V7h14V16z\"></path><polygon points=\"12,8 12,15 17.5,11.5\"></polygon></g></g>" } } }, - "phone": { - "name": "phone", + "loyalty": { + "name": "loyalty", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z\"></path><circle cx=\"6.5\" cy=\"6.5\" r=\"1.5\"></circle><path d=\"M8.9 12.55c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45 0-1.13-.92-2.05-2.05-2.05-.57 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.89-.61-1.45-.61-1.13 0-2.05.92-2.05 2.05z\"></path>" } } }, - "phonelink_erase": { - "name": "phonelink_erase", + "outbound": { + "name": "outbound", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\"></path>" } } }, - "phonelink_lock": { - "name": "phonelink_lock", + "drag_indicator": { + "name": "drag_indicator", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" } } }, - "phonelink_ring": { - "name": "phonelink_ring", + "android": { + "name": "android", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g></g><g><path d=\"M14.36,8.14l1.57-2.72c0.14-0.24,0.06-0.54-0.18-0.68c-0.24-0.14-0.54-0.06-0.68,0.18l-1.6,2.78C12.4,7.25,11.23,7,10,7 S7.6,7.25,6.54,7.7l-1.6-2.78C4.8,4.68,4.49,4.6,4.25,4.74C4.01,4.87,3.93,5.18,4.07,5.42l1.57,2.72C3.15,9.52,1.39,12.04,1.06,15 h17.88C18.61,12.04,16.85,9.52,14.36,8.14z M6,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,13,6,13z M14,13 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S14.55,13,14,13z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.1 7.7l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z\"></path></g></g>" } } }, - "phonelink_setup": { - "name": "phonelink_setup", + "build_circle": { + "name": "build_circle", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6 S13.31,16,10,16z\"></path><path d=\"M10.75,7.21C9.98,6.44,8.83,6.3,7.91,6.78l1.63,1.63L8.51,9.44L6.88,7.81C6.4,8.73,6.54,9.88,7.31,10.65 c0.66,0.66,1.61,0.85,2.45,0.59l2.26,2.26l1.38-1.38l-2.17-2.17C11.64,9.05,11.49,7.95,10.75,7.21z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 3v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8s8,3.59,8,8C20,16.41,16.41,20,12,20z\" fill-rule=\"evenodd\"></path><path d=\"M13.49,11.38c0.43-1.22,0.17-2.64-0.81-3.62c-1.11-1.11-2.79-1.3-4.1-0.59 l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32-0.52,2.99,0.59,4.1c0.98,0.98,2.4,1.24,3.62,0.81l3.41,3.41c0.2,0.2,0.51,0.2,0.71,0 l1.4-1.4c0.2-0.2,0.2-0.51,0-0.71L13.49,11.38z\" fill-rule=\"evenodd\"></path></g></g>" } } }, - "phone_disabled": { - "name": "phone_disabled", + "lock_clock": { + "name": "lock_clock", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g><g><g><path d=\"M5.5,16.5v-8h9v1.03c0.53,0.05,1.03,0.17,1.5,0.36V8.5C16,7.67,15.33,7,14.5,7H14V5c0-2.21-1.79-4-4-4S6,2.79,6,5v2H5.5 C4.67,7,4,7.67,4,8.5v8C4,17.33,4.67,18,5.5,18h3.9c-0.3-0.46-0.53-0.96-0.68-1.5H5.5z M7.5,5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5v2h-5V5z\"></path><path d=\"M14,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,12.79,16.21,11,14,11z M15.15,16.85l-1.65-1.65V13h1v1.79 l1.35,1.35L15.15,16.85z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><g><path d=\"M17.34,14.54l-1.43-1.43c0.56-0.73,1.05-1.5,1.47-2.32l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02 C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20c0.55,0,1,0.45,1,1C21,7.98,19.63,11.64,17.34,14.54z M14.52,17.35 C11.63,19.64,7.97,21,4,21c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05 c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c0.81-0.42,1.58-0.9,2.3-1.46L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M7.6,17.02c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M17.46,5 c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M6,20V10h12v1c0.7,0,1.37,0.1,2,0.29V10c0-1.1-0.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v2H6c-1.1,0-2,0.9-2,2v10 c0,1.1,0.9,2,2,2h6.26c-0.42-0.6-0.75-1.28-0.97-2H6z M9,6c0-1.66,1.34-3,3-3s3,1.34,3,3v2H9V6z\"></path><path d=\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M19.65,20.35l-2.15-2.15V15h1v2.79l1.85,1.85 L19.65,20.35z\"></path></g></g>" } } }, - "phone_enabled": { - "name": "phone_enabled", + "add_to_drive": { + "name": "add_to_drive", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.98,9L12.5,3h-5l4.59,7.92C13,9.77,14.39,9.01,15.98,9z\"></path><path d=\"M11.25,12.5H8.84L6.23,17h5.79C11.39,16.16,11,15.13,11,14C11,13.47,11.1,12.98,11.25,12.5z\"></path><polygon points=\"6.63,4.5 2,12.5 4.5,17 9.19,8.91\"></polygon><polygon points=\"16.75,13.25 16.75,11 15.25,11 15.25,13.25 13,13.25 13,14.75 15.25,14.75 15.25,17 15.5,17 16.75,17 16.75,14.75 19,14.75 19,13.25\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><g><path d=\"M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z M7.6,17.02 c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M16.5,3H20c0.55,0,1,0.45,1,1c0,9.39-7.61,17-17,17 c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05c0.26,0,0.51,0.1,0.71,0.29 l2.2,2.2c2.83-1.45,5.15-3.76,6.59-6.59l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02C15.3,6.45,15.5,5.25,15.5,4 C15.5,3.45,15.95,3,16.5,3z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M19,11c0.17,0,0.33,0.01,0.49,0.02L15,3H9l5.68,9.84C15.77,11.71,17.3,11,19,11z\"></path><polygon points=\"8.15,4.52 2,15.5 5,21 11.33,10.03\"></polygon><path d=\"M13.2,15.5H9.9L6.73,21h7.81C13.58,19.94,13,18.54,13,17C13,16.48,13.07,15.98,13.2,15.5z\"></path><polygon points=\"20,16 20,13 18,13 18,16 15,16 15,18 18,18 18,21 19,21 20,21 20,18 23,18 23,16\"></polygon></g></g>" } } }, - "portable_wifi_off": { - "name": "portable_wifi_off", + "view_list": { + "name": "view_list", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3,5v10h14V5H3z M15.5,7.83h-8V6.5h8V7.83z M7.5,9.33h8v1.33h-8V9.33z M6,10.67H4.5V9.33H6V10.67z M6,6.5v1.33H4.5V6.5H6z M4.5,12.17H6v1.33H4.5V12.17z M7.5,13.5v-1.33h8v1.33H7.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3.42 2.36L2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,5v14h18V5H3z M7,7v2H5V7H7z M5,13v-2h2v2H5z M5,15h2v2H5V15z M19,17H9v-2h10V17z M19,13H9v-2h10V13z M19,9H9V7h10V9z\"></path>" } } }, - "present_to_all": { - "name": "present_to_all", + "watch_later": { + "name": "watch_later", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12.5,7H11v6l5.2,3.2l0.8-1.3l-4.5-2.7V7z\"></path></g></g>" } } }, - "print_disabled": { - "name": "print_disabled", + "savings": { + "name": "savings", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13.21,3.61C13.11,3.95,13,4.35,13,5.12L15.88,8h0.62v2.8l-1.95,0.43l-1.19,4.27H11.5V14H7v1.5H5.13 C4.49,13.26,3.5,9.46,3.5,8c0-1.65,1.35-3,3-3l4.9,0C11.73,4.43,12.33,3.85,13.21,3.61z M14,2c-2.17,0-3.35,1.5-3.35,1.5H6.5 C4.05,3.5,2,5.47,2,8c0,2.33,2,9,2,9h4.5v-1.5H10V17h4.5l1.25-4.5L18,12V6.5h-1.5l-2-2C14.5,4.14,15,3.52,15,3C15,2.45,14.55,2,14,2 L14,2z M11,7.5H7V6h4V7.5z M13.25,9c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S14,7.84,14,8.25 C14,8.66,13.66,9,13.25,9z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M1.41 1.6L0 3.01 5 8c-1.66 0-3 1.34-3 3v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM6 15H4v-4c0-.55.45-1 1-1h2l3 3H6v2zm2 4v-4h4l4 4H8zM8 5h8v3h-5.34l2 2H19c.55 0 1 .45 1 1v4l-2 .01V13h-2.34l4 4H22v-6c0-1.66-1.34-3-3-3h-1V3H6v.36l2 2V5z\"></path><circle cx=\"18\" cy=\"11.51\" r=\"1\"></circle>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M15,10c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S15,10.55,15,10z M8,9h5V7H8V9z M22,7.5v6.97l-2.82,0.94L17.5,21 L12,21v-2h-2v2l-5.5,0C4.5,21,2,12.54,2,9.5S4.46,4,7.5,4l5,0c0.91-1.21,2.36-2,4-2C17.33,2,18,2.67,18,3.5 c0,0.21-0.04,0.4-0.12,0.58c-0.14,0.34-0.26,0.73-0.32,1.15l2.27,2.27H22z M20,9.5h-1L15.5,6c0-0.65,0.09-1.29,0.26-1.91 C14.79,4.34,14,5.06,13.67,6L7.5,6C5.57,6,4,7.57,4,9.5c0,1.88,1.22,6.65,2.01,9.5L8,19v-2h6v2l2.01,0l1.55-5.15L20,13.03V9.5z\"></path></g>" } } }, - "qr_code": { - "name": "qr_code", + "terminal": { + "name": "terminal", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M4,9h5V4H4V9z M4.94,4.94h3.12v3.12H4.94V4.94z\"></path><path d=\"M4,16h5v-5H4V16z M4.94,11.94h3.12v3.12H4.94V11.94z\"></path><path d=\"M11,4v5h5V4H11z M15.06,8.06h-3.12V4.94h3.12V8.06z\"></path><rect height=\"1\" width=\"1\" x=\"15\" y=\"15\"></rect><rect height=\"1\" width=\"1\" x=\"15\" y=\"13\"></rect><rect height=\"1\" width=\"1\" x=\"15\" y=\"11\"></rect><rect height=\"1\" width=\"1\" x=\"12\" y=\"12\"></rect><rect height=\"1\" width=\"1\" x=\"11\" y=\"11\"></rect><rect height=\"1\" width=\"1\" x=\"13\" y=\"13\"></rect><rect height=\"1\" width=\"1\" x=\"14\" y=\"14\"></rect><rect height=\"1\" width=\"1\" x=\"13\" y=\"11\"></rect><rect height=\"1\" width=\"1\" x=\"14\" y=\"12\"></rect><rect height=\"1\" width=\"1\" x=\"11\" y=\"13\"></rect><rect height=\"1\" width=\"1\" x=\"12\" y=\"14\"></rect><rect height=\"1\" width=\"1\" x=\"11\" y=\"15\"></rect><rect height=\"1\" width=\"1\" x=\"13\" y=\"15\"></rect></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,14.5V7h13v7.5H3.5z M15,13.5h-5V12h5V13.5z M6.25,13.5l-1.06-1.06l1.69-1.69L5.19,9.06L6.25,8L9,10.75L6.25,13.5z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,11h8V3H3V11z M5,5h4v4H5V5z\"></path><path d=\"M3,21h8v-8H3V21z M5,15h4v4H5V15z\"></path><path d=\"M13,3v8h8V3H13z M19,9h-4V5h4V9z\"></path><rect height=\"2\" width=\"2\" x=\"19\" y=\"19\"></rect><rect height=\"2\" width=\"2\" x=\"13\" y=\"13\"></rect><rect height=\"2\" width=\"2\" x=\"15\" y=\"15\"></rect><rect height=\"2\" width=\"2\" x=\"13\" y=\"17\"></rect><rect height=\"2\" width=\"2\" x=\"15\" y=\"19\"></rect><rect height=\"2\" width=\"2\" x=\"17\" y=\"17\"></rect><rect height=\"2\" width=\"2\" x=\"17\" y=\"13\"></rect><rect height=\"2\" width=\"2\" x=\"19\" y=\"15\"></rect></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,4H4C2.89,4,2,4.9,2,6v12c0,1.1,0.89,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.11,4,20,4z M20,18H4V8h16V18z M18,17h-6v-2 h6V17z M7.5,17l-1.41-1.41L8.67,13l-2.59-2.59L7.5,9l4,4L7.5,17z\"></path></g>" } } }, - "qr_code_2": { - "name": "qr_code_2", + "remove_shopping_cart": { + "name": "remove_shopping_cart", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><path d=\"M15,21h-2v-2h2V21z M13,14h-2v5h2V14z M21,12h-2v4h2V12z M19,10h-2v2h2V10z M7,12H5v2h2V12z M5,10H3v2h2V10z M12,5h2V3h-2V5 z M4.5,4.5v3h3v-3H4.5z M9,9H3V3h6V9z M4.5,16.5v3h3v-3H4.5z M9,21H3v-6h6V21z M16.5,4.5v3h3v-3H16.5z M21,9h-6V3h6V9z M19,19v-3 l-4,0v2h2v3h4v-2H19z M17,12l-4,0v2h4V12z M13,10H7v2h2v2h2v-2h2V10z M14,9V7h-2V5h-2v4L14,9z M6.75,5.25h-1.5v1.5h1.5V5.25z M6.75,17.25h-1.5v1.5h1.5V17.25z M18.75,5.25h-1.5v1.5h1.5V5.25z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1.41 1.13L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7zM20 4H7.12l2 2h9.19l-2.76 5h-1.44l1.94 1.94c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z\"></path>" } } }, - "qr_code_scanner": { - "name": "qr_code_scanner", + "calendar_today": { + "name": "calendar_today", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M22,7h-2V4h-3V2h5V7z M22,22v-5h-2v3h-3v2 H22z M2,22h5v-2H4v-3H2V22z M2,2v5h2V4h3V2H2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V10h16v11zm0-13H4V5h16v3z\"></path>" } } }, - "read_more": { - "name": "read_more", + "balance": { + "name": "balance", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"11,10 8,7 8,9.5 3,9.5 3,10.5 8,10.5 8,13\"></polygon><rect height=\"1\" width=\"6\" x=\"11\" y=\"7\"></rect><rect height=\"1\" width=\"6\" x=\"11\" y=\"12\"></rect><rect height=\"1\" width=\"4\" x=\"13\" y=\"9.5\"></rect></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10.75,6.37C11.39,6.15,11.9,5.64,12.12,5H15l-2.5,5.75c0,1.24,1.23,2.25,2.75,2.25c1.52,0,2.75-1.01,2.75-2.25L15.5,5H17 V3.5h-4.88C11.81,2.63,10.98,2,10,2S8.19,2.63,7.88,3.5H3V5h1.5L2,10.75C2,11.99,3.23,13,4.75,13s2.75-1.01,2.75-2.25L5,5h2.88 C8.1,5.64,8.61,6.15,9.25,6.37v9.13H2V17h16v-1.5h-7.25V6.37z M16.91,10.75h-3.32l1.66-3.82L16.91,10.75z M6.41,10.75H3.09 l1.66-3.82L6.41,10.75z M10,5C9.59,5,9.25,4.66,9.25,4.25C9.25,3.84,9.59,3.5,10,3.5s0.75,0.34,0.75,0.75C10.75,4.66,10.41,5,10,5z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"9\" x=\"13\" y=\"7\"></rect><rect height=\"2\" width=\"9\" x=\"13\" y=\"15\"></rect><rect height=\"2\" width=\"6\" x=\"16\" y=\"11\"></rect><polygon points=\"13,12 8,7 8,11 2,11 2,13 8,13 8,17\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13,7.83c0.85-0.3,1.53-0.98,1.83-1.83H18l-3,7c0,1.66,1.57,3,3.5,3s3.5-1.34,3.5-3l-3-7h2V4h-6.17 C14.42,2.83,13.31,2,12,2S9.58,2.83,9.17,4L3,4v2h2l-3,7c0,1.66,1.57,3,3.5,3S9,14.66,9,13L6,6h3.17c0.3,0.85,0.98,1.53,1.83,1.83 V19H2v2h20v-2h-9V7.83z M20.37,13h-3.74l1.87-4.36L20.37,13z M7.37,13H3.63L5.5,8.64L7.37,13z M12,6c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,5.55,12.55,6,12,6z\"></path></g>" } } }, - "ring_volume": { - "name": "ring_volume", + "compare_arrows": { + "name": "compare_arrows", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23.71 16.67C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9l-1.07 1.07zm.69-12.23l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 2h2v5h-2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z\"></path>" } } }, - "rss_feed": { - "name": "rss_feed", + "assessment": { + "name": "assessment", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"6.18\" cy=\"17.82\" r=\"2.18\"></circle><path d=\"M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z\"></path>" } } }, - "rtt": { - "name": "rtt", + "sensors_off": { + "name": "sensors_off", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M6.71,8.84C6.58,9.2,6.5,9.59,6.5,10c0,0.96,0.39,1.84,1.03,2.47l-1.06,1.06C5.56,12.63,5,11.38,5,10 c0-0.83,0.22-1.61,0.58-2.3L4.47,6.59C3.86,7.59,3.5,8.75,3.5,10c0,1.79,0.73,3.42,1.91,4.59l-1.06,1.06C2.9,14.21,2,12.21,2,10 c0-1.67,0.51-3.21,1.38-4.5L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06L6.71,8.84z M14.59,5.41l1.06-1.06C17.1,5.79,18,7.79,18,10 c0,1.67-0.51,3.22-1.38,4.5l-1.09-1.09c0.61-0.99,0.97-2.16,0.97-3.41C16.5,8.21,15.77,6.58,14.59,5.41z M12.47,7.53l1.06-1.06 C14.44,7.37,15,8.62,15,10c0,0.83-0.2,1.62-0.57,2.31l-1.14-1.14c0.13-0.37,0.2-0.76,0.2-1.18C13.5,9.04,13.11,8.16,12.47,7.53z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M9.03,3l-1.11,7.07h2.62l0.7-4.5h2.58L11.8,18.43H9.47L9.06,21h7.27l0.4-2.57h-2.35l2-12.86h2.58l-0.71,4.5h2.65L22,3H9.03 z M8,5H4L3.69,7h4L8,5z M7.39,9h-4l-0.31,2h4L7.39,9z M8.31,17h-6L2,19h6L8.31,17z M8.93,13h-6l-0.31,2h6.01L8.93,13z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M8.14,10.96C8.05,11.29,8,11.64,8,12c0,1.1,0.45,2.1,1.17,2.83l-1.42,1.42C6.67,15.16,6,13.66,6,12 c0-0.93,0.21-1.8,0.58-2.59L5.11,7.94C4.4,9.13,4,10.52,4,12c0,2.21,0.9,4.21,2.35,5.65l-1.42,1.42C3.12,17.26,2,14.76,2,12 c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L8.14,10.96z M17.42,14.59C17.79,13.8,18,12.93,18,12 c0-1.66-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12c0,0.36-0.05,0.71-0.14,1.04L17.42,14.59z M20,12 c0,1.48-0.4,2.87-1.11,4.06l1.45,1.45C21.39,15.93,22,14.04,22,12c0-2.76-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z\"></path>" } } }, - "screen_share": { - "name": "screen_share", - "keywords": [ - "communication" + "settings_input_composite": { + "name": "settings_input_composite", + "keywords": [ + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm9-6.87c-3.89.54-5.44 3.2-6 5.87 1.39-1.87 3.22-2.72 6-2.72v2.19l4-3.74L13 7v2.13z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z\"></path>" } } }, - "sentiment_satisfied_alt": { - "name": "sentiment_satisfied_alt", + "filter_alt": { + "name": "filter_alt", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"15.5\" cy=\"9.5\" r=\"1.5\"></circle><circle cx=\"8.5\" cy=\"9.5\" r=\"1.5\"></circle><path d=\"M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" + "path": "<g><path d=\"M0,0h24 M24,24H0\" fill=\"none\"></path><path d=\"M7,6h10l-5.01,6.3L7,6z M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6 c0,0,3.72-4.8,5.74-7.39C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g>" } } }, - "sip": { - "name": "sip", + "aspect_ratio": { + "name": "aspect_ratio", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M4,4h16c1.1,0,2,0.9,2,2v12c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6C2,4.9,2.9,4,4,4z M4,6v12h16V6H4z M11,9h2v6h-2V9z M14,9 h4c0.55,0,1,0.45,1,1v2c0,0.55-0.45,1-1,1h-2.5v2H14V9z M17.5,10.5h-2v1h2V10.5z M6.5,11.25H9c0.55,0,1,0.45,1,1V14 c0,0.55-0.45,1-1,1H5v-1.5h3.5v-0.75H6c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h4v1.5H6.5V11.25z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\"></path>" } } }, - "speaker_phone": { - "name": "speaker_phone", + "shopping_cart_checkout": { + "name": "shopping_cart_checkout", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M7,16.5C7,17.33,6.33,18,5.5,18S4,17.33,4,16.5S4.67,15,5.5,15S7,15.67,7,16.5z M14.5,15c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S15.33,15,14.5,15z M6.6,11h6.67c0.6,0,1.14-0.36,1.38-0.91L17,4.59L15.62,4l-2.35,5.5H6.99 L3.77,2H1v1.5h1.79l2.73,6.37l-1.08,1.88c-0.58,1,0.14,2.25,1.3,2.25H16v-1.5H5.73L6.6,11z M8.94,3.06l1.19,1.19H7v1.5h3.13 L8.94,6.94L10,8l3-3l-3-3L8.94,3.06z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18z M17,18c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2 S18.1,18,17,18z M8.1,13h7.45c0.75,0,1.41-0.41,1.75-1.03L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44 C4.52,15.37,5.48,17,7,17h12v-2H7L8.1,13z M12,2l4,4l-4,4l-1.41-1.41L12.17,7L8,7l0-2l4.17,0l-1.59-1.59L12,2z\"></path></g>" } } }, - "stay_current_landscape": { - "name": "stay_current_landscape", + "line_style": { + "name": "line_style", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z\"></path>" } } }, - "stay_current_portrait": { - "name": "stay_current_portrait", + "view_carousel": { + "name": "view_carousel", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M2,6.5h3v7H2V6.5z M15,6.5v7h3v-7H15z M6,5h8v10H6V5z M7.5,13.5h5v-7h-5V13.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2,7h4v10H2V7z M7,19h10V5H7V19z M9,7h6v10H9V7z M18,7h4v10h-4V7z\"></path>" } } }, - "stay_primary_landscape": { - "name": "stay_primary_landscape", + "swipe_left_alt": { + "name": "swipe_left_alt", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M8.07,10.75C8.42,12.6,10.05,14,12,14c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-1.95,0-3.58,1.4-3.93,3.25l-3.2,0l1.19-1.19 L5,7l-3,3l3,3l1.06-1.06l-1.19-1.19L8.07,10.75z M12,12.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5 C14.5,11.38,13.38,12.5,12,12.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M10.1,13c0.46,2.28,2.48,4,4.9,4c2.76,0,5-2.24,5-5s-2.24-5-5-5c-2.42,0-4.44,1.72-4.9,4H5.83l1.59-1.59L6,8l-4,4l4,4 l1.41-1.41L5.83,13H10.1z M15,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S16.66,15,15,15z\"></path></g>" } } }, - "stay_primary_portrait": { - "name": "stay_primary_portrait", + "label_off": { + "name": "label_off", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 7l3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zM14.97 17H5V7.03L14.97 17z\"></path>" } } }, - "stop_screen_share": { - "name": "stop_screen_share", + "html": { + "name": "html", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M4,8h1v4H4v-1.5H3V12H2V8h1v1.5h1V8z M6,9h1v3h1V9h1V8H6V9z M18.5,11H17V8h-1v4l2.5,0V11z M14.5,8h-4 C10.22,8,10,8.22,10,8.5V12h1V9h1v2h1V9h1v3h1V8.5C15,8.22,14.78,8,14.5,8z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21.79 18l2 2H24v-2h-2.21zM1.11 2.98l1.55 1.56c-.41.37-.66.89-.66 1.48V16c0 1.1.9 2 2.01 2H0v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zM4 6.02h.13l4.95 4.93C7.94 12.07 7.31 13.52 7 15c.96-1.29 2.13-2.08 3.67-2.46l3.46 3.48H4v-10zm16 0v10.19l1.3 1.3c.42-.37.7-.89.7-1.49v-10c0-1.11-.9-2-2-2H7.8l2 2H20zm-7.07 3.13l2.79 2.78 1.28-1.2L13 7v2.13l-.07.02z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M3.5,9H5v6H3.5v-2.5h-2V15H0V9h1.5v2h2V9z M17.5,9H13c-0.55,0-1,0.45-1,1v5h1.5v-4.5h1V14H16v-3.51h1V15h1.5v-5 C18.5,9.45,18.05,9,17.5,9z M11,9H6v1.5h1.75V15h1.5v-4.5H11V9z M24,15v-1.5h-2.5V9H20v6H24z\"></path></g>" } } }, - "swap_calls": { - "name": "swap_calls", + "work": { + "name": "work", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 4l-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z\"></path>" } } }, - "textsms": { - "name": "textsms", + "help": { + "name": "help", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z\"></path>" } } }, - "unsubscribe": { - "name": "unsubscribe", + "pageview": { + "name": "pageview", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.99 14.04V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10.05c.28 1.92 2.1 3.35 4.18 2.93 1.34-.27 2.43-1.37 2.7-2.71.25-1.24-.16-2.39-.94-3.18zm-2-9.04L12 8.5 5 5h13.99zm-3.64 10H5V7l7 3.5L19 7v6.05c-.16-.02-.33-.05-.5-.05-1.39 0-2.59.82-3.15 2zm5.15 2h-4v-1h4v1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.49 16c.88 0 1.7-.26 2.39-.7l2.44 2.44 1.42-1.42-2.44-2.43c.44-.7.7-1.51.7-2.39C16 9.01 13.99 7 11.5 7S7 9.01 7 11.5 9.01 16 11.49 16zm.01-7c1.38 0 2.5 1.12 2.5 2.5S12.88 14 11.5 14 9 12.88 9 11.5 10.12 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z\"></path>" } } }, - "voicemail": { - "name": "voicemail", + "minimize": { + "name": "minimize", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 19h12v2H6v-2z\"></path>" } } }, - "vpn_key": { - "name": "vpn_key", + "assignment_late": { + "name": "assignment_late", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 19h-6v-4h-2.68c-1.14 2.42-3.6 4-6.32 4-3.86 0-7-3.14-7-7s3.14-7 7-7c2.72 0 5.17 1.58 6.32 4H24v6h-2v4zm-4-2h2v-4h2v-2H11.94l-.23-.67C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 15h2v2h-2zm0-8h2v6h-2zm8-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\"></path>" } } }, - "wifi_calling": { - "name": "wifi_calling", + "bookmark_add": { + "name": "bookmark_add", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16.67,5.3C16.53,5.19,15.11,4,13,4c-2.12,0-3.53,1.19-3.67,1.3L13,10L16.67,5.3z M13,5c0.91,0,1.67,0.27,2.21,0.54 L13,8.37l-2.21-2.83C11.33,5.27,12.09,5,13,5z\"></path><path d=\"M14.33,12.33c-0.83,0-1.63-0.13-2.38-0.38c-0.07-0.02-0.14-0.03-0.21-0.03c-0.17,0-0.34,0.06-0.47,0.19l-1.47,1.47 c-1.89-0.96-3.43-2.5-4.39-4.39l1.47-1.47c0.19-0.18,0.24-0.44,0.17-0.67C6.8,6.3,6.67,5.5,6.67,4.67C6.67,4.3,6.37,4,6,4H3.67 C3.3,4,3,4.3,3,4.67C3,10.93,8.07,16,14.33,16C14.7,16,15,15.7,15,15.33V13C15,12.63,14.7,12.33,14.33,12.33z M4.01,5h1.67 C5.7,5.74,5.82,6.46,6.03,7.15L4.72,8.47C4.3,7.39,4.04,6.22,4.01,5z M14,14.99c-1.22-0.04-2.39-0.29-3.47-0.72l1.31-1.31 c0.7,0.21,1.43,0.33,2.16,0.36V14.99z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13.5,9v5.78l-3.5-1.4l-3.5,1.4V4.5H11V3H6.5C5.67,3,5,3.67,5,4.5V17l5-2l5,2V9H13.5z M15.75,4.25v-1.5h-1.5v1.5h-1.5v1.5 h1.5v1.5h1.5v-1.5h1.5v-1.5H15.75z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.1-0.04-0.21-0.05-0.31-0.05c-0.26,0-0.51,0.1-0.71,0.29l-2.2,2.2 c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4 C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z M5.03,5h1.5 C6.6,5.89,6.75,6.76,6.99,7.59l-1.2,1.2C5.38,7.59,5.12,6.32,5.03,5z M19,18.97c-1.32-0.09-2.59-0.35-3.8-0.75l1.19-1.19 c0.85,0.24,1.72,0.39,2.6,0.45V18.97z\"></path></g><g><path d=\"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z\"></path></g></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,11v6.97l-5-2.14l-5,2.14V5h6V3H7C5.9,3,5,3.9,5,5v16l7-3l7,3V11H17z M21,7h-2v2h-2V7h-2V5h2V3h2v2h2V7z\"></path>" } } }, - "add": { - "name": "add", + "description": { + "name": "description", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z\"></path>" } } }, - "add_box": { - "name": "add_box", + "face": { + "name": "face", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z\"></path>" } } }, - "add_circle": { - "name": "add_circle", + "open_in_new": { + "name": "open_in_new", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z\"></path>" } } }, - "add_circle_outline": { - "name": "add_circle_outline", + "account_circle": { + "name": "account_circle", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33C4.62 15.49 4 13.82 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z\"></path>" } } }, - "add_link": { - "name": "add_link", + "text_rotation_down": { + "name": "text_rotation_down", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M8,11h8v2H8V11z M20.1,12H22c0-2.76-2.24-5-5-5h-4v1.9h4C18.71,8.9,20.1,10.29,20.1,12z M3.9,12c0-1.71,1.39-3.1,3.1-3.1h4 V7H7c-2.76,0-5,2.24-5,5s2.24,5,5,5h4v-1.9H7C5.29,15.1,3.9,13.71,3.9,12z M19,12h-2v3h-3v2h3v3h2v-3h3v-2h-3V12z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 20l3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z\"></path>" } } }, - "amp_stories": { - "name": "amp_stories", + "youtube_searched_for": { + "name": "youtube_searched_for", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M6,15h8V4H6V15z M7,5h6v9H7V5z\"></path><rect height=\"9\" width=\"1\" x=\"3\" y=\"5\"></rect><rect height=\"9\" width=\"1\" x=\"16\" y=\"5\"></rect></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M7,19h10V4H7V19z M9,6h6v11H9V6z\"></path><rect height=\"11\" width=\"2\" x=\"3\" y=\"6\"></rect><rect height=\"11\" width=\"2\" x=\"19\" y=\"6\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z\"></path>" } } }, - "archive": { - "name": "archive", + "settings_backup_restore": { + "name": "settings_backup_restore", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.81.97H5.44l.8-.97zM5 19V8h14v11H5zm8.45-9h-2.9v3H8l4 4 4-4h-2.55z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z\"></path>" } } }, - "attribution": { - "name": "attribution", + "settings_phone": { + "name": "settings_phone", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 8.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path><circle cx=\"12\" cy=\"6.5\" r=\"1.5\"></circle>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 9h2v2h-2zm4 0h2v2h-2zm5 6.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM19 9h2v2h-2z\"></path>" } } }, - "backspace": { - "name": "backspace", + "https": { + "name": "https", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\"></path>" } } }, - "ballot": { - "name": "ballot", + "bookmark_added": { + "name": "bookmark_added", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM11 6H6v5h5V6zm-1 4H7V7h3v3zm1 3H6v5h5v-5zm-1 4H7v-3h3v3z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,11v6.97l-5-2.14l-5,2.14V5h6V3H7C5.9,3,5,3.9,5,5v16l7-3l7,3V11H17z M17.83,9L15,6.17l1.41-1.41l1.41,1.41l3.54-3.54 l1.41,1.41L17.83,9z\"></path>" } } }, - "biotech": { - "name": "biotech", + "settings_input_hdmi": { + "name": "settings_input_hdmi", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M6,15c-0.55,0-1,0.45-1,1h10c0-0.55-0.45-1-1-1h-4v-2h3c0.55,0,1-0.45,1-1H8.47v0C7.11,11.98,6,10.87,6,9.5 c0-0.93,0.51-1.73,1.26-2.16C7.53,7.74,7.98,8,8.5,8c0.24,0,0.47-0.06,0.67-0.16l0.59,1.62l0.94-0.34l0.32,0.88l0.94-0.34 l-0.32-0.88l0.94-0.34l-1.84-5.06L9.8,3.71L9.47,2.83L8.53,3.17l0.32,0.88L7.92,4.39l0.24,0.65c-0.61,0.15-1.07,0.66-1.14,1.3 C5.83,6.9,5,8.1,5,9.5c0,1.76,1.31,3.2,3,3.45V15H6z M10.14,4.65l1.16,3.18l-0.94,0.34L9.2,4.99L10.14,4.65z M8.5,6 C8.78,6,9,6.22,9,6.5S8.78,7,8.5,7S8,6.78,8,6.5S8.22,6,8.5,6z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.47-2.57 c0.41,0.59,1.06,1,1.83,1.06c0.7,0.06,1.36-0.19,1.85-0.62l0.59,1.61l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94l0.94-0.34 L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48,8.37,6.27,8.08,7.38C6.27,8.14,5,9.92,5,12 c0,2.76,2.24,5,5,5v2H7z M12.86,4.52l1.71,4.7l-0.94,0.34l-1.71-4.7L12.86,4.52z M10.5,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1C9.5,7.45,9.95,7,10.5,7z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2.01V5h-1v2H11V5h-1v2H8V4zm9 8.53l-3 6V20h-4v-1.47l-3-6V9h10v3.53z\"></path>" } } }, - "block": { - "name": "block", + "event_repeat": { + "name": "event_repeat", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M17,10.5v-5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11C3,17.32,3.67,18,4.5,18h6v-1.5h-6V9 h11v1.5H17z M15.5,7.5h-11v-2h11V7.5z M12,12h1l0,1.35c0.73-0.83,1.81-1.35,3-1.35c2.21,0,4,1.79,4,4c0,2.21-1.79,4-4,4 c-2.04,0-3.72-1.53-3.97-3.5l1.01,0C13.28,17.92,14.51,19,16,19c1.66,0,3-1.34,3-3s-1.34-3-3-3c-0.89,0-1.69,0.39-2.24,1L15,14v1 h-3V12z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,12V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.9,4,3,4.9,3,6v14c0,1.1,0.9,2,2,2h7v-2H5V10h14v2H21z M19,8H5V6h14V8z M15.64,20c0.43,1.45,1.77,2.5,3.36,2.5c1.93,0,3.5-1.57,3.5-3.5s-1.57-3.5-3.5-3.5c-0.95,0-1.82,0.38-2.45,1l1.45,0V18h-4v-4h1.5 l0,1.43C16.4,14.55,17.64,14,19,14c2.76,0,5,2.24,5,5s-2.24,5-5,5c-2.42,0-4.44-1.72-4.9-4L15.64,20z\"></path></g>" } } }, - "bolt": { - "name": "bolt", + "trending_flat": { + "name": "trending_flat", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M11,21h-1l1-7H7.5c-0.88,0-0.33-0.75-0.31-0.78C8.48,10.94,10.42,7.54,13.01,3h1l-1,7h3.51c0.4,0,0.62,0.19,0.4,0.66 C12.97,17.55,11,21,11,21z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 12l-4-4v3H3v2h15v3l4-4z\"></path>" } } }, - "calculate": { - "name": "calculate", + "build": { + "name": "build", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><g><rect height=\"1\" width=\"3\" x=\"11\" y=\"12.25\"></rect></g><g><rect height=\"1\" width=\"3\" x=\"11\" y=\"10.75\"></rect></g></g><g><rect height=\"1\" width=\"3\" x=\"6\" y=\"7.27\"></rect></g><g><path d=\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V5h10V15z\"></path></g><g><polygon points=\"7.5,14 8.5,14 8.5,12.5 10,12.5 10,11.5 8.5,11.5 8.5,10 7.5,10 7.5,11.5 6,11.5 6,12.5 7.5,12.5\"></polygon></g><g><polygon points=\"11.44,9.54 12.5,8.47 13.56,9.54 14.27,8.83 13.21,7.77 14.27,6.71 13.56,6 12.5,7.06 11.44,6 10.73,6.71 11.79,7.77 10.73,8.83\"></polygon></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><rect height=\"1.5\" width=\"5\" x=\"6.25\" y=\"7.72\"></rect><rect height=\"1.5\" width=\"5\" x=\"13\" y=\"15.75\"></rect><rect height=\"1.5\" width=\"5\" x=\"13\" y=\"13.25\"></rect><polygon points=\"8,18 9.5,18 9.5,16 11.5,16 11.5,14.5 9.5,14.5 9.5,12.5 8,12.5 8,14.5 6,14.5 6,16 8,16\"></polygon><polygon points=\"14.09,10.95 15.5,9.54 16.91,10.95 17.97,9.89 16.56,8.47 17.97,7.06 16.91,6 15.5,7.41 14.09,6 13.03,7.06 14.44,8.47 13.03,9.89\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22.61 18.99l-9.08-9.08c.93-2.34.45-5.1-1.44-7C9.79.61 6.21.4 3.66 2.26L7.5 6.11 6.08 7.52 2.25 3.69C.39 6.23.6 9.82 2.9 12.11c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.4-.38.4-1.01 0-1.41zm-3 1.6l-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25C3.37 9.76 2.93 8.5 3 7.26l3.09 3.09 4.24-4.24-3.09-3.09c1.24-.07 2.49.37 3.44 1.31 1.08 1.08 1.49 2.57 1.24 3.96-.12.71-.42 1.37-.88 1.96l9.45 9.45-.88.89z\"></path>" } } }, - "change_circle": { - "name": "change_circle", + "preview": { + "name": "preview", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z M12,13.5l-2.12,2.12l-0.71-0.71L10.09,14c-0.03,0-0.06,0-0.09,0c-1.07,0-2.07-0.42-2.83-1.17 C6.42,12.07,6,11.07,6,10c0-0.7,0.18-1.38,0.52-1.98l0.74,0.74C7.09,9.15,7,9.57,7,10c0,0.8,0.31,1.55,0.88,2.12 c0.58,0.58,1.38,0.86,2.18,0.85l-0.88-0.88l0.71-0.71L12,13.5z M14,10c0,0.7-0.18,1.38-0.52,1.98l-0.74-0.74 C12.91,10.85,13,10.43,13,10c0-0.8-0.31-1.55-0.88-2.12C11.55,7.31,10.8,7,10,7C9.97,7,9.94,7,9.92,7l0.91,0.91l-0.71,0.71L8,6.5 l2.12-2.12l0.71,0.71L9.87,6.04c1.08-0.03,2.17,0.35,2.95,1.13C13.58,7.93,14,8.93,14,10z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M16.17,14.76l-1.1-1.1c0.71-1.33,0.53-3.01-0.59-4.13C13.79,8.84,12.9,8.5,12,8.5c-0.03,0-0.06,0.01-0.09,0.01 L13,9.6l-1.06,1.06L9.11,7.83L11.94,5L13,6.06l-0.96,0.96c1.27,0.01,2.53,0.48,3.5,1.44C17.24,10.17,17.45,12.82,16.17,14.76z M14.89,16.17L12.06,19L11,17.94l0.95-0.95c-1.26-0.01-2.52-0.5-3.48-1.46c-1.71-1.71-1.92-4.35-0.64-6.29l1.1,1.1 c-0.71,1.33-0.53,3.01,0.59,4.13c0.7,0.7,1.63,1.04,2.56,1.01L11,14.4l1.06-1.06L14.89,16.17z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M12,10.5 c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13C8.52,11.46,10.16,10.5,12,10.5 M12,9 c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z\"></path></g>" } } }, - "clear": { - "name": "clear", + "shopping_bag": { + "name": "shopping_bag", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,6h-2c0-2.21-1.79-4-4-4S8,3.79,8,6H6C4.9,6,4,6.9,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.9,19.1,6,18,6z M12,4c1.1,0,2,0.9,2,2h-4C10,4.9,10.9,4,12,4z M18,20H6V8h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8h4v2c0,0.55,0.45,1,1,1s1-0.45,1-1V8 h2V20z\"></path></g>" } } }, - "content_copy": { - "name": "content_copy", + "anchor": { + "name": "anchor", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z\"></path></g>" } } }, - "content_cut": { - "name": "content_cut", + "explore_off": { + "name": "explore_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4zm2.91 8.08L17.5 6.5l-5.58 2.59 2.99 2.99zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm3.02 3.01l3.98 3.98-2.6 5.58 5.58-2.59 3.98 3.98c-1.2.7-2.58 1.11-4.06 1.11-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06z\"></path>" } } }, - "content_paste": { - "name": "content_paste", + "all_out": { + "name": "all_out", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\"></path>" } } }, - "content_paste_off": { - "name": "content_paste_off", + "accessibility": { + "name": "accessibility", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V15.5C3,16.33,3.67,17,4.5,17h10.38l1.13,1.13L17.07,17.07z M4.5,15.5V6.62 l8.88,8.88H4.5z M14,7V4.5h1.5v8.88l1.5,1.5V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5C9.07,1.5,8.29,2.14,8.07,3 H5.12l4,4H14z M10,3c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75C9.25,3.34,9.59,3,10,3z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61L21.19,21.19z M5,19V7.83L16.17,19H5z M17,8V5 h2v11.17l2,2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5.83l5,5H17z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S11.45,3,12,3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z\"></path>" } } }, - "copy_all": { - "name": "copy_all", + "assignment_turned_in": { + "name": "assignment_turned_in", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.5,2h-8C6.67,2,6,2.67,6,3.5v10C6,14.33,6.67,15,7.5,15h8c0.83,0,1.5-0.67,1.5-1.5v-10C17,2.67,16.33,2,15.5,2z M15.5,13.5h-8v-10h8V13.5z M3,12v-1.5h1.5V12H3z M3,15v-1.5h1.5V15H3z M9,16.5h1.5V18H9V16.5z M3,7.5h1.5V9H3V7.5z M7.5,18H6v-1.5 h1.5V18z M4.5,18C3.67,18,3,17.33,3,16.5h1.5V18z M4.5,6H3c0-0.83,0.67-1.5,1.5-1.5V6z M13.49,16.5c0,0.83-0.67,1.5-1.5,1.5h0v-1.5 L13.49,16.5L13.49,16.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,2H9C7.9,2,7,2.9,7,4v12c0,1.1,0.9,2,2,2h9c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,16H9V4h9V16z M3,15v-2h2v2H3z M3,9.5h2v2H3V9.5z M10,20h2v2h-2V20z M3,18.5v-2h2v2H3z M5,22c-1.1,0-2-0.9-2-2h2V22z M8.5,22h-2v-2h2V22z M13.5,22L13.5,22l0-2h2 v0C15.5,21.1,14.6,22,13.5,22z M5,6L5,6l0,2H3v0C3,6.9,3.9,6,5,6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 9l-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\"></path>" } } }, - "create": { - "name": "create", + "dashboard": { + "name": "dashboard", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v2h-4V5h4M9 5v6H5V5h4m10 8v6h-4v-6h4M9 17v2H5v-2h4M21 3h-8v6h8V3zM11 3H3v10h8V3zm10 8h-8v10h8V11zm-10 4H3v6h8v-6z\"></path>" } } }, - "delete_sweep": { - "name": "delete_sweep", + "system_update_alt": { + "name": "system_update_alt", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zm2-8h6v8H5v-8zm5-6H6L5 5H2v2h12V5h-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 16l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 13l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"></path>" } } }, - "drafts": { - "name": "drafts", + "pinch": { + "name": "pinch", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M18.39,11.36L15.5,10h-1V7c0-1.1-0.9-2-2-2s-2,0.9-2,2v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L6.5,14l4.56,4.56 c0.28,0.28,0.66,0.44,1.06,0.44h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C19.6,12.58,19.16,11.74,18.39,11.36z M17.38,17.5h-5.26 L8.62,14l0.34-0.34L12,14.42V7c0-0.28,0.22-0.5,0.5-0.5S13,6.73,13,7v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L17.38,17.5z M5,1v1h2.29L2,7.3V5H1v4h4V8H2.71L8,2.71V5h1V1H5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zm-2 0v.01L12 13 4 8l8-4.68L19.99 8zM4 18v-7.66l8 5.02 7.99-4.99L20 18H4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6,2.5V1h5v5H9.5V3.56L3.56,9.5H6V11H1V6h1.5v2.44L8.44,2.5H6z M21.89,13.77l-3.8-1.67C17.96,12.04,17.81,12,17.65,12H17 V7.5C17,6.12,15.88,5,14.5,5S12,6.12,12,7.5v8.15l-1.87-0.4c-0.19-0.03-1.02-0.15-1.73,0.56L7,17.22l5.12,5.19 C12.49,22.79,13,23,13.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67l0.92-5.44C23.12,15.03,22.68,14.17,21.89,13.77z M20.08,21h-6.55 l-3.7-3.78L14,18.11V7.5C14,7.22,14.22,7,14.5,7S15,7.22,15,7.5v6.18h1.76L21,15.56L20.08,21z\"></path></g>" } } }, - "dynamic_feed": { - "name": "dynamic_feed", + "help_outline": { + "name": "help_outline", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect></g><g><g></rect><g><g><path d=\"M4,8H3v7c0,0.55,0.45,1,1,1h9v-1H4V8z\"></path></g><g><path d=\"M6,6H5v7c0,0.55,0.45,1,1,1h9v-1H6V6z\"></path></g><g><path d=\"M16,4H8C7.45,4,7,4.45,7,5v6c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z M16,11H8V7h8V11z\"></path></g></g></g><g display=\"none\"><g display=\"inline\"></path><path d=\"M4,15V8H3v7c0,0.55,0.45,1,1,1h9v-1H4z\" display=\"inline\"></path><path d=\"M6,13V6H5v7c0,0.55,0.45,1,1,1h9v-1H6z\" display=\"inline\"></path><g display=\"inline\"><path d=\"M16,5v6H8V5H16 M16,4H8C7.45,4,7,4.45,7,5v6c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4L16,4z\"></path></g><g display=\"inline\"><rect height=\"2\" width=\"8\" x=\"8\" y=\"5\"></rect></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z\"></path><path d=\"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z\"></path><path d=\"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z\"></path></g></g><g display=\"none\"><g display=\"inline\"></path><g display=\"inline\"><path d=\"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z\"></path><path d=\"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z\"></path><path d=\"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z\"></path>" } } }, - "file_copy": { - "name": "file_copy", + "text_rotation_none": { + "name": "text_rotation_none", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 18l-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98L13.87 10h-3.74L12 4.98z\"></path>" } } }, - "filter_list": { - "name": "filter_list", + "account_balance_wallet": { + "name": "account_balance_wallet", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.37-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z\"></path><circle cx=\"16\" cy=\"12\" r=\"1.5\"></circle>" } } }, - "flag": { - "name": "flag", + "markunread_mailbox": { + "name": "markunread_mailbox", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.36 6l.4 2H18v6h-3.36l-.4-2H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z\"></path>" } } }, - "font_download": { - "name": "font_download", + "spellcheck": { + "name": "spellcheck", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.17 15.5h5.64l1.14 3h2.09l-5.11-13h-1.86l-5.11 13h2.09l1.12-3zM12 7.98l2.07 5.52H9.93L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z\"></path>" } } }, - "font_download_off": { - "name": "font_download_off", + "fingerprint": { + "name": "fingerprint", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.7,7.58L8.56,6.44L9.1,5h1.79l2.27,6.04l-2.55-2.55l-0.57-1.63H9.95L9.7,7.58z M16.72,18.84L15.88,18H3.5 C2.67,18,2,17.33,2,16.5V4.12L1.16,3.28l1.06-1.06l15.56,15.56L16.72,18.84z M14.38,16.5l-4.06-4.06H7.99L7.08,15H5.35L7.4,9.52 l-3.9-3.9V16.5H14.38z M16.5,3.5v10.88l1.5,1.5V3.5C18,2.67,17.33,2,16.5,2H4.12l1.5,1.5H16.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M4.83,2H20c1.1,0,2,0.9,2,2v15.17l-2-2V4H6.83L4.83,2z M10.92,6l-0.57,1.52l1.36,1.36l0.23-0.66h0.1l0.54,1.52l3.04,3.04 L13.07,6H10.92z M20.49,23.31L19.17,22H4c-1.1,0-2-0.9-2-2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M17.17,20l-5.07-5.07 H9.58L8.49,18H6.41l2.39-6.37L4,6.83V20H17.17z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z\"></path>" } } }, - "forward": { - "name": "forward", + "open_in_browser": { + "name": "open_in_browser", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 8.83L17.17 12 14 15.17V14H6v-4h8V8.83M12 4v4H4v8h8v4l8-8-8-8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6l-4 4h3v6h2v-6h3l-4-4z\"></path>" } } }, - "gesture": { - "name": "gesture", + "ads_click": { + "name": "ads_click", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.09,18.5l-3.47-3.47L12.5,18L10,10l8,2.5l-2.97,1.11l3.47,3.47L17.09,18.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5 s2.92,6.5,6.5,6.5c0.15,0,0.3-0.01,0.45-0.02l0.46,1.46C10.61,17.98,10.31,18,10,18c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0 c4.42,0,8,3.58,8,8c0,0.31-0.02,0.61-0.05,0.91l-1.46-0.46c0.01-0.15,0.02-0.3,0.02-0.45C16.5,6.42,13.58,3.5,10,3.5 M10,6.5 c-1.93,0-3.5,1.57-3.5,3.5c0,1.76,1.31,3.23,3.01,3.47L10,15c0,0-0.01,0-0.01,0C7.23,15,5,12.76,5,10c0-2.76,2.24-5,5-5l0,0 c2.76,0,5,2.23,5,4.99c0,0,0,0.01,0,0.01l-1.53-0.49C13.23,7.81,11.76,6.5,10,6.5\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11.71,17.99C8.53,17.84,6,15.22,6,12c0-3.31,2.69-6,6-6c3.22,0,5.84,2.53,5.99,5.71l-2.1-0.63C15.48,9.31,13.89,8,12,8 c-2.21,0-4,1.79-4,4c0,1.89,1.31,3.48,3.08,3.89L11.71,17.99z M22,12c0,0.3-0.01,0.6-0.04,0.9l-1.97-0.59C20,12.21,20,12.1,20,12 c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8c0.1,0,0.21,0,0.31-0.01l0.59,1.97C12.6,21.99,12.3,22,12,22C6.48,22,2,17.52,2,12 C2,6.48,6.48,2,12,2S22,6.48,22,12z M18.23,16.26L22,15l-10-3l3,10l1.26-3.77l4.27,4.27l1.98-1.98L18.23,16.26z\"></path>" } } }, - "how_to_reg": { - "name": "how_to_reg", + "book_online": { + "name": "book_online", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM5 18c.2-.63 2.57-1.68 4.96-1.94l2.04-2c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-2-2H5zm15.6-5.5l-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,4H7V3h10V4z M17,21H7v-1h10V21z M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1 L17,1z M7,6h10v12H7V6z M16,11V9.14C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 l0,1.76C8,15.49,8.45,16,9,16h6c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z\"></path>" } } }, - "how_to_vote": { - "name": "how_to_vote", + "subject": { + "name": "subject", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm1 7H5v-1h14v1zm-7.66-4.98c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41L14.16 2.3c-.38-.4-1.01-.4-1.4-.01L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95zm2.12-10.61L17 7.95l-4.95 4.95-3.54-3.54 4.95-4.95z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z\"></path>" } } }, - "inbox": { - "name": "inbox", + "swipe_right": { + "name": "swipe_right", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M15.39,11.36L12.5,10h-1V7c0-1.1-0.9-2-2-2s-2,0.9-2,2v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3.5,14l4.56,4.56 C8.34,18.84,8.72,19,9.12,19h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C16.6,12.57,16.16,11.74,15.39,11.36z M14.38,17.5H9.12 L5.62,14l0.34-0.34L9,14.42V7c0-0.28,0.22-0.5,0.5-0.5S10,6.72,10,7v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L14.38,17.5z M2,6c1.03-2.89,4.22-5,8-5c2.93,0,5.51,1.27,7,3.19L17,2h1v4h-4V5l2.36,0C15.06,3.18,12.65,2,10,2C6.89,2,4.11,3.63,3.07,6L2,6z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5V5h14v9z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18.89,13.77l-3.8-1.67C14.96,12.04,14.81,12,14.65,12H14V7.5C14,6.12,12.88,5,11.5,5S9,6.12,9,7.5v8.15l-1.87-0.4 c-0.19-0.03-1.02-0.15-1.73,0.56L4,17.22l5.12,5.19C9.49,22.79,10,23,10.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67l0.92-5.44 C20.12,15.03,19.68,14.17,18.89,13.77z M17.08,21h-6.55l-3.7-3.78L11,18.11V7.5C11,7.22,11.22,7,11.5,7S12,7.22,12,7.5v6.18h1.76 L18,15.56L17.08,21z M12,2.5C7.26,2.5,4.33,5.02,3.57,7H2c0.73-2.88,4.51-6,10-6c3.22,0,6.18,1.13,8.5,3.02V2H22v5h-5V5.5h2.91 C17.79,3.64,15.03,2.5,12,2.5z\"></path></g>" } } }, - "insights": { - "name": "insights", + "swipe_down": { + "name": "swipe_down", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"12.5,8 13.29,6.28 15,5.5 13.29,4.72 12.5,3 11.74,4.72 10,5.5 11.74,6.28\"></polygon><polygon points=\"4,10 4.4,8.4 6,8 4.4,7.6 4,6 3.6,7.6 2,8 3.6,8.4\"></polygon><path d=\"M16.5,6c-1.07,0-1.84,1.12-1.35,2.14l-3.01,3.01c-0.52-0.25-0.99-0.14-1.29,0l-1.01-1.01C9.94,9.95,10,9.73,10,9.5 C10,8.67,9.33,8,8.5,8S7,8.67,7,9.5c0,0.23,0.06,0.45,0.15,0.64l-3.01,3.01C3.95,13.06,3.73,13,3.5,13C2.67,13,2,13.67,2,14.5 S2.67,16,3.5,16S5,15.33,5,14.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01c0.52,0.25,0.99,0.14,1.29,0l1.01,1.01 C10.06,12.05,10,12.27,10,12.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01 C16.89,9.35,18,8.56,18,7.5C18,6.67,17.33,6,16.5,6z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M4.4,10.51l1.54-1.54l0.71,0.71L3.83,12.5L1,9.67l0.71-0.71l1.69,1.69C3.14,9.82,3,8.93,3,8c0-2.31,0.87-4.41,2.29-6 L6,2.71C4.75,4.12,4,5.97,4,8C4,8.88,4.14,9.72,4.4,10.51z M16.79,8.07L13.6,8l-0.91,0.41l-1.22-2.74 C11.02,4.65,9.84,4.2,8.83,4.64C7.82,5.09,7.36,6.27,7.81,7.28l2.23,5.03l-1.19,0.21C8.39,12.6,7.91,12.9,7.7,13.46L6.99,15.3 L13,17.63c0.37,0.14,0.78,0.13,1.15-0.03l4.81-2.13c0.68-0.3,1.04-1.06,0.84-1.78l-1.18-4.17C18.39,8.69,17.65,8.11,16.79,8.07z M18.35,14.09l-4.81,2.13l-4.62-1.78L9.1,14l3.09-0.54L9.18,6.68c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25 l1.82,4.11l1.96-0.87l2.84,0.05c0.22,0.01,0.4,0.16,0.46,0.36L18.35,14.09z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z\"></path><polygon points=\"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93\"></polygon><polygon points=\"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20.22,10l-4.15,0.01c-0.16-0.01-0.31,0.02-0.45,0.08l-0.59,0.26L13.2,6.25c-0.56-1.26-2.04-1.83-3.3-1.27 s-1.83,2.04-1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05-0.99,0.27-1.36,1.21L8,19.19l6.78,2.67c0.49,0.19,1.05,0.18,1.53-0.04 l5.99-2.65c0.89-0.4,1.37-1.38,1.13-2.32l-1.36-5.34C21.85,10.65,21.1,10.04,20.22,10z M21.49,17.34L15.5,20l-4.92-1.96l4.18-0.88 l-4.3-9.7c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25l2.5,5.65l1.61-0.71L20.13,12L21.49,17.34z M3.8,12.18 c-0.2-0.86-0.3-1.76-0.3-2.68c0-2.84,0.99-5.45,2.63-7.5L7.2,3.07C5.82,4.85,5,7.08,5,9.5c0,0.88,0.11,1.74,0.32,2.56l1.62-1.62 L8,11.5L4.5,15L1,11.5l1.06-1.06L3.8,12.18z\"></path></g>" } } }, - "inventory": { - "name": "inventory", + "arrow_circle_up": { + "name": "arrow_circle_up", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7 c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3L10,3z M9.5,10v3h1v-3H13l-3-3l-3,3H9.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M5,5h2v3h10V5h2v5h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h6v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\"></path><polygon points=\"21,11.5 15.51,17 12.5,14 11,15.5 15.51,20 22.5,13\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z\"></path></g>" } } }, - "inventory_2": { - "name": "inventory_2", + "install_desktop": { + "name": "install_desktop", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M16.5,2h-13C2.67,2,2,2.67,2,3.5v3c0,0.65,0.42,1.2,1,1.41v8.59C3,17.33,3.67,18,4.5,18h11c0.83,0,1.5-0.67,1.5-1.5V7.91 c0.58-0.21,1-0.76,1-1.41v-3C18,2.67,17.33,2,16.5,2z M16.5,6.5h-13v-3h13V6.5z M4.5,16.5V8h11v8.5H4.5z\"></path><rect height=\"1.5\" width=\"4\" x=\"8\" y=\"10\"></rect></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16.5,13.5h-13v-9H11V3H3.5C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v2h6v-2h3.5c0.83,0,1.5-0.67,1.5-1.5V11h-1.5 V13.5z\"></path><polygon points=\"14.48,11 18,7.48 16.94,6.42 15.25,8.11 15.25,3 13.75,3 13.75,8.14 12.06,6.45 11,7.52\"></polygon></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,2H4C3,2,2,2.9,2,4v3.01C2,7.73,2.43,8.35,3,8.7V20c0,1.1,1.1,2,2,2h14c0.9,0,2-0.9,2-2V8.7c0.57-0.35,1-0.97,1-1.69V4 C22,2.9,21,2,20,2z M19,20H5V9h14V20z M20,7H4V4h16V7z\"></path><rect height=\"2\" width=\"6\" x=\"9\" y=\"12\"></rect></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,17H4V5h8V3H4C2.89,3,2,3.89,2,5v12c0,1.1,0.89,2,2,2h4v2h8v-2h4c1.1,0,2-0.9,2-2v-3h-2V17z\"></path><polygon points=\"17,14 22,9 20.59,7.59 18,10.17 18,3 16,3 16,10.17 13.41,7.59 12,9\"></polygon></g></g>" } } }, - "link": { - "name": "link", + "polymer": { + "name": "polymer", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8L19 4z\"></path>" } } }, - "link_off": { - "name": "link_off", + "code_off": { + "name": "code_off", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,10l-2.94,2.94L14,11.88L15.88,10l-3.94-3.94L13,5L18,10z M16.01,18.13l1.06-1.06L2.93,2.93L1.87,3.99l3.07,3.07L2,10 l5,5l1.06-1.06L4.12,10L6,8.12L16.01,18.13z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.39 11L16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.17,12l-4.58-4.59L16,6l6,6l-3.59,3.59L17,14.17L19.17,12z M1.39,4.22l4.19,4.19L2,12l6,6l1.41-1.41L4.83,12L7,9.83 l12.78,12.78l1.41-1.41L2.81,2.81L1.39,4.22z\"></path>" } } }, - "low_priority": { - "name": "low_priority", + "edit_calendar": { + "name": "edit_calendar", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M4.5,9h11v1H17V5.5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11C3,17.32,3.67,18,4.5,18h5v-1.5 h-5V9z M4.5,5.5h11v2h-11V5.5z M18.42,13.34l-0.65,0.65l-1.77-1.77l0.65-0.65c0.29-0.29,0.77-0.29,1.06,0l0.71,0.71 C18.72,12.58,18.72,13.05,18.42,13.34z M15.42,12.81l1.77,1.77L12.77,19H11v-1.77L15.42,12.81z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M5,10h14v2h2V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h7v-2H5V10z M5,6h14v2H5 V6z M22.84,16.28l-0.71,0.71l-2.12-2.12l0.71-0.71c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71C23.23,15.26,23.23,15.89,22.84,16.28z M19.3,15.58l2.12,2.12l-5.3,5.3H14v-2.12L19.3,15.58z\"></path>" } } }, - "mail": { - "name": "mail", + "list": { + "name": "list", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 4.99L4 6h16zm0 12H4V8l8 5 8-5v10z\"></path>" + "path": "<g fill=\"none\"><path d=\"M0 0h24v24H0V0z\"></path><path d=\"M0 0h24v24H0V0z\" opacity=\".87\"></path></g><path d=\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z\"></path>" } } }, - "markunread": { - "name": "markunread", + "euro_symbol": { + "name": "euro_symbol", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z\"></path>" } } }, - "move_to_inbox": { - "name": "move_to_inbox", + "shopping_basket": { + "name": "shopping_basket", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 9h-2.55V6h-2.9v3H8l4 4zm3-6H4.99C3.88 3 3 3.9 3 5v14c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5l-.01-9H19v9z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 9h-4.79l-4.38-6.56c-.19-.28-.51-.42-.83-.42s-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM12 4.8L14.8 9H9.2L12 4.8zM18.5 19l-12.99.01L3.31 11H20.7l-2.2 8zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" } } }, - "next_week": { - "name": "next_week", + "hourglass_empty": { + "name": "hourglass_empty", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 18.5l4-4-4-4-1 1 3 3-3 3zM20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 15H4V9h16v11z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z\"></path>" } } }, - "outlined_flag": { - "name": "outlined_flag", + "grade": { + "name": "grade", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7.13l.97 2.29.47 1.11 1.2.1 2.47.21-1.88 1.63-.91.79.27 1.18.56 2.41-2.12-1.28-1.03-.64-1.03.62-2.12 1.28.56-2.41.27-1.18-.91-.79-1.88-1.63 2.47-.21 1.2-.1.47-1.11.97-2.27M12 2L9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2z\"></path>" } } }, - "policy": { - "name": "policy", + "data_thresholding": { + "name": "data_thresholding", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M10,3L4,5v4.31c0,3.55,2.56,6.88,6,7.69c3.44-0.81,6-4.13,6-7.69V5L10,3z M15,9.31c0,1.37-0.45,2.68-1.18,3.8l-1.38-1.38 C12.79,11.24,13,10.65,13,10c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c0.65,0,1.24-0.21,1.73-0.56l1.47,1.47 c-0.86,0.97-1.95,1.71-3.2,2.06c-2.87-0.79-5-3.61-5-6.65V5.72l5-1.67l5,1.67V9.31z M10,12c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2 s2,0.9,2,2C12,11.1,11.1,12,10,12z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-1.08l1.08-1.08V15.5z M15.5,13L15.5,13L13,15.5h-1.07l2.5-2.5h-1.41l-2.5,2.5H9.46l2.5-2.5h-1.41l-2.5,2.5H6.98 l2.5-2.5H8.07l-2.5,2.5H4.5L7,13H5.59L4.5,14.09V4.5h11V13z\"></path><g><polygon points=\"10.69,10.62 14.25,7.06 13.19,6 10.69,8.5 9.19,7 5.75,10.44 6.81,11.5 9.19,9.12\"></polygon></g></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1z M19,11c0,1.85-0.51,3.65-1.38,5.21l-1.45-1.45 c1.29-1.94,1.07-4.58-0.64-6.29c-1.95-1.95-5.12-1.95-7.07,0c-1.95,1.95-1.95,5.12,0,7.07c1.71,1.71,4.35,1.92,6.29,0.64 l1.72,1.72c-1.19,1.42-2.73,2.51-4.47,3.04C7.98,19.69,5,15.52,5,11V6.3l7-3.11l7,3.11V11z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3 s3,1.34,3,3S13.66,15,12,15z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19h-1.73L19,17.27V19z M19,16 h-0.85l-3,3h-1.62l3-3h-2.12l-3,3H9.8l3-3h-2.12l-3,3H5.84l3-3H6.72L5,17.72V5h14V16z\"></path><polygon points=\"10.67,11 12.67,13 17.75,7.91 16.34,6.5 12.67,10.17 10.67,8.17 6.25,12.59 7.66,14\"></polygon></g></g>" } } }, - "push_pin": { - "name": "push_pin", + "login": { + "name": "login", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M15,10c-1.1,0-2-0.9-2-2V4h0.5C13.78,4,14,3.78,14,3.5C14,3.22,13.78,3,13.5,3h-7C6.22,3,6,3.22,6,3.5C6,3.78,6.22,4,6.5,4 H7v4c0,1.1-0.9,2-2,2v1h4.5v5.5L10,17l0.5-0.5V11H15V10z M7.23,10C7.71,9.47,8,8.77,8,8V4h4v4c0,0.77,0.29,1.47,0.77,2H7.23z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10,4v1h6v10h-6v1h6c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1H10z\"></path><polygon points=\"9.5,6.5 8.79,7.21 11.09,9.5 3,9.5 3,10.5 11.09,10.5 8.79,12.79 9.5,13.5 13,10\"></polygon></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14,4v5c0,1.12,0.37,2.16,1,3H9c0.65-0.86,1-1.9,1-3V4H14 M17,2H7C6.45,2,6,2.45,6,3c0,0.55,0.45,1,1,1c0,0,0,0,0,0l1,0v5 c0,1.66-1.34,3-3,3v2h5.97v7l1,1l1-1v-7H19v-2c0,0,0,0,0,0c-1.66,0-3-1.34-3-3V4l1,0c0,0,0,0,0,0c0.55,0,1-0.45,1-1 C18,2.45,17.55,2,17,2L17,2z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z\"></path></g>" } } }, - "redo": { - "name": "redo", + "new_label": { + "name": "new_label", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,10l-3.55,4.44C13.17,14.79,12.73,15,12.28,15H10.5v-1.5h1.78l2.8-3.5l-2.8-3.5H5.5v2H4v-2C4,5.67,4.67,5,5.5,5h6.78 c0.46,0,0.89,0.21,1.17,0.56L17,10z M9,12H7v-2H5.5v2h-2v1.5h2v2H7v-2h2V12z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,12l-4.37,6.16C16.26,18.68,15.65,19,15,19h-3l0-2h3l3.55-5L15,7H5v3H3V7c0-1.1,0.9-2,2-2h10c0.65,0,1.26,0.31,1.63,0.84 L21,12z M10,15H7v-3H5v3H2v2h3v3h2v-3h3V15z\"></path>" } } }, - "remove": { - "name": "remove", + "view_column": { + "name": "view_column", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M3,5v10h14V5H3z M7.17,13.5H4.5v-7h2.67V13.5z M11.33,13.5H8.67v-7h2.67V13.5z M15.5,13.5h-2.67v-7h2.67V13.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 13H5v-2h14v2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,5v14h18V5H3z M8.33,17H5V7h3.33V17z M13.67,17h-3.33V7h3.33V17z M19,17h-3.33V7H19V17z\"></path>" } } }, - "remove_circle": { - "name": "remove_circle", + "privacy_tip": { + "name": "privacy_tip", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,3.6l5,2.25v3.5c0,3.18-2.22,6.32-5,7.12c-2.78-0.8-5-3.94-5-7.12v-3.5L10,3.6 M10,2.5L4,5.2v4.15 c0,3.63,2.56,7.33,6,8.15c3.44-0.82,6-4.52,6-8.15V5.2L10,2.5L10,2.5z M10.5,9h-1v4h1V9z M10.5,7h-1v1h1V7z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,3.19l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12 c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z\"></path></g>" } } }, - "remove_circle_outline": { - "name": "remove_circle_outline", + "tab_unselected": { + "name": "tab_unselected", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z\"></path>" } } }, - "reply": { - "name": "reply", + "join_left": { + "name": "join_left", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\"></path><path d=\"M9.15,5.19C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 C7.23,13.08,7,10.89,7,10C7,9.11,7.23,6.92,9.15,5.19z\"></path><path d=\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69c0.42,0.38,0.77,0.77,1.04,1.18C12.38,6.14,12.92,6,13.5,6c2.21,0,4,1.79,4,4 s-1.79,4-4,4c-0.58,0-1.12-0.14-1.61-0.36c-0.27,0.4-0.62,0.8-1.04,1.18c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5 C19,6.96,16.54,4.5,13.5,4.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><ellipse cx=\"12\" cy=\"12\" rx=\"3\" ry=\"5.74\"></ellipse></g><g><path d=\"M7.5,12c0-0.97,0.23-4.16,3.03-6.5C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C7.73,16.16,7.5,12.97,7.5,12z\"></path></g><g><path d=\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c0.61,0.51,1.1,1.07,1.49,1.63C15.29,7.05,15.64,7,16,7c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-0.36,0-0.71-0.05-1.04-0.13c-0.39,0.56-0.88,1.12-1.49,1.63C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7S19.86,5,16,5z\"></path></g></g></g>" } } }, - "reply_all": { - "name": "reply_all", + "nightlight_round": { + "name": "nightlight_round", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M15.5,22c1.05,0,2.05-0.16,3-0.46c-4.06-1.27-7-5.06-7-9.54s2.94-8.27,7-9.54C17.55,2.16,16.55,2,15.5,2 c-5.52,0-10,4.48-10,10S9.98,22,15.5,22L15.5,22z\"></path></g></g>" } } }, - "report": { - "name": "report", + "change_history": { + "name": "change_history", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z\"></path><circle cx=\"12\" cy=\"16\" r=\"1\"></circle><path d=\"M11 7h2v7h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z\"></path>" } } }, - "report_gmailerrorred": { - "name": "report_gmailerrorred", + "view_headline": { + "name": "view_headline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z\"></path><circle cx=\"12\" cy=\"16\" r=\"1\"></circle><path d=\"M11 7h2v7h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z\"></path>" } } }, - "report_off": { - "name": "report_off", + "alarm_off": { + "name": "alarm_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.1 5h5.8L19 9.1v5.8l-.22.22 1.42 1.41.8-.8V8.27L15.73 3H8.27l-.8.8 1.41 1.42z\"></path><circle cx=\"12\" cy=\"16\" r=\"1\"></circle><path d=\"M13 9.33V7h-2v.33zM2.41 1.58L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM14.9 19H9.1L5 14.9V9.1l1.05-1.05 9.9 9.9L14.9 19z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1L1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z\"></path>" } } }, - "save": { - "name": "save", + "trending_up": { + "name": "trending_up", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z\"></path>" } } }, - "save_alt": { - "name": "save_alt", + "alarm_add": { + "name": "alarm_add", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z\"></path>" } } }, - "select_all": { - "name": "select_all", + "add_shopping_cart": { + "name": "add_shopping_cart", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z\"></path>" } } }, - "send": { - "name": "send", + "article": { + "name": "article", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4.01 6.03l7.51 3.22-7.52-1 .01-2.22m7.5 8.72L4 17.97v-2.22l7.51-1M2.01 3L2 10l15 2-15 2 .01 7L23 12 2.01 3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z\"></path></g><path d=\"M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z\"></path></g>" } } }, - "shield": { - "name": "shield", + "info": { + "name": "info", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" } } }, - "sort": { - "name": "sort", + "dynamic_form": { + "name": "dynamic_form", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,11H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h9V11z M4,9h7V6H4V9z M15,20H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h11V20z M4,18h9v-3H4V18z M22,9h-2l2-5h-7v7h2v9L22,9z M4.75,17.25h1.5v-1.5h-1.5V17.25z M4.75,8.25h1.5v-1.5h-1.5V8.25z\"></path></g>" } } }, - "square_foot": { - "name": "square_foot", + "paid": { + "name": "paid", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14.24,14.24l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71 l-0.35-0.35l0.71-0.71L8.14,8.14L7.44,8.85L7.08,8.5l0.71-0.71L6.11,6.11L5.4,6.82L5.05,6.46l0.71-0.71L4,4v10.5 C4,15.33,4.67,16,5.5,16H16L14.24,14.24z M6,14V8.83L11.17,14H6z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z M12.89,11.1c-1.78-0.59-2.64-0.96-2.64-1.9c0-1.02,1.11-1.39,1.81-1.39 c1.31,0,1.79,0.99,1.9,1.34l1.58-0.67c-0.15-0.44-0.82-1.91-2.66-2.23V5h-1.75v1.26c-2.6,0.56-2.62,2.85-2.62,2.96 c0,2.27,2.25,2.91,3.35,3.31c1.58,0.56,2.28,1.07,2.28,2.03c0,1.13-1.05,1.61-1.98,1.61c-1.82,0-2.34-1.87-2.4-2.09L8.1,14.75 c0.63,2.19,2.28,2.78,3.02,2.96V19h1.75v-1.24c0.52-0.09,3.02-0.59,3.02-3.22C15.9,13.15,15.29,11.93,12.89,11.1z\"></path></g>" } } }, - "stacked_bar_chart": { - "name": "stacked_bar_chart", + "edit_off": { + "name": "edit_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6,10h3v10H6V10z M6,5h3v4H6V5z M16,16h3v4h-3V16z M16,13h3v2h-3V13z M11,13h3v7h-3V13z M11,9h3v3h-3V9z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M14.06,9.02l0.92,0.92l-1.11,1.11l1.41,1.41l2.52-2.52l-3.75-3.75l-2.52,2.52l1.41,1.41L14.06,9.02z M20.71,7.04 c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34C18.17,3.09,17.92,3,17.66,3s-0.51,0.1-0.7,0.29l-1.83,1.83l3.75,3.75L20.71,7.04z M2.81,2.81L1.39,4.22l7.32,7.32L3,17.25V21h3.75l5.71-5.71l7.32,7.32l1.41-1.41L2.81,2.81z M5.92,19H5v-0.92l5.13-5.13l0.92,0.92 L5.92,19z\"></path></g></g>" } } }, - "stream": { - "name": "stream", + "history_toggle_off": { + "name": "history_toggle_off", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M7.45,4.58l-0.5-0.87C7.73,3.33,8.59,3.09,9.5,3.03v1C8.77,4.09,8.08,4.28,7.45,4.58z M15.97,9.5h1 c-0.06-0.91-0.3-1.77-0.69-2.55l-0.87,0.5C15.72,8.08,15.91,8.77,15.97,9.5z M12.55,4.58l0.5-0.87c-0.78-0.38-1.64-0.62-2.55-0.69 v1C11.23,4.09,11.92,4.28,12.55,4.58z M6.58,5.08l-0.5-0.87c-0.74,0.5-1.37,1.14-1.87,1.87l0.87,0.5C5.48,5.99,5.99,5.48,6.58,5.08 z M14.92,6.58l0.87-0.5c-0.5-0.74-1.14-1.37-1.87-1.87l-0.5,0.87C14.01,5.49,14.52,5.99,14.92,6.58z M7.45,15.42l-0.5,0.87 c0.78,0.38,1.64,0.62,2.55,0.69v-1C8.77,15.91,8.08,15.72,7.45,15.42z M4.03,10.5h-1c0.06,0.91,0.3,1.77,0.69,2.55l0.87-0.5 C4.28,11.92,4.09,11.23,4.03,10.5z M10.5,15.97v1c0.91-0.06,1.77-0.3,2.55-0.69l-0.5-0.87C11.92,15.72,11.23,15.91,10.5,15.97z M5.08,13.42l-0.87,0.5c0.5,0.74,1.14,1.37,1.87,1.87l0.5-0.87C5.99,14.52,5.48,14.01,5.08,13.42z M4.58,7.45l-0.87-0.5 C3.33,7.73,3.09,8.59,3.03,9.5h1C4.09,8.77,4.28,8.08,4.58,7.45z M15.97,10.5c-0.06,0.73-0.25,1.42-0.55,2.05l0.87,0.5 c0.38-0.78,0.62-1.64,0.69-2.55H15.97z M13.42,14.92l0.5,0.87c0.74-0.5,1.37-1.14,1.87-1.87l-0.87-0.5 C14.52,14.01,14.01,14.51,13.42,14.92z M10.5,7.05h-1v4l3.17,1.9l0.5-0.82l-2.67-1.58V7.05z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"20\" cy=\"12\" r=\"2\"></circle><circle cx=\"4\" cy=\"12\" r=\"2\"></circle><circle cx=\"12\" cy=\"20\" r=\"2\"></circle><rect height=\"2\" transform=\"matrix(0.7081 -0.7061 0.7061 0.7081 -0.1146 13.9802)\" width=\"6.22\" x=\"13.74\" y=\"6.13\"></rect><polygon points=\"8.32,9.68 8.63,10 10.05,8.59 6.03,4.55 6.02,4.55 5.71,4.23 4.29,5.64 8.31,9.69\"></polygon><polygon points=\"15.41,13.94 14,15.35 17.99,19.36 18.34,19.71 19.76,18.3 15.77,14.29\"></polygon><polygon points=\"8.59,13.95 4.56,17.96 4.24,18.29 5.65,19.7 9.68,15.68 10.01,15.36\"></polygon><circle cx=\"12\" cy=\"4\" r=\"2\"></circle></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z\"></path></g>" } } }, - "tag": { - "name": "tag", + "swipe_up_alt": { + "name": "swipe_up_alt", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M9.25,8.07C7.4,8.42,6,10.05,6,12c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4c0-1.95-1.4-3.58-3.25-3.93l0-3.2l1.19,1.19L13,5 l-3-3L7,5l1.06,1.06l1.19-1.19L9.25,8.07z M7.5,12c0-1.38,1.12-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5s-1.12,2.5-2.5,2.5 C8.62,14.5,7.5,13.38,7.5,12z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20z M14,14h-4v-4h4V14z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13,5.83l1.59,1.59L16,6l-4-4L8,6l1.41,1.41L11,5.83v4.27c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5s5-2.24,5-5 c0-2.42-1.72-4.44-4-4.9V5.83z M12,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,18,12,18z\"></path></g>" } } }, - "text_format": { - "name": "text_format", + "bookmarks": { + "name": "bookmarks", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 7v12.97l-4.21-1.81-.79-.34-.79.34L5 19.97V7h10m4-6H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z\"></path>" } } }, - "unarchive": { - "name": "unarchive", + "verified": { + "name": "verified", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M18,10l-1.77-2.03l0.25-2.69l-2.63-0.6l-1.37-2.32L10,3.43L7.53,2.36L6.15,4.68L3.53,5.28l0.25,2.69L2,10l1.77,2.03 l-0.25,2.69l2.63,0.6l1.37,2.32L10,16.56l2.47,1.07l1.37-2.32l2.63-0.6l-0.25-2.69L18,10z M15.23,12.12l0.17,1.81l-1.77,0.4 l-0.42,0.1l-0.22,0.37l-0.93,1.56l-1.66-0.72L10,15.47l-0.4,0.17l-1.66,0.72l-0.93-1.56l-0.22-0.37l-0.42-0.1l-1.77-0.4l0.17-1.82 l0.04-0.43l-0.28-0.32L3.33,10l1.2-1.38l0.28-0.32L4.77,7.87L4.6,6.06l1.77-0.4l0.42-0.09l0.22-0.37l0.93-1.56L9.6,4.35L10,4.52 l0.4-0.17l1.66-0.72l0.93,1.56l0.22,0.37l0.42,0.1l1.77,0.4l-0.17,1.81L15.19,8.3l0.28,0.32l1.2,1.37l-1.2,1.37l-0.28,0.32 L15.23,12.12z\"></path><polygon points=\"8.59,11.65 7.17,10.24 6.46,10.95 8.59,13.07 13.54,8.12 12.83,7.41\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.83 1H5.42l.82-1zM5 19V8h14v11H5zm3-5h2.55v3h2.9v-3H16l-4-4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M23,11.99l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79 l-0.34,3.7l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,11.99z M19.05,13.47l-0.56,0.65l0.08,0.85 l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99-1.67l-0.44-0.74 l-0.84-0.19l-1.9-0.43l0.18-1.96l0.08-0.85l-0.56-0.65l-1.29-1.47l1.29-1.48l0.56-0.65L5.43,9.01L5.25,7.07l1.9-0.43l0.84-0.19 l0.44-0.74l0.99-1.68l1.78,0.77L12,5.14l0.79-0.34l1.78-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85 l0.56,0.65l1.29,1.47L19.05,13.47z\"></path><polygon points=\"10.09,13.75 7.77,11.42 6.29,12.91 10.09,16.72 17.43,9.36 15.95,7.87\"></polygon></g></g>" } } }, - "undo": { - "name": "undo", + "lock_reset": { + "name": "lock_reset", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect><path d=\"M17,10c0,3.87-3.13,7-7,7c-2.22,0-4.2-1.04-5.48-2.65l1.07-1.07c1,1.35,2.6,2.22,4.41,2.22c3.03,0,5.5-2.47,5.5-5.5 S13.03,4.5,10,4.5c-3.04,0-5.56,2.49-5.49,5.62l1.18-1.18L6.75,10l-3,3l-3-3l1.06-1.06l1.2,1.2C2.93,6.11,6.18,3,10,3 C13.87,3,17,6.13,17,10z M12.25,10v2.25c0,0.41-0.34,0.75-0.75,0.75h-3c-0.41,0-0.75-0.34-0.75-0.75V10c0-0.41,0.34-0.75,0.75-0.75 V8.5C8.5,7.67,9.17,7,10,7s1.5,0.67,1.5,1.5v0.75C11.91,9.25,12.25,9.59,12.25,10z M10.75,8.5c0-0.41-0.34-0.75-0.75-0.75 S9.25,8.09,9.25,8.5v0.75h1.5V8.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,3c-4.97,0-9,4.03-9,9c0,0.06,0.01,0.12,0.01,0.19l-1.84-1.84l-1.41,1.41L5,16l4.24-4.24l-1.41-1.41l-1.82,1.82 C6.01,12.11,6,12.06,6,12c0-3.86,3.14-7,7-7s7,3.14,7,7s-3.14,7-7,7c-1.9,0-3.62-0.76-4.88-1.99L6.7,18.42 C8.32,20.01,10.55,21,13,21c4.97,0,9-4.03,9-9S17.97,3,13,3z M15,11v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3 c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C16,11.45,15.55,11,15,11z M14,11h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V11z\"></path>" } } }, - "upcoming": { - "name": "upcoming", + "settings_overscan": { + "name": "settings_overscan", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M17.6,10.81L16.19,9.4l3.56-3.55l1.41,1.41C21.05,7.29,17.6,10.81,17.6,10.81z M13,3h-2v5h2V3z M6.4,10.81L7.81,9.4 L4.26,5.84L2.84,7.26C2.95,7.29,6.4,10.81,6.4,10.81z M20,14h-3.42c-0.77,1.76-2.54,3-4.58,3s-3.81-1.24-4.58-3H4v5h16V14 M20,12 c1.1,0,2,0.9,2,2v5c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2v-5c0-1.1,0.9-2,2-2h5c0,1.66,1.34,3,3,3s3-1.34,3-3H20z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\"></path>" } } }, - "waves": { - "name": "waves", + "eject": { + "name": "eject", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6l2.93 4.4H9.07L12 8.6z\"></path>" } } }, - "weekend": { - "name": "weekend", + "trending_down": { + "name": "trending_down", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 9V7c0-1.65-1.35-3-3-3H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM5 7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H6v-2c0-.88-.39-1.67-1-2.22V7zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1v5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z\"></path>" } } }, - "where_to_vote": { - "name": "where_to_vote", + "question_answer": { + "name": "question_answer", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.82.74-.82C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8zm0 19.47C9.82 17.86 6 12.54 6 9c0-3.31 2.69-6 6-6s6 2.69 6 6c0 3.83-4.25 9.36-6 11.47zm-1.53-9.3L8.71 9.4l-1.42 1.42L10.47 14l6.01-6.01-1.41-1.42z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 4v7H5.17l-.59.59-.58.58V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z\"></path>" } } }, - "1x_mobiledata": { - "name": "1x_mobiledata", + "turned_in": { + "name": "turned_in", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M4,7h4v10H6V9H4V7z M15.83,11.72L18.66,7h-2.33l-1.66,2.77L13,7h-2.33l2.83,4.72L10.33,17h2.33l2-3.34l2,3.34H19 L15.83,11.72z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z\"></path>" } } }, - "30fps": { - "name": "30fps", + "settings_input_antenna": { + "name": "settings_input_antenna", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M2,5v3h6v2.5H3v3h5V16H2v3h6c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1V8 c0-1.66-1.34-3-3-3H2z M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4c1.66,0,3-1.34,3-3V8 C22,6.34,20.66,5,19,5z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z\"></path>" } } }, - "3g_mobiledata": { - "name": "3g_mobiledata", + "request_page": { + "name": "request_page", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M3,7v2h5v2H4v2h4v2H3v2h5c1.1,0,2-0.9,2-2v-1.5c0-0.83-0.67-1.5-1.5-1.5c0.83,0,1.5-0.67,1.5-1.5V9c0-1.1-0.9-2-2-2H3z M21,11v4c0,1.1-0.9,2-2,2h-5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h5c1.1,0,2,0.9,2,2h-7v6h5v-2h-2.5v-2H21z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M15,11h-4v1h3 c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z\"></path>" } } }, - "4g_mobiledata": { - "name": "4g_mobiledata", + "private_connectivity": { + "name": "private_connectivity", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.45,9.25C15.08,6.57,12.78,4.5,10,4.5S4.92,6.57,4.55,9.25H2v1.5h2.55C4.92,13.43,7.22,15.5,10,15.5s5.08-2.07,5.45-4.75 H18v-1.5H15.45z M10,14c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C14,12.21,12.21,14,10,14z M12,8.5h-0.5V8 c0-0.82-0.67-1.5-1.5-1.5S8.5,7.18,8.5,8v0.5H8C7.72,8.5,7.5,8.72,7.5,9v3c0,0.28,0.22,0.5,0.5,0.5h4c0.28,0,0.5-0.22,0.5-0.5V9 C12.5,8.72,12.28,8.5,12,8.5z M10,11.1c-0.33,0-0.6-0.27-0.6-0.6S9.67,9.9,10,9.9s0.6,0.27,0.6,0.6S10.33,11.1,10,11.1z M10.75,8.5 h-1.5V8c0-0.41,0.34-0.75,0.75-0.75S10.75,7.59,10.75,8V8.5z\"></path>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M9,7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7z M17,11v2h2v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5 c1.1,0,2-0.9,2-2v-4H17z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,7c2.76,0,5,2.24,5,5s-2.24,5-5,5s-5-2.24-5-5S9.24,7,12,7z M5.07,13c0.49,3.39,3.4,6,6.93,6c3.53,0,6.44-2.61,6.93-6 L22,13v-2l-3.07,0c-0.49-3.39-3.4-6-6.93-6l0,0c-3.53,0-6.44,2.61-6.93,6c0,0-3.07,0-3.07,0v2L5.07,13z M14,10.5V9.61 c0-1-0.68-1.92-1.66-2.08C11.08,7.32,10,8.29,10,9.5v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C15,10.95,14.55,10.5,14,10.5z M12,13.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75 C12.75,13.41,12.41,13.75,12,13.75z M13,10.5h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V10.5z\"></path>" } } }, - "4g_plus_mobiledata": { - "name": "4g_plus_mobiledata", + "fax": { + "name": "fax", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M18,9.5c0-1.1-0.9-2-2-2h-1.4V4H7v3.5H6.49c-0.46-0.6-1.17-1-1.99-1C3.12,6.5,2,7.62,2,9v5.5C2,15.88,3.12,17,4.5,17 c0.82,0,1.53-0.4,1.99-1H18V9.5z M8.5,5.5h4.6v2H8.5V5.5z M3.5,14.5V9c0-0.55,0.45-1,1-1s1,0.45,1,1v5.5c0,0.55-0.45,1-1,1 S3.5,15.05,3.5,14.5z M16.5,14.5H7V9h9c0.28,0,0.5,0.22,0.5,0.5V14.5z\"></path><g><circle cx=\"12.5\" cy=\"10.75\" r=\".75\"></circle></g><g><circle cx=\"12.5\" cy=\"12.75\" r=\".75\"></circle></g><g><circle cx=\"14.75\" cy=\"12.75\" r=\".75\"></circle></g><g><circle cx=\"14.75\" cy=\"10.75\" r=\".75\"></circle></g><rect height=\"3.5\" width=\"3\" x=\"8\" y=\"10\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M13,11v2h2v2h-4V9h6c0-1.1-0.9-2-2-2h-4C9.9,7,9,7.9,9,9v6c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-4H13z M24,11h-2V9h-2v2h-2 v2h2v2h2v-2h2V11z M7,7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,9h-1V4H8v5H7.22C6.67,8.39,5.89,8,5,8c-1.66,0-3,1.34-3,3v7c0,1.66,1.34,3,3,3c0.89,0,1.67-0.39,2.22-1H22v-8 C22,10.34,20.66,9,19,9z M6,18c0,0.55-0.45,1-1,1s-1-0.45-1-1v-7c0-0.55,0.45-1,1-1s1,0.45,1,1V18z M10,6h6v3h-6V6z M20,18H8v-7 h11c0.55,0,1,0.45,1,1V18z\"></path><circle cx=\"15\" cy=\"13\" r=\"1\"></circle><circle cx=\"18\" cy=\"13\" r=\"1\"></circle><circle cx=\"15\" cy=\"16\" r=\"1\"></circle><circle cx=\"18\" cy=\"16\" r=\"1\"></circle><g><rect height=\"5\" width=\"4\" x=\"9\" y=\"12\"></rect></g></g></g>" } } }, - "60fps": { - "name": "60fps", + "table_view": { + "name": "table_view", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4c1.66,0,3-1.34,3-3V8C22,6.34,20.66,5,19,5z M10,8V5H5 C3.34,5,2,6.34,2,8v8c0,1.66,1.34,3,3,3h3c1.66,0,3-1.34,3-3v-3c0-1.66-1.34-3-3-3H5V8H10z M8,13v3H5v-3H8z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z\"></path></g>" } } }, - "access_alarm": { - "name": "access_alarm", + "swipe_right_alt": { + "name": "swipe_right_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M11.93,9.25C11.58,7.4,9.95,6,8,6c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4c1.95,0,3.58-1.4,3.93-3.25l3.2,0l-1.19,1.19L15,13 l3-3l-3-3l-1.06,1.06l1.19,1.19L11.93,9.25z M8,7.5c1.38,0,2.5,1.12,2.5,2.5c0,1.38-1.12,2.5-2.5,2.5S5.5,11.38,5.5,10 C5.5,8.62,6.62,7.5,8,7.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13.9,11C13.44,8.72,11.42,7,9,7c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h4.27l-1.59,1.59L18,16l4-4l-4-4 l-1.41,1.41L18.17,11H13.9z M9,9c1.66,0,3,1.34,3,3s-1.34,3-3,3s-3-1.34-3-3S7.34,9,9,9z\"></path></g>" } } }, - "access_alarms": { - "name": "access_alarms", + "integration_instructions": { + "name": "integration_instructions", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><circle cx=\"12\" cy=\"3.5\" fill=\"none\" r=\".75\"></circle><circle cx=\"12\" cy=\"3.5\" fill=\"none\" r=\".75\"></circle><polygon fill=\"none\" points=\"5,15 5,16 5,19 19,19 19,16 19,15 19,5 5,5\"></polygon><g><polygon points=\"11,14.17 8.83,12 11,9.83 9.59,8.41 6,12 9.59,15.59\"></polygon><polygon points=\"14.41,15.59 18,12 14.41,8.41 13,9.83 15.17,12 13,14.17\"></polygon><path d=\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v10v1v3c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2v-3v-1V5C21,3.9,20.1,3,19,3z M12,2.75 c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,15v1v3H5v-3v-1V5h14V15z\"></path></g></g>" } } }, - "access_time": { - "name": "access_time", + "swipe_up": { + "name": "swipe_up", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M4,5.5c0,2.03,0.75,3.88,2,5.29L5.29,11.5C3.87,9.91,3,7.81,3,5.5c0-0.93,0.14-1.82,0.4-2.66L1.71,4.53L1,3.83L3.83,1 l2.83,2.83L5.94,4.53L4.4,2.99C4.14,3.78,4,4.62,4,5.5z M16.79,8.07L13.6,8l-0.91,0.41l-1.22-2.74C11.02,4.65,9.84,4.2,8.83,4.64 C7.82,5.09,7.36,6.27,7.81,7.28l2.23,5.03l-1.19,0.21C8.39,12.6,7.91,12.9,7.7,13.46L6.99,15.3L13,17.63 c0.37,0.14,0.78,0.13,1.15-0.03l4.81-2.13c0.68-0.3,1.04-1.06,0.84-1.78l-1.18-4.17C18.39,8.69,17.65,8.11,16.79,8.07z M18.35,14.09l-4.81,2.13l-4.62-1.78L9.1,14l3.09-0.54L9.18,6.68c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25 l1.82,4.11l1.96-0.87l2.84,0.05c0.22,0.01,0.4,0.16,0.46,0.36L18.35,14.09z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20.22,10l-4.15,0.01c-0.16-0.01-0.31,0.02-0.45,0.08l-0.59,0.26L13.2,6.25c-0.56-1.26-2.04-1.83-3.3-1.27 s-1.83,2.04-1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05-0.99,0.27-1.36,1.21L8,19.19l6.78,2.67c0.49,0.19,1.05,0.18,1.53-0.04 l5.99-2.65c0.89-0.4,1.37-1.38,1.13-2.32l-1.36-5.34C21.85,10.65,21.1,10.04,20.22,10z M21.49,17.34L15.5,20l-4.92-1.96l4.18-0.88 l-4.3-9.7c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25l2.5,5.65l1.61-0.71L20.13,12L21.49,17.34z M2.06,5.56L1,4.5 L4.5,1L8,4.5L6.94,5.56L5.32,3.94C5.11,4.76,5,5.62,5,6.5c0,2.42,0.82,4.65,2.2,6.43L6.13,14C4.49,11.95,3.5,9.34,3.5,6.5 c0-0.92,0.1-1.82,0.3-2.68L2.06,5.56z\"></path></g>" } } }, - "access_time_filled": { - "name": "access_time_filled", + "generating_tokens": { + "name": "generating_tokens", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.06,4.94L13,4l2.06-0.94L16,1l0.94,2.06L19,4l-2.06,0.94L16,7L15.06,4.94z M16,19l0.94-2.06L19,16l-2.06-0.94L16,13 l-0.94,2.06L13,16l2.06,0.94L16,19z M2.5,10c0,2.76,2.24,5,5,5s5-2.24,5-5s-2.24-5-5-5S2.5,7.24,2.5,10z M7.5,3.5 c3.59,0,6.5,2.91,6.5,6.5s-2.91,6.5-6.5,6.5S1,13.59,1,10S3.91,3.5,7.5,3.5L7.5,3.5z M10,7.5H5v1.25h1.75V13h1.5V8.75H10V7.5z\"></path>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M11.99,2C6.47,2,2,6.48,2,12s4.47,10,9.99,10C17.52,22,22,17.52,22,12S17.52,2,11.99,2z M15.29,16.71L11,12.41V7h2v4.59 l3.71,3.71L15.29,16.71z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9,4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8C17,7.58,13.42,4,9,4z M9,18c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S12.31,18,9,18z M12,10.5h-2v5H8v-5H6V9h6V10.5z M20.25,3.75L23,5l-2.75,1.25L19,9l-1.25-2.75L15,5l2.75-1.25L19,1 L20.25,3.75z M20.25,17.75L23,19l-2.75,1.25L19,23l-1.25-2.75L15,19l2.75-1.25L19,15L20.25,17.75z\"></path>" } } }, - "add_alarm": { - "name": "add_alarm", + "opacity": { + "name": "opacity", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z\"></path>" + "path": "<path d=\"M24 0H0v24h24V0zm0 0H0v24h24V0zM0 24h24V0H0v24z\" fill=\"none\"></path><path d=\"M17.66 8L12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z\"></path>" } } }, - "add_to_home_screen": { - "name": "add_to_home_screen", + "favorite": { + "name": "favorite", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z\"></path>" } } }, - "ad_units": { - "name": "ad_units", + "question_mark": { + "name": "question_mark", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M9.29,10.58c0.6-1.07,1.73-1.7,2.39-2.65c0.7-0.99,0.31-2.85-1.67-2.85c-1.3,0-1.94,0.98-2.2,1.8l-2-0.84 C6.35,4.41,7.83,3,9.99,3c1.81,0,3.05,0.82,3.68,1.85c0.54,0.88,0.86,2.54,0.02,3.77c-0.92,1.36-1.81,1.78-2.28,2.65 c-0.19,0.35-0.27,0.58-0.27,1.72H8.91C8.91,12.4,8.82,11.42,9.29,10.58z M11.5,16c0,0.83-0.67,1.5-1.5,1.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5C10.83,14.5,11.5,15.17,11.5,16z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><g><path d=\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z\"></path></g><g><polygon points=\"16,7 8,7 8,9 16,9 16,7\"></polygon></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M11.07,12.85c0.77-1.39,2.25-2.21,3.11-3.44c0.91-1.29,0.4-3.7-2.18-3.7c-1.69,0-2.52,1.28-2.87,2.34L6.54,6.96 C7.25,4.83,9.18,3,11.99,3c2.35,0,3.96,1.07,4.78,2.41c0.7,1.15,1.11,3.3,0.03,4.9c-1.2,1.77-2.35,2.31-2.97,3.45 c-0.25,0.46-0.35,0.76-0.35,2.24h-2.89C10.58,15.22,10.46,13.95,11.07,12.85z M14,20c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,0.9-2,2-2 S14,18.9,14,20z\"></path></g>" } } }, - "air": { - "name": "air", + "pin_end": { + "name": "pin_end", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.5,10V5.5h-13v9H12c0.01,0.02,0,1.5,0,1.5H3.5C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4h13C17.33,4,18,4.67,18,5.5 V10H16.5z M15.75,11.5c-1.24,0-2.25,1.01-2.25,2.25s1,2.25,2.25,2.25c1.24,0,2.25-1.01,2.25-2.25S16.99,11.5,15.75,11.5z M10,11.24 V9.56l2.21,2.21l1.06-1.06L11.06,8.5h1.68V7H8.5v4.24H10z\"></path>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M14.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3h2c0,0.55,0.45,1,1,1s1-0.45,1-1s-0.45-1-1-1H2v-2h9.5 C13.15,14,14.5,15.35,14.5,17z M19,6.5C19,4.57,17.43,3,15.5,3S12,4.57,12,6.5h2C14,5.67,14.67,5,15.5,5S17,5.67,17,6.5 S16.33,8,15.5,8H2v2h13.5C17.43,10,19,8.43,19,6.5z M18.5,11H2v2h16.5c0.83,0,1.5,0.67,1.5,1.5S19.33,16,18.5,16v2 c1.93,0,3.5-1.57,3.5-3.5S20.43,11,18.5,11z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,12V6H4v12h10l0,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v6H20z M19,14c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.66,0,3-1.34,3-3S20.66,14,19,14z M14.66,8H9v5.66h2v-2.24l2.95,2.95l1.41-1.41L12.41,10h2.24V8z\"></path>" } } }, - "airplanemode_active": { - "name": "airplanemode_active", + "source": { + "name": "source", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect><path d=\"M17,13v-1l-6-4V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-6,4v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-4L17,13z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><path d=\"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z\"></path></g>" } } }, - "airplanemode_inactive": { - "name": "airplanemode_inactive", + "accessible": { + "name": "accessible", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect><path d=\"M13.12,11.71L9,7.59V4c0-0.55,0.45-1,1-1s1,0.45,1,1v4l6,4v1L13.12,11.71z M17.07,17.07L2.93,2.93L2.22,3.64l5.33,5.33 L3,12v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-2.59l5.36,5.36L17.07,17.07z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><path d=\"M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"12\" cy=\"4\" r=\"2\"></circle><path d=\"M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-9 7c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2z\"></path>" } } }, - "airplane_ticket": { - "name": "airplane_ticket", + "lightbulb": { + "name": "lightbulb", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M20.19,4H4C2.9,4,2.01,4.9,2.01,6v4C3.11,10,4,10.9,4,12s-0.89,2-2,2v4c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6 C22,4.9,21.19,4,20.19,4z M20,18H4v-2.54c1.19-0.69,2-1.99,2-3.46c0-1.48-0.8-2.77-1.99-3.46L4,6h16V18z M8.87,15.66l-1.66-2.88 l0.93-0.25l1.26,0.99l2.39-0.64l-2.4-4.16l1.4-0.38l4.01,3.74l2.44-0.65c0.51-0.14,1.04,0.17,1.18,0.68 c0.13,0.51-0.17,1.04-0.69,1.19L8.87,15.66z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z\"></path>" } } }, - "aod": { - "name": "aod", + "close_fullscreen": { + "name": "close_fullscreen", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M8,10h8v1.5H8V10z M9,13h6v1.5H9V13z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z\"></path>" } } }, - "battery_alert": { - "name": "battery_alert", + "copyright": { + "name": "copyright", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" } } }, - "battery_charging_full": { - "name": "battery_charging_full", + "zoom_out": { + "name": "zoom_out", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z\"></path>" } } }, - "battery_full": { - "name": "battery_full", + "vertical_split": { + "name": "vertical_split", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm16 2v10h-4V7h4m2-2h-8v14h8V5z\"></path>" } } }, - "battery_saver": { - "name": "battery_saver", + "code": { + "name": "code", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16,4h-2V2h-4v2H8C7.45,4,7,4.45,7,5v16c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z M15,14h-2v2h-2 v-2H9v-2h2v-2h2v2h2V14z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z\"></path>" } } }, - "battery_std": { - "name": "battery_std", + "group_work": { + "name": "group_work", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path><circle cx=\"8\" cy=\"14\" r=\"2\"></circle><circle cx=\"12\" cy=\"8\" r=\"2\"></circle><circle cx=\"16\" cy=\"14\" r=\"2\"></circle>" } } }, - "battery_unknown": { - "name": "battery_unknown", + "receipt": { + "name": "receipt", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.5 3.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5zM19 19.09H5V4.91h14v14.18zM6 15h12v2H6zm0-4h12v2H6zm0-4h12v2H6z\"></path>" } } }, - "bloodtype": { - "name": "bloodtype", + "restore_page": { + "name": "restore_page", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><rect height=\"2\" width=\"6\" x=\"9\" y=\"16\"></rect><polygon points=\"13,9 11,9 11,11 9,11 9,13 11,13 11,15 13,15 13,13 15,13 15,11 13,11\"></polygon><path d=\"M12,2c-5.33,4.55-8,8.48-8,11.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2C20,10.48,17.33,6.55,12,2z M12,20 c-3.35,0-6-2.57-6-6.2c0-2.34,1.95-5.44,6-9.14c4.05,3.7,6,6.79,6,9.14C18,17.43,15.35,20,12,20z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7.17L18 8.83V20zm-9.55-9.43L7.28 9.4V13h3.6l-1.44-1.44c.52-1.01 1.58-1.71 2.79-1.71 1.74 0 3.15 1.41 3.15 3.15s-1.41 3.15-3.15 3.15c-1.07 0-2.02-.54-2.58-1.35H8.1c.69 1.58 2.28 2.7 4.12 2.7 2.48 0 4.5-2.02 4.5-4.5s-2.02-4.5-4.5-4.5c-1.59 0-2.97.83-3.77 2.07z\"></path>" } } }, - "bluetooth": { - "name": "bluetooth", + "leaderboard": { + "name": "leaderboard", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M16,11V3H8v6H2v12h20V11H16z M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z\"></path></g>" } } }, - "bluetooth_connected": { - "name": "bluetooth_connected", + "view_timeline": { + "name": "view_timeline", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"4\" x=\"11\" y=\"6\"></rect><rect height=\"1.5\" width=\"4\" x=\"5\" y=\"12.5\"></rect><rect height=\"1.5\" width=\"4\" x=\"8\" y=\"9.25\"></rect><path d=\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-11h11V15.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"6\" x=\"6\" y=\"15\"></rect><rect height=\"2\" width=\"6\" x=\"12\" y=\"7\"></rect><rect height=\"2\" width=\"6\" x=\"9\" y=\"11\"></rect><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path></g></g>" } } }, - "bluetooth_disabled": { - "name": "bluetooth_disabled", - "keywords": [ - "device" + "bug_report": { + "name": "bug_report", + "keywords": [ + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-4 4v3c0 .22-.03.47-.07.7l-.1.65-.37.65c-.72 1.24-2.04 2-3.46 2s-2.74-.77-3.46-2l-.37-.64-.1-.65C8.03 15.48 8 15.23 8 15v-4c0-.23.03-.48.07-.7l.1-.65.37-.65c.3-.52.72-.97 1.21-1.31l.57-.39.74-.18c.31-.08.63-.12.94-.12.32 0 .63.04.95.12l.68.16.61.42c.5.34.91.78 1.21 1.31l.38.65.1.65c.04.22.07.47.07.69v1zm-6 2h4v2h-4zm0-4h4v2h-4z\"></path>" } } }, - "bluetooth_drive": { - "name": "bluetooth_drive", + "settings_voice": { + "name": "settings_voice", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><circle cx=\"6.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle><path d=\"M18,17H4v-5h11v-2H4.81l1.04-3H15V5H5.5C4.84,5,4.29,5.42,4.08,6.01L2,12v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12 v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8h-2V17z\"></path><path d=\"M22,3.85L19.15,1h-0.5v3.79l-2.3-2.29l-0.7,0.7L18.44,6l-2.79,2.79l0.7,0.71l2.3-2.3V11h0.5L22,8.14L19.85,6L22,3.85z M19.65,2.91l0.94,0.94l-0.94,0.94V2.91z M20.59,8.14l-0.94,0.94V7.2L20.59,8.14z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 22h2v2H7zm5-9c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .56-.44 1-1 1-.55 0-1-.45-1-1V4zm0 18h2v2h-2zm4 0h2v2h-2zm4-12h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z\"></path>" } } }, - "bluetooth_searching": { - "name": "bluetooth_searching", + "abc": { + "name": "abc", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M13,8.5C13,8.22,13.22,8,13.5,8h2C15.78,8,16,8.22,16,8.5v0.75h-1V9h-1v2h1v-0.25l1-0.01v0.76c0,0.28-0.22,0.5-0.5,0.5h-2 c-0.28,0-0.5-0.22-0.5-0.5V8.5z M7,8.5V12H6v-1H5v1H4V8.5C4,8.22,4.22,8,4.5,8h2C6.78,8,7,8.22,7,8.5z M6,9H5v1h1V9z M11,10 c0.28,0,0.5,0.22,0.5,0.5v1c0,0.27-0.22,0.5-0.5,0.5H8.5V8H11c0.28,0,0.5,0.22,0.5,0.5v1C11.5,9.77,11.28,10,11,10z M9.5,9v0.5h1V9 H9.5z M10.5,11v-0.5h-1V11H10.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,11h-1.5v-0.5h-2v3h2V13H21v1c0,0.55-0.45,1-1,1h-3c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1V11z M8,10v5H6.5v-1.5h-2V15H3v-5c0-0.55,0.45-1,1-1h3C7.55,9,8,9.45,8,10z M6.5,10.5h-2V12h2V10.5z M13.5,12c0.55,0,1,0.45,1,1v1 c0,0.55-0.45,1-1,1h-4V9h4c0.55,0,1,0.45,1,1v1C14.5,11.55,14.05,12,13.5,12z M11,10.5v0.75h2V10.5H11z M13,12.75h-2v0.75h2V12.75z\"></path></g>" } } }, - "brightness_auto": { - "name": "brightness_auto", + "shopping_cart": { + "name": "shopping_cart", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L13 7h-2zm-.15 5.65L12 9l1.15 3.65h-2.3zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z\"></path>" } } }, - "brightness_high": { - "name": "brightness_high", + "javascript": { + "name": "javascript", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10.5,11.5v-0.75h1V11h1v-0.75H11c-0.28,0-0.5-0.22-0.5-0.5V8.5C10.5,8.22,10.72,8,11,8h2c0.28,0,0.5,0.22,0.5,0.5v0.75h-1 V9h-1v0.75H13c0.28,0,0.5,0.22,0.5,0.5v1.25c0,0.28-0.22,0.5-0.5,0.5h-2C10.72,12,10.5,11.78,10.5,11.5z M8,8v3H7v-1H6v1.5 C6,11.78,6.22,12,6.5,12h2C8.78,12,9,11.78,9,11.5V8H8z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\"></path><circle cx=\"12\" cy=\"12\" r=\"2.5\"></circle>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,14v-1h1.5v0.5h2v-1H13c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1h-1.5v-0.5h-2v1H16 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1h-3C12.45,15,12,14.55,12,14z M9,9v4.5H7.5v-1H6v1C6,14.33,6.67,15,7.5,15H9 c0.83,0,1.5-0.67,1.5-1.5V9C10.5,9,9.83,9,9,9z\"></path></g>" } } }, - "brightness_low": { - "name": "brightness_low", + "commit": { + "name": "commit", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M13.93,9.25C13.58,7.4,11.95,6,10,6S6.42,7.4,6.07,9.25H2v1.5h4.07C6.42,12.6,8.05,14,10,14s3.58-1.4,3.93-3.25H18v-1.5 H13.93z M10,12.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5C12.5,11.38,11.38,12.5,10,12.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M16.9,11L16.9,11c-0.46-2.28-2.48-4-4.9-4s-4.44,1.72-4.9,4h0H2v2h5.1h0c0.46,2.28,2.48,4,4.9,4s4.44-1.72,4.9-4h0H22v-2 H16.9z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,15,12,15z\"></path></g>" } } }, - "brightness_medium": { - "name": "brightness_medium", + "bookmark_remove": { + "name": "bookmark_remove", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13.5,9v5.78l-3.5-1.4l-3.5,1.4V4.5H11V3H6.5C5.67,3,5,3.67,5,4.5V17l5-2l5,2V9H13.5z M12.75,4.25v1.5h4.5v-1.5H12.75z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6v12c3.31 0 6-2.69 6-6s-2.69-6-6-6z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,11v6.97l-5-2.14l-5,2.14V5h6V3H7C5.9,3,5,3.9,5,5v16l7-3l7,3V11H17z M21,7h-6V5h6V7z\"></path>" } } }, - "cable": { - "name": "cable", + "install_mobile": { + "name": "install_mobile", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14.5,15h-9V5H12V3.5H5.5v-1H12V1H5.5C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9c0.83,0,1.5-0.67,1.5-1.5V13h-1.5 V15z M14.5,17.5h-9v-1h9V17.5z\"></path><polygon points=\"15.23,11 18.75,7.48 17.69,6.42 16,8.11 16,3 14.5,3 14.5,8.14 12.81,6.45 11.75,7.52\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M20,5V4c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v1h-1v4c0,0.55,0.45,1,1,1h1v7c0,1.1-0.9,2-2,2s-2-0.9-2-2V7 c0-2.21-1.79-4-4-4S5,4.79,5,7v7H4c-0.55,0-1,0.45-1,1v4h1v1c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-1h1v-4c0-0.55-0.45-1-1-1H7 V7c0-1.1,0.9-2,2-2s2,0.9,2,2v10c0,2.21,1.79,4,4,4s4-1.79,4-4v-7h1c0.55,0,1-0.45,1-1V5H20z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17,18H7V6h7V4H7V3h7V1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-5h-2V18z M17,21H7v-1h10V21z\"></path><polygon points=\"18,14 23,9 21.59,7.59 19,10.17 19,3 17,3 17,10.17 14.41,7.59 13,9\"></polygon></g></g>" } } }, - "cameraswitch": { - "name": "cameraswitch", + "text_rotation_angledown": { + "name": "text_rotation_angledown", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16,7h-1l-1-1h-4L9,7H8C6.9,7,6,7.9,6,9v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V9C18,7.9,17.1,7,16,7z M16,15H8V9h1.83l1-1 h2.34l1,1H16V15z\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle><path d=\"M8.57,0.52L13.05,5l1.41-1.41l-1.54-1.54C17.7,2.46,21.53,6.24,22,11h2C23.36,3.3,15.79-1.67,8.57,0.52z\"></path><path d=\"M9.54,20.41l1.54,1.54C6.3,21.54,2.47,17.76,2,13H0c0.64,7.7,8.21,12.67,15.43,10.48L10.95,19L9.54,20.41z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05l-2.23 4.87-2.64-2.64 4.87-2.23z\"></path>" } } }, - "credit_score": { - "name": "credit_score", + "fact_check": { + "name": "fact_check", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16,4H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V5 C17,4.45,16.55,4,16,4z M16,15H4V5h12V15z\" fill-rule=\"evenodd\"></path><rect fill-rule=\"evenodd\" height=\"1\" width=\"4\" x=\"5\" y=\"7\"></rect><rect fill-rule=\"evenodd\" height=\"1\" width=\"4\" x=\"5\" y=\"9.5\"></rect><rect fill-rule=\"evenodd\" height=\"1\" width=\"4\" x=\"5\" y=\"12\"></rect><polygon fill-rule=\"evenodd\" points=\"11.97,11.77 14.8,8.94 14.1,8.23 11.97,10.35 11.27,9.65 10.56,10.35\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h5v-2H4v-6h18V6C22,4.89,21.11,4,20,4z M20,8H4V6h16V8z M14.93,19.17l-2.83-2.83l-1.41,1.41L14.93,22L22,14.93l-1.41-1.41L14.93,19.17z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M20,19H4V5h16V19z\" fill-rule=\"evenodd\"></path><polygon fill-rule=\"evenodd\" points=\"19.41,10.42 17.99,9 14.82,12.17 13.41,10.75 12,12.16 14.82,15\"></polygon><rect fill-rule=\"evenodd\" height=\"2\" width=\"5\" x=\"5\" y=\"7\"></rect><rect fill-rule=\"evenodd\" height=\"2\" width=\"5\" x=\"5\" y=\"11\"></rect><rect fill-rule=\"evenodd\" height=\"2\" width=\"5\" x=\"5\" y=\"15\"></rect></g></g>" } } }, - "dark_mode": { - "name": "dark_mode", + "favorite_border": { + "name": "favorite_border", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M8.04,4.86C7.88,5.39,7.8,5.94,7.8,6.5c0,3.14,2.56,5.7,5.7,5.7c0.56,0,1.11-0.08,1.64-0.24c-0.79,2.07-2.8,3.54-5.14,3.54 c-3.03,0-5.5-2.47-5.5-5.5C4.5,7.66,5.97,5.65,8.04,4.86z M10,3c-3.87,0-7,3.13-7,7s3.13,7,7,7s7-3.13,7-7 c0-0.36-0.03-0.72-0.08-1.06C16.16,10,14.91,10.7,13.5,10.7c-2.32,0-4.2-1.88-4.2-4.2c0-1.41,0.7-2.66,1.76-3.42 C10.72,3.03,10.36,3,10,3L10,3z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.37,5.51C9.19,6.15,9.1,6.82,9.1,7.5c0,4.08,3.32,7.4,7.4,7.4c0.68,0,1.35-0.09,1.99-0.27C17.45,17.19,14.93,19,12,19 c-3.86,0-7-3.14-7-7C5,9.07,6.81,6.55,9.37,5.51z M12,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9c0-0.46-0.04-0.92-0.1-1.36 c-0.98,1.37-2.58,2.26-4.4,2.26c-2.98,0-5.4-2.42-5.4-5.4c0-1.81,0.89-3.42,2.26-4.4C12.92,3.04,12.46,3,12,3L12,3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z\"></path>" } } }, - "data_saver_off": { - "name": "data_saver_off", + "compress": { + "name": "compress", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53C21.68,14.83,22,13.45,22,12 C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05C5.94,2.55,2,6.81,2,12 c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M4,9v2h16V9H4z M16,4l-1.41-1.41L13,4.17V1h-2v3.19L9.39,2.61L8,4l4,4L16,4z M4,14h16v-2H4V14z M8,19l1.39,1.39L11,18.81 V22h2v-3.17l1.59,1.59L16,19l-4-4L8,19z\"></path></g>" } } }, - "data_saver_on": { - "name": "data_saver_on", + "important_devices": { + "name": "important_devices", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M11,8v3H8v2h3v3h2v-3h3v-2h-3V8H11z M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53 C21.68,14.83,22,13.45,22,12C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05 C5.94,2.55,2,6.81,2,12c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4c0-1.11-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z\"></path>" } } }, - "data_usage": { - "name": "data_usage", + "swap_vertical_circle": { + "name": "swap_vertical_circle", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM6.5 9L10 5.5 13.5 9H11v4H9V9zm11 6L14 18.5 10.5 15H13v-4h2v4z\"></path>" } } }, - "developer_mode": { - "name": "developer_mode", + "pending_actions": { + "name": "pending_actions", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z\"></path></g>" } } }, - "devices": { - "name": "devices", + "sensors": { + "name": "sensors", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M5.41,14.59l-1.06,1.06C2.9,14.21,2,12.21,2,10c0-2.21,0.9-4.21,2.34-5.66l1.06,1.06C4.23,6.58,3.5,8.21,3.5,10 S4.23,13.42,5.41,14.59z M16.5,10c0,1.79-0.73,3.42-1.91,4.59l1.06,1.06C17.1,14.21,18,12.21,18,10c0-2.21-0.9-4.21-2.34-5.66 l-1.06,1.06C15.77,6.58,16.5,8.21,16.5,10z M13.5,10c0,0.96-0.39,1.84-1.03,2.47l1.06,1.06C14.44,12.63,15,11.38,15,10 c0-1.38-0.56-2.63-1.46-3.54l-1.06,1.06C13.11,8.16,13.5,9.04,13.5,10z M6.5,10c0-0.96,0.39-1.84,1.03-2.47L6.46,6.46 C5.56,7.37,5,8.62,5,10c0,1.38,0.56,2.63,1.46,3.54l1.06-1.06C6.89,11.84,6.5,10.96,6.5,10z M10,8.25c-0.97,0-1.75,0.78-1.75,1.75 s0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75S10.97,8.25,10,8.25z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.76,16.24C6.67,15.16,6,13.66,6,12s0.67-3.16,1.76-4.24l1.42,1.42C8.45,9.9,8,10.9,8,12c0,1.1,0.45,2.1,1.17,2.83 L7.76,16.24z M16.24,16.24C17.33,15.16,18,13.66,18,12s-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12 c0,1.1-0.45,2.1-1.17,2.83L16.24,16.24z M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M20,12 c0,2.21-0.9,4.21-2.35,5.65l1.42,1.42C20.88,17.26,22,14.76,22,12s-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z M6.35,6.35L4.93,4.93C3.12,6.74,2,9.24,2,12s1.12,5.26,2.93,7.07l1.42-1.42C4.9,16.21,4,14.21,4,12S4.9,7.79,6.35,6.35z\"></path>" } } }, - "device_thermostat": { - "name": "device_thermostat", + "work_off": { + "name": "work_off", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M15,13V5c0-1.66-1.34-3-3-3S9,3.34,9,5v8c-1.21,0.91-2,2.37-2,4c0,2.76,2.24,5,5,5s5-2.24,5-5C17,15.37,16.21,13.91,15,13 z M11,11V5c0-0.55,0.45-1,1-1s1,0.45,1,1v1h-1v1h1v1v1h-1v1h1v1H11z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 4h4v2h-3.6l2 2H20v7.6l2 2V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4zM3.4 1.84L1.99 3.25 4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l2 2 1.41-1.41L3.4 1.84zM4 19V8h2.74l11 11H4z\"></path>" } } }, - "do_not_disturb_on_total_silence": { - "name": "do_not_disturb_on_total_silence", + "wifi_protected_setup": { + "name": "wifi_protected_setup", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M15,4H9v6l1.8-1.8c1.22,0.91,2.01,2.35,2.01,3.99c0,0.75-0.18,1.45-0.47,2.09c1.49-0.98,2.47-2.67,2.47-4.59 c0-1.52-0.62-2.89-1.61-3.89L15,4z\"></path></g><g><path d=\"M7.19,7.84c0-0.75,0.18-1.45,0.47-2.09c-1.49,0.98-2.47,2.67-2.47,4.59c0,1.52,0.62,2.89,1.61,3.89L5,16h6v-5.97 l-1.8,1.8C7.99,10.91,7.19,9.47,7.19,7.84z\"></path></g></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12,6c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S15.4,6,12,6z M15,13H9v-2h6V13z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z\"></path></g><g><path d=\"M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z\"></path></g></g></g>" } } }, - "dvr": { - "name": "dvr", + "card_giftcard": { + "name": "card_giftcard", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z\"></path>" } } }, - "edgesensor_high": { - "name": "edgesensor_high", + "pan_tool_alt": { + "name": "pan_tool_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M15.39,9.36L12.5,8h-1V5c0-1.1-0.9-2-2-2s-2,0.9-2,2v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3.5,12l4.56,4.56 C8.34,16.84,8.72,17,9.12,17h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C16.6,10.57,16.16,9.74,15.39,9.36z M14.38,15.5H9.12 L5.62,12l0.34-0.34L9,12.42V5c0-0.28,0.22-0.5,0.5-0.5S10,4.72,10,5v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L14.38,15.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M3,7h2v7H3V7z M0,10h2v7H0V10z M22,7h2v7h-2V7z M19,10h2v7h-2V10z M16,2.01L8,2C6.9,2,6,2.9,6,4v16c0,1.1,0.9,2,2,2h8 c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2.01,16,2.01z M16,20H8v-1h8V20z M16,17H8V7h8V17z M8,5V4h8v1H8z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18.89,11.77l-3.8-1.67C14.96,10.04,14.81,10,14.65,10H14V5.5C14,4.12,12.88,3,11.5,3S9,4.12,9,5.5v8.15l-1.87-0.4 c-0.19-0.03-1.02-0.15-1.73,0.56L4,15.22l5.12,5.19C9.49,20.79,10,21,10.53,21h6.55c0.98,0,1.81-0.7,1.97-1.67l0.92-5.44 C20.12,13.03,19.68,12.17,18.89,11.77z M17.08,19h-6.55l-3.7-3.78L11,16.11V5.5C11,5.22,11.22,5,11.5,5S12,5.22,12,5.5v6.18h1.76 L18,13.56L17.08,19z\"></path></g>" } } }, - "edgesensor_low": { - "name": "edgesensor_low", + "credit_card_off": { + "name": "credit_card_off", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.78,17.78L2.22,2.22L1.16,3.28L2.38,4.5C2.15,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16 h10.38l2.84,2.84L17.78,17.78z M4.88,7H3.5V5.62L4.88,7z M3.5,14.5V10h4.38l4.5,4.5H3.5z M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9 c0,0.38-0.15,0.73-0.38,1l-1.12-1.12V10h-4.38l-3-3h7.38V5.5H7.62L6.12,4z\" enable-background=\"new\"></path>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M2,7h2v7H2V7z M20,10h2v7h-2V10z M16,2.01L8,2C6.9,2,6,2.9,6,4v16c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4 C18,2.9,17.1,2.01,16,2.01z M16,20H8v-1h8V20z M16,17H8V7h8V17z M8,5V4h8v1H8z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M6.83,4H20c1.11,0,2,0.89,2,2v12c0,0.34-0.08,0.66-0.23,0.94L20,17.17V12h-5.17l-4-4H20V6H8.83 L6.83,4z M20.49,23.31L17.17,20H4c-1.11,0-2-0.89-2-2L2.01,6c0-0.34,0.08-0.66,0.23-0.93L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M4,6.83V8h1.17L4,6.83z M15.17,18l-6-6H4v6H15.17z\" enable-background=\"new\"></path>" } } }, - "e_mobiledata": { - "name": "e_mobiledata", + "tab": { + "name": "tab", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16,9V7H8v10h8v-2h-6v-2h6v-2h-6V9H16z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z\"></path>" } } }, - "flashlight_off": { - "name": "flashlight_off", + "tour": { + "name": "tour", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M2.81,2.81L1.39,4.22L8,10.83V22h8v-3.17l3.78,3.78l1.41-1.41L2.81,2.81z M14,20h-4v-7.17l4,4V20z\"></path><polygon points=\"16,4 16,5 7.83,5 9.83,7 16,7 16,7.39 14,10.4 14,11.17 16,13.17 16,11 18,8 18,2 6,2 6,3.17 6.83,4\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M17.14,9.74l0.9,2.26H12h-1H7V6h5h1h5.05l-0.9,2.26L16.85,9L17.14,9.74z M14,9c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,7.9,14,9z\"></path></g>" } } }, - "flashlight_on": { - "name": "flashlight_on", + "next_plan": { + "name": "next_plan", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S13.31,16,10,16z\"></path><path d=\"M10,8.5c-1.83,0-3.41,1.1-4.11,2.68l0.96,0.32C7.42,10.32,8.61,9.5,10,9.5c0.84,0,1.59,0.31,2.19,0.81l-1.19,1.19H14V8.5 l-1.09,1.09C12.13,8.91,11.12,8.5,10,8.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,2H6v6l2,3v11h8V11l2-3V2z M16,4v1H8V4H16z M14,10.4V20h-4v-9.61l-2-3V7h8v0.39L14,10.4z\"></path><circle cx=\"12\" cy=\"14\" r=\"1.5\"></circle></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\"></path><path d=\"M15.97,11.03C14.87,9.79,13.28,9,11.5,9c-2.82,0-5.18,1.95-5.82,4.56l0.96,0.32C7.15,11.66,9.13,10,11.5,10 c1.51,0,2.85,0.68,3.76,1.74L13,14h5V9L15.97,11.03z\"></path></g></g>" } } }, - "flourescent": { - "name": "flourescent", + "flight_land": { + "name": "flight_land", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M5,15h14V9H5V15z M7,11h10v2H7V11z\"></path><rect height=\"3\" width=\"2\" x=\"11\" y=\"2\"></rect><rect height=\"2\" transform=\"matrix(0.7046 -0.7096 0.7096 0.7046 1.1814 15.2381)\" width=\"2.54\" x=\"17.62\" y=\"5.2\"></rect><rect height=\"3\" width=\"2\" x=\"11\" y=\"19\"></rect><polygon points=\"17.29,17.71 19.08,19.51 20.5,18.09 18.7,16.3\"></polygon><rect height=\"2.53\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.8904 5.4222)\" width=\"1.99\" x=\"4.1\" y=\"4.93\"></rect><rect height=\"2\" transform=\"matrix(0.7096 -0.7046 0.7046 0.7096 -11.1263 8.7897)\" width=\"2.54\" x=\"3.83\" y=\"16.89\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z\"></path>" } } }, - "fmd_bad": { - "name": "fmd_bad", + "rocket": { + "name": "rocket", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M13.75,10.5l1.67,1.3c0.37,0.28,0.58,0.72,0.58,1.18V18l-4-2H8l-4,2v-5.02c0-0.46,0.21-0.9,0.58-1.18l1.67-1.3 C6.25,3.75,10,2,10,2C10,2,13.75,3.75,13.75,10.5z M7.75,10.5c0,1.45,0.43,3.03,0.75,4h3c0.32-0.97,0.75-2.55,0.75-4 c0-3.95-1.39-5.86-2.25-6.66C9.14,4.64,7.75,6.55,7.75,10.5z M11.5,9c0-0.82-0.67-1.5-1.5-1.5C9.18,7.5,8.5,8.18,8.5,9 c0,0.83,0.68,1.5,1.5,1.5C10.83,10.5,11.5,9.83,11.5,9z M6.41,12.28l-0.91,0.7v2.59l1.52-0.76C6.81,14.14,6.56,13.24,6.41,12.28z M12.98,14.81l1.52,0.76v-2.59l-0.91-0.7C13.44,13.24,13.19,14.14,12.98,14.81z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8C20,5.22,16.2,2,12,2z M12,19.33 c-4.05-3.7-6-6.79-6-9.14C6,6.57,8.65,4,12,4s6,2.57,6,6.2C18,12.54,16.05,15.64,12,19.33z\"></path><rect height=\"5\" width=\"2\" x=\"11\" y=\"6\"></rect><rect height=\"2\" width=\"2\" x=\"11\" y=\"13\"></rect></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M14,11c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14,12.1,14,11z M7.98,18.25c-0.29-0.9-0.57-1.94-0.76-3L6,16.07v2.98 L7.98,18.25z M12,2c0,0,5,2,5,11l2.11,1.41c0.56,0.37,0.89,1,0.89,1.66V22l-5-2H9l-5,2v-5.93c0-0.67,0.33-1.29,0.89-1.66L7,13 C7,4,12,2,12,2z M12,4.36c0,0-3,2.02-3,8.64c0,2.25,1,5,1,5h4c0,0,1-2.75,1-5C15,6.38,12,4.36,12,4.36z M18,19.05v-2.98 l-1.22-0.81c-0.19,1.05-0.47,2.1-0.76,3L18,19.05z\"></path></g></g></g>" } } }, - "fmd_good": { - "name": "fmd_good", + "shop": { + "name": "shop", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,12c-1.1,0-2-0.9-2-2s0.9-2,2-2c1.1,0,2,0.9,2,2S13.1,12,12,12z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2 c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 18l7.5-5L9 9z\"></path>" } } }, - "gpp_bad": { - "name": "gpp_bad", + "model_training": { + "name": "model_training", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><path d=\"M9.25,16h1.5v-1h-1.5V16z M10,8L10,8L10,8C10,8,10,8,10,8c-1.38,0-2.5,1.12-2.5,2.5C7.5,12,9.25,13,9.25,14 c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5C12.5,9.12,11.38,8,10,8z M6.47,13.53l-0.71,0.71C4.67,13.16,4,11.66,4,10 c0-3.31,2.69-6,6-6V2l2.5,2.5L10,7V5c-2.76,0-5,2.24-5,5C5,11.38,5.56,12.63,6.47,13.53z M14.24,14.24l-0.71-0.71 C14.44,12.63,15,11.38,15,10s-0.56-2.63-1.47-3.53l0.71-0.71C15.33,6.84,16,8.34,16,10S15.33,13.16,14.24,14.24z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z M9.91,8.5L8.5,9.91L10.59,12L8.5,14.09l1.41,1.41L12,13.42l2.09,2.08 l1.41-1.41L13.42,12l2.08-2.09L14.09,8.5L12,10.59L9.91,8.5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z\"></path></g>" } } }, - "gpp_good": { - "name": "gpp_good", + "circle_notifications": { + "name": "circle_notifications", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83V6.31l6-2.12l6,2.12V11.09z M8.82,10.59L7.4,12l3.54,3.54l5.66-5.66l-1.41-1.41l-4.24,4.24L8.82,10.59z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,18.5c0.83,0,1.5-0.67,1.5-1.5h-3C10.5,17.83,11.17,18.5,12,18.5z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10 c5.52,0,10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8c4.41,0,8,3.59,8,8S16.41,20,12,20z M16,11.39 c0-2.11-1.03-3.92-3-4.39V6.5c0-0.57-0.43-1-1-1s-1,0.43-1,1V7c-1.97,0.47-3,2.27-3,4.39V14H7v2h10v-2h-1V11.39z M14,14h-4v-3 c0-1.1,0.9-2,2-2s2,0.9,2,2V14z\"></path></g>" } } }, - "gpp_maybe": { - "name": "gpp_maybe", + "rowing": { + "name": "rowing", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\"></path><rect height=\"2\" width=\"2\" x=\"11\" y=\"14\"></rect><rect height=\"5\" width=\"2\" x=\"11\" y=\"7\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M8.5 14.5L4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z\"></path>" } } }, - "gps_fixed": { - "name": "gps_fixed", + "admin_panel_settings": { + "name": "admin_panel_settings", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"13\" cy=\"11.88\" fill-rule=\"evenodd\" r=\".84\"></circle><path d=\"M13,13.38c-0.55,0-1.64,0.27-1.68,0.81c0.38,0.53,0.99,0.87,1.68,0.87 s1.31-0.35,1.68-0.87C14.64,13.64,13.55,13.38,13,13.38z\" fill-rule=\"evenodd\"></path><path d=\"M14,9.14V6.18L9,4L4,6.18v3.27c0,3.03,2.13,5.86,5,6.55 c0.35-0.08,0.7-0.2,1.02-0.35C10.76,16.47,11.81,17,13,17c2.21,0,4-1.79,4-4C17,11.14,15.72,9.59,14,9.14z M9,14.97 c-2.3-0.67-4-3-4-5.51V6.84l4-1.75l4,1.75V9c-2.21,0-4,1.79-4,4c0,0.65,0.17,1.25,0.44,1.79C9.29,14.85,9.15,14.92,9,14.97z M13,16c-1.66,0-3-1.34-3-3c0-1.66,1.34-3,3-3s3,1.34,3,3C16,14.66,14.66,16,13,16z\" fill-rule=\"evenodd\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"17\" cy=\"15.5\" fill-rule=\"evenodd\" r=\"1.12\"></circle><path d=\"M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17 s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z\" fill-rule=\"evenodd\"></path><path d=\"M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82 c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17 c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51 C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C21,19.21,19.21,21,17,21z\" fill-rule=\"evenodd\"></path></g></g>" } } }, - "gps_not_fixed": { - "name": "gps_not_fixed", + "fit_screen": { + "name": "fit_screen", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M6,16h12V8H6V16z M8,10h8v4H8V10z M4,15H2v3c0,1.1,0.9,2,2,2h3v-2H4V15z M4,6h3V4H4C2.9,4,2,4.9,2,6v3h2V6z M20,4h-3v2h3v3 h2V6C22,4.9,21.1,4,20,4z M20,18h-3v2h3c1.1,0,2-0.9,2-2v-3h-2V18z\"></path></g>" } } }, - "gps_off": { - "name": "gps_off", + "settings_accessibility": { + "name": "settings_accessibility", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20.5,4c-2.61,0.7-5.67,1-8.5,1S6.11,4.7,3.5,4L3,6c1.86,0.5,4,0.83,6,1v12h2v-6h2v6h2V7c2-0.17,4.14-0.5,6-1L20.5,4z M12,4c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,4,12,4z M7,24h2v-2H7V24z M11,24h2v-2h-2V24z M15,24h2v-2h-2V24z\"></path></g>" } } }, - "graphic_eq": { - "name": "graphic_eq", + "expand": { + "name": "expand", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><rect height=\"2\" width=\"16\" x=\"4\" y=\"20\"></rect><rect height=\"2\" width=\"16\" x=\"4\" y=\"2\"></rect><polygon points=\"9.41,13.59 8,15 12,19 16,15 14.59,13.59 13,15.17 13,8.83 14.59,10.41 16,9 12,5 8,9 9.41,10.41 11,8.83 11,15.17\"></polygon></g></g>" } } }, - "grid_3x3": { - "name": "grid_3x3", + "room": { + "name": "room", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20z M14,14h-4v-4h4V14z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z\"></path><circle cx=\"12\" cy=\"9\" r=\"2.5\"></circle>" } } }, - "grid_4x4": { - "name": "grid_4x4", + "bookmark": { + "name": "bookmark", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M22,7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7H22z M7,7h4v4 H7V7z M7,17v-4h4v4H7z M17,17h-4v-4h4V17z M17,11h-4V7h4V11z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z\"></path>" } } }, - "grid_goldenratio": { - "name": "grid_goldenratio", + "touch_app": { + "name": "touch_app", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M22,11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2H22z M13,13h-2v-2h2V13z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18.19,12.44l-3.24-1.62c1.29-1,2.12-2.56,2.12-4.32c0-3.03-2.47-5.5-5.5-5.5s-5.5,2.47-5.5,5.5c0,2.13,1.22,3.98,3,4.89 v3.26c-2.15-0.46-2.02-0.44-2.26-0.44c-0.53,0-1.03,0.21-1.41,0.59L4,16.22l5.09,5.09C9.52,21.75,10.12,22,10.74,22h6.3 c0.98,0,1.81-0.7,1.97-1.67l0.8-4.71C20.03,14.32,19.38,13.04,18.19,12.44z M17.84,15.29L17.04,20h-6.3 c-0.09,0-0.17-0.04-0.24-0.1l-3.68-3.68l4.25,0.89V6.5c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5v6h1.76l3.46,1.73 C17.69,14.43,17.91,14.86,17.84,15.29z M8.07,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5c0,0.95-0.38,1.81-1,2.44V6.5 c0-1.38-1.12-2.5-2.5-2.5c-1.38,0-2.5,1.12-2.5,2.5v2.44C8.45,8.31,8.07,7.45,8.07,6.5z\"></path></g></g>" } } }, - "g_mobiledata": { - "name": "g_mobiledata", + "bookmark_border": { + "name": "bookmark_border", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,11v2h2v2H9V9h7c0-1.1-0.9-2-2-2H9C7.9,7,7,7.9,7,9v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4H12z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z\"></path>" } } }, - "hdr_auto": { - "name": "hdr_auto", + "event_seat": { + "name": "event_seat", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z M11.01,6L6.88,17h1.9l1-2.81h4.44L15.21,17h1.9L12.98,6H11.01z M10.35,12.59l1.6-4.55h0.09 l1.6,4.55H10.35z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 5v7H9V5h6m0-2H9c-1.1 0-2 .9-2 2v9h10V5c0-1.1-.9-2-2-2zm7 7h-3v3h3v-3zM5 10H2v3h3v-3zm15 5H4v6h2v-4h12v4h2v-6z\"></path>" } } }, - "hdr_auto_select": { - "name": "hdr_auto_select", + "view_kanban": { + "name": "view_kanban", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-11h11V15.5z\"></path></g><g><rect height=\"4\" width=\"1.5\" x=\"9.25\" y=\"6\"></rect></g><g><rect height=\"8\" width=\"1.5\" x=\"6\" y=\"6\"></rect></g><g><rect height=\"6\" width=\"1.5\" x=\"12.5\" y=\"6\"></rect></g></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z\"></path><polygon points=\"3.5,18 1.5,18 1.5,16 0,16 0,22 1.5,22 1.5,19.5 3.5,19.5 3.5,22 5,22 5,16 3.5,16\"></polygon><polygon points=\"22,18.5 22,16.5 20.5,16.5 20.5,18.5 18.5,18.5 18.5,20 20.5,20 20.5,22 22,22 22,20 24,20 24,18.5\"></polygon><path d=\"M16.5,16H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1c0.5-0.3,0.9-0.8,0.9-1.4v-1C18,16.7,17.3,16,16.5,16z M16.5,18.5h-2v-1h2 V18.5z\"></path><polygon points=\"11.97,5.3 10.95,8.19 13.05,8.19 12.03,5.3\"></polygon><path d=\"M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z M14.04,11l-0.63-1.79h-2.83L9.96,11H8.74l2.63-7h1.25 l2.63,7H14.04z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"10\" width=\"2\" x=\"7\" y=\"7\"></rect><rect height=\"5\" width=\"2\" x=\"11\" y=\"7\"></rect><rect height=\"8\" width=\"2\" x=\"15\" y=\"7\"></rect><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path></g></g>" } } }, - "hdr_off_select": { - "name": "hdr_off_select", + "arrow_circle_right": { + "name": "arrow_circle_right", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10,7l3,3l-3,3l-1.06-1.06l1.19-1.19H7v-1.5h3.13L8.94,8.06L10,7z M18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8 S18,14.42,18,10z M3.5,10c0-3.58,2.92-6.5,6.5-6.5s6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,18.5v-1c0-0.8-0.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1C17.6,19.6,18,19.1,18,18.5z M16.5,18.5h-2v-1h2 V18.5z M3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18z M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M10.98,4.15L9.42,2.59c5.1-2.42,10.41,2.89,7.99,7.99 l-1.56-1.56C16.66,6.06,13.94,3.34,10.98,4.15z M6.34,2.34L4.93,3.76l1.66,1.66c-2.42,5.1,2.89,10.41,7.99,7.99l1.66,1.66 l1.41-1.41L6.34,2.34z M8.15,6.98l4.87,4.87C10.06,12.66,7.34,9.94,8.15,6.98z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M22,12c0-5.52-4.48-10-10-10C6.48,2,2,6.48,2,12s4.48,10,10,10C17.52,22,22,17.52,22,12z M4,12c0-4.42,3.58-8,8-8 c4.42,0,8,3.58,8,8s-3.58,8-8,8C7.58,20,4,16.42,4,12z M16,12l-4,4l-1.41-1.41L12.17,13H8v-2h4.17l-1.59-1.59L12,8L16,12z\"></path></g>" } } }, - "hdr_on_select": { - "name": "hdr_on_select", + "supervisor_account": { + "name": "supervisor_account", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,18.5v-1c0-0.8-0.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1C17.6,19.6,18,19.1,18,18.5z M16.5,18.5h-2v-1h2 V18.5z M3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18z M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M12,4c2.21,0,4,1.79,4,4s-1.79,4-4,4s-4-1.79-4-4 S9.79,4,12,4 M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm.05 10H4.77c.99-.5 2.7-1 4.23-1 .11 0 .23.01.34.01.34-.73.93-1.33 1.64-1.81-.73-.13-1.42-.2-1.98-.2-2.34 0-7 1.17-7 3.5V19h7v-1.5c0-.17.02-.34.05-.5zm7.45-2.5c-1.84 0-5.5 1.01-5.5 3V19h11v-1.5c0-1.99-3.66-3-5.5-3zm1.21-1.82c.76-.43 1.29-1.24 1.29-2.18C19 9.12 17.88 8 16.5 8S14 9.12 14 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32z\"></path>" } } }, - "h_mobiledata": { - "name": "h_mobiledata", + "rule": { + "name": "rule", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M15,11H9V7H7v10h2v-4h6v4h2V7h-2V11z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z\"></path></g>" } } }, - "h_plus_mobiledata": { - "name": "h_plus_mobiledata", + "help_center": { + "name": "help_center", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,11H6V7H4v10h2v-4h6v4h2V7h-2V11z M22,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13.25,16.74c0,0.69-0.53,1.26-1.25,1.26c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 C12.71,15.49,13.25,16.04,13.25,16.74z M11.99,6c-1.77,0-2.98,1.15-3.43,2.49l1.64,0.69c0.22-0.67,0.74-1.48,1.8-1.48 c1.62,0,1.94,1.52,1.37,2.33c-0.54,0.77-1.47,1.29-1.96,2.16c-0.39,0.69-0.31,1.49-0.31,1.98h1.82c0-0.93,0.07-1.12,0.22-1.41 c0.39-0.72,1.11-1.06,1.87-2.17c0.68-1,0.42-2.36-0.02-3.08C14.48,6.67,13.47,6,11.99,6z M19,5H5v14h14V5 M19,3c1.1,0,2,0.9,2,2v14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2H19L19,3z\"></path></g>" } } }, - "lens_blur": { - "name": "lens_blur", + "assignment_ind": { + "name": "assignment_ind", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M6,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,13,6,13z M6,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S6.55,17,6,17z M6,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,9,6,9z M3,9.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5 s0.5-0.22,0.5-0.5S3.28,9.5,3,9.5z M6,5C5.45,5,5,5.45,5,6s0.45,1,1,1s1-0.45,1-1S6.55,5,6,5z M21,10.5c0.28,0,0.5-0.22,0.5-0.5 S21.28,9.5,21,9.5s-0.5,0.22-0.5,0.5S20.72,10.5,21,10.5z M14,7c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S13.45,7,14,7z M14,3.5 c0.28,0,0.5-0.22,0.5-0.5S14.28,2.5,14,2.5S13.5,2.72,13.5,3S13.72,3.5,14,3.5z M3,13.5c-0.28,0-0.5,0.22-0.5,0.5 s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S3.28,13.5,3,13.5z M10,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S10.28,20.5,10,20.5z M10,3.5c0.28,0,0.5-0.22,0.5-0.5S10.28,2.5,10,2.5S9.5,2.72,9.5,3S9.72,3.5,10,3.5z M10,7c0.55,0,1-0.45,1-1 s-0.45-1-1-1S9,5.45,9,6S9.45,7,10,7z M10,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,12.5,10,12.5z M18,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,13,18,13z M18,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,17,18,17z M18,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,9,18,9z M18,5c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,5,18,5z M21,13.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S21.28,13.5,21,13.5z M14,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S14.55,17,14,17z M14,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S14.28,20.5,14,20.5z M10,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,8.5,10,8.5z M10,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S10.55,17,10,17z M14,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S14.83,12.5,14,12.5z M14,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S14.83,8.5,14,8.5z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.22 0 .41.1.55.25.12.13.2.31.2.5 0 .41-.34.75-.75.75s-.75-.34-.75-.75c0-.19.08-.37.2-.5.14-.15.33-.25.55-.25zM19 19H5V5h14v14zM12 6c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-6 6.47V18h12v-1.53c0-2.5-3.97-3.58-6-3.58s-6 1.07-6 3.58zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z\"></path>" } } }, - "light_mode": { - "name": "light_mode", + "view_comfy_alt": { + "name": "view_comfy_alt", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,7.5c1.38,0,2.5,1.12,2.5,2.5s-1.12,2.5-2.5,2.5S7.5,11.38,7.5,10S8.62,7.5,10,7.5z M10,6c-2.21,0-4,1.79-4,4s1.79,4,4,4 s4-1.79,4-4S12.21,6,10,6L10,6z M3.75,10.75c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-2C1.34,9.25,1,9.59,1,10 s0.34,0.75,0.75,0.75H3.75z M18.25,10.75c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-2c-0.41,0-0.75,0.34-0.75,0.75 s0.34,0.75,0.75,0.75H18.25z M9.25,3.75C9.25,4.16,9.59,4.5,10,4.5c0.41,0,0.75-0.34,0.75-0.75v-2C10.75,1.34,10.41,1,10,1 S9.25,1.34,9.25,1.75V3.75z M13.89,5.05c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06 c-0.29-0.29-0.77-0.29-1.06,0L13.89,5.05z M3.99,14.95c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.06-1.06 c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0L3.99,14.95z M5.05,6.11c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06 L5.05,3.99c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06L5.05,6.11z M14.95,16.01c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06 l-1.06-1.06c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06L14.95,16.01z M9.25,18.25C9.25,18.66,9.59,19,10,19 c0.41,0,0.75-0.34,0.75-0.75v-2c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75V18.25z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"3\" width=\"3\" x=\"6\" y=\"6\"></rect><rect height=\"3\" width=\"3\" x=\"11\" y=\"6\"></rect><rect height=\"3\" width=\"3\" x=\"6\" y=\"11\"></rect><rect height=\"3\" width=\"3\" x=\"11\" y=\"11\"></rect><path d=\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M16.5,14.5h-13v-9h13V14.5z\"></path></g></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,9c1.65,0,3,1.35,3,3s-1.35,3-3,3s-3-1.35-3-3S10.35,9,12,9 M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5 S14.76,7,12,7L12,7z M2,13l2,0c0.55,0,1-0.45,1-1s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S1.45,13,2,13z M20,13l2,0c0.55,0,1-0.45,1-1 s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S19.45,13,20,13z M11,2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V2c0-0.55-0.45-1-1-1S11,1.45,11,2z M11,20v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2c0-0.55-0.45-1-1-1C11.45,19,11,19.45,11,20z M5.99,4.58c-0.39-0.39-1.03-0.39-1.41,0 c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0s0.39-1.03,0-1.41L5.99,4.58z M18.36,16.95 c-0.39-0.39-1.03-0.39-1.41,0c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0c0.39-0.39,0.39-1.03,0-1.41 L18.36,16.95z M19.42,5.99c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06c-0.39,0.39-0.39,1.03,0,1.41 s1.03,0.39,1.41,0L19.42,5.99z M7.05,18.36c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06 c-0.39,0.39-0.39,1.03,0,1.41s1.03,0.39,1.41,0L7.05,18.36z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"4\" width=\"4\" x=\"7\" y=\"7\"></rect><rect height=\"4\" width=\"4\" x=\"13\" y=\"7\"></rect><rect height=\"4\" width=\"4\" x=\"7\" y=\"13\"></rect><rect height=\"4\" width=\"4\" x=\"13\" y=\"13\"></rect><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\"></path></g></g>" } } }, - "location_disabled": { - "name": "location_disabled", + "pin_invoke": { + "name": "pin_invoke", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,10v4.5c0,0.83-0.67,1.5-1.5,1.5h-13C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4H12c0,0,0.01,1.48,0,1.5H3.5v9h13V10 H18z M18,6.25C18,5.01,16.99,4,15.75,4C14.5,4,13.5,5.01,13.5,6.25s1.01,2.25,2.25,2.25S18,7.49,18,6.25z M7.76,10h1.68l-2.21,2.21 l1.06,1.06l2.21-2.21v1.68H12V8.5H7.76V10z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86L3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,12v6c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10l0,2H4v12h16v-6H22z M22,7c0-1.66-1.34-3-3-3 c-1.66,0-3,1.34-3,3s1.34,3,3,3C20.66,10,22,8.66,22,7z M9.34,12h2.24l-2.95,2.95l1.41,1.41L13,13.42v2.24h2V10H9.34V12z\"></path>" } } }, - "location_searching": { - "name": "location_searching", + "delete_outline": { + "name": "delete_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z\"></path>" } } }, - "lte_mobiledata": { - "name": "lte_mobiledata", + "not_started": { + "name": "not_started", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><path d=\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3 L10,3z M10,13l4-3l-4-3V13z M8,7v6h1V7H8z\"></path>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M6,14h3v2H4V8h2V14z M9,10h2v6h2v-6h2V8H9V10z M21,10V8h-5v8h5v-2h-3v-1h3v-2h-3v-1H21z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M11,8H9v8h2V8z M17,12l-5-4v8L17,12z\"></path></g>" } } }, - "lte_plus_mobiledata": { - "name": "lte_plus_mobiledata", + "outbox": { + "name": "outbox", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-3h2.34c0.56,1.18,1.77,2,3.16,2s2.6-0.82,3.16-2h2.34V15.5z M15.5,11H12c0,1.1-0.9,2-2,2s-2-0.9-2-2H4.5V4.5h11 V11z\"></path><polygon points=\"9.25,8.37 9.25,11 10.75,11 10.75,8.37 11.94,9.56 13,8.5 10,5.5 7,8.5 8.06,9.56\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M3,14h3v2H1V8h2V14z M5,10h2v6h2v-6h2V8H5V10z M12,16h5v-2h-3v-1h3v-2h-3v-1h3V8h-5V16z M24,11h-2V9h-2v2h-2v2h2v2h2v-2h2 V11z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"11,9.83 11,14 13,14 13,9.83 14.59,11.41 16,10 12,6 8,10 9.41,11.41\"></polygon><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5v-3h3.02 c0.91,1.21,2.35,2,3.98,2s3.06-0.79,3.98-2H19V19z M19,14h-4.18c-0.41,1.16-1.51,2-2.82,2s-2.4-0.84-2.82-2H5V5h14V14z\"></path></g></g>" } } }, - "media_bluetooth_off": { - "name": "media_bluetooth_off", + "delete_forever": { + "name": "delete_forever", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M9,6.17V3h6v4h-4v1.17L9,6.17z M19.42,15L22,17.57l-0.8,0.8l-6.78-6.78l0.8-0.8l2.75,2.75V9h0.6L22,12.43L19.42,15z M19.17,13.55l1.13-1.13l-1.13-1.13V13.55z M21.19,21.19l-1.41,1.41l-3.98-3.98l-0.58,0.58l-0.85-0.85l0.58-0.58L11,13.83V17 c0,2.21-1.78,4-3.99,4S3,19.21,3,17s1.79-4,4.01-4c0.73,0,1.41,0.21,2,0.55v-1.72L1.39,4.22L2.8,2.81L21.19,21.19z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z\"></path>" } } }, - "media_bluetooth_on": { - "name": "media_bluetooth_on", + "app_blocking": { + "name": "app_blocking", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M9,3l0.01,10.55c-0.6-0.34-1.28-0.55-2-0.55C4.79,13,3,14.79,3,17s1.79,4,4.01,4S11,19.21,11,17V7h4V3H9z M21,12.43 L17.57,9h-0.6v4.55l-2.75-2.75l-0.85,0.85L16.73,15l-3.35,3.35l0.85,0.85l2.75-2.75V21h0.6L21,17.57L18.42,15L21,12.43z M18.17,11.3l1.13,1.13l-1.13,1.13V11.3z M19.3,17.57l-1.13,1.13v-2.26L19.3,17.57z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z\"></path><path d=\"M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z\"></path></g></g>" } } }, - "medication": { - "name": "medication", + "quickreply": { + "name": "quickreply", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M4,14.59V4h12v5h1V4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v13l3-3h7v-1H5.59L4,14.59z\"></path></g><g><polygon points=\"18,13 16.4,13 17.64,10 14,10 14,14.36 15.45,14.36 15.45,18\"></polygon></g></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M10.5,15H8v-3h2.5V9.5h3V12H16v3h-2.5v2.5h-3V15z M19,8v11c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V8c0-1.1,0.9-2,2-2h10 C18.1,6,19,6.9,19,8z M17,8H7v11h10V8z M18,3H6v2h12V3z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M4,17.17V4h16v6h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-2H5.17L4,17.17z\"></path></g><g><polygon points=\"22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23\"></polygon></g></g></g>" } } }, - "mobiledata_off": { - "name": "mobiledata_off", + "arrow_circle_left": { + "name": "arrow_circle_left", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10,13l-3-3l3-3l1.06,1.06L9.87,9.25H13v1.5H9.87l1.19,1.19L10,13z M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8 S2,5.58,2,10z M16.5,10c0,3.58-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10S6.42,3.5,10,3.5S16.5,6.42,16.5,10z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><polygon points=\"16,6.82 17.59,8.41 19,7 15,3 11,7 12.41,8.41 14,6.82 14,11.17 16,13.17\"></polygon><polygon points=\"1.39,4.22 8,10.83 8,17.18 6.41,15.59 5,17 9,21 13,17 11.59,15.59 10,17.18 10,12.83 19.78,22.61 21.19,21.19 2.81,2.81\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M2,12c0,5.52,4.48,10,10,10c5.52,0,10-4.48,10-10S17.52,2,12,2C6.48,2,2,6.48,2,12z M20,12c0,4.42-3.58,8-8,8 c-4.42,0-8-3.58-8-8s3.58-8,8-8C16.42,4,20,7.58,20,12z M8,12l4-4l1.41,1.41L11.83,11H16v2h-4.17l1.59,1.59L12,16L8,12z\"></path></g>" } } }, - "mobile_friendly": { - "name": "mobile_friendly", + "alarm": { + "name": "alarm", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\"></path>" } } }, - "mobile_off": { - "name": "mobile_off", + "schedule": { + "name": "schedule", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17zM1.49 3.76L5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.41-1.41L2.9 2.35 1.49 3.76zM7 9.27L16.73 19H7V9.27z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\"></path>" } } }, - "mode_night": { - "name": "mode_night", + "density_small": { + "name": "density_small", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"14\" x=\"3\" y=\"11.5\"></rect><rect height=\"1.5\" width=\"14\" x=\"3\" y=\"7\"></rect><rect height=\"1.5\" width=\"14\" x=\"3\" y=\"2.5\"></rect><rect height=\"1.5\" width=\"14\" x=\"3\" y=\"16\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M9.5,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-0.34,0-0.68-0.02-1.01-0.07c1.91-2.16,3.01-4.98,3.01-7.93s-1.1-5.77-3.01-7.93 C8.82,4.02,9.16,4,9.5,4 M9.5,2c-1.82,0-3.53,0.5-5,1.35c2.99,1.73,5,4.95,5,8.65s-2.01,6.92-5,8.65C5.97,21.5,7.68,22,9.5,22 c5.52,0,10-4.48,10-10S15.02,2,9.5,2z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"18\" x=\"3\" y=\"2\"></rect><rect height=\"2\" width=\"18\" x=\"3\" y=\"20\"></rect><rect height=\"2\" width=\"18\" x=\"3\" y=\"14\"></rect><rect height=\"2\" width=\"18\" x=\"3\" y=\"8\"></rect></g></g>" } } }, - "mode_standby": { - "name": "mode_standby", + "gif": { + "name": "gif", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M15,12c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,10.34,15,12z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.5 9H13v6h-1.5V9zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z\"></path>" } } }, - "monitor_weight": { - "name": "monitor_weight", + "contact_support": { + "name": "contact_support", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z M12,6 c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S13.66,6,12,6z M11,9.5h-1v-1h1V9.5z M12.5,9.5h-1v-1h1V9.5z M14,9.5h-1v-1h1V9.5z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 23.59v-3.6c-5.01-.26-9-4.42-9-9.49C2 5.26 6.26 1 11.5 1S21 5.26 21 10.5c0 4.95-3.44 9.93-8.57 12.4l-1.43.69zM11.5 3C7.36 3 4 6.36 4 10.5S7.36 18 11.5 18H13v2.3c3.64-2.3 6-6.08 6-9.8C19 6.36 15.64 3 11.5 3zm-1 11.5h2v2h-2zm2-1.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z\"></path>" } } }, - "nearby_error": { - "name": "nearby_error", + "swipe_vertical": { + "name": "swipe_vertical", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M19.8,13.69l-1.18-4.17c-0.23-0.83-0.97-1.41-1.83-1.45L13.6,8l-0.91,0.41l-1.22-2.74C11.02,4.65,9.84,4.2,8.83,4.64 C7.82,5.09,7.36,6.27,7.81,7.28l2.23,5.03l-1.19,0.21C8.39,12.6,7.91,12.9,7.7,13.46L6.99,15.3L13,17.62 c0.37,0.14,0.78,0.13,1.15-0.03l4.81-2.13C19.65,15.16,20,14.41,19.8,13.69z M13.54,16.23l-4.62-1.78L9.1,14l3.09-0.54L9.18,6.68 c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25l1.82,4.11l1.96-0.87l2.84,0.05c0.22,0.01,0.4,0.16,0.46,0.36l1.18,4.17 L13.54,16.23z M1,10c0,2.69,1.2,5.05,3,6.37V14h1v4H1v-1h2.18C1.26,15.47,0,12.91,0,10s1.26-5.47,3.18-7H1V2h4v4H4V3.63 C2.2,4.95,1,7.31,1,10z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,7.57l4.42,4.42L12,16.41l-4.42-4.42L12,7.57z M12,19.19l-7.2-7.2l7.2-7.2l6,6V7.16l-4.58-4.58 c-0.78-0.78-2.05-0.78-2.83,0l-8.01,8c-0.78,0.78-0.78,2.05,0,2.83l8.01,8c0.78,0.78,2.05,0.78,2.83,0L18,16.82v-3.63L12,19.19z M20,20h2v2h-2V20z M22,10h-2v8h2V10\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M1,2h3.5H6v1.5V7H4.5V4.09c-1.86,2.11-3,4.88-3,7.91s1.14,5.79,3,7.91V17H6v3.5V22H4.5H1v-1.5h2.02 C1.13,18.18,0,15.22,0,12s1.13-6.18,3.02-8.5H1V2z M20.22,10l-4.15,0.01c-0.16-0.01-0.31,0.02-0.45,0.08l-0.59,0.26L13.2,6.25 c-0.56-1.26-2.04-1.83-3.3-1.27s-1.83,2.04-1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05-0.99,0.27-1.36,1.21L8,19.19l6.78,2.67 c0.49,0.19,1.05,0.18,1.53-0.04l5.99-2.65c0.89-0.4,1.37-1.38,1.13-2.32l-1.36-5.34C21.85,10.65,21.1,10.04,20.22,10z M21.49,17.34 L15.5,20l-4.92-1.96l4.18-0.88l-4.3-9.7c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25l2.5,5.65l1.61-0.71L20.13,12 L21.49,17.34z\"></path></g>" } } }, - "nearby_off": { - "name": "nearby_off", + "production_quantity_limits": { + "name": "production_quantity_limits", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M21.41,13.42L18.83,16l-1.81-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l2.58-2.58c0.78-0.78,2.05-0.78,2.83,0l8,8 C22.2,11.37,22.2,12.63,21.41,13.42z M21.19,21.19l-1.41,1.41L16,18.83l-2.58,2.58c-0.78,0.78-2.05,0.78-2.83,0l-8-8 c-0.78-0.78-0.78-2.05,0-2.83L5.17,8L1.39,4.22L2.8,2.81L21.19,21.19z M14.19,17.02l-1.39-1.39l-0.8,0.8L7.58,12l0.8-0.8 l-1.4-1.39L4.8,12l7.2,7.2L14.19,17.02z M16.42,12L12,7.58l-0.8,0.8l4.42,4.42L16.42,12z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,10h-2V8h2V10z M13,6h-2V1h2V6z M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18z M17,18 c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2S18.1,18,17,18z M8.1,13h7.45c0.75,0,1.41-0.41,1.75-1.03L21,4.96L19.25,4l-3.7,7 H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37,5.48,17,7,17h12v-2H7L8.1,13z\"></path>" } } }, - "network_cell": { - "name": "network_cell", + "verified_user": { + "name": "verified_user", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M2,22h20V2L2,22z M20,20h-3V9.83l3-3V20z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11 7 3.11V11zm-11.59.59L6 13l4 4 8-8-1.41-1.42L10 14.17z\"></path>" } } }, - "network_wifi": { - "name": "network_wifi", + "get_app": { + "name": "get_app", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M12,8c-2.86,0-5.5,0.94-7.65,2.51L2.92,9.07 C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07l-1.43,1.43C17.5,8.94,14.86,8,12,8z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 5v6h1.17L12 13.17 9.83 11H11V5h2m2-2H9v6H5l7 7 7-7h-4V3zm4 15H5v2h14v-2z\"></path>" } } }, - "nfc": { - "name": "nfc", + "published_with_changes": { + "name": "published_with_changes", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18.6,19.5H21v2h-6v-6h2v2.73c1.83-1.47,3-3.71,3-6.23c0-4.07-3.06-7.44-7-7.93V2.05c5.05,0.5,9,4.76,9,9.95 C22,14.99,20.68,17.67,18.6,19.5z M4,12c0-2.52,1.17-4.77,3-6.23V8.5h2v-6H3v2h2.4C3.32,6.33,2,9.01,2,12c0,5.19,3.95,9.45,9,9.95 v-2.02C7.06,19.44,4,16.07,4,12z M16.24,8.11l-5.66,5.66l-2.83-2.83l-1.41,1.41l4.24,4.24l7.07-7.07L16.24,8.11z\"></path>" } } }, - "nightlight": { - "name": "nightlight", + "note_add": { + "name": "note_add", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><g><path d=\"M14,4c0.34,0,0.68,0.02,1.01,0.07C13.1,6.23,12,9.05,12,12s1.1,5.77,3.01,7.93C14.68,19.98,14.34,20,14,20 c-4.41,0-8-3.59-8-8S9.59,4,14,4 M14,2C8.48,2,4,6.48,4,12s4.48,10,10,10c1.82,0,3.53-0.5,5-1.35c-2.99-1.73-5-4.95-5-8.65 s2.01-6.92,5-8.65C17.53,2.5,15.82,2,14,2L14,2z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 11h-2v3H8v2h3v3h2v-3h3v-2h-3zm1-9H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z\"></path>" } } }, - "note_alt": { - "name": "note_alt", + "not_accessible": { + "name": "not_accessible", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10.95,14h1c-0.24,1.69-1.69,3-3.45,3C6.57,17,5,15.43,5,13.5c0-1.76,1.31-3.21,3-3.45v1c-1.14,0.23-2,1.24-2,2.45 C6,14.88,7.12,16,8.5,16C9.71,16,10.72,15.14,10.95,14z M8.5,4.5C8.5,5.33,9.17,6,10,6s1.5-0.67,1.5-1.5S10.83,3,10,3 S8.5,3.67,8.5,4.5z M11,9.59V8.96l0.47,0.43c0.17,0.16,0.35,0.3,0.53,0.43c0.77,0.57,1.68,0.89,2.66,0.89v-1 c-0.94,0-1.81-0.36-2.49-1.04L12,8.52l-1.15-1.05c0,0-0.49-0.47-0.85-0.47C9.57,7,9.21,7.28,9.07,7.66L11,9.59z M16.36,16.36 L3.64,3.64L2.93,4.34L9,10.41V12c0,0.55,0.45,1,1,1h1.59l4.07,4.07L16.36,16.36z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5 C21,3.9,20.1,3,19,3z M12,2.75c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,19H5 V5h14V19z\"></path><polygon points=\"15.08,11.03 12.96,8.91 7,14.86 7,17 9.1,17\"></polygon><path d=\"M16.85,9.27c0.2-0.2,0.2-0.51,0-0.71l-1.41-1.41c-0.2-0.2-0.51-0.2-0.71,0l-1.06,1.06l2.12,2.12L16.85,9.27z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M10,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M19,13v-2c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05 C15.29,12.12,17.25,12.99,19,13z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9 c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2 h2.17l5.61,5.61l1.41-1.41L2.81,2.81z\"></path></g>" } } }, - "password": { - "name": "password", + "credit_card": { + "name": "credit_card", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M2,17h20v2H2V17z M3.15,12.95L4,11.47l0.85,1.48l1.3-0.75L5.3,10.72H7v-1.5H5.3l0.85-1.47L4.85,7L4,8.47L3.15,7l-1.3,0.75 L2.7,9.22H1v1.5h1.7L1.85,12.2L3.15,12.95z M9.85,12.2l1.3,0.75L12,11.47l0.85,1.48l1.3-0.75l-0.85-1.48H15v-1.5h-1.7l0.85-1.47 L12.85,7L12,8.47L11.15,7l-1.3,0.75l0.85,1.47H9v1.5h1.7L9.85,12.2z M23,9.22h-1.7l0.85-1.47L20.85,7L20,8.47L19.15,7l-1.3,0.75 l0.85,1.47H17v1.5h1.7l-0.85,1.48l1.3,0.75L20,11.47l0.85,1.48l1.3-0.75l-0.85-1.48H23V9.22z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\"></path>" } } }, - "pattern": { - "name": "pattern", + "thumb_up": { + "name": "thumb_up", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M4,6c0-1.1,0.9-2,2-2s2,0.9,2,2S7.1,8,6,8S4,7.1,4,6z M6,14c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S4.9,14,6,14z M12,8 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,8,12,8z M18,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S19.1,10,18,10z M17.98,16 c-0.74,0-1.37,0.4-1.72,1h-2.54c-0.34-0.6-0.98-1-1.72-1s-1.37,0.4-1.72,1H8.41l3.07-3.07C11.65,13.97,11.82,14,12,14 c1.1,0,2-0.9,2-2c0-0.18-0.03-0.35-0.07-0.51l3.56-3.56C17.65,7.97,17.82,8,18,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56C12.35,10.03,12.18,10,12,10c-1.1,0-2,0.9-2,2c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56 C6.35,16.03,6.18,16,6,16c-1.1,0-2,0.9-2,2s0.9,2,2,2c0.74,0,1.37-0.4,1.72-1h2.57c0.34,0.6,0.98,1,1.72,1s1.37-0.4,1.72-1h2.55 c0.34,0.6,0.98,1,1.72,1c1.1,0,2-0.9,2-2C19.98,16.9,19.08,16,17.98,16z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z\"></path>" } } }, - "pin": { - "name": "pin", + "shop_two": { + "name": "shop_two", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\"></path><polygon points=\"6.49,10.5 6.49,15 7.64,15 7.64,9 6.77,9 5.01,10.27 5.59,11.16\"></polygon><path d=\"M11.47,10.05c0.5,0,0.81,0.32,0.81,0.72c0,0.37-0.14,0.64-0.54,1.06c-0.36,0.38-1.06,1.08-2.13,2.15V15h3.89v-0.99h-2.37 l-0.03-0.05c0.68-0.68,1.15-1.14,1.4-1.39c0.61-0.6,0.92-1.22,0.92-1.86c0-0.24-0.05-1.04-0.91-1.48C12.04,9,11.25,8.87,10.56,9.2 c-0.82,0.39-0.99,1.13-1,1.15l1.01,0.42C10.67,10.44,10.95,10.05,11.47,10.05z\"></path><path d=\"M16.99,13.94c-0.83,0-0.99-0.76-1.02-0.86l-1.03,0.41c0.45,1.59,2.01,1.51,2.05,1.51c1.2,0,1.68-0.72,1.76-0.85 c0.32-0.49,0.36-1.24-0.01-1.76c-0.17-0.24-0.4-0.41-0.68-0.52V11.8c0.2-0.1,0.37-0.26,0.52-0.48c0.26-0.41,0.31-1.07-0.02-1.57 C18.48,9.64,18.03,9,16.94,9c-1.26,0-1.74,0.9-1.85,1.24l0.99,0.41c0.11-0.32,0.35-0.64,0.85-0.64c0.44,0,0.75,0.26,0.75,0.65 c0,0.58-0.55,0.72-0.88,0.72h-0.46v1h0.5c0.56,0,1.04,0.24,1.04,0.79C17.88,13.66,17.4,13.94,16.99,13.94z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9zm-9-1l5.5-4L12 8z\"></path>" } } }, - "play_lesson": { - "name": "play_lesson", + "dangerous": { + "name": "dangerous", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><path d=\"M0,0h20v20H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12.89,3H7.11L3,7.11v5.77L7.11,17h5.77L17,12.89V7.11L12.89,3z M15.5,12.27l-3.23,3.23H7.73L4.5,12.27V7.73L7.73,4.5 h4.53l3.23,3.23V12.27z\"></path><polygon points=\"12.22,6.72 10,8.94 7.78,6.72 6.72,7.78 8.94,10 6.72,12.22 7.78,13.28 10,11.06 12.22,13.28 13.28,12.22 11.06,10 13.28,7.78\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M5,20V4h2v7l2.5-1.5L12,11V4h5v7.08c0.33-0.05,0.66-0.08,1-0.08s0.67,0.03,1,0.08V4c0-1.1-0.9-2-2-2H5C3.9,2,3,2.9,3,4v16 c0,1.1,0.9,2,2,2h7.26c-0.42-0.6-0.75-1.28-0.97-2H5z M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M16.75,20.5v-5l4,2.5L16.75,20.5z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3z M19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1V14.9z M14.83,7.76L12,10.59L9.17,7.76L7.76,9.17L10.59,12l-2.83,2.83l1.41,1.41L12,13.41l2.83,2.83l1.41-1.41L13.41,12l2.83-2.83 L14.83,7.76z\"></path></g>" } } }, - "price_change": { - "name": "price_change", + "backup": { + "name": "backup", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M8,17h2v-1h1c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1H8v-1h4V8h-2V7H8v1H7C6.45,8,6,8.45,6,9v3c0,0.55,0.45,1,1,1h3v1H6v2 h2V17z M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V6C22,4.89,21.11,4,20,4z M20,18H4V6h16V18z M14,10l2-2l2,2 M18,14.25l-2,2l-2-2\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z\"></path>" } } }, - "price_check": { - "name": "price_check", + "theaters": { + "name": "theaters", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M11,13V9c0-0.55-0.45-1-1-1H6V6h5V4H8.5V3h-2v1H5C4.45,4,4,4.45,4,5v4c0,0.55,0.45,1,1,1h4v2H4v2h2.5v1h2v-1H10 C10.55,14,11,13.55,11,13z\"></path><polygon points=\"19.59,12.52 13.93,18.17 11.1,15.34 9.69,16.76 13.93,21 21,13.93\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm4-2h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z\"></path>" } } }, - "quiz": { - "name": "quiz", + "analytics": { + "name": "analytics", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4 C22,2.9,21.1,2,20,2z M20,16H8V4h12V16z M13.51,10.16c0.41-0.73,1.18-1.16,1.63-1.8c0.48-0.68,0.21-1.94-1.14-1.94 c-0.88,0-1.32,0.67-1.5,1.23l-1.37-0.57C11.51,5.96,12.52,5,13.99,5c1.23,0,2.08,0.56,2.51,1.26c0.37,0.6,0.58,1.73,0.01,2.57 c-0.63,0.93-1.23,1.21-1.56,1.81c-0.13,0.24-0.18,0.4-0.18,1.18h-1.52C13.26,11.41,13.19,10.74,13.51,10.16z M12.95,13.95 c0-0.59,0.47-1.04,1.05-1.04c0.59,0,1.04,0.45,1.04,1.04c0,0.58-0.44,1.05-1.04,1.05C13.42,15,12.95,14.53,12.95,13.95z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><rect height=\"5\" width=\"2\" x=\"7\" y=\"12\"></rect><rect height=\"10\" width=\"2\" x=\"15\" y=\"7\"></rect><rect height=\"3\" width=\"2\" x=\"11\" y=\"14\"></rect><rect height=\"2\" width=\"2\" x=\"11\" y=\"10\"></rect></g></g>" } } }, - "radar": { - "name": "radar", + "camera_enhance": { + "name": "camera_enhance", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M19.74,18.33C21.15,16.6,22,14.4,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12s4.48,10,10,10c2.4,0,4.6-0.85,6.33-2.26 c0.27-0.22,0.53-0.46,0.78-0.71c0.03-0.03,0.05-0.06,0.07-0.08C19.38,18.75,19.57,18.54,19.74,18.33z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8c0,1.85-0.63,3.54-1.69,4.9l-1.43-1.43c0.69-0.98,1.1-2.17,1.1-3.46c0-3.31-2.69-6-6-6s-6,2.69-6,6 s2.69,6,6,6c1.3,0,2.51-0.42,3.49-1.13l1.42,1.42C15.54,19.37,13.85,20,12,20z M13.92,12.51c0.17-0.66,0.02-1.38-0.49-1.9 l-0.02-0.02c-0.77-0.77-2-0.78-2.78-0.04c-0.01,0.01-0.03,0.02-0.05,0.04c-0.78,0.78-0.78,2.05,0,2.83l0.02,0.02 c0.52,0.51,1.25,0.67,1.91,0.49l1.51,1.51c-0.6,0.36-1.29,0.58-2.04,0.58c-2.21,0-4-1.79-4-4s1.79-4,4-4s4,1.79,4,4 c0,0.73-0.21,1.41-0.56,2L13.92,12.51z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 10l-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12zM12 8c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z\"></path>" } } }, - "remember_me": { - "name": "remember_me", + "disabled_visible": { + "name": "disabled_visible", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14.25,12.5c1.67,0,3.21,0.78,4.04,2c-0.83,1.22-2.37,2-4.04,2s-3.21-0.78-4.04-2C11.04,13.28,12.58,12.5,14.25,12.5z M14.25,11c-2.61,0-4.85,1.45-5.75,3.5c0.9,2.05,3.14,3.5,5.75,3.5s4.85-1.45,5.75-3.5C19.1,12.45,16.86,11,14.25,11z M14.25,15.75 c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25S14.94,15.75,14.25,15.75z M17.99,10.38 C18,10.26,18,10.13,18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,4.24,3.3,7.71,7.47,7.98c-0.73-0.53-1.35-1.18-1.83-1.93 C5.22,15.11,3.5,12.75,3.5,10c0-1.52,0.53-2.92,1.41-4.03l4.85,4.85c0.43-0.29,0.9-0.53,1.39-0.73L5.97,4.91 C7.08,4.03,8.48,3.5,10,3.5c3.51,0,6.39,2.81,6.5,6.3C17.02,9.95,17.52,10.14,17.99,10.38z\"></path>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,21H7v-1h10V21z M17,18H7v-0.48 C8.47,16.53,10.22,16,12,16s3.53,0.53,5,1.52V18z M17,15.21C15.5,14.44,13.8,14,12,14s-3.5,0.44-5,1.21V6h10V15.21z M17,4H7V3h10 V4z\"></path><path d=\"M12,13c1.66,0,3-1.34,3-3s-1.34-3-3-3s-3,1.34-3,3S10.34,13,12,13z M12,9c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S11.45,9,12,9z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,15c1.95,0,3.76,0.98,4.75,2.5C20.76,19.02,18.95,20,17,20s-3.76-0.98-4.75-2.5C13.24,15.98,15.05,15,17,15z M17,13 c-3.18,0-5.9,1.87-7,4.5c1.1,2.63,3.82,4.5,7,4.5s5.9-1.87,7-4.5C22.9,14.87,20.18,13,17,13z M17,19c-0.83,0-1.5-0.67-1.5-1.5 S16.17,16,17,16s1.5,0.67,1.5,1.5S17.83,19,17,19z M21.99,12.34C22,12.23,22,12.11,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12 c0,5.17,3.93,9.43,8.96,9.95c-0.93-0.73-1.72-1.64-2.32-2.68C5.9,18,4,15.22,4,12c0-1.85,0.63-3.55,1.69-4.9l5.66,5.66 c0.56-0.4,1.17-0.73,1.82-1L7.1,5.69C8.45,4.63,10.15,4,12,4c4.24,0,7.7,3.29,7.98,7.45C20.69,11.67,21.37,11.97,21.99,12.34z\"></path>" } } }, - "reset_tv": { - "name": "reset_tv", + "account_box": { + "name": "account_box", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M22,8V5c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v12c0,1.1,0.9,2,2,2h4v2h8v-2h4c1.1,0,1.99-0.9,1.99-2v-5H22c0-1.1-0.9-2-2-2 h-7.17l1.83-1.83l-1.41-1.41C9.69,10.31,10.88,9.12,9,11c2.06,2.06,0.9,0.9,4.24,4.24l1.41-1.41L12.83,12H20v5H4V5h16v3H22z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v14H5V5h14m0-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 9c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6 10H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18zm-9.69-2h7.38c-.69-.56-2.38-1.12-3.69-1.12s-3.01.56-3.69 1.12z\"></path>" } } }, - "restart_alt": { - "name": "restart_alt", + "find_in_page": { + "name": "find_in_page", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M6,13c0-1.65,0.67-3.15,1.76-4.24L6.34,7.34C4.9,8.79,4,10.79,4,13c0,4.08,3.05,7.44,7,7.93v-2.02 C8.17,18.43,6,15.97,6,13z M20,13c0-4.42-3.58-8-8-8c-0.06,0-0.12,0.01-0.18,0.01l1.09-1.09L11.5,2.5L8,6l3.5,3.5l1.41-1.41 l-1.08-1.08C11.89,7.01,11.95,7,12,7c3.31,0,6,2.69,6,6c0,2.97-2.17,5.43-5,5.91v2.02C16.95,20.44,20,17.08,20,13z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 4h7l5 5v8.58l-1.84-1.84c1.28-1.94 1.07-4.57-.64-6.28C14.55 8.49 13.28 8 12 8c-1.28 0-2.55.49-3.53 1.46-1.95 1.95-1.95 5.11 0 7.05.97.97 2.25 1.46 3.53 1.46.96 0 1.92-.28 2.75-.83L17.6 20H6V4zm8.11 11.1c-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11c.56-.57 1.31-.88 2.11-.88s1.55.31 2.11.88c.56.56.88 1.31.88 2.11s-.31 1.55-.88 2.11z\"></path>" } } }, - "reviews": { - "name": "reviews", + "grading": { + "name": "grading", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"1\" width=\"10\" x=\"5\" y=\"4\"></rect><rect height=\"1\" width=\"4.5\" x=\"5\" y=\"15\"></rect><rect height=\"1\" width=\"4.5\" x=\"5\" y=\"12.25\"></rect><rect height=\"1\" width=\"10\" x=\"5\" y=\"6.75\"></rect><rect height=\"1\" width=\"10\" x=\"5\" y=\"9.5\"></rect><polygon points=\"12.17,14.59 11.46,13.88 10.76,14.59 12.17,16 15,13.17 14.29,12.46\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z\"></path><polygon points=\"12,15 13.57,11.57 17,10 13.57,8.43 12,5 10.43,8.43 7,10 10.43,11.57\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z\"></path></g>" } } }, - "rsvp": { - "name": "rsvp", + "toll": { + "name": "toll", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16,9h1.5l-1.75,6h-1.5L12.5,9H14l1,3.43L16,9z M5.1,12.9L6,15H4.5l-0.85-2H2.5v2H1V9h3.5C5.35,9,6,9.65,6,10.5v1 C6,12.1,5.6,12.65,5.1,12.9z M4.5,10.5h-2v1h2V10.5z M21.5,13h-2v2H18V9h3.5c0.83,0,1.5,0.67,1.5,1.5v1C23,12.33,22.33,13,21.5,13 z M21.5,10.5h-2v1h2V10.5z M11.5,9v1.5h-3v0.75h2c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7v-1.5h3v-0.75H7.75 C7.34,12.75,7,12.41,7,12v-2c0-0.55,0.45-1,1-1H11.5z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z\"></path>" } } }, - "r_mobiledata": { - "name": "r_mobiledata", + "file_present": { + "name": "file_present", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M7.8,7.2L9,10H7L5.87,7.33H4V10H2V2h5c1.13,0,2,0.87,2,2v1.33C9,6.13,8.47,6.87,7.8,7.2z M7,4H4v1.33h3V4z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h8v4h4V20z M12,17L12,17 c-1.1,0-2-0.9-2-2l0-5.5C10,9.22,10.22,9,10.5,9h0C10.78,9,11,9.22,11,9.5V15h2V9.5C13,8.12,11.88,7,10.5,7h0C9.12,7,8,8.12,8,9.5 L8,15c0,2.21,1.79,4,4,4h0c2.21,0,4-1.79,4-4v-4h-2v4C14,16.1,13.1,17,12,17z\"></path></g>" } } }, - "screenshot": { - "name": "screenshot", + "pending": { + "name": "pending", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6 c0-3.31,2.69-6,6-6s6,2.69,6,6C16,13.31,13.31,16,10,16z\"></path><circle cx=\"6.5\" cy=\"10\" r=\"1\"></circle><circle cx=\"13.5\" cy=\"10\" r=\"1\"></circle><circle cx=\"10\" cy=\"10\" r=\"1\"></circle></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M9.5,8.5H12V7H8v4h1.5V8.5z M12,17h4v-4h-1.5v2.5H12V17z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z\"></path><circle cx=\"7\" cy=\"12\" r=\"1.5\"></circle><circle cx=\"12\" cy=\"12\" r=\"1.5\"></circle><circle cx=\"17\" cy=\"12\" r=\"1.5\"></circle></g></g>" } } }, - "screen_lock_landscape": { - "name": "screen_lock_landscape", + "calendar_view_week": { + "name": "calendar_view_week", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M13,6h2.5v12H13V6z M11,18H8.5V6H11 V18z M4,6h2.5v12H4V6z M20,18h-2.5V6H20V18z\"></path></g>" } } }, - "screen_lock_portrait": { - "name": "screen_lock_portrait", + "thumb_down_off_alt": { + "name": "thumb_down_off_alt", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M15,3H6C5.17,3,4.46,3.5,4.16,4.22l-3.02,7.05C1.05,11.5,1,11.74,1,12v2c0,1.1,0.9,2,2,2h6.31l-0.95,4.57l-0.03,0.32 c0,0.41,0.17,0.79,0.44,1.06L9.83,23l6.59-6.59C16.78,16.05,17,15.55,17,15V5C17,3.9,16.1,3,15,3z M15,15l-4.34,4.34L12,14H3v-2 l3-7h9V15z M19,3h4v12h-4V3z\"></path></g></g>" } } }, - "screen_lock_rotation": { - "name": "screen_lock_rotation", + "arrow_circle_down": { + "name": "arrow_circle_down", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S13.31,16,10,16 M10,17c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7 c-3.87,0-7,3.13-7,7C3,13.87,6.13,17,10,17L10,17z M10.5,10V7h-1v3H7l3,3l3-3H10.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22.3 13.77l-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41-2.45-2.45c-.59-.59-1.54-.59-2.12 0L1.8 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM15.05 10h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4h-3.4v-.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z\"></path></g>" } } }, - "screen_rotation": { - "name": "screen_rotation", + "unpublished": { + "name": "unpublished", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.94,5.12L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.86,20,13.48,20,12c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z M17.66,9.53l-1.41-1.41l-2.65,2.65l1.41,1.41 L17.66,9.53z M19.78,22.61l-2.27-2.27C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22 l1.41-1.41l18.38,18.38L19.78,22.61z M16.06,18.88l-3.88-3.88l-1.59,1.59l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18L5.12,7.94 C4.41,9.14,4,10.52,4,12c0,4.41,3.59,8,8,8C13.48,20,14.86,19.59,16.06,18.88z\"></path>" } } }, - "screen_search_desktop": { - "name": "screen_search_desktop", + "view_day": { + "name": "view_day", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M4,18h16c1.1,0,1.99-0.9,1.99-2L22,5c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v11C2,17.1,2.9,18,4,18z M4,5h16v11H4V5z\"></path><rect height=\"2\" width=\"22\" x=\"1\" y=\"19\"></rect><path d=\"M13.97,7.53c-1.37-1.37-3.58-1.37-4.95,0s-1.37,3.58,0,4.95c1.18,1.18,3,1.34,4.36,0.47l2.09,2.09l1.06-1.06l-2.09-2.09 C15.31,10.53,15.16,8.71,13.97,7.53z M12.91,11.41c-0.78,0.78-2.05,0.78-2.83,0c-0.78-0.78-0.78-2.05,0-2.83s2.05-0.78,2.83,0 C13.69,9.37,13.69,10.63,12.91,11.41z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z\"></path>" } } }, - "sd_storage": { - "name": "sd_storage", + "addchart": { + "name": "addchart", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 4v16H6V8.83L10.83 4H18m0-2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z\"></path></g>" } } }, - "security_update": { - "name": "security_update", + "extension_off": { + "name": "extension_off", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V8c1.1,0,2,0.9,2,2s-0.9,2-2,2v3.5C3,16.33,3.67,17,4.5,17H8c0-1.1,0.9-2,2-2 s2,0.9,2,2h2.88l1.13,1.13L17.07,17.07z M10,13.5c-1.39,0-2.6,0.82-3.16,2H4.5v-2.34c1.18-0.56,2-1.77,2-3.16 c0-0.76-0.24-1.46-0.66-2.03l6.19,6.19C11.46,13.74,10.76,13.5,10,13.5z M19,10c0,1.1-0.9,2-2,2v2.88l-1.5-1.5V10.5H17 c0.28,0,0.5-0.22,0.5-0.5S17.28,9.5,17,9.5h-1.5v-5h-5V3c0-0.28-0.22-0.5-0.5-0.5S9.5,2.72,9.5,3v1.5H6.62L5.12,3H8c0-1.1,0.9-2,2-2 s2,0.9,2,2h3.5C16.33,3,17,3.67,17,4.5V8C18.1,8,19,8.9,19,10z\"></path>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M7,4V3h10v1H7z M16,12l-4,4l-4-4l1.41-1.41L11,12.17V8h2v4.17l1.59-1.59L16,12z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M1.39,4.22l1.62,1.62c0,0.05-0.01,0.1-0.01,0.16v3.8C5.7,9.8,6,11.96,6,12.5c0,0.54-0.29,2.7-3,2.7V19c0,1.1,0.9,2,2,2h3.8 c0-2.71,2.16-3,2.7-3c0.54,0,2.7,0.29,2.7,3H18c0.06,0,0.11,0,0.16-0.01l1.61,1.61l1.41-1.41L2.81,2.81L1.39,4.22z M11.5,16 c-1.5,0-3.57,0.83-4.37,3H5v-2.13c2.17-0.8,3-2.87,3-4.37c0-0.69-0.18-1.5-0.58-2.25l6.33,6.33C13,16.18,12.19,16,11.5,16z M8.83,6 l-2-2H9c0-1.38,1.12-2.5,2.5-2.5S14,2.62,14,4h4c1.1,0,2,0.9,2,2v4c1.38,0,2.5,1.12,2.5,2.5S21.38,15,20,15v2.17l-2-2V13h2 c0.28,0,0.5-0.22,0.5-0.5S20.28,12,20,12h-2V6h-6V4c0-0.28-0.22-0.5-0.5-0.5S11,3.72,11,4v2H8.83z\"></path>" } } }, - "security_update_good": { - "name": "security_update_good", + "view_array": { + "name": "view_array", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3,5h2v10H3V5z M15,5v10h2V5H15z M6,5h8v10H6V5z M7.5,13.5h5v-7h-5V13.5z\"></path>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M16,10.05l-1.41-1.41l-3.54,3.54l-1.41-1.41l-1.41,1.41L11.05,15L16,10.05z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15,7v10H9V7H15z M21,5h-3v14h3V5z M17,5H7v14h10V5z M6,5H3v14h3V5z\"></path>" } } }, - "security_update_warning": { - "name": "security_update_warning", + "gavel": { + "name": "gavel", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><rect height=\"2\" width=\"2\" x=\"11\" y=\"15\"></rect><rect height=\"6\" width=\"2\" x=\"11\" y=\"7\"></rect><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z\"></path>" } } }, - "sell": { - "name": "sell", + "pan_tool": { + "name": "pan_tool", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M21.41,11.41l-8.83-8.83C12.21,2.21,11.7,2,11.17,2H4C2.9,2,2,2.9,2,4v7.17c0,0.53,0.21,1.04,0.59,1.41l8.83,8.83 c0.78,0.78,2.05,0.78,2.83,0l7.17-7.17C22.2,13.46,22.2,12.2,21.41,11.41z M12.83,20L4,11.17V4h7.17L20,12.83L12.83,20z\"></path><circle cx=\"6.5\" cy=\"6.5\" r=\"1.5\"></circle></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M18 24h-6.55c-1.08 0-2.14-.45-2.89-1.23l-7.3-7.61 2.07-1.83c.62-.55 1.53-.66 2.26-.27L8 14.34V4.79c0-1.38 1.12-2.5 2.5-2.5.17 0 .34.02.51.05.09-1.3 1.17-2.33 2.49-2.33.86 0 1.61.43 2.06 1.09.29-.12.61-.18.94-.18 1.38 0 2.5 1.12 2.5 2.5v.28c.16-.03.33-.05.5-.05 1.38 0 2.5 1.12 2.5 2.5V20c0 2.21-1.79 4-4 4zM4.14 15.28l5.86 6.1c.38.39.9.62 1.44.62H18c1.1 0 2-.9 2-2V6.15c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V3.42c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V2.51c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V4.79c0-.28-.22-.5-.5-.5s-.5.23-.5.5v12.87l-5.35-2.83-.51.45z\"></path>" } } }, - "send_to_mobile": { - "name": "send_to_mobile", + "invert_colors": { + "name": "invert_colors", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14.53,6.59L14.53,6.59L10,2L5.5,6.56c-1.08,1.11-1.75,2.62-1.75,4.28c0,3.4,2.8,6.16,6.25,6.16s6.25-2.76,6.25-6.16 C16.25,9.19,15.6,7.7,14.53,6.59z M5.25,10.84c0-1.21,0.47-2.35,1.32-3.22L10,4.14V15.5C7.38,15.5,5.25,13.41,5.25,10.84z\"></path>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,8l4,4l-4,4l-1.41-1.41L18.17,13H13v-2h5.17l-1.59-1.59L18,8z M7,1.01L17,1c1.1,0,2,0.9,2,2v4h-2V6H7v12h10v-1h2v4 c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V3C5,1.9,5.9,1.01,7,1.01z M7,21h10v-1H7V21z M7,4h10V3H7V4z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,4.81L12,19c-3.31,0-6-2.63-6-5.87c0-1.56,0.62-3.03,1.75-4.14L12,4.81 M12,2L6.35,7.56l0,0C4.9,8.99,4,10.96,4,13.13 C4,17.48,7.58,21,12,21c4.42,0,8-3.52,8-7.87c0-2.17-0.9-4.14-2.35-5.57l0,0L12,2z\"></path></g>" } } }, - "settings_suggest": { - "name": "settings_suggest", + "picture_in_picture": { + "name": "picture_in_picture", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M10,13c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S9.45,13,10,13 M10,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3 S11.66,11,10,11L10,11z M18.5,9l1.09-2.41L22,5.5l-2.41-1.09L18.5,2l-1.09,2.41L15,5.5l2.41,1.09L18.5,9z M21.28,12.72L20.5,11 l-0.78,1.72L18,13.5l1.72,0.78L20.5,16l0.78-1.72L23,13.5L21.28,12.72z M16.25,14c0-0.12,0-0.25-0.01-0.37l1.94-1.47l-2.5-4.33 l-2.24,0.94c-0.2-0.13-0.42-0.26-0.64-0.37L12.5,6h-5L7.2,8.41C6.98,8.52,6.77,8.65,6.56,8.78L4.32,7.83l-2.5,4.33l1.94,1.47 C3.75,13.75,3.75,13.88,3.75,14s0,0.25,0.01,0.37l-1.94,1.47l2.5,4.33l2.24-0.94c0.2,0.13,0.42,0.26,0.64,0.37L7.5,22h5l0.3-2.41 c0.22-0.11,0.43-0.23,0.64-0.37l2.24,0.94l2.5-4.33l-1.94-1.47C16.25,14.25,16.25,14.12,16.25,14z M14.83,17.64l-1.73-0.73 c-0.56,0.6-1.3,1.04-2.13,1.23L10.73,20H9.27l-0.23-1.86c-0.83-0.19-1.57-0.63-2.13-1.23l-1.73,0.73l-0.73-1.27l1.49-1.13 c-0.12-0.39-0.18-0.8-0.18-1.23c0-0.43,0.06-0.84,0.18-1.23l-1.49-1.13l0.73-1.27l1.73,0.73c0.56-0.6,1.3-1.04,2.13-1.23L9.27,8 h1.47l0.23,1.86c0.83,0.19,1.57,0.63,2.13,1.23l1.73-0.73l0.73,1.27l-1.49,1.13c0.12,0.39,0.18,0.8,0.18,1.23 c0,0.43-0.06,0.84-0.18,1.23l1.49,1.13L14.83,17.64z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 7h-8v6h8V7zm-2 4h-4V9h4v2zm4-8H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z\"></path>" } } }, - "settings_system_daydream": { - "name": "settings_system_daydream", + "flight_takeoff": { + "name": "flight_takeoff", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 17H9c-2.21 0-4-1.79-4-4 0-1.93 1.36-3.56 3.22-3.92C9.04 7.8 10.47 7 12 7c1.95 0 3.66 1.28 4.26 3.09 1.58.36 2.74 1.75 2.74 3.41 0 1.93-1.57 3.5-3.5 3.5zm-6.76-5.98C7.74 11.15 7 11.99 7 13c0 1.1.9 2 2 2h6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.87l-.17-.86C14.29 9.92 13.23 9 12 9c-.96 0-1.84.57-2.26 1.45l-.27.57h-.73zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49L21 11.49c.81-.23 1.28-1.05 1.07-1.85z\"></path>" } } }, - "share_location": { - "name": "share_location", + "announcement": { + "name": "announcement", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M13.02,19.93v2.02c2.01-0.2,3.84-1,5.32-2.21l-1.42-1.43C15.81,19.17,14.48,19.75,13.02,19.93z\"></path><path d=\"M4.03,12c0-4.05,3.03-7.41,6.95-7.93V2.05C5.95,2.58,2.03,6.84,2.03,12c0,5.16,3.92,9.42,8.95,9.95v-2.02 C7.06,19.41,4.03,16.05,4.03,12z\"></path><path d=\"M19.95,11h2.02c-0.2-2.01-1-3.84-2.21-5.32l-1.43,1.43C19.19,8.21,19.77,9.54,19.95,11z\"></path><path d=\"M18.34,4.26c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46,0.18,2.79,0.76,3.9,1.62L18.34,4.26z\"></path><path d=\"M18.33,16.9l1.43,1.42c1.21-1.48,2.01-3.31,2.21-5.32h-2.02C19.77,14.46,19.19,15.79,18.33,16.9z\"></path><path d=\"M16,11.1C16,8.61,14.1,7,12,7s-4,1.61-4,4.1c0,1.66,1.33,3.63,4,5.9C14.67,14.73,16,12.76,16,11.1z M12,12 c-0.59,0-1.07-0.48-1.07-1.07c0-0.59,0.48-1.07,1.07-1.07s1.07,0.48,1.07,1.07C13.07,11.52,12.59,12,12,12z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z\"></path>" } } }, - "shortcut": { - "name": "shortcut", + "language": { + "name": "language", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M15,5l-1.41,1.41L15,7.83L17.17,10H8c-2.76,0-5,2.24-5,5v4h2v-4c0-1.65,1.35-3,3-3h9.17L15,14.17l-1.41,1.41L15,17l6-6 L15,5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z\"></path>" } } }, - "signal_cellular_0_bar": { - "name": "signal_cellular_0_bar", + "hourglass_disabled": { + "name": "hourglass_disabled", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"7,4 13,4 13,6.59 10.5,9.09 11.21,9.79 14,7 14,7 14,3 6,3 6,4.59 7,5.59\"></polygon><path d=\"M2.93,2.93L2.22,3.64l6.57,6.57L6,13h0v4h8v-1.59l2.36,2.36l0.71-0.71L2.93,2.93z M13,16H7l0-2.59l2.5-2.5l3.5,3.5V16z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M2,22h20V2L2,22z M20,20H6.83L20,6.83V20z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17\"></polygon><path d=\"M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z\"></path></g></g>" } } }, - "signal_cellular_4_bar": { - "name": "signal_cellular_4_bar", + "mark_as_unread": { + "name": "mark_as_unread", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g><g><g><path d=\"M12.5,5.5h2.42c-0.13-0.39-0.41-0.72-0.79-0.9L8.5,2L2.87,4.6C2.34,4.84,2,5.37,2,5.96v6.54C2,13.33,2.67,14,3.5,14V5.96 l5-2.31L12.5,5.5z\"></path><path d=\"M16.5,7h-10C5.67,7,5,7.67,5,8.5v7C5,16.33,5.67,17,6.5,17h10c0.83,0,1.5-0.67,1.5-1.5v-7C18,7.67,17.33,7,16.5,7z M16.5,15.5h-10v-5.28l5,2.78l5-2.78V15.5z M11.5,11.28l-5-2.78h10L11.5,11.28z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 22h20V2L2 22z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16.23,7h2.6c-0.06-0.47-0.36-0.94-0.79-1.17L10.5,2L2.8,5.83C2.32,6.09,2,6.64,2,7.17V15c0,1.1,0.9,2,2,2V7.4L10.5,4 L16.23,7z\"></path><path d=\"M20,8H7c-1.1,0-2,0.9-2,2v9c0,1.1,0.9,2,2,2h13c1.1,0,2-0.9,2-2v-9C22,8.9,21.1,8,20,8z M20,19H7v-7l6.5,3.33L20,12V19z M13.5,13.33L7,10h13L13.5,13.33z\"></path></g></g>" } } }, - "signal_cellular_alt": { - "name": "signal_cellular_alt", + "view_week": { + "name": "view_week", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M11.67,5.5v9H8.33v-9H11.67z M3.5,5.5h3.33v9H3.5V5.5z M16.5,14.5h-3.33v-9h3.33V14.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M8,18H4V6h4V18z M14,18h-4V6h4V18z M20,18h-4V6h4V18z\"></path>" } } }, - "signal_cellular_connected_no_internet_0_bar": { - "name": "signal_cellular_connected_no_internet_0_bar", + "wysiwyg": { + "name": "wysiwyg", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.5,9v6H18V9H16.5z M2,18h13v-1.5H5.62L16.5,5.62V7.5H18V2L2,18z M18,18h-1.5v-1.5H18V18z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,18h2v-8h-2V18z M20,22h2v-2h-2V22z M18,20v2H2L22,2v6h-2V6.83L6.83,20H18z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z\"></path></g>" } } }, - "signal_cellular_connected_no_internet_4_bar": { - "name": "signal_cellular_connected_no_internet_4_bar", + "settings_brightness": { + "name": "settings_brightness", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g><g><g><polygon points=\"2,18 15,18 15,7.5 18,7.5 18,2\"></polygon><rect height=\"1.5\" width=\"1.5\" x=\"16.5\" y=\"16.5\"></rect><rect height=\"6.05\" width=\"1.5\" x=\"16.5\" y=\"9\"></rect></g></g>" - }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><g><path d=\"M20,18h2v-8h-2V18z M20,22h2v-2h-2V22z M2,22h16V8h4V2L2,22z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z\"></path>" } } }, - "signal_cellular_nodata": { - "name": "signal_cellular_nodata", + "currency_exchange": { + "name": "currency_exchange", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M13.06,12c0,2.06-1.96,2.46-2.37,2.53v0.98H9.31v-1.02c-0.58-0.14-1.88-0.61-2.37-2.33l1.3-0.53 c0.05,0.17,0.46,1.64,1.89,1.64c0.73,0,1.56-0.37,1.56-1.26c0-0.76-0.55-1.15-1.79-1.59c-0.86-0.31-2.63-0.81-2.63-2.6 c0-0.08,0.01-1.89,2.06-2.33V4.5h1.38v0.98c1.45,0.25,1.98,1.4,2.09,1.75l-1.24,0.53c-0.09-0.28-0.47-1.05-1.49-1.05 c-0.55,0-1.42,0.29-1.42,1.09c0,0.74,0.67,1.03,2.07,1.5C12.58,9.94,13.06,10.9,13.06,12z M6,14l0-1.5l-5,0l0,5l1.5,0l0-2.52 C4.11,17.4,6.87,19,10,19c4.97,0,9-4.03,9-9h-1.5c0,4.14-3.36,7.5-7.5,7.5c-2.67,0-5.02-1.4-6.35-3.5L6,14z M17.5,5.02 C15.89,2.6,13.13,1,10,1c-4.97,0-9,4.03-9,9h1.5c0-4.14,3.36-7.5,7.5-7.5c2.67,0,5.02,1.4,6.35,3.5L14,6v1.5h5v-5h-1.5L17.5,5.02z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M22,13h-9v9H2L22,2V13z M21,15.41L19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09-2.08L19.59,21 L21,19.59l-2.08-2.09L21,15.41z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12.89,11.1c-1.78-0.59-2.64-0.96-2.64-1.9c0-1.02,1.11-1.39,1.81-1.39c1.31,0,1.79,0.99,1.9,1.34l1.58-0.67 C15.39,8.03,14.72,6.56,13,6.24V5h-2v1.26C8.52,6.82,8.51,9.12,8.51,9.22c0,2.27,2.25,2.91,3.35,3.31 c1.58,0.56,2.28,1.07,2.28,2.03c0,1.13-1.05,1.61-1.98,1.61c-1.82,0-2.34-1.87-2.4-2.09L8.1,14.75c0.63,2.19,2.28,2.78,2.9,2.96V19 h2v-1.24c0.4-0.09,2.9-0.59,2.9-3.22C15.9,13.15,15.29,11.93,12.89,11.1z M3,21H1v-6h6v2l-2.48,0c1.61,2.41,4.36,4,7.48,4 c4.97,0,9-4.03,9-9h2c0,6.08-4.92,11-11,11c-3.72,0-7.01-1.85-9-4.67L3,21z M1,12C1,5.92,5.92,1,12,1c3.72,0,7.01,1.85,9,4.67L21,3 h2v6h-6V7l2.48,0C17.87,4.59,15.12,3,12,3c-4.97,0-9,4.03-9,9H1z\"></path></g>" } } }, - "signal_cellular_no_sim": { - "name": "signal_cellular_no_sim", + "space_dashboard": { + "name": "space_dashboard", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,4.5C17,3.67,16.33,3,15.5,3h-11C3.67,3,3,3.67,3,4.5v10.94C3,16.3,3.7,17,4.56,17H15.5c0.83,0,1.5-0.67,1.5-1.5V4.5z M15.5,4.5v4h-4.75v-4H15.5z M4.5,15.5v-11h4.75v11H4.5z M15.5,15.5h-4.75V10h4.75V15.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M5,19V5h6v14H5z M19,19h-6v-7h6V19z M19,10h-6V5h6V10z\"></path>" } } }, - "signal_cellular_null": { - "name": "signal_cellular_null", + "settings_ethernet": { + "name": "settings_ethernet", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z\"></path>" } } }, - "signal_cellular_off": { - "name": "signal_cellular_off", + "eco": { + "name": "eco", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M5.54,7.04c-2.05,2.05-2.05,5.37,0,7.42C6.56,15.49,7.91,16,9.25,16c1.34,0,2.69-0.51,3.71-1.54C15.57,11.85,16,4,16,4 S8.15,4.43,5.54,7.04z M12.26,13.76c-0.8,0.8-1.87,1.24-3.01,1.24c-0.71,0-1.39-0.19-2.01-0.52c0.65-2.36,1.99-4.44,3.8-5.98 c-2.13,1.1-3.89,2.86-5.04,4.97c-1.4-1.67-1.33-4.16,0.23-5.72c1.63-1.63,6.09-2.39,8.66-2.65C14.65,7.66,13.89,12.12,12.26,13.76z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 1l-8.31 8.31 8.31 8.3zM4.91 4.36L3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6.05,8.05c-2.73,2.73-2.73,7.17,0,9.9C7.42,19.32,9.21,20,11,20s3.58-0.68,4.95-2.05C19.43,14.47,20,4,20,4 S9.53,4.57,6.05,8.05z M14.54,16.54C13.59,17.48,12.34,18,11,18c-0.89,0-1.73-0.25-2.48-0.68c0.92-2.88,2.62-5.41,4.88-7.32 c-2.63,1.36-4.84,3.46-6.37,6c-1.48-1.96-1.35-4.75,0.44-6.54C9.21,7.72,14.04,6.65,17.8,6.2C17.35,9.96,16.28,14.79,14.54,16.54z\"></path></g>" } } }, - "signal_wifi_0_bar": { - "name": "signal_wifi_0_bar", + "find_replace": { + "name": "find_replace", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07L12,18.17L2.92,9.07z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z\"></path>" } } }, - "signal_wifi_4_bar": { - "name": "signal_wifi_4_bar", + "delete": { + "name": "delete", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 9v10H8V9h8m-1.5-6h-5l-1 1H5v2h14V4h-3.5l-1-1zM18 7H6v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7z\"></path>" } } }, - "signal_wifi_4_bar_lock": { - "name": "signal_wifi_4_bar_lock", + "gif_box": { + "name": "gif_box", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M17.5,13H17v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C18,13.22,17.78,13,17.5,13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V12z M12,15l-2,2l-4.24-4.24L0,7.01C2.6,4.53,6.12,3,10,3c3.88,0,7.4,1.53,10,4.01L17.51,9.5H15c-1.66,0-3,1.34-3,3V15z\"></path></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.5,4.5v11h-11v-11H15.5z M4.5,3C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11 C17,3.67,16.33,3,15.5,3H4.5z M9.5,12h1V8h-1V12z M11.5,12h1v-1.5H14v-1h-1.5V9h2V8h-3V12z M7.5,10v1h-1V9h2c0-0.55-0.45-1-1-1h-1 c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1H7.5z\"></path>" }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M21.98,11L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36L12,21l3.05-3.05V15 c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71H21.98z\"></path><path d=\"M22,16v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C23,16.45,22.55,16,22,16z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,19H5V5h14V19z M5,3C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5z M11.5,14h1v-4h-1V14z M13.5,14h1v-1.5H16v-1h-1.5V11h2v-1h-3V14z M9.5,12v1h-1v-2h2c0-0.55-0.45-1-1-1h-1c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h1 c0.55,0,1-0.45,1-1v-1H9.5z\"></path>" } } }, - "signal_wifi_bad": { - "name": "signal_wifi_bad", + "toc": { + "name": "toc", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z M19.59,14l-2.09,2.09l-0.3-0.3L15.41,14 L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z\"></path>" } } }, - "signal_wifi_connected_no_internet_4": { - "name": "signal_wifi_connected_no_internet_4", + "perm_identity": { + "name": "perm_identity", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z M19.59,14l-2.09,2.09l-0.3-0.3L15.41,14 L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 9c2.7 0 5.8 1.29 6 2v1H6v-.99c.2-.72 3.3-2.01 6-2.01m0-11C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z\"></path>" } } }, - "signal_wifi_off": { - "name": "signal_wifi_off", + "label": { + "name": "label", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31L2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z\"></path>" } } }, - "signal_wifi_statusbar_4_bar": { - "name": "signal_wifi_statusbar_4_bar", + "batch_prediction": { + "name": "batch_prediction", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14,7H6C5.45,7,5,7.45,5,8v8c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V8C15,7.45,14.55,7,14,7z M10.75,16h-1.5v-1h1.5V16z M10.75,14c0,0-1.15,0-1.5,0c0-1-1.75-2-1.75-3.5C7.5,9.12,8.62,8,10,8c0,0,0,0,0,0c1.38,0,2.5,1.12,2.5,2.5 C12.5,12,10.75,13,10.75,14z M14,6H6v0c0-0.55,0.45-1,1-1h6C13.55,5,14,5.45,14,6L14,6z M13,4H7v0c0-0.55,0.45-1,1-1h4 C12.55,3,13,3.45,13,4L13,4z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z\"></path></g>" } } }, - "signal_wifi_statusbar_connected_no_internet_4": { - "name": "signal_wifi_statusbar_connected_no_internet_4", + "horizontal_split": { + "name": "horizontal_split", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "<g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g><g><g><rect height=\"1.5\" width=\"1.5\" x=\"16.5\" y=\"16.5\"></rect><rect height=\"6.05\" width=\"1.5\" x=\"16.5\" y=\"9\"></rect><path d=\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l5-5V7.5h4.51L20,7.01C17.4,4.53,13.88,3,10,3z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21l5-5.01V8h5.92C19.97,5.51,16.16,4,12,4z\"></path><rect height=\"2\" width=\"2\" x=\"19\" y=\"18\"></rect><rect height=\"6\" width=\"2\" x=\"19\" y=\"10\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 15v2H5v-2h14m2-10H3v2h18V5zm0 4H3v2h18V9zm0 4H3v6h18v-6z\"></path>" } } }, - "signal_wifi_statusbar_null": { - "name": "signal_wifi_statusbar_null", + "contactless": { + "name": "contactless", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S13.31,16,10,16z\"></path><path d=\"M6.72,8.71C6.9,9.11,6.99,9.53,7,9.98c0.01,0.44-0.09,0.88-0.28,1.31l0.91,0.41C7.88,11.14,8.01,10.56,8,9.97 C7.99,9.38,7.87,8.82,7.63,8.29L6.72,8.71z\"></path><path d=\"M11.17,6.72C11.72,7.83,12,8.93,12,9.99c0,1.06-0.28,2.17-0.83,3.3l0.9,0.44C12.69,12.46,13,11.2,13,9.99 c0-1.22-0.31-2.46-0.93-3.71L11.17,6.72z\"></path><path d=\"M8.94,7.69C9.31,8.44,9.5,9.25,9.5,10.08c0,0.83-0.19,1.57-0.55,2.22l0.87,0.49c0.45-0.8,0.68-1.71,0.68-2.71 c0-0.99-0.23-1.95-0.67-2.84L8.94,7.69z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 c3.33,0,6.49,1.08,9.08,3.07L12,18.17L2.92,9.07z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\"></path><path d=\"M7.1,10.18c0.26,0.56,0.39,1.16,0.4,1.8c0.01,0.63-0.13,1.25-0.4,1.86l1.37,0.62c0.37-0.81,0.55-1.65,0.54-2.5 c-0.01-0.84-0.19-1.65-0.54-2.4L7.1,10.18z\"></path><path d=\"M13.33,7.33c0.78,1.57,1.18,3.14,1.18,4.64c0,1.51-0.4,3.09-1.18,4.69l1.35,0.66c0.88-1.81,1.33-3.61,1.33-5.35 c0-1.74-0.45-3.53-1.33-5.31L13.33,7.33z\"></path><path d=\"M10.2,8.72c0.53,1.07,0.8,2.21,0.8,3.4c0,1.17-0.26,2.23-0.78,3.15l1.3,0.74c0.65-1.15,0.98-2.45,0.98-3.89 c0-1.42-0.32-2.79-0.96-4.07L10.2,8.72z\"></path></g></g>" } } }, - "sim_card_download": { - "name": "sim_card_download", + "join_full": { + "name": "join_full", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\"></path><path d=\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69C12.77,6.92,13,9.11,13,10c0,0.89-0.23,3.08-2.15,4.81 c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5C19,6.96,16.54,4.5,13.5,4.5z\"></path><path d=\"M9.15,5.19C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 C7.23,13.08,7,10.89,7,10C7,9.11,7.23,6.92,9.15,5.19z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,2h-8L4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v16H6V8.83L10.83,4H18z\"></path><path d=\"M16,13l-4,4l-4-4l1.41-1.41L11,13.17V9.02L13,9v4.17l1.59-1.59L16,13z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><ellipse cx=\"12\" cy=\"12\" rx=\"3\" ry=\"5.74\"></ellipse><path d=\"M7.5,12c0-0.97,0.23-4.16,3.03-6.5C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C7.73,16.16,7.5,12.97,7.5,12z\"></path><path d=\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c2.8,2.34,3.03,5.53,3.03,6.5c0,0.97-0.23,4.16-3.03,6.5C14.25,18.81,15.1,19,16,19 c3.86,0,7-3.14,7-7S19.86,5,16,5z\"></path></g></g>" } } }, - "splitscreen": { - "name": "splitscreen", + "join_inner": { + "name": "join_inner", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\"></path><path d=\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69c0.42,0.38,0.77,0.77,1.04,1.18C12.38,6.14,12.92,6,13.5,6c2.21,0,4,1.79,4,4 s-1.79,4-4,4c-0.58,0-1.12-0.14-1.61-0.36c-0.27,0.4-0.62,0.8-1.04,1.18c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5 C19,6.96,16.54,4.5,13.5,4.5z\"></path><path d=\"M6.5,14c-2.21,0-4-1.79-4-4s1.79-4,4-4c0.58,0,1.12,0.14,1.61,0.36c0.27-0.4,0.62-0.8,1.04-1.18 C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 c-0.42-0.38-0.77-0.77-1.04-1.18C7.62,13.86,7.08,14,6.5,14z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,4v5H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v5c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,15v5H6v-5H18 M18,13H6c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-5C20,13.9,19.1,13,18,13z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><ellipse cx=\"12\" cy=\"12\" rx=\"3\" ry=\"5.74\"></ellipse><g><path d=\"M9.04,16.87C8.71,16.95,8.36,17,8,17c-2.76,0-5-2.24-5-5s2.24-5,5-5c0.36,0,0.71,0.05,1.04,0.13 c0.39-0.56,0.88-1.12,1.49-1.63C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C9.92,17.99,9.43,17.43,9.04,16.87z\"></path></g><path d=\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c0.61,0.51,1.1,1.07,1.49,1.63C15.29,7.05,15.64,7,16,7c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-0.36,0-0.71-0.05-1.04-0.13c-0.39,0.56-0.88,1.12-1.49,1.63C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7S19.86,5,16,5z\"></path></g>" } } }, - "sports_score": { - "name": "sports_score", + "check_circle_outline": { + "name": "check_circle_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M11,6H9V4h2V6z M15,4h-2v2h2V4z M9,14h2v-2H9V14z M19,10V8h-2v2H19z M19,14v-2h-2v2H19z M13,14h2v-2h-2V14z M19,4h-2v2h2 V4z M13,8V6h-2v2H13z M7,10V8h2V6H7V4H5v16h2v-8h2v-2H7z M15,12h2v-2h-2V12z M11,10v2h2v-2H11z M9,8v2h2V8H9z M13,10h2V8h-2V10z M15,6v2h2V6H15z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z\"></path>" } } }, - "storage": { - "name": "storage", + "schedule_send": { + "name": "schedule_send", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z\"></path><path d=\"M11,12l-6-1.5V7.01l8.87,3.74c0.94-0.47,2-0.75,3.13-0.75c0.1,0,0.19,0.01,0.28,0.01L3,4v16l7-2.95c0-0.02,0-0.03,0-0.05 c0-0.8,0.14-1.56,0.39-2.28L5,16.99V13.5L11,12z\"></path></g></g>" } } }, - "storm": { - "name": "storm", + "free_cancellation": { + "name": "free_cancellation", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.21,16.5H4.5V9h11v3.09l1.5-1.5V5.5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11 C3,17.32,3.67,18,4.5,18h6.21L9.21,16.5z M4.5,5.5h11v2h-11V5.5z M13.33,16.38l3.54-3.54l1.06,1.06l-4.6,4.6l-2.83-2.83l1.06-1.06 L13.33,16.38z M8.81,12.25L10,13.44L8.94,14.5l-1.19-1.19L6.56,14.5L5.5,13.44l1.19-1.19L5.5,11.06L6.56,10l1.19,1.19L8.94,10 L10,11.06L8.81,12.25z\"></path>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18.93,8C16.72,4.18,11.82,2.87,8,5.07c-1.41,0.82-2.48,2-3.16,3.37C4.71,6.24,5.06,4.04,5.86,2H3.74 C2.2,6.49,2.52,11.58,5.07,16c1.1,1.91,2.88,3.19,4.86,3.72c1.98,0.53,4.16,0.31,6.07-0.79c1.41-0.82,2.48-2,3.16-3.37 c0.13,2.2-0.21,4.4-1.01,6.44h2.11C21.79,17.51,21.48,12.42,18.93,8z M15,17.2c-2.87,1.65-6.54,0.67-8.2-2.2 c-0.11-0.2-0.21-0.4-0.3-0.6C5.3,11.64,6.33,8.34,9,6.8c2.86-1.65,6.54-0.67,8.2,2.2c0.11,0.2,0.21,0.4,0.3,0.6 C18.7,12.36,17.67,15.66,15,17.2z M12,10c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,10,12,10 M12,8c-2.21,0-4,1.79-4,4 s1.79,4,4,4s4-1.79,4-4S14.21,8,12,8z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11.21,20H5V10h14v4.38l2-2V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h8.21 L11.21,20z M5,6h14v2H5V6z M16.54,22.5L13,18.96l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,22.5z M10.41,14L12,15.59L10.59,17 L9,15.41L7.41,17L6,15.59L7.59,14L6,12.41L7.41,11L9,12.59L10.59,11L12,12.41L10.41,14z\"></path>" } } }, - "summarize": { - "name": "summarize", + "door_front": { + "name": "door_front", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M15,3H5C3.9,3,3.01,3.9,3.01,5L3,19c0,1.1,0.89,2,1.99,2H19c1.1,0,2-0.9,2-2V9L15,3z M5,19V5h9v5h5v9H5z M9,8 c0,0.55-0.45,1-1,1S7,8.55,7,8s0.45-1,1-1S9,7.45,9,8z M9,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S9,11.45,9,12z M9,16 c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S9,15.45,9,16z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M19,19V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H3v2h18v-2H19z M17,19H7V5h10V19z M13,11h2v2h-2V11z\"></path></g>" } } }, - "system_security_update": { - "name": "system_security_update", + "window": { + "name": "window", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M7,4V3h10v1H7z M16,12l-4,4l-4-4l1.41-1.41L11,12.17V8h2v4.17l1.59-1.59L16,12z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,11h-7V4h7V11z M11,4v7H4V4H11z M4,13h7v7H4V13z M13,20v-7h7v7H13z\"></path></g>" } } }, - "system_security_update_good": { - "name": "system_security_update_good", + "living": { + "name": "living", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M16,10.05l-1.41-1.41l-3.54,3.54l-1.41-1.41l-1.41,1.41L11.05,15L16,10.05z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M17.75,10.35V9c0-1.66-1.34-3-3-3h-5.5c-1.66,0-3,1.34-3,3v1.35C5.51,10.78,5,11.58,5,12.5V16c0,1.1,0.9,2,2,2h10 c1.1,0,2-0.9,2-2v-3.5C19,11.58,18.49,10.78,17.75,10.35z M9.25,7.5h5.5c0.83,0,1.5,0.67,1.5,1.5v1.03C14.99,10.15,14,11.2,14,12.5 V13h-4v-0.5c0-1.3-0.99-2.35-2.25-2.47V9C7.75,8.17,8.42,7.5,9.25,7.5z M17.5,16c0,0.28-0.22,0.5-0.5,0.5H7 c-0.28,0-0.5-0.22-0.5-0.5v-3.5c0-0.55,0.45-1,1-1s1,0.45,1,1v2h7v-2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1V16z M20,4v16H4V4H20 M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z\"></path></g>" } } }, - "system_security_update_warning": { - "name": "system_security_update_warning", + "shower": { + "name": "shower", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><rect height=\"2\" width=\"2\" x=\"11\" y=\"15\"></rect><rect height=\"6\" width=\"2\" x=\"11\" y=\"7\"></rect><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M9,17c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S9,16.45,9,17z M12,16c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S12.55,16,12,16z M16,16c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1S16.55,16,16,16z M19,12v2H5v-2c0-3.53,2.61-6.43,6-6.92 V3h2v2.08C16.39,5.57,19,8.47,19,12z M17,12c0-2.76-2.24-5-5-5s-5,2.24-5,5H17z M8,19c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S8.55,19,8,19z M12,19c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S12.55,19,12,19z M16,19c-0.55,0-1,0.45-1,1s0.45,1,1,1 c0.55,0,1-0.45,1-1S16.55,19,16,19z\"></path></g>" } } }, - "task": { - "name": "task", + "manage_search": { + "name": "manage_search", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h7v5h5V20z M8.82,13.05 L7.4,14.46L10.94,18l5.66-5.66l-1.41-1.41l-4.24,4.24L8.82,13.05z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M7,9H2V7h5V9z M7,12H2v2h5V12z M20.59,19l-3.83-3.83C15.96,15.69,15.02,16,14,16c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5 c0,1.02-0.31,1.96-0.83,2.75L22,17.59L20.59,19z M17,11c0-1.65-1.35-3-3-3s-3,1.35-3,3s1.35,3,3,3S17,12.65,17,11z M2,19h10v-2H2 V19z\"></path></g>" } } }, - "thermostat": { - "name": "thermostat", + "blender": { + "name": "blender", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16.13,15.13L18,3h-4V2h-4v1H5C3.9,3,3,3.9,3,5v4c0,1.1,0.9,2,2,2h2.23l0.64,4.13C6.74,16.05,6,17.43,6,19v1 c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-1C18,17.43,17.26,16.05,16.13,15.13z M5,9V5h1.31l0.62,4H5z M15.67,5l-1.38,9H9.72L8.33,5 H15.67z M16,20H8v-1c0-1.65,1.35-3,3-3h2c1.65,0,3,1.35,3,3V20z\"></path><circle cx=\"12\" cy=\"18\" r=\"1\"></circle></g></g>" } } }, - "timer_10_select": { - "name": "timer_10_select", + "coffee": { + "name": "coffee", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,8v8h-3V8H13 M13,5h-3C8.34,5,7,6.34,7,8v8c0,1.66,1.34,3,3,3h3c1.66,0,3-1.34,3-3V8C16,6.34,14.66,5,13,5z M1,8h2v11h3 V5H1V8z M18.5,11c-0.83,0-1.5,0.68-1.5,1.5v2c0,0.82,0.67,1.5,1.5,1.5H21v1h-4v2h4.5c0.83,0,1.5-0.67,1.5-1.5v-2 c0-0.83-0.67-1.5-1.5-1.5H19v-1h4v-2H18.5z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M18.5,3H6C4.9,3,4,3.9,4,5v5.71c0,3.83,2.95,7.18,6.78,7.29c3.96,0.12,7.22-3.06,7.22-7v-1h0.5c1.93,0,3.5-1.57,3.5-3.5 S20.43,3,18.5,3z M16,5v3H6V5H16z M16,10v1c0,2.76-2.24,5-5,5s-5-2.24-5-5v-1 M18.5,8H18V5h0.5C19.33,5,20,5.67,20,6.5 S19.33,8,18.5,8z M4,19h16v2H4V19z\"></path></g>" } } }, - "timer_3_select": { - "name": "timer_3_select", + "chair": { + "name": "chair", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,11v2h-4v1h2.5c0.83,0,1.5,0.68,1.5,1.5v2c0,0.83-0.67,1.5-1.5,1.5H15v-2h4v-1h-2.5c-0.82,0-1.5-0.68-1.5-1.5v-2 c0-0.82,0.68-1.5,1.5-1.5H21z M4,5v3h6v2.5H4v3h6V16H4v3h6c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1 V8c0-1.66-1.34-3-3-3H4z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,8V6c0-1.65-1.35-3-3-3H7C5.35,3,4,4.35,4,6v2c-1.65,0-3,1.35-3,3v5c0,1.65,1.35,3,3,3v1c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1v-1h12v1c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-1c1.65,0,3-1.35,3-3v-5C23,9.35,21.65,8,20,8z M6,6 c0-0.55,0.45-1,1-1h10c0.55,0,1,0.45,1,1v2.78c-0.61,0.55-1,1.34-1,2.22v2H7v-2c0-0.88-0.39-1.67-1-2.22V6z M21,16 c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-5c0-0.55,0.45-1,1-1s1,0.45,1,1v4h14v-4c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\"></path></g>" } } }, - "tungsten": { - "name": "tungsten", + "door_back": { + "name": "door_back", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><rect height=\"3\" width=\"2\" x=\"11\" y=\"19\"></rect><rect height=\"2\" width=\"3\" x=\"2\" y=\"11\"></rect><rect height=\"2\" width=\"3\" x=\"19\" y=\"11\"></rect><rect height=\"3\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.6665 17.8014)\" width=\"1.99\" x=\"16.66\" y=\"16.66\"></rect><rect height=\"1.99\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -10.9791 9.8041)\" width=\"3\" x=\"4.85\" y=\"17.16\"></rect><path d=\"M15,8.02V3H9v5.02C7.79,8.94,7,10.37,7,12c0,2.76,2.24,5,5,5s5-2.24,5-5C17,10.37,16.21,8.94,15,8.02z M11,5h2v2.1 C12.68,7.04,12.34,7,12,7s-0.68,0.04-1,0.1V5z M12,15c-1.65,0-3-1.35-3-3s1.35-3,3-3c1.65,0,3,1.35,3,3S13.65,15,12,15z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M19,19V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H3v2h18v-2H19z M17,19H7V5h10V19z\"></path><rect height=\"2\" width=\"2\" x=\"9\" y=\"11\"></rect></g></g>" } } }, - "usb": { - "name": "usb", + "light": { + "name": "light", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M13,6.06V3h-2v3.06c-4.5,0.5-8,4.31-8,8.93C3,16.1,3.9,17,5.01,17H8c0,2.21,1.79,4,4,4s4-1.79,4-4h2.99 C20.1,17,21,16.1,21,14.99C21,10.37,17.5,6.56,13,6.06z M12,19c-1.1,0-2-0.9-2-2h2h2C14,18.1,13.1,19,12,19z M12,15H5 c0-3.86,3.14-7,7-7s7,3.14,7,7H12z\"></path></g></g>" } } }, - "usb_off": { - "name": "usb_off", + "feed": { + "name": "feed", "keywords": [ - "device" + "search" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.25,5H7.5L10,2l2.5,3h-1.75v3.63l-1.5-1.5V5z M12.5,10h0.75v1.13l1.23,1.23c0.17-0.24,0.27-0.54,0.27-0.86V10h0.75V7h-3 V10z M10.75,13v2.21c0.45,0.26,0.75,0.74,0.75,1.29c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.55,0.3-1.03,0.75-1.29V13h-2.5 c-0.83,0-1.5-0.67-1.5-1.5V9.79C4.8,9.53,4.5,9.05,4.5,8.5c0-0.51,0.26-0.96,0.65-1.23L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06 L10.88,13H10.75z M9.25,11.5v-0.13L7.23,9.35C7.1,9.53,6.94,9.68,6.75,9.79v1.71H9.25z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15,8h4v4h-1v2c0,0.34-0.08,0.66-0.23,0.94L16,13.17V12h-1V8z M11,8.17l2,2V6h2l-3-4L9,6h2V8.17z M13,16v2.28 c0.6,0.34,1,0.98,1,1.72c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-0.74,0.4-1.37,1-1.72V16H8c-1.11,0-2-0.89-2-2v-2.28C5.4,11.38,5,10.74,5,10 c0-0.59,0.26-1.13,0.68-1.49L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L13.17,16H13z M11,14v-0.17l-2.51-2.51 c-0.14,0.16-0.31,0.29-0.49,0.4V14H11z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M16,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8L16,3z M19,19H5V5h10v4h4V19z M7,17h10v-2H7V17z M12,7H7 v2h5V7z M7,13h10v-2H7V13z\"></path></g>" } } }, - "wallpaper": { - "name": "wallpaper", + "dining": { + "name": "dining", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M14.75,6c-1.37,0-2.5,1.52-2.5,3.4c0,1.48,0.7,2.71,1.67,3.18L14,12.62V19h1.5v-6.38l0.08-0.03 c0.97-0.47,1.67-1.7,1.67-3.18C17.25,7.53,16.13,6,14.75,6 M6.5,9.96 M10.5,6C10.23,6,10,6.22,10,6.5V9H9.25V6.5 c0-0.28-0.22-0.5-0.5-0.5s-0.5,0.22-0.5,0.5V9H7.5V6.5C7.5,6.22,7.28,6,7,6S6.5,6.22,6.5,6.5v3.8c0,0.93,0.64,1.71,1.5,1.93V19h1.5 v-6.77c0.86-0.22,1.5-1,1.5-1.93V6.5C11,6.22,10.78,6,10.5,6z M20,4H4v16h16V4 M20,2c1.1,0,2,0.9,2,2v16c0,1.1-0.9,2-2,2H4 c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2H20z\"></path></g>" } } }, - "water": { - "name": "water", + "bedroom_child": { + "name": "bedroom_child", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M21.98,14H22H21.98z M5.35,13c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1 c1.19,0,1.4,0.98,3.31,1v-2c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1 c-1.19,0-1.42-1-3.33-1C3.38,11,3.24,12,2,12v2C3.9,14,4.17,13,5.35,13z M18.67,15c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1 c-1.95,0-2.1,1-3.34,1c-1.24,0-1.38-1-3.33-1c-1.95,0-2.1,1-3.34,1v2c1.95,0,2.11-1,3.34-1c1.24,0,1.38,1,3.33,1 c1.95,0,2.1-1,3.34-1c1.19,0,1.42,1,3.33,1c1.94,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1v-2C20.76,16,20.62,15,18.67,15z M5.35,9 c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.31,1V8 c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1C10.04,7,9.9,8,8.66,8C7.47,8,7.24,7,5.33,7 C3.38,7,3.24,8,2,8v2C3.9,10,4.17,9,5.35,9z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,4v16H4V4H20 M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M16.5,10.67V9 c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v1.67c-0.88,0.35-1.5,1.2-1.5,2.2V17h1.5v-1.5h9V17H18v-4.13C18,11.87,17.38,11.02,16.5,10.67 z M15,8.5v2H9v-2H15z M7.5,12.87C7.5,12.39,7.89,12,8.37,12h7.27c0.48,0,0.87,0.39,0.87,0.87V14h-9v-1.13H7.5z\"></path></g>" } } }, - "widgets": { - "name": "widgets", + "door_sliding": { + "name": "door_sliding", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.66 4.52l2.83 2.83-2.83 2.83-2.83-2.83 2.83-2.83M9 5v4H5V5h4m10 10v4h-4v-4h4M9 15v4H5v-4h4m7.66-13.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65zM11 3H3v8h8V3zm10 10h-8v8h8v-8zm-10 0H3v8h8v-8z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M10,13H8v-2h2V13z M16,11h-2v2h2V11z M21,19v2H3v-2h1V5c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2v14H21z M11,5H6v14h5V5z M18,5 h-5v14h5V5z\"></path></g>" } } }, - "wifi_calling_3": { - "name": "wifi_calling_3", + "yard": { + "name": "yard", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16.49,4.5c1.79,0,3.42,0.73,4.59,1.91l1.06-1.06C20.7,3.9,18.7,3,16.49,3c-2.21,0-4.21,0.9-5.66,2.34l1.06,1.06 C13.08,5.23,14.7,4.5,16.49,4.5z\"></path><path d=\"M16.49,6c-1.38,0-2.63,0.56-3.54,1.46l1.06,1.06c0.63-0.63,1.51-1.03,2.47-1.03s1.84,0.39,2.47,1.03l1.06-1.06 C19.12,6.56,17.87,6,16.49,6z\"></path><path d=\"M16.49,9c-0.55,0-1.05,0.22-1.41,0.59L16.49,11l1.41-1.41C17.54,9.22,17.04,9,16.49,9z\"></path><path d=\"M20.2,14.87l-3.67-0.73c-0.5-0.1-0.83,0.2-0.9,0.27l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52 c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3L4,3C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43c0.55,0.03,1.03-0.43,1.03-1v-4.15C21,15.37,20.66,14.96,20.2,14.87 z M5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7,5.27,6.37,5.1,5z M19,18.9c-1.37-0.18-2.7-0.53-4-1.07l1.65-1.63L19,16.67V18.9z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M18,13c-3.31,0-6,2.69-6,6C15.31,19,18,16.31,18,13z M6,13c0,3.31,2.69,6,6,6C12,15.69,9.31,13,6,13z M8,11.03 c0,0.86,0.7,1.56,1.56,1.56c0.33,0,0.63-0.1,0.89-0.28l-0.01,0.12c0,0.86,0.7,1.56,1.56,1.56s1.56-0.7,1.56-1.56l-0.01-0.12 c0.25,0.17,0.56,0.28,0.89,0.28c0.86,0,1.56-0.7,1.56-1.56c0-0.62-0.37-1.16-0.89-1.41C15.63,9.38,16,8.84,16,8.22 c0-0.86-0.7-1.56-1.56-1.56c-0.33,0-0.63,0.1-0.89,0.28l0.01-0.12c0-0.86-0.7-1.56-1.56-1.56s-1.56,0.7-1.56,1.56l0.01,0.12 C10.2,6.76,9.89,6.66,9.56,6.66C8.7,6.66,8,7.36,8,8.22c0,0.62,0.37,1.16,0.89,1.41C8.37,9.87,8,10.41,8,11.03z M12,8.06 c0.86,0,1.56,0.7,1.56,1.56s-0.7,1.56-1.56,1.56s-1.56-0.7-1.56-1.56S11.14,8.06,12,8.06z M20,4v16H4V4H20 M20,2H4C2.9,2,2,2.9,2,4 v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z\"></path></g>" } } }, - "wifi_lock": { - "name": "wifi_lock", + "bedroom_parent": { + "name": "bedroom_parent", "keywords": [ - "device" + "search" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M17.5,13H17v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C18,13.22,17.78,13,17.5,13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V12z M12,15l-2,2l-4.24-4.24L0,7.01C2.6,4.53,6.12,3,10,3c3.88,0,7.4,1.53,10,4.01L17.51,9.5H15c-1.66,0-3,1.34-3,3V15z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M21.98,11L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36L12,21l3.05-3.05V15 c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71H21.98z\"></path><path d=\"M22,16v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C23,16.45,22.55,16,22,16z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M18.35,11.45V9c0-1.1-0.9-2-2-2H13c-0.37,0-0.72,0.12-1,0.32C11.72,7.12,11.37,7,11,7H7.65c-1.1,0-2,0.9-2,2v2.45 C5.25,11.91,5,12.51,5,13.17V17h1.5v-1.5h11V17H19v-3.83C19,12.51,18.75,11.91,18.35,11.45z M16.75,10.5h-4v-2h4V10.5z M7.25,8.5h4 v2h-4V8.5z M17.5,14h-11v-1c0-0.55,0.45-1,1-1h9c0.55,0,1,0.45,1,1V14z M20,4v16H4V4H20 M20,2H4C2.9,2,2,2.9,2,4v16 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z\"></path></g>" } } }, - "wifi_tethering": { - "name": "wifi_tethering", + "camera_outdoor": { + "name": "camera_outdoor", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M18,13c0-0.55-0.45-1-1-1h-4c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-1l2,1.06v-4.12L18,14V13z M12,3 L4,9v12h16v-2H6v-9l6-4.5l6,4.5v1h2V9L12,3z\"></path></g>" } } }, - "wifi_tethering_error_rounded": { - "name": "wifi_tethering_error_rounded", + "bed": { + "name": "bed", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,7c-3.31,0-6,2.69-6,6c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.11-0.45,2.1-1.18,2.82l1.42,1.42C17.32,16.15,18,14.66,18,13C18,9.69,15.31,7,12,7z M12,3C6.48,3,2,7.48,2,13 c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13c0-4.42,3.58-8,8-8c2.53,0,4.78,1.17,6.24,3h2.42 C18.93,5.01,15.7,3,12,3z M12,11c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59 C13.77,14.05,14,13.55,14,13C14,11.9,13.1,11,12,11z M20,10h2v6h-2V10z M20,18h2v2h-2V18z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M21,10.78V8c0-1.65-1.35-3-3-3h-4c-0.77,0-1.47,0.3-2,0.78C11.47,5.3,10.77,5,10,5H6C4.35,5,3,6.35,3,8v2.78 C2.39,11.33,2,12.12,2,13v6h2v-2h16v2h2v-6C22,12.12,21.61,11.33,21,10.78z M14,7h4c0.55,0,1,0.45,1,1v2h-6V8C13,7.45,13.45,7,14,7 z M5,8c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v2H5V8z M4,15v-2c0-0.55,0.45-1,1-1h14c0.55,0,1,0.45,1,1v2H4z\"></path></g>" } } }, - "wifi_tethering_off": { - "name": "wifi_tethering_off", + "camera_indoor": { + "name": "camera_indoor", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M2.81,2.81L1.39,4.22l2.69,2.69C2.78,8.6,2,10.71,2,13c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13 c0-1.75,0.57-3.35,1.51-4.66l1.43,1.43C6.35,10.7,6,11.81,6,13c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13 c0-0.63,0.15-1.23,0.41-1.76l1.61,1.61c0,0.05-0.02,0.1-0.02,0.15c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15 c0.05,0,0.1-0.01,0.16-0.02l7.62,7.62l1.41-1.41L2.81,2.81z M17.7,14.87C17.89,14.28,18,13.65,18,13c0-3.31-2.69-6-6-6 c-0.65,0-1.28,0.1-1.87,0.3l1.71,1.71C11.89,9,11.95,9,12,9c2.21,0,4,1.79,4,4c0,0.05,0,0.11-0.01,0.16L17.7,14.87z M12,5 c4.42,0,8,3.58,8,8c0,1.22-0.27,2.37-0.77,3.4l1.49,1.49C21.53,16.45,22,14.78,22,13c0-5.52-4.48-10-10-10 c-1.78,0-3.44,0.46-4.89,1.28l1.48,1.48C9.63,5.27,10.78,5,12,5z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M14,13v-1c0-0.55-0.45-1-1-1H9c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-1l2,1.06v-4.12L14,13z M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3z\"></path></g>" } } }, - "add_chart": { - "name": "add_chart", + "bedroom_baby": { + "name": "bedroom_baby", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,19H5V5h9V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-9h-2V19z\"></path><rect height=\"4\" width=\"2\" x=\"15\" y=\"13\"></rect><rect height=\"7\" width=\"2\" x=\"7\" y=\"10\"></rect><rect height=\"10\" width=\"2\" x=\"11\" y=\"7\"></rect><polygon points=\"19,5 19,3 17,3 17,5 15,5 15,7 17,7 17,9 19,9 19,7 21,7 21,5\"></polygon></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M17.94,14.04c-0.34,0.34-0.71,0.64-1.1,0.92L16,13.5V11h1v-1h-5.62L9.65,7H6l1,0.76L5.5,9.5l0.95,1L8,9.51v3.99l-0.84,1.46 c-0.39-0.27-0.76-0.58-1.1-0.92L5,15.1c1.87,1.87,4.36,2.9,7,2.9s5.13-1.03,7-2.9L17.94,14.04z M8.45,15.71l0.03-0.06l0.81-1.41 c1.74,0.65,3.66,0.65,5.4,0l0.81,1.41l0.03,0.06c-1.1,0.51-2.3,0.79-3.55,0.79S9.55,16.23,8.45,15.71z M20,4v16H4V4H20 M20,2H4 C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z\"></path></g>" } } }, - "add_comment": { - "name": "add_comment", + "garage": { + "name": "garage", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4zm-2 13.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,20H4V4h16V20z\"></path><circle cx=\"9\" cy=\"13\" r=\"1\"></circle><circle cx=\"15\" cy=\"13\" r=\"1\"></circle><path d=\"M5.78,18.5h0.44C6.65,18.5,7,18.14,7,17.69V16.5h10v1.19c0,0.45,0.34,0.81,0.78,0.81h0.44c0.43,0,0.78-0.36,0.78-0.81 v-6.5c-0.82-2.46-1.34-4.03-1.56-4.69c-0.05-0.16-0.12-0.29-0.19-0.4c-0.02-0.02-0.03-0.04-0.05-0.07 c-0.38-0.52-0.92-0.53-0.92-0.53H7.72c0,0-0.54,0.01-0.92,0.54C6.78,6.06,6.77,6.08,6.75,6.1C6.68,6.21,6.61,6.34,6.56,6.5 C6.34,7.16,5.82,8.72,5,11.19v6.5C5,18.14,5.35,18.5,5.78,18.5z M8.33,7.5h7.34l0.23,0.69l0.43,1.31H7.67L8.33,7.5z M7,11.51V11.5 h10v0.01v2.99H7V11.51z\"></path></g></g>" } } }, - "align_horizontal_center": { - "name": "align_horizontal_center", + "table_bar": { + "name": "table_bar", "keywords": [ - "editor" + "search" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M18,6.5C18,5.12,14.42,4,10,4S2,5.12,2,6.5c0,1.3,3.18,2.37,7.25,2.49v3.51H7.61c-0.58,0-1.11,0.33-1.35,0.86L5,16h1.5l1-2 h5l1,2H15l-1.26-2.64c-0.25-0.52-0.78-0.86-1.35-0.86h-1.64V8.99C14.82,8.87,18,7.8,18,6.5z M10,5.5c3.04,0,5.16,0.55,6.1,1 c-0.94,0.45-3.06,1-6.1,1s-5.16-0.55-6.1-1C4.84,6.05,6.96,5.5,10,5.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><polygon points=\"11,2 13,2 13,7 21,7 21,10 13,10 13,14 18,14 18,17 13,17 13,22 11,22 11,17 6,17 6,14 11,14 11,10 3,10 3,7 11,7\"></polygon>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M22,7.5C22,5.57,17.52,4,12,4S2,5.57,2,7.5c0,1.81,3.95,3.31,9,3.48V15H9.35c-0.82,0-1.55,0.5-1.86,1.26L6,20h2l1.2-3h5.6 l1.2,3h2l-1.5-3.74C16.2,15.5,15.46,15,14.65,15H13v-4.02C18.05,10.81,22,9.31,22,7.5z M12,6c4.05,0,6.74,0.86,7.72,1.5 C18.74,8.14,16.05,9,12,9S5.26,8.14,4.28,7.5C5.26,6.86,7.95,6,12,6z\"></path></g>" } } }, - "align_horizontal_left": { - "name": "align_horizontal_left", + "flatware": { + "name": "flatware", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M4,22H2V2h2V22z M22,7H6v3h16V7z M16,14H6v3h10V14z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M16,7.08c0,1.77-0.84,3.25-2,3.82V21h-2V10.9c-1.16-0.57-2-2.05-2-3.82C10.01,4.83,11.35,3,13,3C14.66,3,16,4.83,16,7.08z M17,3v18h2v-8h2V7C21,5.24,19.76,3,17,3z M8.28,3c-0.4,0-0.72,0.32-0.72,0.72V7H6.72V3.72C6.72,3.32,6.4,3,6,3 S5.28,3.32,5.28,3.72V7H4.44V3.72C4.44,3.32,4.12,3,3.72,3S3,3.32,3,3.72V9c0,1.1,0.9,2,2,2v10h2V11c1.1,0,2-0.9,2-2V3.72 C9,3.32,8.68,3,8.28,3z\"></path></g>" } } }, - "align_horizontal_right": { - "name": "align_horizontal_right", + "coffee_maker": { + "name": "coffee_maker", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,2h2v20h-2V2z M2,10h16V7H2V10z M8,17h10v-3H8V17z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,6V4h2V2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h14v-2h-4.03C17.2,19.09,18,17.64,18,16v-5H8v5c0,1.64,0.81,3.09,2.03,4 H6V4h2v2c0,0.55,0.45,1,1,1h8C17.55,7,18,6.55,18,6z M10,16v-3h6v3c0,1.65-1.35,3-3,3S10,17.65,10,16z\"></path><circle cx=\"13\" cy=\"9\" r=\"1\"></circle></g></g>" } } }, - "align_vertical_bottom": { - "name": "align_vertical_bottom", + "bathroom": { + "name": "bathroom", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,22H2v-2h20V22z M10,2H7v16h3V2z M17,8h-3v10h3V8z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M8,14c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1S8,14.55,8,14z M12,15c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1 S11.45,15,12,15z M15,15c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S14.45,15,15,15z M12,7.5c-1.76,0-3.22,1.31-3.46,3h6.93 C15.22,8.81,13.76,7.5,12,7.5 M12,6c2.76,0,5,2.24,5,5v1H7v-1C7,8.24,9.24,6,12,6z M9,18c0.55,0,1-0.45,1-1s-0.45-1-1-1 s-1,0.45-1,1S8.45,18,9,18z M12,18c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S11.45,18,12,18z M15,18c0.55,0,1-0.45,1-1 s-0.45-1-1-1s-1,0.45-1,1S14.45,18,15,18z M20,4H4v16h16V4 M20,2c1.1,0,2,0.9,2,2v16c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V4 c0-1.1,0.9-2,2-2H20z\"></path></g>" } } }, - "align_vertical_center": { - "name": "align_vertical_center", + "podcasts": { + "name": "podcasts", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><polygon points=\"22,11 17,11 17,6 14,6 14,11 10,11 10,3 7,3 7,11 1.84,11 1.84,13 7,13 7,21 10,21 10,13 14,13 14,18 17,18 17,13 22,13\"></polygon>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M14,12c0,0.74-0.4,1.38-1,1.72V22h-2v-8.28c-0.6-0.35-1-0.98-1-1.72c0-1.1,0.9-2,2-2S14,10.9,14,12z M12,6 c-3.31,0-6,2.69-6,6c0,1.74,0.75,3.31,1.94,4.4l1.42-1.42C8.53,14.25,8,13.19,8,12c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.19-0.53,2.25-1.36,2.98l1.42,1.42C17.25,15.31,18,13.74,18,12C18,8.69,15.31,6,12,6z M12,2C6.48,2,2,6.48,2,12 c0,2.85,1.2,5.41,3.11,7.24l1.42-1.42C4.98,16.36,4,14.29,4,12c0-4.41,3.59-8,8-8s8,3.59,8,8c0,2.29-0.98,4.36-2.53,5.82l1.42,1.42 C20.8,17.41,22,14.85,22,12C22,6.48,17.52,2,12,2z\"></path></g>" } } }, - "align_vertical_top": { - "name": "align_vertical_top", + "table_restaurant": { + "name": "table_restaurant", "keywords": [ - "editor" + "search" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M17.93,7.63l-1.2-3C16.58,4.25,16.21,4,15.8,4H4.2C3.79,4,3.42,4.25,3.27,4.63l-1.2,3C1.81,8.29,2.29,9,3,9h1.27L3,16h1.5 l0.73-4h9.32l0.73,4h1.5L15.5,9H17C17.71,9,18.19,8.29,17.93,7.63z M5.5,10.5L5.77,9H14l0.27,1.5H5.5z M3.74,7.5l0.8-2h10.92l0.8,2 H3.74z\"></path></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,2v2H2V2H22z M7,22h3V6H7V22z M14,16h3V6h-3V16z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21.96,9.73l-1.43-5C20.41,4.3,20.02,4,19.57,4H4.43C3.98,4,3.59,4.3,3.47,4.73l-1.43,5C1.86,10.36,2.34,11,3,11h2.2L4,20 h2l0.67-5h10.67L18,20h2l-1.2-9H21C21.66,11,22.14,10.36,21.96,9.73z M6.93,13l0.27-2h9.6l0.27,2H6.93z M4.33,9l0.86-3h13.63 l0.86,3H4.33z\"></path></g></g>" } } }, - "area_chart": { - "name": "area_chart", + "chair_alt": { + "name": "chair_alt", "keywords": [ - "editor" + "search" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14,6l-4-3L6,8L3,6v10h14V6H14z M15.5,13.8L10,9.39L7,13.5l-2.5-1.88V8.8l1.81,1.21l3.95-4.94L13.5,7.5h2V13.8z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,7l-5-4l-5,7L3,7v13h18V7H17z M19,16.95l-7-5.45L8,17l-3-2.4V11l2.44,1.83l4.96-6.95L16.3,9H19V16.95z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M17,10c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v3c0,1.1,0.9,2,2,2h1v2H7c-1.1,0-2,0.9-2,2v7h2v-3h10v3h2v-7 c0-1.1-0.9-2-2-2h-1v-2H17z M7,8V5h10v3H7z M17,16H7v-2h10V16z M14,12h-4v-2h4V12z\"></path></g>" } } }, - "attach_file": { - "name": "attach_file", + "doorbell": { + "name": "doorbell", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M11,16.5h2c0,0.55-0.45,1-1,1S11,17.05,11,16.5z M15,15v-2.34c0-1.54-0.81-2.82-2.25-3.16V9.25c0-0.41-0.34-0.75-0.75-0.75 s-0.75,0.34-0.75,0.75V9.5C9.82,9.84,9,11.12,9,12.66V15H8v1h8v-1H15z M12,5.5L6,10v9h12v-9L12,5.5 M12,3l8,6v12H4V9L12,3z\"></path></g>" } } }, - "attach_money": { - "name": "attach_money", + "nightlight": { + "name": "nightlight", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><g><path d=\"M14,4c0.34,0,0.68,0.02,1.01,0.07C13.1,6.23,12,9.05,12,12s1.1,5.77,3.01,7.93C14.68,19.98,14.34,20,14,20 c-4.41,0-8-3.59-8-8S9.59,4,14,4 M14,2C8.48,2,4,6.48,4,12s4.48,10,10,10c1.82,0,3.53-0.5,5-1.35c-2.99-1.73-5-4.95-5-8.65 s2.01-6.92,5-8.65C17.53,2.5,15.82,2,14,2L14,2z\"></path></g></g></g>" } } }, - "auto_graph": { - "name": "auto_graph", + "security_update": { + "name": "security_update", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11.72,8.28L10,7.5l1.72-0.78L12.5,5l0.78,1.72L15,7.5l-1.72,0.78L12.5,10L11.72,8.28z M3.5,12l0.78-1.72L6,9.5L4.28,8.72 L3.5,7L2.72,8.72L1,9.5l1.72,0.78L3.5,12z M7,8l0.94-2.06L10,5L7.94,4.06L7,2L6.06,4.06L4,5l2.06,0.94L7,8z M17.88,6.5l-5.61,6.31 L9,9.54l-6,6.01l1.06,1.06L9,11.67L12.33,15L19,7.5L17.88,6.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M14.06,9.94L12,9l2.06-0.94L15,6l0.94,2.06L18,9l-2.06,0.94L15,12L14.06,9.94z M4,14l0.94-2.06L7,11l-2.06-0.94L4,8 l-0.94,2.06L1,11l2.06,0.94L4,14z M8.5,9l1.09-2.41L12,5.5L9.59,4.41L8.5,2L7.41,4.41L5,5.5l2.41,1.09L8.5,9z M4.5,20.5l6-6.01l4,4 L23,8.93l-1.41-1.41l-7.09,7.97l-4-4L3,19L4.5,20.5z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M7,4V3h10v1H7z M16,12l-4,4l-4-4l1.41-1.41L11,12.17V8h2v4.17l1.59-1.59L16,12z\"></path></g></g>" } } }, - "bar_chart": { - "name": "bar_chart", + "signal_wifi_4_bar": { + "name": "signal_wifi_4_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 9.2h3V19H5V9.2zM10.6 5h2.8v14h-2.8V5zm5.6 8H19v6h-2.8v-6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z\"></path>" } } }, - "border_all": { - "name": "border_all", + "medication": { + "name": "medication", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M10.5,15H8v-3h2.5V9.5h3V12H16v3h-2.5v2.5h-3V15z M19,8v11c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V8c0-1.1,0.9-2,2-2h10 C18.1,6,19,6.9,19,8z M17,8H7v11h10V8z M18,3H6v2h12V3z\"></path></g></g>" } } }, - "border_bottom": { - "name": "border_bottom", + "devices": { + "name": "devices", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z\"></path>" } } }, - "border_clear": { - "name": "border_clear", + "bloodtype": { + "name": "bloodtype", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><rect height=\"2\" width=\"6\" x=\"9\" y=\"16\"></rect><polygon points=\"13,9 11,9 11,11 9,11 9,13 11,13 11,15 13,15 13,13 15,13 15,11 13,11\"></polygon><path d=\"M12,2c-5.33,4.55-8,8.48-8,11.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2C20,10.48,17.33,6.55,12,2z M12,20 c-3.35,0-6-2.57-6-6.2c0-2.34,1.95-5.44,6-9.14c4.05,3.7,6,6.79,6,9.14C18,17.43,15.35,20,12,20z\"></path></g></g>" } } }, - "border_color": { - "name": "border_color", + "battery_alert": { + "name": "battery_alert", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M16.81,8.94l-3.75-3.75L4,14.25V18h3.75L16.81,8.94z M6,16v-0.92l7.06-7.06l0.92,0.92L6.92,16H6z\"></path><path d=\"M19.71,6.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34C17.17,2.09,16.92,2,16.66,2c-0.25,0-0.51,0.1-0.7,0.29l-1.83,1.83 l3.75,3.75L19.71,6.04z\"></path><rect height=\"4\" width=\"20\" x=\"2\" y=\"20\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z\"></path>" } } }, - "border_horizontal": { - "name": "border_horizontal", + "shortcut": { + "name": "shortcut", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M15,5l-1.41,1.41L15,7.83L17.17,10H8c-2.76,0-5,2.24-5,5v4h2v-4c0-1.65,1.35-3,3-3h9.17L15,14.17l-1.41,1.41L15,17l6-6 L15,5z\"></path></g>" } } }, - "border_inner": { - "name": "border_inner", + "screenshot": { + "name": "screenshot", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M9.5,8.5H12V7H8v4h1.5V8.5z M12,17h4v-4h-1.5v2.5H12V17z\"></path></g></g>" } } }, - "border_left": { - "name": "border_left", + "brightness_high": { + "name": "brightness_high", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\"></path><circle cx=\"12\" cy=\"12\" r=\"2.5\"></circle>" } } }, - "border_outer": { - "name": "border_outer", + "network_wifi": { + "name": "network_wifi", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M12,8c-2.86,0-5.5,0.94-7.65,2.51L2.92,9.07 C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07l-1.43,1.43C17.5,8.94,14.86,8,12,8z\"></path></g>" } } }, - "border_right": { - "name": "border_right", + "lte_plus_mobiledata": { + "name": "lte_plus_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M3,14h3v2H1V8h2V14z M5,10h2v6h2v-6h2V8H5V10z M12,16h5v-2h-3v-1h3v-2h-3v-1h3V8h-5V16z M24,11h-2V9h-2v2h-2v2h2v2h2v-2h2 V11z\"></path></g></g>" } } }, - "border_style": { - "name": "border_style", + "play_lesson": { + "name": "play_lesson", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M5,20V4h2v7l2.5-1.5L12,11V4h5v7.08c0.33-0.05,0.66-0.08,1-0.08s0.67,0.03,1,0.08V4c0-1.1-0.9-2-2-2H5C3.9,2,3,2.9,3,4v16 c0,1.1,0.9,2,2,2h7.26c-0.42-0.6-0.75-1.28-0.97-2H5z M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M16.75,20.5v-5l4,2.5L16.75,20.5z\"></path></g>" } } }, - "border_top": { - "name": "border_top", + "wifi_tethering": { + "name": "wifi_tethering", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z\"></path>" } } }, - "border_vertical": { - "name": "border_vertical", + "share_location": { + "name": "share_location", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M13.02,19.93v2.02c2.01-0.2,3.84-1,5.32-2.21l-1.42-1.43C15.81,19.17,14.48,19.75,13.02,19.93z\"></path><path d=\"M4.03,12c0-4.05,3.03-7.41,6.95-7.93V2.05C5.95,2.58,2.03,6.84,2.03,12c0,5.16,3.92,9.42,8.95,9.95v-2.02 C7.06,19.41,4.03,16.05,4.03,12z\"></path><path d=\"M19.95,11h2.02c-0.2-2.01-1-3.84-2.21-5.32l-1.43,1.43C19.19,8.21,19.77,9.54,19.95,11z\"></path><path d=\"M18.34,4.26c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46,0.18,2.79,0.76,3.9,1.62L18.34,4.26z\"></path><path d=\"M18.33,16.9l1.43,1.42c1.21-1.48,2.01-3.31,2.21-5.32h-2.02C19.77,14.46,19.19,15.79,18.33,16.9z\"></path><path d=\"M16,11.1C16,8.61,14.1,7,12,7s-4,1.61-4,4.1c0,1.66,1.33,3.63,4,5.9C14.67,14.73,16,12.76,16,11.1z M12,12 c-0.59,0-1.07-0.48-1.07-1.07c0-0.59,0.48-1.07,1.07-1.07s1.07,0.48,1.07,1.07C13.07,11.52,12.59,12,12,12z\"></path></g></g>" } } }, - "bubble_chart": { - "name": "bubble_chart", + "aod": { + "name": "aod", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 10c-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 2zm8.01-1c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM16.5 3C13.47 3 11 5.47 11 8.5s2.47 5.5 5.5 5.5S22 11.53 22 8.5 19.53 3 16.5 3zm0 9c-1.93 0-3.5-1.57-3.5-3.5S14.57 5 16.5 5 20 6.57 20 8.5 18.43 12 16.5 12z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M8,10h8v1.5H8V10z M9,13h6v1.5H9V13z\"></path></g></g>" } } }, - "checklist": { - "name": "checklist", + "quiz": { + "name": "quiz", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,7.5h-7V6h7V7.5z M18,12.5h-7V14h7V12.5z M3.06,5.11L2,6.17L4.83,9l4.6-4.6L8.36,3.34L4.83,6.88L3.06,5.11z M3.06,11.61 L2,12.67l2.83,2.83l4.6-4.6L8.36,9.84l-3.54,3.54L3.06,11.61z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,7h-9v2h9V7z M22,15h-9v2h9V15z M5.54,11L2,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L5.54,11z M5.54,19L2,15.46 l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L5.54,19z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4 C22,2.9,21.1,2,20,2z M20,16H8V4h12V16z M13.51,10.16c0.41-0.73,1.18-1.16,1.63-1.8c0.48-0.68,0.21-1.94-1.14-1.94 c-0.88,0-1.32,0.67-1.5,1.23l-1.37-0.57C11.51,5.96,12.52,5,13.99,5c1.23,0,2.08,0.56,2.51,1.26c0.37,0.6,0.58,1.73,0.01,2.57 c-0.63,0.93-1.23,1.21-1.56,1.81c-0.13,0.24-0.18,0.4-0.18,1.18h-1.52C13.26,11.41,13.19,10.74,13.51,10.16z M12.95,13.95 c0-0.59,0.47-1.04,1.05-1.04c0.59,0,1.04,0.45,1.04,1.04c0,0.58-0.44,1.05-1.04,1.05C13.42,15,12.95,14.53,12.95,13.95z\"></path></g>" } } }, - "checklist_rtl": { - "name": "checklist_rtl", + "developer_mode": { + "name": "developer_mode", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9,7.5H2V6h7V7.5z M9,12.5H2V14h7V12.5z M11.64,5.11l-1.06,1.06L13.4,9L18,4.4l-1.06-1.06L13.4,6.88L11.64,5.11z M11.64,11.61l-1.06,1.06l2.83,2.83l4.6-4.6l-1.06-1.06l-3.54,3.54L11.64,11.61z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,7H2v2h9V7z M11,15H2v2h9V15z M16.34,11l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,5.34L16.34,11z M16.34,19 l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,13.34L16.34,19z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z\"></path>" } } }, - "drag_handle": { - "name": "drag_handle", + "do_not_disturb_on_total_silence": { + "name": "do_not_disturb_on_total_silence", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 9H4v2h16V9zM4 15h16v-2H4v2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12,6c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S15.4,6,12,6z M15,13H9v-2h6V13z\"></path></g></g>" } } }, - "draw": { - "name": "draw", + "e_mobiledata": { + "name": "e_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.35,8.83l0.71-0.71c0.59-0.59,0.59-1.54,0-2.12L15,4.94c-0.59-0.59-1.54-0.59-2.12,0l-0.71,0.71L15.35,8.83z M12.17,9.89 L6.56,15.5H5.5v-1.06l5.61-5.61L12.17,9.89z M11.11,6.71L4,13.82V17h3.18l7.11-7.11L11.11,6.71L11.11,6.71z M4.51,11.18 C3.59,10.76,3,10.16,3,9.25c0-1.31,1.39-1.99,2.61-2.59C6.45,6.24,7.5,5.73,7.5,5.25C7.5,4.91,6.83,4.5,6,4.5 c-0.94,0-1.36,0.46-1.38,0.48C4.35,5.29,3.88,5.33,3.57,5.07C3.26,4.81,3.21,4.35,3.46,4.03C3.55,3.93,4.34,3,6,3 c1.47,0,3,0.84,3,2.25C9,6.66,7.55,7.37,6.27,8C5.56,8.35,4.5,8.87,4.5,9.25c0,0.3,0.48,0.56,1.17,0.78L4.51,11.18z M14.14,12.16 c0.83,0.48,1.36,1.14,1.36,2.09c0,1.94-2.44,2.75-3.75,2.75C11.34,17,11,16.66,11,16.25s0.34-0.75,0.75-0.75 c0.77,0,2.25-0.49,2.25-1.25c0-0.39-0.38-0.71-0.97-0.97L14.14,12.16z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18.85,10.39l1.06-1.06c0.78-0.78,0.78-2.05,0-2.83L18.5,5.09c-0.78-0.78-2.05-0.78-2.83,0l-1.06,1.06L18.85,10.39z M14.61,11.81L7.41,19H6v-1.41l7.19-7.19L14.61,11.81z M13.19,7.56L4,16.76V21h4.24l9.19-9.19L13.19,7.56L13.19,7.56z M19,17.5 c0,2.19-2.54,3.5-5,3.5c-0.55,0-1-0.45-1-1s0.45-1,1-1c1.54,0,3-0.73,3-1.5c0-0.47-0.48-0.87-1.23-1.2l1.48-1.48 C18.32,15.45,19,16.29,19,17.5z M4.58,13.35C3.61,12.79,3,12.06,3,11c0-1.8,1.89-2.63,3.56-3.36C7.59,7.18,9,6.56,9,6 c0-0.41-0.78-1-2-1C5.74,5,5.2,5.61,5.17,5.64C4.82,6.05,4.19,6.1,3.77,5.76C3.36,5.42,3.28,4.81,3.62,4.38C3.73,4.24,4.76,3,7,3 c2.24,0,4,1.32,4,3c0,1.87-1.93,2.72-3.64,3.47C6.42,9.88,5,10.5,5,11c0,0.31,0.43,0.6,1.07,0.86L4.58,13.35z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16,9V7H8v10h8v-2h-6v-2h6v-2h-6V9H16z\"></path></g></g>" } } }, - "edit_note": { - "name": "edit_note", + "mobiledata_off": { + "name": "mobiledata_off", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3,5h9v1.5H3V5z M3,11.25h6v1.5H3V11.25z M3,8.12h9v1.5H3V8.12z M16.78,11.99l0.65-0.65c0.29-0.29,0.29-0.77,0-1.06 l-0.71-0.71c-0.29-0.29-0.77-0.29-1.06,0l-0.65,0.65L16.78,11.99z M16.19,12.58L11.77,17H10v-1.77l4.42-4.42L16.19,12.58z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,10h11v2H3V10z M3,8h11V6H3V8z M3,16h7v-2H3V16z M18.01,12.87l0.71-0.71c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71 c0.39,0.39,0.39,1.02,0,1.41l-0.71,0.71L18.01,12.87z M17.3,13.58l-5.3,5.3V21h2.12l5.3-5.3L17.3,13.58z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><polygon points=\"16,6.82 17.59,8.41 19,7 15,3 11,7 12.41,8.41 14,6.82 14,11.17 16,13.17\"></polygon><polygon points=\"1.39,4.22 8,10.83 8,17.18 6.41,15.59 5,17 9,21 13,17 11.59,15.59 10,17.18 10,12.83 19.78,22.61 21.19,21.19 2.81,2.81\"></polygon></g></g>" } } }, - "format_align_center": { - "name": "format_align_center", + "data_usage": { + "name": "data_usage", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z\"></path>" } } }, - "format_align_justify": { - "name": "format_align_justify", + "storm": { + "name": "storm", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18.93,8C16.72,4.18,11.82,2.87,8,5.07c-1.41,0.82-2.48,2-3.16,3.37C4.71,6.24,5.06,4.04,5.86,2H3.74 C2.2,6.49,2.52,11.58,5.07,16c1.1,1.91,2.88,3.19,4.86,3.72c1.98,0.53,4.16,0.31,6.07-0.79c1.41-0.82,2.48-2,3.16-3.37 c0.13,2.2-0.21,4.4-1.01,6.44h2.11C21.79,17.51,21.48,12.42,18.93,8z M15,17.2c-2.87,1.65-6.54,0.67-8.2-2.2 c-0.11-0.2-0.21-0.4-0.3-0.6C5.3,11.64,6.33,8.34,9,6.8c2.86-1.65,6.54-0.67,8.2,2.2c0.11,0.2,0.21,0.4,0.3,0.6 C18.7,12.36,17.67,15.66,15,17.2z M12,10c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,10,12,10 M12,8c-2.21,0-4,1.79-4,4 s1.79,4,4,4s4-1.79,4-4S14.21,8,12,8z\"></path></g></g>" } } }, - "format_align_left": { - "name": "format_align_left", + "60fps": { + "name": "60fps", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4c1.66,0,3-1.34,3-3V8C22,6.34,20.66,5,19,5z M10,8V5H5 C3.34,5,2,6.34,2,8v8c0,1.66,1.34,3,3,3h3c1.66,0,3-1.34,3-3v-3c0-1.66-1.34-3-3-3H5V8H10z M8,13v3H5v-3H8z\"></path></g></g>" } } }, - "format_align_right": { - "name": "format_align_right", + "gpp_good": { + "name": "gpp_good", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83V6.31l6-2.12l6,2.12V11.09z M8.82,10.59L7.4,12l3.54,3.54l5.66-5.66l-1.41-1.41l-4.24,4.24L8.82,10.59z\"></path></g>" } } }, - "format_bold": { - "name": "format_bold", + "screen_lock_landscape": { + "name": "screen_lock_landscape", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z\"></path>" } } }, - "format_clear": { - "name": "format_clear", + "graphic_eq": { + "name": "graphic_eq", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z\"></path>" } } }, - "format_color_fill": { - "name": "format_color_fill", + "nearby_error": { + "name": "nearby_error", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M15.25,14c0.96,0,1.75-0.79,1.75-1.75c0-1.16-1.75-3.06-1.75-3.06s-1.75,1.9-1.75,3.06C13.5,13.21,14.29,14,15.25,14z\"></path><rect height=\"4\" width=\"16\" x=\"2\" y=\"16\"></rect><path d=\"M7.03,12.6C7.3,12.87,7.65,13,8,13s0.7-0.13,0.97-0.4l3.63-3.63c0.53-0.53,0.53-1.4,0-1.93L5.57,0L4.51,1.06l2.43,2.43 L3.4,7.03c-0.53,0.53-0.53,1.4,0,1.93L7.03,12.6z M8,4.56L11.44,8H4.56L8,4.56z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M16.56,8.94L7.62,0L6.21,1.41l2.38,2.38L3.44,8.94c-0.59,0.59-0.59,1.54,0,2.12l5.5,5.5C9.23,16.85,9.62,17,10,17 s0.77-0.15,1.06-0.44l5.5-5.5C17.15,10.48,17.15,9.53,16.56,8.94z M5.21,10L10,5.21L14.79,10H5.21z M19,11.5c0,0-2,2.17-2,3.5 c0,1.1,0.9,2,2,2s2-0.9,2-2C21,13.67,19,11.5,19,11.5z M2,20h20v4H2V20z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,7.57l4.42,4.42L12,16.41l-4.42-4.42L12,7.57z M12,19.19l-7.2-7.2l7.2-7.2l6,6V7.16l-4.58-4.58 c-0.78-0.78-2.05-0.78-2.83,0l-8.01,8c-0.78,0.78-0.78,2.05,0,2.83l8.01,8c0.78,0.78,2.05,0.78,2.83,0L18,16.82v-3.63L12,19.19z M20,20h2v2h-2V20z M22,10h-2v8h2V10\"></path></g></g>" } } }, - "format_color_reset": { - "name": "format_color_reset", + "bluetooth_searching": { + "name": "bluetooth_searching", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6.36c1.53 2 3.08 4.43 3.71 6.24l2.23 2.23c.03-.27.06-.55.06-.83 0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l1.44 1.44c.34-.51.7-1 1.06-1.47zM5.41 5.14L4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14zM12 18c-2.21 0-4-1.79-4-4 0-.69.32-1.62.81-2.64l5.72 5.72c-.7.56-1.57.92-2.53.92z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z\"></path>" } } }, - "format_color_text": { - "name": "format_color_text", + "sd_storage": { + "name": "sd_storage", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M2,20h20v4H2V20z M5.49,17h2.42l1.27-3.58h5.65L16.09,17h2.42L13.25,3h-2.5L5.49,17z M9.91,11.39l2.03-5.79h0.12l2.03,5.79 H9.91z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 4v16H6V8.83L10.83 4H18m0-2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z\"></path>" } } }, - "format_indent_decrease": { - "name": "format_indent_decrease", + "mobile_off": { + "name": "mobile_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17zM1.49 3.76L5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.41-1.41L2.9 2.35 1.49 3.76zM7 9.27L16.73 19H7V9.27z\"></path>" } } }, - "format_indent_increase": { - "name": "format_indent_increase", + "signal_wifi_statusbar_connected_no_internet_4": { + "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g><g><g><rect height=\"1.5\" width=\"1.5\" x=\"16.5\" y=\"16.5\"></rect><rect height=\"6.05\" width=\"1.5\" x=\"16.5\" y=\"9\"></rect><path d=\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l5-5V7.5h4.51L20,7.01C17.4,4.53,13.88,3,10,3z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21l5-5.01V8h5.92C19.97,5.51,16.16,4,12,4z\"></path><rect height=\"2\" width=\"2\" x=\"19\" y=\"18\"></rect><rect height=\"6\" width=\"2\" x=\"19\" y=\"10\"></rect></g></g>" } } }, - "format_italic": { - "name": "format_italic", + "hdr_auto_select": { + "name": "hdr_auto_select", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4h-8z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z\"></path><polygon points=\"3.5,18 1.5,18 1.5,16 0,16 0,22 1.5,22 1.5,19.5 3.5,19.5 3.5,22 5,22 5,16 3.5,16\"></polygon><polygon points=\"22,18.5 22,16.5 20.5,16.5 20.5,18.5 18.5,18.5 18.5,20 20.5,20 20.5,22 22,22 22,20 24,20 24,18.5\"></polygon><path d=\"M16.5,16H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1c0.5-0.3,0.9-0.8,0.9-1.4v-1C18,16.7,17.3,16,16.5,16z M16.5,18.5h-2v-1h2 V18.5z\"></path><polygon points=\"11.97,5.3 10.95,8.19 13.05,8.19 12.03,5.3\"></polygon><path d=\"M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z M14.04,11l-0.63-1.79h-2.83L9.96,11H8.74l2.63-7h1.25 l2.63,7H14.04z\"></path></g></g>" } } }, - "format_line_spacing": { - "name": "format_line_spacing", + "battery_std": { + "name": "battery_std", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z\"></path>" } } }, - "format_list_bulleted": { - "name": "format_list_bulleted", + "screen_lock_portrait": { + "name": "screen_lock_portrait", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z\"></path>" } } }, - "format_list_numbered": { - "name": "format_list_numbered", + "task": { + "name": "task", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h7v5h5V20z M8.82,13.05 L7.4,14.46L10.94,18l5.66-5.66l-1.41-1.41l-4.24,4.24L8.82,13.05z\"></path></g>" } } }, - "format_list_numbered_rtl": { - "name": "format_list_numbered_rtl", + "wifi_lock": { + "name": "wifi_lock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M17.5,13H17v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C18,13.22,17.78,13,17.5,13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V12z M12,15l-2,2l-4.24-4.24L0,7.01C2.6,4.53,6.12,3,10,3c3.88,0,7.4,1.53,10,4.01L17.51,9.5H15c-1.66,0-3,1.34-3,3V15z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3v1zm1-9h1V4h-2v1h1v3zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3v1zM2 5h14v2H2V5zm0 12h14v2H2v-2zm0-6h14v2H2v-2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M21.98,11L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36L12,21l3.05-3.05V15 c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71H21.98z\"></path><path d=\"M22,16v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C23,16.45,22.55,16,22,16z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\"></path></g></g>" } } }, - "format_paint": { - "name": "format_paint", + "water": { + "name": "water", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M21.98,14H22H21.98z M5.35,13c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1 c1.19,0,1.4,0.98,3.31,1v-2c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1 c-1.19,0-1.42-1-3.33-1C3.38,11,3.24,12,2,12v2C3.9,14,4.17,13,5.35,13z M18.67,15c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1 c-1.95,0-2.1,1-3.34,1c-1.24,0-1.38-1-3.33-1c-1.95,0-2.1,1-3.34,1v2c1.95,0,2.11-1,3.34-1c1.24,0,1.38,1,3.33,1 c1.95,0,2.1-1,3.34-1c1.19,0,1.42,1,3.33,1c1.94,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1v-2C20.76,16,20.62,15,18.67,15z M5.35,9 c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.31,1V8 c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1C10.04,7,9.9,8,8.66,8C7.47,8,7.24,7,5.33,7 C3.38,7,3.24,8,2,8v2C3.9,10,4.17,9,5.35,9z\"></path></g></g>" } } }, - "format_quote": { - "name": "format_quote", + "grid_4x4": { + "name": "grid_4x4", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.62 18h-5.24l2-4H13V6h8v7.24L18.62 18zm-2-2h.76L19 12.76V8h-4v4h3.62l-2 4zm-8 2H3.38l2-4H3V6h8v7.24L8.62 18zm-2-2h.76L9 12.76V8H5v4h3.62l-2 4z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M22,7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7H22z M7,7h4v4 H7V7z M7,17v-4h4v4H7z M17,17h-4v-4h4V17z M17,11h-4V7h4V11z\"></path></g></g>" } } }, - "format_shapes": { - "name": "format_shapes", + "gps_off": { + "name": "gps_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z\"></path>" } } }, - "format_size": { - "name": "format_size", + "phishing": { + "name": "phishing", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M13,5.39V2h-1.5v3.39C10.63,5.7,10,6.52,10,7.5c0,0.98,0.63,1.8,1.5,2.11V13c0,1.38-1.12,2.5-2.5,2.5S6.5,14.38,6.5,13 v-1.38L7.94,13L9,11.94L5,8v5c0,2.21,1.79,4,4,4s4-1.79,4-4V9.61c0.87-0.31,1.5-1.13,1.5-2.11C14.5,6.52,13.87,5.7,13,5.39z M12.25,8.25c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75C12.66,6.75,13,7.09,13,7.5C13,7.91,12.66,8.25,12.25,8.25z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17,6.18V2h-2v4.18C13.84,6.6,13,7.7,13,9s0.84,2.4,2,2.82V15c0,2.21-1.79,4-4,4s-4-1.79-4-4v-1.17l1.59,1.59L10,14L5,9v6 c0,3.31,2.69,6,6,6s6-2.69,6-6v-3.18c1.16-0.41,2-1.51,2-2.82S18.16,6.6,17,6.18z M16,10c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S16.55,10,16,10z\"></path></g></g>" } } }, - "format_strikethrough": { - "name": "format_strikethrough", + "cable": { + "name": "cable", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M20,5V4c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v1h-1v4c0,0.55,0.45,1,1,1h1v7c0,1.1-0.9,2-2,2s-2-0.9-2-2V7 c0-2.21-1.79-4-4-4S5,4.79,5,7v7H4c-0.55,0-1,0.45-1,1v4h1v1c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-1h1v-4c0-0.55-0.45-1-1-1H7 V7c0-1.1,0.9-2,2-2s2,0.9,2,2v10c0,2.21,1.79,4,4,4s4-1.79,4-4v-7h1c0.55,0,1-0.45,1-1V5H20z\"></path></g></g>" } } }, - "format_textdirection_l_to_r": { - "name": "format_textdirection_l_to_r", + "fmd_bad": { + "name": "fmd_bad", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2H9C6.79 2 5 3.79 5 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zm0 12v3H5v2h12v3l4-4-4-4z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8C20,5.22,16.2,2,12,2z M12,19.33 c-4.05-3.7-6-6.79-6-9.14C6,6.57,8.65,4,12,4s6,2.57,6,6.2C18,12.54,16.05,15.64,12,19.33z\"></path><rect height=\"5\" width=\"2\" x=\"11\" y=\"6\"></rect><rect height=\"2\" width=\"2\" x=\"11\" y=\"13\"></rect></g></g>" } } }, - "format_textdirection_r_to_l": { - "name": "format_textdirection_r_to_l", + "brightness_medium": { + "name": "brightness_medium", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zM8 14l-4 4 4 4v-3h12v-2H8v-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6v12c3.31 0 6-2.69 6-6s-2.69-6-6-6z\"></path>" } } }, - "format_underlined": { - "name": "format_underlined", + "airplanemode_active": { + "name": "airplanemode_active", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect><path d=\"M17,13v-1l-6-4V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-6,4v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-4L17,13z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z\"></path>" + "path": "<g><path d=\"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g>" } } }, - "functions": { - "name": "functions", + "gps_not_fixed": { + "name": "gps_not_fixed", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\"></path>" } } }, - "height": { - "name": "height", + "widgets": { + "name": "widgets", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><polygon points=\"11,7 14,7 10,3.01 6,7 9,7 9,13 6,13 10,16.99 14,13 11,13\"></polygon></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><polygon points=\"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01\"></polygon></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.66 4.52l2.83 2.83-2.83 2.83-2.83-2.83 2.83-2.83M9 5v4H5V5h4m10 10v4h-4v-4h4M9 15v4H5v-4h4m7.66-13.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65zM11 3H3v8h8V3zm10 10h-8v8h8v-8zm-10 0H3v8h8v-8z\"></path>" } } }, - "highlight": { - "name": "highlight", + "access_time": { + "name": "access_time", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M6 14l3 3v5h6v-5l3-3V9H6v5zm2-3h8v2.17l-3 3V20h-2v-3.83l-3-3V11zm3-9h2v3h-2zM3.502 5.874L4.916 4.46l2.122 2.12-1.414 1.415zm13.458.708l2.123-2.12 1.413 1.416-2.123 2.12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\"></path>" } } }, - "horizontal_distribute": { - "name": "horizontal_distribute", + "wifi_tethering_error_rounded": { + "name": "wifi_tethering_error_rounded", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M4,22H2V2h2V22z M22,2h-2v20h2V2z M13.5,7h-3v10h3V7z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,7c-3.31,0-6,2.69-6,6c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.11-0.45,2.1-1.18,2.82l1.42,1.42C17.32,16.15,18,14.66,18,13C18,9.69,15.31,7,12,7z M12,3C6.48,3,2,7.48,2,13 c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13c0-4.42,3.58-8,8-8c2.53,0,4.78,1.17,6.24,3h2.42 C18.93,5.01,15.7,3,12,3z M12,11c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59 C13.77,14.05,14,13.55,14,13C14,11.9,13.1,11,12,11z M20,10h2v6h-2V10z M20,18h2v2h-2V18z\"></path></g></g>" } } }, - "horizontal_rule": { - "name": "horizontal_rule", + "tungsten": { + "name": "tungsten", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><rect height=\"2\" width=\"14\" x=\"3\" y=\"9\"></rect></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" fill-rule=\"evenodd\" height=\"24\" width=\"24\"></rect><g><rect fill-rule=\"evenodd\" height=\"2\" width=\"16\" x=\"4\" y=\"11\"></rect></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><rect height=\"3\" width=\"2\" x=\"11\" y=\"19\"></rect><rect height=\"2\" width=\"3\" x=\"2\" y=\"11\"></rect><rect height=\"2\" width=\"3\" x=\"19\" y=\"11\"></rect><rect height=\"3\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.6665 17.8014)\" width=\"1.99\" x=\"16.66\" y=\"16.66\"></rect><rect height=\"1.99\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -10.9791 9.8041)\" width=\"3\" x=\"4.85\" y=\"17.16\"></rect><path d=\"M15,8.02V3H9v5.02C7.79,8.94,7,10.37,7,12c0,2.76,2.24,5,5,5s5-2.24,5-5C17,10.37,16.21,8.94,15,8.02z M11,5h2v2.1 C12.68,7.04,12.34,7,12,7s-0.68,0.04-1,0.1V5z M12,15c-1.65,0-3-1.35-3-3s1.35-3,3-3c1.65,0,3,1.35,3,3S13.65,15,12,15z\"></path></g></g>" } } }, - "insert_chart": { - "name": "insert_chart", + "3g_mobiledata": { + "name": "3g_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M3,7v2h5v2H4v2h4v2H3v2h5c1.1,0,2-0.9,2-2v-1.5c0-0.83-0.67-1.5-1.5-1.5c0.83,0,1.5-0.67,1.5-1.5V9c0-1.1-0.9-2-2-2H3z M21,11v4c0,1.1-0.9,2-2,2h-5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h5c1.1,0,2,0.9,2,2h-7v6h5v-2h-2.5v-2H21z\"></path></g></g>" } } }, - "insert_chart_outlined": { - "name": "insert_chart_outlined", + "bluetooth_connected": { + "name": "bluetooth_connected", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm0-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z\"></path>" } } }, - "insert_comment": { - "name": "insert_comment", + "punch_clock": { + "name": "punch_clock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.5,5H15V1H5v4H4.5C3.67,5,3,5.67,3,6.5v10C3,17.33,3.67,18,4.5,18h11c0.83,0,1.5-0.67,1.5-1.5v-10 C17,5.67,16.33,5,15.5,5z M6.5,2.5h7V5h-7V2.5z M15.5,16.5h-11v-10h11V16.5z\"></path><path d=\"M10,7.5c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C14,9.29,12.21,7.5,10,7.5z M10,14.5c-1.65,0-3-1.35-3-3 c0-1.65,1.35-3,3-3c1.65,0,3,1.35,3,3C13,13.15,11.65,14.5,10,14.5z\"></path><polygon points=\"10.5,9.5 9.5,9.5 9.5,11.71 11.15,13.35 11.85,12.65 10.5,11.29\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4v13.17L18.83 16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 10H6v2h12v-2zm0-3H6v2h12V9zm0-3H6v2h12V6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,6h-1V1H6v5H5C3.9,6,3,6.9,3,8v12c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8C21,6.9,20.1,6,19,6z M8,3h8v3H8V3z M19,20H5V8 h14V20z\"></path><path d=\"M12,9c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S14.76,9,12,9z M12,17.5c-1.93,0-3.5-1.57-3.5-3.5 s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S13.93,17.5,12,17.5z\"></path><polygon points=\"12.5,11.5 11.5,11.5 11.5,14.21 13.14,15.85 13.85,15.14 12.5,13.79\"></polygon></g></g>" } } }, - "insert_drive_file": { - "name": "insert_drive_file", - "keywords": [ - "editor" - ], - "heights": { - "24": { - "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z\"></path>" - } - } - }, - "insert_emoticon": { - "name": "insert_emoticon", + "g_mobiledata": { + "name": "g_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,11v2h2v2H9V9h7c0-1.1-0.9-2-2-2H9C7.9,7,7,7.9,7,9v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4H12z\"></path></g></g>" } } }, - "insert_invitation": { - "name": "insert_invitation", + "storage": { + "name": "storage", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-2 5h-5v5h5v-5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z\"></path>" } } }, - "insert_link": { - "name": "insert_link", + "media_bluetooth_on": { + "name": "media_bluetooth_on", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M9,3l0.01,10.55c-0.6-0.34-1.28-0.55-2-0.55C4.79,13,3,14.79,3,17s1.79,4,4.01,4S11,19.21,11,17V7h4V3H9z M21,12.43 L17.57,9h-0.6v4.55l-2.75-2.75l-0.85,0.85L16.73,15l-3.35,3.35l0.85,0.85l2.75-2.75V21h0.6L21,17.57L18.42,15L21,12.43z M18.17,11.3l1.13,1.13l-1.13,1.13V11.3z M19.3,17.57l-1.13,1.13v-2.26L19.3,17.57z\"></path></g></g>" } } }, - "insert_photo": { - "name": "insert_photo", + "reviews": { + "name": "reviews", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z\"></path><polygon points=\"12,15 13.57,11.57 17,10 13.57,8.43 12,5 10.43,8.43 7,10 10.43,11.57\"></polygon></g></g>" } } }, - "linear_scale": { - "name": "linear_scale", + "signal_cellular_alt": { + "name": "signal_cellular_alt", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z\"></path>" } } }, - "margin": { - "name": "margin", + "usb": { + "name": "usb", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,3v18h18V3H3z M19,19H5V5h14V19z M11,7h2v2h-2V7z M7,7h2v2H7V7z M15,7h2v2h-2V7z M7,11h2v2H7V11z M11,11h2v2h-2V11z M15,11h2v2h-2V11z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z\"></path>" } } }, - "merge_type": { - "name": "merge_type", + "mode_standby": { + "name": "mode_standby", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M15,12c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,10.34,15,12z\"></path></g></g>" } } }, - "mode": { - "name": "mode", + "signal_wifi_off": { + "name": "signal_wifi_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.06 9.02l.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31L2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z\"></path>" } } }, - "mode_comment": { - "name": "mode_comment", + "bluetooth_disabled": { + "name": "bluetooth_disabled", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 17.17L18.83 16H4V4h16v13.17zM20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z\"></path>" } } }, - "mode_edit": { - "name": "mode_edit", + "nfc": { + "name": "nfc", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M3,21l3.75,0L17.81,9.94l-3.75-3.75L3,17.25L3,21z M5,18.08l9.06-9.06l0.92,0.92L5.92,19L5,19L5,18.08z\"></path></g><g><path d=\"M18.37,3.29c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75l1.83-1.83c0.39-0.39,0.39-1.02,0-1.41L18.37,3.29z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z\"></path>" } } }, - "mode_edit_outline": { - "name": "mode_edit_outline", + "signal_cellular_connected_no_internet_4_bar": { + "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ - "editor" + "device" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M3,14v3h3l8.62-8.62l-3-3L3,14z M5.38,15.5H4.5v-0.88l7.12-7.12l0.88,0.88L5.38,15.5z\"></path><path d=\"M16.71,4.88l-1.59-1.59c-0.39-0.39-1.02-0.39-1.41,0l-1.03,1.02l3,3l1.03-1.02C17.1,5.9,17.1,5.27,16.71,4.88z\"></path></g></g>" + "path": "<g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g><g><g><polygon points=\"2,18 15,18 15,7.5 18,7.5 18,2\"></polygon><rect height=\"1.5\" width=\"1.5\" x=\"16.5\" y=\"16.5\"></rect><rect height=\"6.05\" width=\"1.5\" x=\"16.5\" y=\"9\"></rect></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M3,21l3.75,0L17.81,9.94l-3.75-3.75L3,17.25L3,21z M5,18.08l9.06-9.06l0.92,0.92L5.92,19L5,19L5,18.08z\"></path></g><g><path d=\"M18.37,3.29c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75l1.83-1.83c0.39-0.39,0.39-1.02,0-1.41L18.37,3.29z\"></path></g></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><g><path d=\"M20,18h2v-8h-2V18z M20,22h2v-2h-2V22z M2,22h16V8h4V2L2,22z\"></path></g></g></g>" } } }, - "monetization_on": { - "name": "monetization_on", + "system_security_update_good": { + "name": "system_security_update_good", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M16,10.05l-1.41-1.41l-3.54,3.54l-1.41-1.41l-1.41,1.41L11.05,15L16,10.05z\"></path></g>" } } }, - "money_off": { - "name": "money_off", + "radar": { + "name": "radar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M19.74,18.33C21.15,16.6,22,14.4,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12s4.48,10,10,10c2.4,0,4.6-0.85,6.33-2.26 c0.27-0.22,0.53-0.46,0.78-0.71c0.03-0.03,0.05-0.06,0.07-0.08C19.38,18.75,19.57,18.54,19.74,18.33z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8c0,1.85-0.63,3.54-1.69,4.9l-1.43-1.43c0.69-0.98,1.1-2.17,1.1-3.46c0-3.31-2.69-6-6-6s-6,2.69-6,6 s2.69,6,6,6c1.3,0,2.51-0.42,3.49-1.13l1.42,1.42C15.54,19.37,13.85,20,12,20z M13.92,12.51c0.17-0.66,0.02-1.38-0.49-1.9 l-0.02-0.02c-0.77-0.77-2-0.78-2.78-0.04c-0.01,0.01-0.03,0.02-0.05,0.04c-0.78,0.78-0.78,2.05,0,2.83l0.02,0.02 c0.52,0.51,1.25,0.67,1.91,0.49l1.51,1.51c-0.6,0.36-1.29,0.58-2.04,0.58c-2.21,0-4-1.79-4-4s1.79-4,4-4s4,1.79,4,4 c0,0.73-0.21,1.41-0.56,2L13.92,12.51z\"></path></g></g>" } } }, - "money_off_csred": { - "name": "money_off_csred", + "network_cell": { + "name": "network_cell", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M2,22h20V2L2,22z M20,20h-3V9.83l3-3V20z\"></path></g>" } } }, - "multiline_chart": { - "name": "multiline_chart", + "system_security_update": { + "name": "system_security_update", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M7,4V3h10v1H7z M16,12l-4,4l-4-4l1.41-1.41L11,12.17V8h2v4.17l1.59-1.59L16,12z\"></path></g></g>" } } }, - "notes": { - "name": "notes", + "reset_tv": { + "name": "reset_tv", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 11.01L3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M22,8V5c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v12c0,1.1,0.9,2,2,2h4v2h8v-2h4c1.1,0,1.99-0.9,1.99-2v-5H22c0-1.1-0.9-2-2-2 h-7.17l1.83-1.83l-1.41-1.41C9.69,10.31,10.88,9.12,9,11c2.06,2.06,0.9,0.9,4.24,4.24l1.41-1.41L12.83,12H20v5H4V5h16v3H22z\"></path></g></g>" } } }, - "padding": { - "name": "padding", + "brightness_low": { + "name": "brightness_low", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5z M19,19H5V5h14V19z M11,7h2v2h-2V7z M7,7h2v2H7V7z M15,7h2v2h-2V7z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\"></path>" } } }, - "pie_chart": { - "name": "pie_chart", + "signal_wifi_4_bar_lock": { + "name": "signal_wifi_4_bar_lock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M17.5,13H17v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C18,13.22,17.78,13,17.5,13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V12z M12,15l-2,2l-4.24-4.24L0,7.01C2.6,4.53,6.12,3,10,3c3.88,0,7.4,1.53,10,4.01L17.51,9.5H15c-1.66,0-3,1.34-3,3V15z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.93 9H13V4.07c3.61.45 6.48 3.32 6.93 6.93zM4 12c0-4.07 3.06-7.44 7-7.93v15.86c-3.94-.49-7-3.86-7-7.93zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M21.98,11L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36L12,21l3.05-3.05V15 c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71H21.98z\"></path><path d=\"M22,16v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C23,16.45,22.55,16,22,16z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\"></path></g></g>" } } }, - "pie_chart_outline": { - "name": "pie_chart_outline", + "hdr_auto": { + "name": "hdr_auto", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z M11.01,6L6.88,17h1.9l1-2.81h4.44L15.21,17h1.9L12.98,6H11.01z M10.35,12.59l1.6-4.55h0.09 l1.6,4.55H10.35z\"></path></g>" } } }, - "post_add": { - "name": "post_add", + "battery_unknown": { + "name": "battery_unknown", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M14,15H5V6h6V5H5C4.45,5,4,5.45,4,6V15c0,0.55,0.45,1,1,1H14c0.55,0,1-0.45,1-1V9h-1V15z\"></path><polygon points=\"7,8 7,9 11,9 12,9 12,8\"></polygon><rect height=\"1\" width=\"5\" x=\"7\" y=\"10\"></rect><rect height=\"1\" width=\"5\" x=\"7\" y=\"12\"></rect><polygon points=\"15,3 14,3 14,5 14,5 12,5 12,6 14,6 14,8 15,8 15,6 15,6 17,6 17,5 15,5\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z\"></path><path d=\"M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z\"></path><rect height=\"2\" width=\"8\" x=\"7\" y=\"9\"></rect><polygon points=\"7,12 7,14 15,14 15,12 12,12\"></polygon><rect height=\"2\" width=\"8\" x=\"7\" y=\"15\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z\"></path>" } } }, - "publish": { - "name": "publish", + "location_disabled": { + "name": "location_disabled", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 4h14v2H5zm0 10h4v6h6v-6h4l-7-7-7 7zm8-2v6h-2v-6H9.83L12 9.83 14.17 12H13z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86L3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z\"></path>" } } }, - "query_stats": { - "name": "query_stats", + "pattern": { + "name": "pattern", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.44,15.38C16.79,14.84,17,14.19,17,13.5c0-1.93-1.57-3.5-3.5-3.5S10,11.57,10,13.5s1.57,3.5,3.5,3.5 c0.69,0,1.34-0.21,1.88-0.56L17.94,19L19,17.94L16.44,15.38z M13.5,15.5c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S14.6,15.5,13.5,15.5z M17.78,2L19,2.87l-3.88,5.9h0C14.61,8.59,14.07,8.5,13.5,8.5L17.78,2z M13.5,8.5c-0.58,0-1.13,0.1-1.65,0.28l0,0l-0.78-1.1 l-3.41,5.36l-2.48-2.97l-2.96,4.81L1,14l4-6.5l2.5,3L11,5L13.5,8.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M19.88,18.47c0.44-0.7,0.7-1.51,0.7-2.39c0-2.49-2.01-4.5-4.5-4.5s-4.5,2.01-4.5,4.5s2.01,4.5,4.49,4.5 c0.88,0,1.7-0.26,2.39-0.7L21.58,23L23,21.58L19.88,18.47z M16.08,18.58c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5C18.58,17.46,17.46,18.58,16.08,18.58z M15.72,10.08c-0.74,0.02-1.45,0.18-2.1,0.45l-0.55-0.83l-3.8,6.18 l-3.01-3.52l-3.63,5.81L1,17l5-8l3,3.5L13,6C13,6,15.72,10.08,15.72,10.08z M18.31,10.58c-0.64-0.28-1.33-0.45-2.05-0.49 c0,0,5.12-8.09,5.12-8.09L23,3.18L18.31,10.58z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M4,6c0-1.1,0.9-2,2-2s2,0.9,2,2S7.1,8,6,8S4,7.1,4,6z M6,14c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S4.9,14,6,14z M12,8 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,8,12,8z M18,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S19.1,10,18,10z M17.98,16 c-0.74,0-1.37,0.4-1.72,1h-2.54c-0.34-0.6-0.98-1-1.72-1s-1.37,0.4-1.72,1H8.41l3.07-3.07C11.65,13.97,11.82,14,12,14 c1.1,0,2-0.9,2-2c0-0.18-0.03-0.35-0.07-0.51l3.56-3.56C17.65,7.97,17.82,8,18,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56C12.35,10.03,12.18,10,12,10c-1.1,0-2,0.9-2,2c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56 C6.35,16.03,6.18,16,6,16c-1.1,0-2,0.9-2,2s0.9,2,2,2c0.74,0,1.37-0.4,1.72-1h2.57c0.34,0.6,0.98,1,1.72,1s1.37-0.4,1.72-1h2.55 c0.34,0.6,0.98,1,1.72,1c1.1,0,2-0.9,2-2C19.98,16.9,19.08,16,17.98,16z\"></path></g></g>" } } }, - "scatter_plot": { - "name": "scatter_plot", + "dvr": { + "name": "dvr", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 18c-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-2zm4-2c-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-2zm5.6 17.6c-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>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z\"></path>" } } }, - "schema": { - "name": "schema", + "light_mode": { + "name": "light_mode", "keywords": [ - "editor" + "device" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11.5,7.75v1.5h-2v-1.5h-2V6.5h2V2H4v4.5h2v1.25H4v4.5h2V14H4v4.5h5.5V14h-2v-1.75h2v-1.5h2v1.5H17v-4.5H11.5z M5.5,3.5H8V5 H5.5V3.5z M8,17H5.5v-1.5H8V17z M8,10.75H5.5v-1.5H8V10.75z M15.5,10.75H13v-1.5h2.5V10.75z\"></path>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,7.5c1.38,0,2.5,1.12,2.5,2.5s-1.12,2.5-2.5,2.5S7.5,11.38,7.5,10S8.62,7.5,10,7.5z M10,6c-2.21,0-4,1.79-4,4s1.79,4,4,4 s4-1.79,4-4S12.21,6,10,6L10,6z M3.75,10.75c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-2C1.34,9.25,1,9.59,1,10 s0.34,0.75,0.75,0.75H3.75z M18.25,10.75c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-2c-0.41,0-0.75,0.34-0.75,0.75 s0.34,0.75,0.75,0.75H18.25z M9.25,3.75C9.25,4.16,9.59,4.5,10,4.5c0.41,0,0.75-0.34,0.75-0.75v-2C10.75,1.34,10.41,1,10,1 S9.25,1.34,9.25,1.75V3.75z M13.89,5.05c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06 c-0.29-0.29-0.77-0.29-1.06,0L13.89,5.05z M3.99,14.95c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.06-1.06 c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0L3.99,14.95z M5.05,6.11c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06 L5.05,3.99c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06L5.05,6.11z M14.95,16.01c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06 l-1.06-1.06c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06L14.95,16.01z M9.25,18.25C9.25,18.66,9.59,19,10,19 c0.41,0,0.75-0.34,0.75-0.75v-2c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75V18.25z\"></path>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9H14z M6,3h3v2H6V3z M9,21H6v-2h3V21z M9,13H6v-2 h3V13z M19,13h-3v-2h3V13z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,9c1.65,0,3,1.35,3,3s-1.35,3-3,3s-3-1.35-3-3S10.35,9,12,9 M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5 S14.76,7,12,7L12,7z M2,13l2,0c0.55,0,1-0.45,1-1s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S1.45,13,2,13z M20,13l2,0c0.55,0,1-0.45,1-1 s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S19.45,13,20,13z M11,2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V2c0-0.55-0.45-1-1-1S11,1.45,11,2z M11,20v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2c0-0.55-0.45-1-1-1C11.45,19,11,19.45,11,20z M5.99,4.58c-0.39-0.39-1.03-0.39-1.41,0 c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0s0.39-1.03,0-1.41L5.99,4.58z M18.36,16.95 c-0.39-0.39-1.03-0.39-1.41,0c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0c0.39-0.39,0.39-1.03,0-1.41 L18.36,16.95z M19.42,5.99c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06c-0.39,0.39-0.39,1.03,0,1.41 s1.03,0.39,1.41,0L19.42,5.99z M7.05,18.36c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06 c-0.39,0.39-0.39,1.03,0,1.41s1.03,0.39,1.41,0L7.05,18.36z\"></path>" } } }, - "score": { - "name": "score", + "pin": { + "name": "pin", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5l4-4 4 4 6-6v6zm0-8.5l-6 6-4-4-4 4V5h14v5.5zM13.5 9V6H12v6h1.5zm3.7 3l-2-3 2-3h-1.7l-2 3 2 3zM11 10.5H8.5v-.75H11V6H7v1.5h2.5v.75H7V12h4z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\"></path><polygon points=\"6.49,10.5 6.49,15 7.64,15 7.64,9 6.77,9 5.01,10.27 5.59,11.16\"></polygon><path d=\"M11.47,10.05c0.5,0,0.81,0.32,0.81,0.72c0,0.37-0.14,0.64-0.54,1.06c-0.36,0.38-1.06,1.08-2.13,2.15V15h3.89v-0.99h-2.37 l-0.03-0.05c0.68-0.68,1.15-1.14,1.4-1.39c0.61-0.6,0.92-1.22,0.92-1.86c0-0.24-0.05-1.04-0.91-1.48C12.04,9,11.25,8.87,10.56,9.2 c-0.82,0.39-0.99,1.13-1,1.15l1.01,0.42C10.67,10.44,10.95,10.05,11.47,10.05z\"></path><path d=\"M16.99,13.94c-0.83,0-0.99-0.76-1.02-0.86l-1.03,0.41c0.45,1.59,2.01,1.51,2.05,1.51c1.2,0,1.68-0.72,1.76-0.85 c0.32-0.49,0.36-1.24-0.01-1.76c-0.17-0.24-0.4-0.41-0.68-0.52V11.8c0.2-0.1,0.37-0.26,0.52-0.48c0.26-0.41,0.31-1.07-0.02-1.57 C18.48,9.64,18.03,9,16.94,9c-1.26,0-1.74,0.9-1.85,1.24l0.99,0.41c0.11-0.32,0.35-0.64,0.85-0.64c0.44,0,0.75,0.26,0.75,0.65 c0,0.58-0.55,0.72-0.88,0.72h-0.46v1h0.5c0.56,0,1.04,0.24,1.04,0.79C17.88,13.66,17.4,13.94,16.99,13.94z\"></path></g></g>" } } }, - "short_text": { - "name": "short_text", + "signal_cellular_0_bar": { + "name": "signal_cellular_0_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M4 9h16v2H4V9zm0 4h10v2H4v-2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M2,22h20V2L2,22z M20,20H6.83L20,6.83V20z\"></path></g>" } } }, - "show_chart": { - "name": "show_chart", + "rsvp": { + "name": "rsvp", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16,9h1.5l-1.75,6h-1.5L12.5,9H14l1,3.43L16,9z M5.1,12.9L6,15H4.5l-0.85-2H2.5v2H1V9h3.5C5.35,9,6,9.65,6,10.5v1 C6,12.1,5.6,12.65,5.1,12.9z M4.5,10.5h-2v1h2V10.5z M21.5,13h-2v2H18V9h3.5c0.83,0,1.5,0.67,1.5,1.5v1C23,12.33,22.33,13,21.5,13 z M21.5,10.5h-2v1h2V10.5z M11.5,9v1.5h-3v0.75h2c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7v-1.5h3v-0.75H7.75 C7.34,12.75,7,12.41,7,12v-2c0-0.55,0.45-1,1-1H11.5z\"></path></g></g>" } } }, - "space_bar": { - "name": "space_bar", + "location_searching": { + "name": "location_searching", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 9v4H6V9H4v6h16V9h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\"></path>" } } }, - "stacked_line_chart": { - "name": "stacked_line_chart", + "signal_cellular_4_bar": { + "name": "signal_cellular_4_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2,19.99l7.5-7.51l4,4l7.09-7.97L22,9.92l-8.5,9.56l-4-4l-6,6.01L2,19.99z M3.5,15.49l6-6.01l4,4L22,3.92l-1.41-1.41 l-7.09,7.97l-4-4L2,13.99L3.5,15.49z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 22h20V2L2 22z\"></path>" } } }, - "strikethrough_s": { - "name": "strikethrough_s", + "security_update_warning": { + "name": "security_update_warning", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V12z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><rect height=\"2\" width=\"2\" x=\"11\" y=\"15\"></rect><rect height=\"6\" width=\"2\" x=\"11\" y=\"7\"></rect><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z\"></path></g></g>" } } }, - "subscript": { - "name": "subscript", + "grid_goldenratio": { + "name": "grid_goldenratio", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,15l-1,0v1h2v1h-3v-2c0-0.55,0.45-1,1-1l1,0l0-1h-2v-1l2,0c0.55,0,1,0.45,1,1v1C18,14.55,17.55,15,17,15z M5.63,14h1.9 l2.43-3.87h0.08L12.47,14h1.9l-3.32-5.2l3.1-4.8h-1.91l-2.19,3.56H9.96L7.75,4h-1.9l3.09,4.8L5.63,14z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M22,11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2H22z M13,13h-2v-2h2V13z\"></path></g></g>" } } }, - "superscript": { - "name": "superscript", + "wallpaper": { + "name": "wallpaper", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,6l-1,0v1h2v1l-3,0V6c0-0.55,0.45-1,1-1l1,0l0-1h-2V3l2,0c0.55,0,1,0.45,1,1v1C18,5.55,17.55,6,17,6z M5.63,16h1.9 l2.43-3.87h0.08L12.47,16h1.9l-3.32-5.2l3.1-4.8h-1.91l-2.19,3.56H9.96L7.75,6h-1.9l3.09,4.8L5.63,16z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect><path d=\"M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z\"></path>" } } }, - "table_chart": { - "name": "table_chart", + "sports_score": { + "name": "sports_score", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H5V5h15zm-5 14h-5v-9h5v9zM5 10h3v9H5v-9zm12 9v-9h3v9h-3z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M11,6H9V4h2V6z M15,4h-2v2h2V4z M9,14h2v-2H9V14z M19,10V8h-2v2H19z M19,14v-2h-2v2H19z M13,14h2v-2h-2V14z M19,4h-2v2h2 V4z M13,8V6h-2v2H13z M7,10V8h2V6H7V4H5v16h2v-8h2v-2H7z M15,12h2v-2h-2V12z M11,10v2h2v-2H11z M9,8v2h2V8H9z M13,10h2V8h-2V10z M15,6v2h2V6H15z\"></path></g></g>" } } }, - "table_rows": { - "name": "table_rows", + "media_bluetooth_off": { + "name": "media_bluetooth_off", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><path d=\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,4.5V7h-11V4.5H15.5z M15.5,8.5v3h-11v-3H15.5z M4.5,15.5V13h11v2.5H4.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,5v3H5V5H19z M19,10v4H5v-4H19z M5,19v-3h14v3H5z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M9,6.17V3h6v4h-4v1.17L9,6.17z M19.42,15L22,17.57l-0.8,0.8l-6.78-6.78l0.8-0.8l2.75,2.75V9h0.6L22,12.43L19.42,15z M19.17,13.55l1.13-1.13l-1.13-1.13V13.55z M21.19,21.19l-1.41,1.41l-3.98-3.98l-0.58,0.58l-0.85-0.85l0.58-0.58L11,13.83V17 c0,2.21-1.78,4-3.99,4S3,19.21,3,17s1.79-4,4.01-4c0.73,0,1.41,0.21,2,0.55v-1.72L1.39,4.22L2.8,2.81L21.19,21.19z\"></path></g></g>" } } }, - "text_fields": { - "name": "text_fields", + "screen_lock_rotation": { + "name": "screen_lock_rotation", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22.3 13.77l-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41-2.45-2.45c-.59-.59-1.54-.59-2.12 0L1.8 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM15.05 10h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4h-3.4v-.5z\"></path>" } } }, - "title": { - "name": "title", + "gpp_maybe": { + "name": "gpp_maybe", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 4v3h5.5v12h3V7H19V4H5z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\"></path><rect height=\"2\" width=\"2\" x=\"11\" y=\"14\"></rect><rect height=\"5\" width=\"2\" x=\"11\" y=\"7\"></rect></g></g>" } } }, - "vertical_align_bottom": { - "name": "vertical_align_bottom", + "battery_charging_full": { + "name": "battery_charging_full", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z\"></path>" } } }, - "vertical_align_center": { - "name": "vertical_align_center", + "dark_mode": { + "name": "dark_mode", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M8.04,4.86C7.88,5.39,7.8,5.94,7.8,6.5c0,3.14,2.56,5.7,5.7,5.7c0.56,0,1.11-0.08,1.64-0.24c-0.79,2.07-2.8,3.54-5.14,3.54 c-3.03,0-5.5-2.47-5.5-5.5C4.5,7.66,5.97,5.65,8.04,4.86z M10,3c-3.87,0-7,3.13-7,7s3.13,7,7,7s7-3.13,7-7 c0-0.36-0.03-0.72-0.08-1.06C16.16,10,14.91,10.7,13.5,10.7c-2.32,0-4.2-1.88-4.2-4.2c0-1.41,0.7-2.66,1.76-3.42 C10.72,3.03,10.36,3,10,3L10,3z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.37,5.51C9.19,6.15,9.1,6.82,9.1,7.5c0,4.08,3.32,7.4,7.4,7.4c0.68,0,1.35-0.09,1.99-0.27C17.45,17.19,14.93,19,12,19 c-3.86,0-7-3.14-7-7C5,9.07,6.81,6.55,9.37,5.51z M12,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9c0-0.46-0.04-0.92-0.1-1.36 c-0.98,1.37-2.58,2.26-4.4,2.26c-2.98,0-5.4-2.42-5.4-5.4c0-1.81,0.89-3.42,2.26-4.4C12.92,3.04,12.46,3,12,3L12,3z\"></path>" } } }, - "vertical_align_top": { - "name": "vertical_align_top", + "wifi_tethering_off": { + "name": "wifi_tethering_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M2.81,2.81L1.39,4.22l2.69,2.69C2.78,8.6,2,10.71,2,13c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13 c0-1.75,0.57-3.35,1.51-4.66l1.43,1.43C6.35,10.7,6,11.81,6,13c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13 c0-0.63,0.15-1.23,0.41-1.76l1.61,1.61c0,0.05-0.02,0.1-0.02,0.15c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15 c0.05,0,0.1-0.01,0.16-0.02l7.62,7.62l1.41-1.41L2.81,2.81z M17.7,14.87C17.89,14.28,18,13.65,18,13c0-3.31-2.69-6-6-6 c-0.65,0-1.28,0.1-1.87,0.3l1.71,1.71C11.89,9,11.95,9,12,9c2.21,0,4,1.79,4,4c0,0.05,0,0.11-0.01,0.16L17.7,14.87z M12,5 c4.42,0,8,3.58,8,8c0,1.22-0.27,2.37-0.77,3.4l1.49,1.49C21.53,16.45,22,14.78,22,13c0-5.52-4.48-10-10-10 c-1.78,0-3.44,0.46-4.89,1.28l1.48,1.48C9.63,5.27,10.78,5,12,5z\"></path></g></g>" } } }, - "vertical_distribute": { - "name": "vertical_distribute", + "signal_cellular_connected_no_internet_0_bar": { + "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.5,9v6H18V9H16.5z M2,18h13v-1.5H5.62L16.5,5.62V7.5H18V2L2,18z M18,18h-1.5v-1.5H18V18z\"></path>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,2v2H2V2H22z M7,10.5v3h10v-3H7z M2,20v2h20v-2H2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,18h2v-8h-2V18z M20,22h2v-2h-2V22z M18,20v2H2L22,2v6h-2V6.83L6.83,20H18z\"></path>" } } }, - "wrap_text": { - "name": "wrap_text", + "settings_suggest": { + "name": "settings_suggest", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M10,13c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S9.45,13,10,13 M10,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3 S11.66,11,10,11L10,11z M18.5,9l1.09-2.41L22,5.5l-2.41-1.09L18.5,2l-1.09,2.41L15,5.5l2.41,1.09L18.5,9z M21.28,12.72L20.5,11 l-0.78,1.72L18,13.5l1.72,0.78L20.5,16l0.78-1.72L23,13.5L21.28,12.72z M16.25,14c0-0.12,0-0.25-0.01-0.37l1.94-1.47l-2.5-4.33 l-2.24,0.94c-0.2-0.13-0.42-0.26-0.64-0.37L12.5,6h-5L7.2,8.41C6.98,8.52,6.77,8.65,6.56,8.78L4.32,7.83l-2.5,4.33l1.94,1.47 C3.75,13.75,3.75,13.88,3.75,14s0,0.25,0.01,0.37l-1.94,1.47l2.5,4.33l2.24-0.94c0.2,0.13,0.42,0.26,0.64,0.37L7.5,22h5l0.3-2.41 c0.22-0.11,0.43-0.23,0.64-0.37l2.24,0.94l2.5-4.33l-1.94-1.47C16.25,14.25,16.25,14.12,16.25,14z M14.83,17.64l-1.73-0.73 c-0.56,0.6-1.3,1.04-2.13,1.23L10.73,20H9.27l-0.23-1.86c-0.83-0.19-1.57-0.63-2.13-1.23l-1.73,0.73l-0.73-1.27l1.49-1.13 c-0.12-0.39-0.18-0.8-0.18-1.23c0-0.43,0.06-0.84,0.18-1.23l-1.49-1.13l0.73-1.27l1.73,0.73c0.56-0.6,1.3-1.04,2.13-1.23L9.27,8 h1.47l0.23,1.86c0.83,0.19,1.57,0.63,2.13,1.23l1.73-0.73l0.73,1.27l-1.49,1.13c0.12,0.39,0.18,0.8,0.18,1.23 c0,0.43-0.06,0.84-0.18,1.23l1.49,1.13L14.83,17.64z\"></path>" } } }, - "approval": { - "name": "approval", + "signal_wifi_bad": { + "name": "signal_wifi_bad", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M4,16v6h16v-6c0-1.1-0.9-2-2-2H6C4.9,14,4,14.9,4,16z M18,18H6v-2h12V18z M12,2C9.24,2,7,4.24,7,7l5,7l5-7 C17,4.24,14.76,2,12,2z M12,11L9,7c0-1.66,1.34-3,3-3s3,1.34,3,3L12,11z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z M19.59,14l-2.09,2.09l-0.3-0.3L15.41,14 L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\"></path></g>" } } }, - "attachment": { - "name": "attachment", + "medication_liquid": { + "name": "medication_liquid", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"9\" x=\"3\" y=\"3\"></rect><path d=\"M2,17h11V5.5H2V17z M4.5,10h2V8h2v2h2v2h-2v2h-2v-2h-2V10z\"></path><path d=\"M16.5,5.5c-1.38,0-2.5,1.46-2.5,3.25c0,1.45,0.74,2.67,1.75,3.08V17h1.5v-5.17C18.26,11.42,19,10.2,19,8.75 C19,6.96,17.88,5.5,16.5,5.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"12\" x=\"3\" y=\"3\"></rect><path d=\"M2,21h14V6H2V21z M5,12h2.5V9.5h3V12H13v3h-2.5v2.5h-3V15H5V12z\"></path><path d=\"M20,6c-1.68,0-3,1.76-3,4c0,1.77,0.83,3.22,2,3.76V21h2v-7.24c1.17-0.54,2-1.99,2-3.76C23,7.76,21.68,6,20,6z\"></path></g></g>" } } }, - "attach_email": { - "name": "attach_email", + "wifi_password": { + "name": "wifi_password", "keywords": [ - "file" + "device" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M3,5.18l6,3.75l6-3.75V8h1V4c0-0.55-0.45-1-1-1H3C2.45,3,2,3.45,2,4v10c0,0.55,0.45,1,1,1h9v-1H3V5.18z M15,4L9,7.75L3,4 H15z\"></path><path d=\"M17,11v3.5c0,0.83-0.67,1.5-1.5,1.5S14,15.33,14,14.5v-4c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V14h1v-3.5 C16,9.67,15.33,9,14.5,9S13,9.67,13,10.5v4c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V11H17z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M20,7.01l-1.42,1.42C16.34,6.31,13.32,5,10,5S3.66,6.31,1.42,8.43L0,7.01C2.6,4.53,6.12,3,10,3C13.88,3,17.4,4.53,20,7.01 z M3.54,10.54l1.42,1.42C6.29,10.75,8.06,10,10,10c1.94,0,3.71,0.75,5.04,1.96l1.42-1.42C14.76,8.97,12.5,8,10,8 S5.24,8.97,3.54,10.54z M7.09,14.09L10,17l2.91-2.91C12.12,13.42,11.12,13,10,13S7.88,13.42,7.09,14.09z M16.75,16h1.5v-1 c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75V16z M20,19c0,0.55-0.45,1-1,1h-3c-0.55,0-1-0.45-1-1v-2c0-0.55,0.45-1,1-1v-1 c0-0.82,0.67-1.5,1.5-1.5S19,14.18,19,15v1c0.55,0,1,0.45,1,1V19z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,6l8,5l8-5v3h2V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h10v-2H3V6z M19,4l-8,5L3,4H19z\"></path><path d=\"M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M24,8.98l-2.12,2.13C19.35,8.57,15.85,7,12,7s-7.35,1.57-9.88,4.11L0,8.98C3.07,5.9,7.31,4,12,4S20.93,5.9,24,8.98z M4.24,13.22l2.12,2.12C7.8,13.9,9.8,13,12,13c2.2,0,4.2,0.9,5.64,2.35l2.12-2.12C17.78,11.23,15.03,10,12,10 C8.97,10,6.22,11.23,4.24,13.22z M24,20v3c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1v-1c0-1.1,0.9-2,2-2 s2,0.9,2,2v1C23.55,19,24,19.45,24,20z M22,18c0-0.55-0.45-1-1-1s-1,0.45-1,1v1h2V18z M12,16c-1.38,0-2.63,0.56-3.53,1.46L12,21 l3.53-3.54C14.63,16.56,13.38,16,12,16z\"></path></g>" } } }, - "cloud": { - "name": "cloud", + "1x_mobiledata": { + "name": "1x_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6m0-2C9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M4,7h4v10H6V9H4V7z M15.83,11.72L18.66,7h-2.33l-1.66,2.77L13,7h-2.33l2.83,4.72L10.33,17h2.33l2-3.34l2,3.34H19 L15.83,11.72z\"></path></g></g>" } } }, - "cloud_circle": { - "name": "cloud_circle", + "brightness_auto": { + "name": "brightness_auto", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.29-9.81c-.4-2.01-2.16-3.52-4.29-3.52-1.69 0-3.15.96-3.88 2.36C6.36 9.21 5 10.7 5 12.5 5 14.43 6.57 16 8.5 16h7.58c1.61 0 2.92-1.31 2.92-2.92 0-1.54-1.2-2.79-2.71-2.89zM16 14H8.5c-.83 0-1.5-.67-1.5-1.5S7.67 11 8.5 11h.9l.49-1.05c.41-.79 1.22-1.28 2.11-1.28 1.13 0 2.11.8 2.33 1.91l.28 1.42H16c.55 0 1 .45 1 1s-.45 1-1 1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L13 7h-2zm-.15 5.65L12 9l1.15 3.65h-2.3zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48z\"></path>" } } }, - "cloud_done": { - "name": "cloud_done", + "usb_off": { + "name": "usb_off", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.25,5H7.5L10,2l2.5,3h-1.75v3.63l-1.5-1.5V5z M12.5,10h0.75v1.13l1.23,1.23c0.17-0.24,0.27-0.54,0.27-0.86V10h0.75V7h-3 V10z M10.75,13v2.21c0.45,0.26,0.75,0.74,0.75,1.29c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.55,0.3-1.03,0.75-1.29V13h-2.5 c-0.83,0-1.5-0.67-1.5-1.5V9.79C4.8,9.53,4.5,9.05,4.5,8.5c0-0.51,0.26-0.96,0.65-1.23L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06 L10.88,13H10.75z M9.25,11.5v-0.13L7.23,9.35C7.1,9.53,6.94,9.68,6.75,9.79v1.71H9.25z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-9-3.82l-2.09-2.09L6.5 13.5 10 17l6.01-6.01-1.41-1.41z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15,8h4v4h-1v2c0,0.34-0.08,0.66-0.23,0.94L16,13.17V12h-1V8z M11,8.17l2,2V6h2l-3-4L9,6h2V8.17z M13,16v2.28 c0.6,0.34,1,0.98,1,1.72c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-0.74,0.4-1.37,1-1.72V16H8c-1.11,0-2-0.89-2-2v-2.28C5.4,11.38,5,10.74,5,10 c0-0.59,0.26-1.13,0.68-1.49L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L13.17,16H13z M11,14v-0.17l-2.51-2.51 c-0.14,0.16-0.31,0.29-0.49,0.4V14H11z\"></path>" } } }, - "cloud_download": { - "name": "cloud_download", + "mobile_friendly": { + "name": "mobile_friendly", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-5.55-8h-2.9v3H8l4 4 4-4h-2.55z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z\"></path>" } } }, - "cloud_off": { - "name": "cloud_off", + "send_to_mobile": { + "name": "send_to_mobile", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM4.41 3.86L3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,8l4,4l-4,4l-1.41-1.41L18.17,13H13v-2h5.17l-1.59-1.59L18,8z M7,1.01L17,1c1.1,0,2,0.9,2,2v4h-2V6H7v12h10v-1h2v4 c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V3C5,1.9,5.9,1.01,7,1.01z M7,21h10v-1H7V21z M7,4h10V3H7V4z\"></path></g></g>" } } }, - "cloud_queue": { - "name": "cloud_queue", + "wifi_calling_3": { + "name": "wifi_calling_3", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16.49,4.5c1.79,0,3.42,0.73,4.59,1.91l1.06-1.06C20.7,3.9,18.7,3,16.49,3c-2.21,0-4.21,0.9-5.66,2.34l1.06,1.06 C13.08,5.23,14.7,4.5,16.49,4.5z\"></path><path d=\"M16.49,6c-1.38,0-2.63,0.56-3.54,1.46l1.06,1.06c0.63-0.63,1.51-1.03,2.47-1.03s1.84,0.39,2.47,1.03l1.06-1.06 C19.12,6.56,17.87,6,16.49,6z\"></path><path d=\"M16.49,9c-0.55,0-1.05,0.22-1.41,0.59L16.49,11l1.41-1.41C17.54,9.22,17.04,9,16.49,9z\"></path><path d=\"M20.2,14.87l-3.67-0.73c-0.5-0.1-0.83,0.2-0.9,0.27l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52 c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3L4,3C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43c0.55,0.03,1.03-0.43,1.03-1v-4.15C21,15.37,20.66,14.96,20.2,14.87 z M5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7,5.27,6.37,5.1,5z M19,18.9c-1.37-0.18-2.7-0.53-4-1.07l1.65-1.63L19,16.67V18.9z\"></path></g></g>" } } }, - "cloud_upload": { - "name": "cloud_upload", + "wifi_channel": { + "name": "wifi_channel", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M13.12,3c-1.96,0-2.94,4.51-3.42,8.41C9.08,9.12,8.15,7,6.88,7C4.1,7,3,17,3,17h1.5C5,12.83,6.11,9.28,6.88,8.57 C7.64,9.28,8.75,12.83,9.25,17h1.5c0.39-1.97,1.59-4.5,2.38-4.5c0.77,0,1.99,2.58,2.38,4.5H17C17,17,16.58,3,13.12,3z M13.12,11 c-0.81,0-1.49,0.54-2.04,1.28c0.47-4.11,1.31-7.16,2.04-7.74c0.73,0.58,1.57,3.63,2.04,7.74C14.62,11.54,13.94,11,13.12,11z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M16,3c-2.51,0-3.77,5.61-4.4,10.57C10.79,10.66,9.61,8,8,8C4.43,8,3,21,3,21h2.01c0.61-5.27,2-9.82,2.99-10.87 c0.98,1.05,2.38,5.61,2.99,10.87H13c0.5-2.53,2-6,3-6s2.5,3.53,3,6h2C21,21,20.5,3,16,3z M16,13c-0.99,0-1.82,0.62-2.5,1.5 c0.57-4.77,1.54-8.62,2.5-9.44c0.97,0.81,1.91,4.67,2.49,9.43C17.81,13.62,16.98,13,16,13z\"></path></g>" } } }, - "create_new_folder": { - "name": "create_new_folder", + "data_saver_on": { + "name": "data_saver_on", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M11,8v3H8v2h3v3h2v-3h3v-2h-3V8H11z M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53 C21.68,14.83,22,13.45,22,12C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05 C5.94,2.55,2,6.81,2,12c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\"></path></g></g>" } } }, - "download": { - "name": "download", + "fmd_good": { + "name": "fmd_good", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11zm-6 7h14v2H5z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,12c-1.1,0-2-0.9-2-2s0.9-2,2-2c1.1,0,2,0.9,2,2S13.1,12,12,12z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2 c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z\"></path></g>" } } }, - "downloading": { - "name": "downloading", + "r_mobiledata": { + "name": "r_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18.32,4.26C16.84,3.05,15.01,2.25,13,2.05v2.02c1.46,0.18,2.79,0.76,3.9,1.62L18.32,4.26z M19.93,11h2.02 c-0.2-2.01-1-3.84-2.21-5.32L18.31,7.1C19.17,8.21,19.75,9.54,19.93,11z M18.31,16.9l1.43,1.43c1.21-1.48,2.01-3.32,2.21-5.32 h-2.02C19.75,14.46,19.17,15.79,18.31,16.9z M13,19.93v2.02c2.01-0.2,3.84-1,5.32-2.21l-1.43-1.43 C15.79,19.17,14.46,19.75,13,19.93z M15.59,10.59L13,13.17V7h-2v6.17l-2.59-2.59L7,12l5,5l5-5L15.59,10.59z M11,19.93v2.02 c-5.05-0.5-9-4.76-9-9.95s3.95-9.45,9-9.95v2.02C7.05,4.56,4,7.92,4,12S7.05,19.44,11,19.93z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M7.8,7.2L9,10H7L5.87,7.33H4V10H2V2h5c1.13,0,2,0.87,2,2v1.33C9,6.13,8.47,6.87,7.8,7.2z M7,4H4v1.33h3V4z\"></path></g></g>" } } }, - "download_done": { - "name": "download_done", + "signal_wifi_statusbar_null": { + "name": "signal_wifi_statusbar_null", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 c3.33,0,6.49,1.08,9.08,3.07L12,18.17L2.92,9.07z\"></path></g>" } } }, - "download_for_offline": { - "name": "download_for_offline", + "timer_3_select": { + "name": "timer_3_select", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M14.59,8.59L16,10l-4,4l-4-4l1.41-1.41L11,10.17V6h2v4.17L14.59,8.59z M17,17H7v-2h10V17z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,11v2h-4v1h2.5c0.83,0,1.5,0.68,1.5,1.5v2c0,0.83-0.67,1.5-1.5,1.5H15v-2h4v-1h-2.5c-0.82,0-1.5-0.68-1.5-1.5v-2 c0-0.82,0.68-1.5,1.5-1.5H21z M4,5v3h6v2.5H4v3h6V16H4v3h6c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1 V8c0-1.66-1.34-3-3-3H4z\"></path>" } } }, - "drive_file_move": { - "name": "drive_file_move", + "edgesensor_high": { + "name": "edgesensor_high", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,6h-8l-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18H4V6h5.17l1.41,1.41 L11.17,8H20V18z M12.16,12H8v2h4.16l-1.59,1.59L11.99,17L16,13.01L11.99,9l-1.41,1.41L12.16,12z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M3,7h2v7H3V7z M0,10h2v7H0V10z M22,7h2v7h-2V7z M19,10h2v7h-2V10z M16,2.01L8,2C6.9,2,6,2.9,6,4v16c0,1.1,0.9,2,2,2h8 c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2.01,16,2.01z M16,20H8v-1h8V20z M16,17H8V7h8V17z M8,5V4h8v1H8z\"></path></g></g>" } } }, - "drive_file_move_rtl": { - "name": "drive_file_move_rtl", + "4g_mobiledata": { + "name": "4g_mobiledata", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.87,10.25H13v1.5H9.87l1.19,1.19L10,14l-3-3l3-3l1.06,1.06L9.87,10.25z M16.5,6H10L8,4H3.5C2.67,4,2,4.67,2,5.5v9 C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z M16.5,14.5h-13v-9h3.88l2,2h7.12V14.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,6h-8l-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18H4V6h5.17l2,2H20V18z M13.41,15.59L12,17l-4-4l4-4l1.41,1.41L11.83,12H16v2h-4.17L13.41,15.59z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M9,7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7z M17,11v2h2v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5 c1.1,0,2-0.9,2-2v-4H17z\"></path></g></g>" } } }, - "drive_file_rename_outline": { - "name": "drive_file_rename_outline", + "bluetooth_drive": { + "name": "bluetooth_drive", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"15,16 11,20 21,20 21,16\"></polygon><path d=\"M12.06,7.19L3,16.25V20h3.75l9.06-9.06L12.06,7.19z M5.92,18H5v-0.92l7.06-7.06l0.92,0.92L5.92,18z\"></path><path d=\"M18.71,8.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34C16.17,4.09,15.92,4,15.66,4c-0.25,0-0.51,0.1-0.7,0.29l-1.83,1.83 l3.75,3.75L18.71,8.04z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><circle cx=\"6.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle><path d=\"M18,17H4v-5h11v-2H4.81l1.04-3H15V5H5.5C4.84,5,4.29,5.42,4.08,6.01L2,12v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12 v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8h-2V17z\"></path><path d=\"M22,3.85L19.15,1h-0.5v3.79l-2.3-2.29l-0.7,0.7L18.44,6l-2.79,2.79l0.7,0.71l2.3-2.3V11h0.5L22,8.14L19.85,6L22,3.85z M19.65,2.91l0.94,0.94l-0.94,0.94V2.91z M20.59,8.14l-0.94,0.94V7.2L20.59,8.14z\"></path></g></g>" } } }, - "drive_folder_upload": { - "name": "drive_folder_upload", + "hdr_off_select": { + "name": "hdr_off_select", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M9.41,14.42L11,12.84V17h2v-4.16l1.59,1.59L16,13.01L12.01,9L8,13.01L9.41,14.42z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,18.5v-1c0-0.8-0.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1C17.6,19.6,18,19.1,18,18.5z M16.5,18.5h-2v-1h2 V18.5z M3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18z M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M10.98,4.15L9.42,2.59c5.1-2.42,10.41,2.89,7.99,7.99 l-1.56-1.56C16.66,6.06,13.94,3.34,10.98,4.15z M6.34,2.34L4.93,3.76l1.66,1.66c-2.42,5.1,2.89,10.41,7.99,7.99l1.66,1.66 l1.41-1.41L6.34,2.34z M8.15,6.98l4.87,4.87C10.06,12.66,7.34,9.94,8.15,6.98z\"></path></g></g>" } } }, - "file_download": { - "name": "file_download", + "credit_score": { + "name": "credit_score", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18,15v3H6v-3H4v3c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-3H18z M17,11l-1.41-1.41L13,12.17V4h-2v8.17L8.41,9.59L7,11l5,5 L17,11z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h5v-2H4v-6h18V6C22,4.89,21.11,4,20,4z M20,8H4V6h16V8z M14.93,19.17l-2.83-2.83l-1.41,1.41L14.93,22L22,14.93l-1.41-1.41L14.93,19.17z\"></path></g>" } } }, - "file_download_done": { - "name": "file_download_done", + "sell": { + "name": "sell", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"20.13,5.41 18.72,4 9.53,13.19 5.28,8.95 3.87,10.36 9.53,16.02\"></polygon><rect height=\"2\" width=\"14\" x=\"5\" y=\"18\"></rect></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M21.41,11.41l-8.83-8.83C12.21,2.21,11.7,2,11.17,2H4C2.9,2,2,2.9,2,4v7.17c0,0.53,0.21,1.04,0.59,1.41l8.83,8.83 c0.78,0.78,2.05,0.78,2.83,0l7.17-7.17C22.2,13.46,22.2,12.2,21.41,11.41z M12.83,20L4,11.17V4h7.17L20,12.83L12.83,20z\"></path><circle cx=\"6.5\" cy=\"6.5\" r=\"1.5\"></circle></g></g>" } } }, - "file_download_off": { - "name": "file_download_off", + "gps_fixed": { + "name": "gps_fixed", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10.75,8.63l-1.5-1.5V3h1.5V8.63z M14,9l-1.06-1.06L11.5,9.38l1.06,1.06L14,9z M17.07,17.07L2.93,2.93L1.87,3.99l4.57,4.57 L6,9l4,4l0.44-0.44l1.94,1.94H5.5V13H4v1.5C4,15.33,4.67,16,5.5,16h8.38l2.13,2.13L17.07,17.07z M16,13h-0.88L16,13.88V13z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,15.17V15h2v2.17L18,15.17z M15.41,12.59L17,11l-1.41-1.41L14,11.17L15.41,12.59z M13,10.17V4h-2v4.17L13,10.17z M21.19,21.19l-1.78-1.78L2.81,2.81L1.39,4.22l6.19,6.19L7,11l5,5l0.59-0.59L15.17,18H6v-3H4v3c0,1.1,0.9,2,2,2h11.17l2.61,2.61 L21.19,21.19z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\"></path>" } } }, - "file_upload": { - "name": "file_upload", + "access_alarm": { + "name": "access_alarm", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18,15v3H6v-3H4v3c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-3H18z M7,9l1.41,1.41L11,7.83V16h2V7.83l2.59,2.58L17,9l-5-5L7,9z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\"></path>" } } }, - "folder": { - "name": "folder", + "h_mobiledata": { + "name": "h_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.17 6l2 2H20v10H4V6h5.17M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M15,11H9V7H7v10h2v-4h6v4h2V7h-2V11z\"></path></g></g>" } } }, - "folder_open": { - "name": "folder_open", + "data_saver_off": { + "name": "data_saver_off", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53C21.68,14.83,22,13.45,22,12 C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05C5.94,2.55,2,6.81,2,12 c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\"></path></g></g>" } } }, - "folder_shared": { - "name": "folder_shared", + "price_check": { + "name": "price_check", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 4h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2v1z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M11,13V9c0-0.55-0.45-1-1-1H6V6h5V4H8.5V3h-2v1H5C4.45,4,4,4.45,4,5v4c0,0.55,0.45,1,1,1h4v2H4v2h2.5v1h2v-1H10 C10.55,14,11,13.55,11,13z\"></path><polygon points=\"19.59,12.52 13.93,18.17 11.1,15.34 9.69,16.76 13.93,21 21,13.93\"></polygon></g></g>" } } }, - "grid_view": { - "name": "grid_view", + "h_plus_mobiledata": { + "name": "h_plus_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M3,3v8h8V3H3z M9,9H5V5h4V9z M3,13v8h8v-8H3z M9,19H5v-4h4V19z M13,3v8h8V3H13z M19,9h-4V5h4V9z M13,13v8h8v-8H13z M19,19h-4v-4h4V19z\"></path></g></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,11H6V7H4v10h2v-4h6v4h2V7h-2V11z M22,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z\"></path></g></g>" } } }, - "request_quote": { - "name": "request_quote", + "airplanemode_inactive": { + "name": "airplanemode_inactive", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect><path d=\"M13.12,11.71L9,7.59V4c0-0.55,0.45-1,1-1s1,0.45,1,1v4l6,4v1L13.12,11.71z M17.07,17.07L2.93,2.93L2.22,3.64l5.33,5.33 L3,12v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-2.59l5.36,5.36L17.07,17.07z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z\"></path></g>" + "path": "<g><path d=\"M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g>" } } }, - "rule_folder": { - "name": "rule_folder", + "splitscreen": { + "name": "splitscreen", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16 L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,4v5H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v5c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,15v5H6v-5H18 M18,13H6c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-5C20,13.9,19.1,13,18,13z\"></path></g></g>" } } }, - "snippet_folder": { - "name": "snippet_folder", + "signal_cellular_null": { + "name": "signal_cellular_null", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12z M13,9v8l6,0v-5.5L16.5,9H13z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z\"></path>" } } }, - "text_snippet": { - "name": "text_snippet", + "gpp_bad": { + "name": "gpp_bad", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3L14.17,3z M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z M9.91,8.5L8.5,9.91L10.59,12L8.5,14.09l1.41,1.41L12,13.42l2.09,2.08 l1.41-1.41L13.42,12l2.08-2.09L14.09,8.5L12,10.59L9.91,8.5z\"></path></g>" } } }, - "topic": { - "name": "topic", + "edgesensor_low": { + "name": "edgesensor_low", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16.77c0.68,0,1.23-0.56,1.23-1.23V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M2,7h2v7H2V7z M20,10h2v7h-2V10z M16,2.01L8,2C6.9,2,6,2.9,6,4v16c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4 C18,2.9,17.1,2.01,16,2.01z M16,20H8v-1h8V20z M16,17H8V7h8V17z M8,5V4h8v1H8z\"></path></g></g>" } } }, - "upload": { - "name": "upload", + "flashlight_on": { + "name": "flashlight_on", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 16h6v-6h4l-7-7-7 7h4v6zm3-10.17L14.17 8H13v6h-2V8H9.83L12 5.83zM5 18h14v2H5z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,2H6v6l2,3v11h8V11l2-3V2z M16,4v1H8V4H16z M14,10.4V20h-4v-9.61l-2-3V7h8v0.39L14,10.4z\"></path><circle cx=\"12\" cy=\"14\" r=\"1.5\"></circle></g></g>" } } }, - "upload_file": { - "name": "upload_file", + "ad_units": { + "name": "ad_units", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h7v5h5V20z M8,15.01 l1.41,1.41L11,14.84V19h2v-4.16l1.59,1.59L16,15.01L12.01,11L8,15.01z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><g><path d=\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z\"></path></g><g><polygon points=\"16,7 8,7 8,9 16,9 16,7\"></polygon></g></g></g>" } } }, - "workspaces": { - "name": "workspaces", + "mode_night": { + "name": "mode_night", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M5,11c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3C8,12.35,6.65,11,5,11z M5,15.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S5.83,15.5,5,15.5z\"></path><path d=\"M13,6c0-1.65-1.35-3-3-3S7,4.35,7,6c0,1.65,1.35,3,3,3S13,7.65,13,6z M10,7.5C9.17,7.5,8.5,6.83,8.5,6S9.17,4.5,10,4.5 s1.5,0.67,1.5,1.5S10.83,7.5,10,7.5z\"></path><path d=\"M15,11c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3C18,12.35,16.65,11,15,11z M15,15.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S15.83,15.5,15,15.5z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M6,15c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S4.9,15,6,15 M6,13c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S8.2,13,6,13z M12,5 c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,5,12,5 M12,3C9.8,3,8,4.8,8,7s1.8,4,4,4s4-1.8,4-4S14.2,3,12,3z M18,15 c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S16.9,15,18,15 M18,13c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S20.2,13,18,13z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M9.5,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-0.34,0-0.68-0.02-1.01-0.07c1.91-2.16,3.01-4.98,3.01-7.93s-1.1-5.77-3.01-7.93 C8.82,4.02,9.16,4,9.5,4 M9.5,2c-1.82,0-3.53,0.5-5,1.35c2.99,1.73,5,4.95,5,8.65s-2.01,6.92-5,8.65C5.97,21.5,7.68,22,9.5,22 c5.52,0,10-4.48,10-10S15.02,2,9.5,2z\"></path></g></g>" } } }, - "browser_not_supported": { - "name": "browser_not_supported", + "flashlight_off": { + "name": "flashlight_off", "keywords": [ - "hardware" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,5v8.59l1,1V5c0-0.55-0.45-1-1-1H5.41l1,1H15z\"></path><path d=\"M3.64,3.64L2.93,4.34L4,5.41V15c0,0.55,0.45,1,1,1h9.59l1.07,1.07l0.71-0.71L3.64,3.64z M5,15V6.41L13.59,15H5z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z\"></path><path d=\"M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M2.81,2.81L1.39,4.22L8,10.83V22h8v-3.17l3.78,3.78l1.41-1.41L2.81,2.81z M14,20h-4v-7.17l4,4V20z\"></path><polygon points=\"16,4 16,5 7.83,5 9.83,7 16,7 16,7.39 14,10.4 14,11.17 16,13.17 16,11 18,8 18,2 6,2 6,3.17 6.83,4\"></polygon></g></g>" } } }, - "cast": { - "name": "cast", + "ssid_chart": { + "name": "ssid_chart", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M17,4.86L10,10L6.5,6.5L3,9V7.16l3.66-2.62l3.49,3.49L17,3L17,4.86z M17,12.5h-3.5l-3.36,2.52L5.5,10.3L3,12.14L3,14 l2.3-1.69L10,17l4-3h3V12.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,5.47L12,12L7.62,7.62L3,11V8.52L7.83,5l4.38,4.38L21,3L21,5.47z M21,15h-4.7l-4.17,3.34L6,12.41l-3,2.13L3,17l2.8-2 l6.2,6l5-4h4V15z\"></path></g>" } } }, - "cast_connected": { - "name": "cast_connected", + "monitor_weight": { + "name": "monitor_weight", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 7v2h12v6h-3v2h5V7z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z M12,6 c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S13.66,6,12,6z M11,9.5h-1v-1h1V9.5z M12.5,9.5h-1v-1h1V9.5z M14,9.5h-1v-1h1V9.5z\"></path></g></g>" } } }, - "cast_for_education": { - "name": "cast_for_education", + "summarize": { + "name": "summarize", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6L9 9l5.5 3L20 9l-5.5-3z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M15,3H5C3.9,3,3.01,3.9,3.01,5L3,19c0,1.1,0.89,2,1.99,2H19c1.1,0,2-0.9,2-2V9L15,3z M5,19V5h9v5h5v9H5z M9,8 c0,0.55-0.45,1-1,1S7,8.55,7,8s0.45-1,1-1S9,7.45,9,8z M9,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S9,11.45,9,12z M9,16 c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S9,15.45,9,16z\"></path></g></g>" } } }, - "computer": { - "name": "computer", + "airplane_ticket": { + "name": "airplane_ticket", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M20.19,4H4C2.9,4,2.01,4.9,2.01,6v4C3.11,10,4,10.9,4,12s-0.89,2-2,2v4c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6 C22,4.9,21.19,4,20.19,4z M20,18H4v-2.54c1.19-0.69,2-1.99,2-3.46c0-1.48-0.8-2.77-1.99-3.46L4,6h16V18z M8.87,15.66l-1.66-2.88 l0.93-0.25l1.26,0.99l2.39-0.64l-2.4-4.16l1.4-0.38l4.01,3.74l2.44-0.65c0.51-0.14,1.04,0.17,1.18,0.68 c0.13,0.51-0.17,1.04-0.69,1.19L8.87,15.66z\"></path></g></g>" } } }, - "connected_tv": { - "name": "connected_tv", + "system_security_update_warning": { + "name": "system_security_update_warning", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,3H4C2.9,3,2,3.9,2,5v12c0,1.1,0.9,2,2,2h4v2h8v-2h4c1.1,0,1.99-0.9,1.99-2L22,5C22,3.9,21.1,3,20,3z M20,17H4V5h16V17 z M5,14v2h2C7,14.89,6.11,14,5,14z M5,11v1.43c1.97,0,3.57,1.6,3.57,3.57H10C10,13.24,7.76,11,5,11z M5,8v1.45 c3.61,0,6.55,2.93,6.55,6.55H13C13,11.58,9.41,8,5,8z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><rect height=\"2\" width=\"2\" x=\"11\" y=\"15\"></rect><rect height=\"6\" width=\"2\" x=\"11\" y=\"7\"></rect><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z\"></path></g></g>" } } }, - "desktop_mac": { - "name": "desktop_mac", + "remember_me": { + "name": "remember_me", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,21H7v-1h10V21z M17,18H7v-0.48 C8.47,16.53,10.22,16,12,16s3.53,0.53,5,1.52V18z M17,15.21C15.5,14.44,13.8,14,12,14s-3.5,0.44-5,1.21V6h10V15.21z M17,4H7V3h10 V4z\"></path><path d=\"M12,13c1.66,0,3-1.34,3-3s-1.34-3-3-3s-3,1.34-3,3S10.34,13,12,13z M12,9c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S11.45,9,12,9z\"></path></g></g>" } } }, - "desktop_windows": { - "name": "desktop_windows", + "lan": { + "name": "lan", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M11,18h6v-5h-2.25V9.25h-4V7H13V2H7v5h2.25v2.25h-4V13H3v5h6v-5H6.75v-2.25h6.5V13H11V18z M15.5,14.5v2h-3v-2H15.5z M8.5,5.5v-2h3v2H8.5z M7.5,14.5v2h-3v-2H7.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13,22h8v-7h-3v-4h-5V9h3V2H8v7h3v2H6v4H3v7h8v-7H8v-2h8v2h-3V22z M10,7V4h4v3H10z M9,17v3H5v-3H9z M19,17v3h-4v-3H19z\"></path></g>" } } }, - "developer_board": { - "name": "developer_board", + "monitor_heart": { + "name": "monitor_heart", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16.4,4H3.6C2.72,4,2,4.72,2,5.6V8h1.5V5.6h13V8H18V5.6C18,4.72,17.28,4,16.4,4z\"></path><path d=\"M16.5,14.4h-13V12H2v2.4C2,15.28,2.72,16,3.6,16h12.8c0.88,0,1.6-0.72,1.6-1.6V12h-1.5V14.4z\"></path><path d=\"M12.16,6.89c-0.26-0.48-1.05-0.48-1.32,0L8.5,11.18L7.66,9.64C7.53,9.4,7.27,9.25,7,9.25H2v1.5h4.55l1.29,2.36 c0.13,0.24,0.38,0.39,0.66,0.39s0.53-0.15,0.66-0.39l2.34-4.29l0.84,1.54c0.13,0.24,0.38,0.39,0.66,0.39h5v-1.5h-4.55L12.16,6.89z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6v-4zm6-6h4v3h-4V7zM6 7h5v5H6V7zm6 4h4v6h-4v-6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v3h2V6h16v3h2V6C22,4.9,21.1,4,20,4z\"></path><path d=\"M20,18H4v-3H2v3c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-3h-2V18z\"></path><path d=\"M14.89,7.55c-0.34-0.68-1.45-0.68-1.79,0L10,13.76l-1.11-2.21C8.72,11.21,8.38,11,8,11H2v2h5.38l1.72,3.45 C9.28,16.79,9.62,17,10,17s0.72-0.21,0.89-0.55L14,10.24l1.11,2.21C15.28,12.79,15.62,13,16,13h6v-2h-5.38L14.89,7.55z\"></path></g></g>" } } }, - "developer_board_off": { - "name": "developer_board_off", + "signal_cellular_no_sim": { + "name": "signal_cellular_no_sim", "keywords": [ - "hardware" + "device" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.12,14H18v-1.5h-2v-1.75h2v-1.5h-2V7.5h2V6h-2V4.5C16,3.67,15.33,3,14.5,3H5.12l1.5,1.5h7.88v7.88L16.12,14z M8.12,6H9 v0.88L8.12,6z M13,8h-2.88L10,7.88V6h3V8z M11.12,9H13v1.88L11.12,9z M2.22,2.22L1.16,3.28l0.88,0.88C2.01,4.27,2,4.38,2,4.5v11 C2,16.33,2.67,17,3.5,17h11c0.12,0,0.23-0.01,0.34-0.04l1.88,1.88l1.06-1.06L2.22,2.22z M3.5,15.5V5.62L5,7.12V10h2.88l1,1H5v3h4 v-2.88l1,1V14h1.88l1.5,1.5H3.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.83,5H18v10.17L19.83,17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0-1.1-0.9-2-2-2H5.83L7.83,5z M12,9.17V7h4v3h-3.17L12,9.17z M9.83,7H11v1.17L9.83,7z M13.83,11H16v2.17L13.83,11z M18,21c0.06,0,0.11,0,0.16-0.01l2.32,2.32l1.41-1.41L2.1,2.1L0.69,3.51 l1.32,1.32C2,4.89,2,4.94,2,5v14c0,1.1,0.9,2,2,2H18z M4,19V6.83l2,2V12h3.17l1,1H6v4h5v-3.17l1,1V17h2.17l2,2H4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z\"></path>" } } }, - "devices_other": { - "name": "devices_other", + "signal_wifi_connected_no_internet_4": { + "name": "signal_wifi_connected_no_internet_4", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z M19.59,14l-2.09,2.09l-0.3-0.3L15.41,14 L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\"></path></g>" } } }, - "device_hub": { - "name": "device_hub", + "note_alt": { + "name": "note_alt", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5 C21,3.9,20.1,3,19,3z M12,2.75c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,19H5 V5h14V19z\"></path><polygon points=\"15.08,11.03 12.96,8.91 7,14.86 7,17 9.1,17\"></polygon><path d=\"M16.85,9.27c0.2-0.2,0.2-0.51,0-0.71l-1.41-1.41c-0.2-0.2-0.51-0.2-0.71,0l-1.06,1.06l2.12,2.12L16.85,9.27z\"></path></g></g>" } } }, - "device_unknown": { - "name": "device_unknown", + "timer_10_select": { + "name": "timer_10_select", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zM11 16h2v2h-2v-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,8v8h-3V8H13 M13,5h-3C8.34,5,7,6.34,7,8v8c0,1.66,1.34,3,3,3h3c1.66,0,3-1.34,3-3V8C16,6.34,14.66,5,13,5z M1,8h2v11h3 V5H1V8z M18.5,11c-0.83,0-1.5,0.68-1.5,1.5v2c0,0.82,0.67,1.5,1.5,1.5H21v1h-4v2h4.5c0.83,0,1.5-0.67,1.5-1.5v-2 c0-0.83-0.67-1.5-1.5-1.5H19v-1h4v-2H18.5z\"></path>" } } }, - "dock": { - "name": "dock", + "screen_rotation": { + "name": "screen_rotation", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z\"></path>" } } }, - "earbuds": { - "name": "earbuds", + "settings_system_daydream": { + "name": "settings_system_daydream", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M16,3c-2.76,0-5,2.24-5,5v8c0,1.66-1.34,3-3,3s-3-1.34-3-3V9h0.83C7.44,9,8.89,7.82,9,6.21c0.12-1.69-1.16-3.1-2.8-3.21 C4.44,2.89,3,4.42,3,6.19V16c0,2.76,2.24,5,5,5s5-2.24,5-5V8c0-1.66,1.34-3,3-3s3,1.34,3,3v7h-0.83c-1.61,0-3.06,1.18-3.17,2.79 c-0.12,1.69,1.16,3.1,2.8,3.21c1.76,0.12,3.2-1.42,3.2-3.18V8C21,5.24,18.76,3,16,3z M5,6c0-0.55,0.45-1,1-1s1,0.45,1,1S6.55,7,6,7 H5V6z M19,18c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1h1V18z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 17H9c-2.21 0-4-1.79-4-4 0-1.93 1.36-3.56 3.22-3.92C9.04 7.8 10.47 7 12 7c1.95 0 3.66 1.28 4.26 3.09 1.58.36 2.74 1.75 2.74 3.41 0 1.93-1.57 3.5-3.5 3.5zm-6.76-5.98C7.74 11.15 7 11.99 7 13c0 1.1.9 2 2 2h6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.87l-.17-.86C14.29 9.92 13.23 9 12 9c-.96 0-1.84.57-2.26 1.45l-.27.57h-.73zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\"></path>" } } }, - "earbuds_battery": { - "name": "earbuds_battery", + "price_change": { + "name": "price_change", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21,7h-1V6h-2v1h-1c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8C22,7.45,21.55,7,21,7z M20,16h-2V9h2 V16z M14,9.38C14,7.51,12.49,6,10.62,6S7.25,7.51,7.25,9.38v5.25c0,1.04-0.84,1.88-1.88,1.88S3.5,15.66,3.5,14.62v-4.7 C3.66,9.97,3.83,10,4,10c1.1,0,2-0.9,2-2S5.1,6,4,6S2,6.9,2,8c0,0.04,0,6.62,0,6.62C2,16.49,3.51,18,5.38,18s3.38-1.51,3.38-3.38 V9.38c0-1.04,0.84-1.88,1.88-1.88s1.88,0.84,1.88,1.88v4.7C12.34,14.03,12.17,14,12,14c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2 C14,15.96,14,9.38,14,9.38z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M8,17h2v-1h1c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1H8v-1h4V8h-2V7H8v1H7C6.45,8,6,8.45,6,9v3c0,0.55,0.45,1,1,1h3v1H6v2 h2V17z M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V6C22,4.89,21.11,4,20,4z M20,18H4V6h16V18z M14,10l2-2l2,2 M18,14.25l-2,2l-2-2\"></path></g></g>" } } }, - "gamepad": { - "name": "gamepad", + "cameraswitch": { + "name": "cameraswitch", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5l-3 3V22h6v-5.5l-3-3z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16,7h-1l-1-1h-4L9,7H8C6.9,7,6,7.9,6,9v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V9C18,7.9,17.1,7,16,7z M16,15H8V9h1.83l1-1 h2.34l1,1H16V15z\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle><path d=\"M8.57,0.52L13.05,5l1.41-1.41l-1.54-1.54C17.7,2.46,21.53,6.24,22,11h2C23.36,3.3,15.79-1.67,8.57,0.52z\"></path><path d=\"M9.54,20.41l1.54,1.54C6.3,21.54,2.47,17.76,2,13H0c0.64,7.7,8.21,12.67,15.43,10.48L10.95,19L9.54,20.41z\"></path></g></g>" } } }, - "headphones": { - "name": "headphones", + "bluetooth": { + "name": "bluetooth", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,3c-4.97,0-9,4.03-9,9v7c0,1.1,0.9,2,2,2h4v-8H5v-1c0-3.87,3.13-7,7-7s7,3.13,7,7v1h-4v8h4c1.1,0,2-0.9,2-2v-7 C21,7.03,16.97,3,12,3z M7,15v4H5v-4H7z M19,19h-2v-4h2V19z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z\"></path>" } } }, - "headphones_battery": { - "name": "headphones_battery", + "30fps": { + "name": "30fps", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21,7h-1V6h-2v1h-1c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8C22,7.45,21.55,7,21,7z M20,16h-2V9h2 V16z\"></path><path d=\"M8,6c-3.31,0-6,2.69-6,6v4c0,1.1,0.9,2,2,2h2v-5H3.5v-1c0-2.48,2.02-4.5,4.5-4.5s4.5,2.02,4.5,4.5v1H10v5h2 c1.1,0,2-0.9,2-2v-4C14,8.69,11.31,6,8,6z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M2,5v3h6v2.5H3v3h5V16H2v3h6c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1V8 c0-1.66-1.34-3-3-3H2z M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4c1.66,0,3-1.34,3-3V8 C22,6.34,20.66,5,19,5z\"></path></g></g>" } } }, - "headset": { - "name": "headset", + "add_alarm": { + "name": "add_alarm", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 14v3c0 .55-.45 1-1 1h-1v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z\"></path>" } } }, - "headset_mic": { - "name": "headset_mic", + "sim_card_download": { + "name": "sim_card_download", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 14v4h-2v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,2h-8L4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v16H6V8.83L10.83,4H18z\"></path><path d=\"M16,13l-4,4l-4-4l1.41-1.41L11,13.17V9.02L13,9v4.17l1.59-1.59L16,13z\"></path></g></g>" } } }, - "headset_off": { - "name": "headset_off", + "thermostat": { + "name": "thermostat", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M12,4c3.87,0,7,3.13,7,7v1h-4v0.17L16.83,14H19v2.17l2,2V11c0-4.97-4.03-9-9-9C9.98,2,8.12,2.67,6.62,3.8l1.43,1.43 C9.17,4.45,10.53,4,12,4z\"></path><path d=\"M2.1,2.1L0.69,3.51l3.33,3.33C3.37,8.09,3,9.5,3,11v7c0,1.1,0.9,2,2,2h4v-8H5v-1c0-0.94,0.19-1.83,0.52-2.65L15,17.83V20 h2.17l1,1H12v2h7c0.34,0,0.65-0.09,0.93-0.24l0.55,0.55l1.41-1.41L2.1,2.1z M7,14v4H5v-4H7z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z\"></path>" } } }, - "home_max": { - "name": "home_max", + "battery_saver": { + "name": "battery_saver", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><path d=\"M19,5H5C2.79,5,1,6.79,1,9v5c0,2.21,1.79,4,4,4h2v1h10v-1h2c2.21,0,4-1.79,4-4V9C23,6.79,21.21,5,19,5z M21,14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2V14z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16,4h-2V2h-4v2H8C7.45,4,7,4.45,7,5v16c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z M15,14h-2v2h-2 v-2H9v-2h2v-2h2v2h2V14z\"></path></g></g>" } } }, - "home_mini": { - "name": "home_mini", + "signal_cellular_nodata": { + "name": "signal_cellular_nodata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><path d=\"M12,5C4.19,5,2,9.48,2,12c0,3.86,3.13,7,6.99,7h6.02c2.69,0,6.99-2.08,6.99-7C22,12,22,5,12,5z M12,7c7.64,0,7.99,4.51,8,5 H4C4,11.8,4.09,7,12,7z M14.86,17H9.14c-2.1,0-3.92-1.24-4.71-3h15.15C18.78,15.76,16.96,17,14.86,17z\"></path></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M22,13h-9v9H2L22,2V13z M21,15.41L19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09-2.08L19.59,21 L21,19.59l-2.08-2.09L21,15.41z\"></path></g></g>" } } }, - "keyboard": { - "name": "keyboard", + "security_update_good": { + "name": "security_update_good", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 7v10H4V7h16m0-2H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2zm0 3h2v2h-2zM8 8h2v2H8zm0 3h2v2H8zm-3 0h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M16,10.05l-1.41-1.41l-3.54,3.54l-1.41-1.41l-1.41,1.41L11.05,15L16,10.05z\"></path></g>" } } }, - "keyboard_alt": { - "name": "keyboard_alt", + "screen_search_desktop": { + "name": "screen_search_desktop", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M21,4H3C1.9,4,1,4.9,1,6v13c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V6C23,4.9,22.1,4,21,4z M21,19H3V6h18V19z M9,8h2v2H9V8z M5,8h2v2H5V8z M8,16h8v1H8V16z M13,8h2v2h-2V8z M9,12h2v2H9V12z M5,12h2v2H5V12z M13,12h2v2h-2V12z M17,8h2v2h-2V8z M17,12h2v2 h-2V12z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M4,18h16c1.1,0,1.99-0.9,1.99-2L22,5c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v11C2,17.1,2.9,18,4,18z M4,5h16v11H4V5z\"></path><rect height=\"2\" width=\"22\" x=\"1\" y=\"19\"></rect><path d=\"M13.97,7.53c-1.37-1.37-3.58-1.37-4.95,0s-1.37,3.58,0,4.95c1.18,1.18,3,1.34,4.36,0.47l2.09,2.09l1.06-1.06l-2.09-2.09 C15.31,10.53,15.16,8.71,13.97,7.53z M12.91,11.41c-0.78,0.78-2.05,0.78-2.83,0c-0.78-0.78-0.78-2.05,0-2.83s2.05-0.78,2.83,0 C13.69,9.37,13.69,10.63,12.91,11.41z\"></path></g></g>" } } }, - "keyboard_arrow_down": { - "name": "keyboard_arrow_down", + "lte_mobiledata": { + "name": "lte_mobiledata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M6,14h3v2H4V8h2V14z M9,10h2v6h2v-6h2V8H9V10z M21,10V8h-5v8h5v-2h-3v-1h3v-2h-3v-1H21z\"></path></g></g>" } } }, - "keyboard_arrow_left": { - "name": "keyboard_arrow_left", + "4g_plus_mobiledata": { + "name": "4g_plus_mobiledata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M13,11v2h2v2h-4V9h6c0-1.1-0.9-2-2-2h-4C9.9,7,9,7.9,9,9v6c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-4H13z M24,11h-2V9h-2v2h-2 v2h2v2h2v-2h2V11z M7,7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z\"></path></g></g>" } } }, - "keyboard_arrow_right": { - "name": "keyboard_arrow_right", + "wifi_tethering_error": { + "name": "wifi_tethering_error", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g><g><g><circle cx=\"10\" cy=\"11\" r=\"1.5\"></circle><path d=\"M10,6c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l1.06-1.06C6.89,12.84,6.5,11.96,6.5,11c0-1.93,1.57-3.5,3.5-3.5 s3.5,1.57,3.5,3.5c0,0.96-0.39,1.84-1.03,2.47l1.06,1.06C14.44,13.63,15,12.38,15,11C15,8.24,12.76,6,10,6z\"></path><path d=\"M10,3c-4.42,0-8,3.58-8,8c0,2.21,0.9,4.21,2.34,5.66l1.06-1.06C4.23,14.42,3.5,12.79,3.5,11c0-3.58,2.92-6.5,6.5-6.5 c2.3,0,4.31,1.2,5.47,3h1.72C15.89,4.84,13.16,3,10,3z\"></path><rect height=\"5\" width=\"1.5\" x=\"16.5\" y=\"9\"></rect><rect height=\"1.5\" width=\"1.5\" x=\"16.5\" y=\"15\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,7c-3.31,0-6,2.69-6,6c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.11-0.45,2.1-1.18,2.82l1.42,1.42C17.32,16.15,18,14.66,18,13C18,9.69,15.31,7,12,7z M12,3C6.48,3,2,7.48,2,13 c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13c0-4.42,3.58-8,8-8c2.53,0,4.78,1.17,6.24,3h2.42 C18.93,5.01,15.7,3,12,3z M12,11c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59 C13.77,14.05,14,13.55,14,13C14,11.9,13.1,11,12,11z M20,10h2v6h-2V10z M20,18h2v2h-2V18z\"></path></g></g>" } } }, - "keyboard_arrow_up": { - "name": "keyboard_arrow_up", + "air": { + "name": "air", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M14.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3h2c0,0.55,0.45,1,1,1s1-0.45,1-1s-0.45-1-1-1H2v-2h9.5 C13.15,14,14.5,15.35,14.5,17z M19,6.5C19,4.57,17.43,3,15.5,3S12,4.57,12,6.5h2C14,5.67,14.67,5,15.5,5S17,5.67,17,6.5 S16.33,8,15.5,8H2v2h13.5C17.43,10,19,8.43,19,6.5z M18.5,11H2v2h16.5c0.83,0,1.5,0.67,1.5,1.5S19.33,16,18.5,16v2 c1.93,0,3.5-1.57,3.5-3.5S20.43,11,18.5,11z\"></path></g></g>" } } }, - "keyboard_backspace": { - "name": "keyboard_backspace", + "signal_wifi_0_bar": { + "name": "signal_wifi_0_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07L12,18.17L2.92,9.07z\"></path></g>" } } }, - "keyboard_capslock": { - "name": "keyboard_capslock", + "flourescent": { + "name": "flourescent", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M5,15h14V9H5V15z M7,11h10v2H7V11z\"></path><rect height=\"3\" width=\"2\" x=\"11\" y=\"2\"></rect><rect height=\"2\" transform=\"matrix(0.7046 -0.7096 0.7096 0.7046 1.1814 15.2381)\" width=\"2.54\" x=\"17.62\" y=\"5.2\"></rect><rect height=\"3\" width=\"2\" x=\"11\" y=\"19\"></rect><polygon points=\"17.29,17.71 19.08,19.51 20.5,18.09 18.7,16.3\"></polygon><rect height=\"2.53\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.8904 5.4222)\" width=\"1.99\" x=\"4.1\" y=\"4.93\"></rect><rect height=\"2\" transform=\"matrix(0.7096 -0.7046 0.7046 0.7096 -11.1263 8.7897)\" width=\"2.54\" x=\"3.83\" y=\"16.89\"></rect></g></g>" } } }, - "keyboard_hide": { - "name": "keyboard_hide", + "access_alarms": { + "name": "access_alarms", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H4V5h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 6h2v2H8zm0 3h2v2H8zM5 9h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2zm-5 17l4-4H8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z\"></path>" } } }, - "keyboard_return": { - "name": "keyboard_return", + "access_time_filled": { + "name": "access_time_filled", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M11.99,2C6.47,2,2,6.48,2,12s4.47,10,9.99,10C17.52,22,22,17.52,22,12S17.52,2,11.99,2z M15.29,16.71L11,12.41V7h2v4.59 l3.71,3.71L15.29,16.71z\"></path></g>" } } }, - "keyboard_tab": { - "name": "keyboard_tab", + "signal_wifi_statusbar_4_bar": { + "name": "signal_wifi_statusbar_4_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z\"></path></g>" } } }, - "keyboard_voice": { - "name": "keyboard_voice", + "wifi_find": { + "name": "wifi_find", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M10,14.88L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6l-0.67,0.67c0.37,0.35,0.66,0.77,0.89,1.23 L20,7.01C17.4,4.53,13.88,3,10,3C6.12,3,2.6,4.53,0,7.01L10,17l1.99-1.99c-0.46-0.23-0.88-0.53-1.23-0.89L10,14.88z\"></path></g><g><path d=\"M17,11c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c0.56,0,1.07-0.16,1.52-0.42L17.94,16L19,14.94l-2.42-2.42 C16.84,12.07,17,11.56,17,11z M12.5,11c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S12.5,11.83,12.5,11z\"></path></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2V5.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.41 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M12,6c4.14,0,7.88,1.68,10.59,4.39L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21l1.41-1.42L2.93,9.08 C5.45,7.16,8.59,6,12,6z\"></path></g><g><path d=\"M21,14c0-2.24-1.76-4-4-4s-4,1.76-4,4c0,2.24,1.76,4,4,4c0.75,0,1.44-0.21,2.03-0.56L21.59,20L23,18.59l-2.56-2.56 C20.79,15.44,21,14.75,21,14z M17,16c-1.12,0-2-0.88-2-2c0-1.12,0.88-2,2-2s2,0.88,2,2C19,15.12,18.12,16,17,16z\"></path></g></g></g>" } } }, - "laptop": { - "name": "laptop", + "battery_full": { + "name": "battery_full", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z\"></path>" } } }, - "laptop_chromebook": { - "name": "laptop_chromebook", + "add_to_home_screen": { + "name": "add_to_home_screen", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z\"></path>" } } }, - "laptop_mac": { - "name": "laptop_mac", + "lens_blur": { + "name": "lens_blur", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M6,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,13,6,13z M6,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S6.55,17,6,17z M6,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,9,6,9z M3,9.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5 s0.5-0.22,0.5-0.5S3.28,9.5,3,9.5z M6,5C5.45,5,5,5.45,5,6s0.45,1,1,1s1-0.45,1-1S6.55,5,6,5z M21,10.5c0.28,0,0.5-0.22,0.5-0.5 S21.28,9.5,21,9.5s-0.5,0.22-0.5,0.5S20.72,10.5,21,10.5z M14,7c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S13.45,7,14,7z M14,3.5 c0.28,0,0.5-0.22,0.5-0.5S14.28,2.5,14,2.5S13.5,2.72,13.5,3S13.72,3.5,14,3.5z M3,13.5c-0.28,0-0.5,0.22-0.5,0.5 s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S3.28,13.5,3,13.5z M10,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S10.28,20.5,10,20.5z M10,3.5c0.28,0,0.5-0.22,0.5-0.5S10.28,2.5,10,2.5S9.5,2.72,9.5,3S9.72,3.5,10,3.5z M10,7c0.55,0,1-0.45,1-1 s-0.45-1-1-1S9,5.45,9,6S9.45,7,10,7z M10,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,12.5,10,12.5z M18,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,13,18,13z M18,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,17,18,17z M18,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,9,18,9z M18,5c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,5,18,5z M21,13.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S21.28,13.5,21,13.5z M14,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S14.55,17,14,17z M14,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S14.28,20.5,14,20.5z M10,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,8.5,10,8.5z M10,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S10.55,17,10,17z M14,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S14.83,12.5,14,12.5z M14,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S14.83,8.5,14,8.5z\"></path></g></g>" } } }, - "laptop_windows": { - "name": "laptop_windows", + "hdr_on_select": { + "name": "hdr_on_select", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,18.5v-1c0-0.8-0.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1C17.6,19.6,18,19.1,18,18.5z M16.5,18.5h-2v-1h2 V18.5z M3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18z M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M12,4c2.21,0,4,1.79,4,4s-1.79,4-4,4s-4-1.79-4-4 S9.79,4,12,4 M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z\"></path></g></g>" } } }, - "memory": { - "name": "memory", + "signal_cellular_off": { + "name": "signal_cellular_off", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 1l-8.31 8.31 8.31 8.3zM4.91 4.36L3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z\"></path>" } } }, - "monitor": { - "name": "monitor", + "restart_alt": { + "name": "restart_alt", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M20,3H4C2.9,3,2,3.9,2,5v11c0,1.1,0.9,2,2,2h3l-1,1v2h12v-2l-1-1h3c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,16H4V5h16 V16z\"></path></g></g>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M6,13c0-1.65,0.67-3.15,1.76-4.24L6.34,7.34C4.9,8.79,4,10.79,4,13c0,4.08,3.05,7.44,7,7.93v-2.02 C8.17,18.43,6,15.97,6,13z M20,13c0-4.42-3.58-8-8-8c-0.06,0-0.12,0.01-0.18,0.01l1.09-1.09L11.5,2.5L8,6l3.5,3.5l1.41-1.41 l-1.08-1.08C11.89,7.01,11.95,7,12,7c3.31,0,6,2.69,6,6c0,2.97-2.17,5.43-5,5.91v2.02C16.95,20.44,20,17.08,20,13z\"></path></g></g>" } } }, - "mouse": { - "name": "mouse", + "device_thermostat": { + "name": "device_thermostat", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 9c-.04-4.39-3.6-7.93-8-7.93S4.04 4.61 4 9v6c0 4.42 3.58 8 8 8s8-3.58 8-8V9zm-2 0h-5V3.16c2.81.47 4.96 2.9 5 5.84zm-7-5.84V9H6c.04-2.94 2.19-5.37 5-5.84zM18 15c0 3.31-2.69 6-6 6s-6-2.69-6-6v-4h12v4z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M15,13V5c0-1.66-1.34-3-3-3S9,3.34,9,5v8c-1.21,0.91-2,2.37-2,4c0,2.76,2.24,5,5,5s5-2.24,5-5C17,15.37,16.21,13.91,15,13 z M11,11V5c0-0.55,0.45-1,1-1s1,0.45,1,1v1h-1v1h1v1v1h-1v1h1v1H11z\"></path></g></g>" } } }, - "phonelink": { - "name": "phonelink", + "nearby_off": { + "name": "nearby_off", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M21.41,13.42L18.83,16l-1.81-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l2.58-2.58c0.78-0.78,2.05-0.78,2.83,0l8,8 C22.2,11.37,22.2,12.63,21.41,13.42z M21.19,21.19l-1.41,1.41L16,18.83l-2.58,2.58c-0.78,0.78-2.05,0.78-2.83,0l-8-8 c-0.78-0.78-0.78-2.05,0-2.83L5.17,8L1.39,4.22L2.8,2.81L21.19,21.19z M14.19,17.02l-1.39-1.39l-0.8,0.8L7.58,12l0.8-0.8 l-1.4-1.39L4.8,12l7.2,7.2L14.19,17.02z M16.42,12L12,7.58l-0.8,0.8l4.42,4.42L16.42,12z\"></path></g></g>" } } }, - "phonelink_off": { - "name": "phonelink_off", + "grid_3x3": { + "name": "grid_3x3", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 6V4H7.39l2 2zm2 13V9c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93zM2.06 1.51L.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51zM4 17V6.27L14.73 17H4z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20z M14,14h-4v-4h4V14z\"></path></g>" } } }, - "phone_android": { - "name": "phone_android", + "password": { + "name": "password", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm1 17H7V4h10v14zm-3 3h-4v-1h4v1z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M2,17h20v2H2V17z M3.15,12.95L4,11.47l0.85,1.48l1.3-0.75L5.3,10.72H7v-1.5H5.3l0.85-1.47L4.85,7L4,8.47L3.15,7l-1.3,0.75 L2.7,9.22H1v1.5h1.7L1.85,12.2L3.15,12.95z M9.85,12.2l1.3,0.75L12,11.47l0.85,1.48l1.3-0.75l-0.85-1.48H15v-1.5h-1.7l0.85-1.47 L12.85,7L12,8.47L11.15,7l-1.3,0.75l0.85,1.47H9v1.5h1.7L9.85,12.2z M23,9.22h-1.7l0.85-1.47L20.85,7L20,8.47L19.15,7l-1.3,0.75 l0.85,1.47H17v1.5h1.7l-0.85,1.48l1.3,0.75L20,11.47l0.85,1.48l1.3-0.75l-0.85-1.48H23V9.22z\"></path></g></g>" } } }, - "phone_iphone": { - "name": "phone_iphone", + "stroller": { + "name": "stroller", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18,18.9,18,20z M6,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18z M15,8.66L9.6,15H15V8.66 M18.65,3C20.52,3,22,4.56,22,6.48V7h-2V6.48C20,5.66,19.42,5,18.65,5C17.97,5,17.58,5.59,17,6.27V15 c0,1.1-0.9,2-2,2H7.43c-0.85,0-1.31-1-0.76-1.65l8.8-10.32C16.11,4.27,16.99,3,18.65,3L18.65,3z M10,5C9.35,5,8.71,5.09,8.09,5.27 l1.4,1.4l1.37-1.61C10.58,5.02,10.29,5,10,5 M10,3c1.56,0,3.03,0.4,4.3,1.1l-4.7,5.51L4.72,4.72C6.21,3.64,8.03,3,10,3L10,3z\"></path></g>" } } }, - "point_of_sale": { - "name": "point_of_sale", + "fence": { + "name": "fence", "keywords": [ - "hardware" + "places" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14,3H6C5.45,3,5,3.45,5,4v1c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V4C15,3.45,14.55,3,14,3z M14,5H6V4h8V5z M16,17H4 c-0.55,0-1-0.45-1-1l0,0l0-1h14v1l0,0C17,16.55,16.55,17,16,17z M14.26,7.61C14.1,7.24,13.74,7,13.34,7H6.66 C6.26,7,5.9,7.24,5.74,7.61L3,14h14L14.26,7.61z M7.75,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C8.25,12.78,8.03,13,7.75,13z M7.75,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5S6.97,10,7.25,10h0.5 c0.28,0,0.5,0.22,0.5,0.5S8.03,11,7.75,11z M7.75,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C8.25,8.78,8.03,9,7.75,9z M10.25,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5S9.47,12,9.75,12h0.5 c0.28,0,0.5,0.22,0.5,0.5S10.53,13,10.25,13z M10.25,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C10.75,10.78,10.53,11,10.25,11z M10.25,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5S9.47,8,9.75,8h0.5 c0.28,0,0.5,0.22,0.5,0.5S10.53,9,10.25,9z M12.75,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5 S13.03,13,12.75,13z M12.75,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5 C13.25,10.78,13.03,11,12.75,11z M12.75,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5S11.97,8,12.25,8h0.5c0.28,0,0.5,0.22,0.5,0.5 S13.03,9,12.75,9z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z\"></path></g>" } } }, - "power_input": { - "name": "power_input", + "do_not_touch": { + "name": "do_not_touch", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l6.8,7.18 c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.66-0.52l1.12,1.12l1.41-1.41L2.81,2.81z M17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9l0-4.17l8.14,8.14C17.09,19.98,17.05,20,17,20z M13.83,11H14V3.25C14,2.56,14.56,2,15.25,2 s1.25,0.56,1.25,1.25V11h1V5.25C17.5,4.56,18.06,4,18.75,4S20,4.56,20,5.25v11.92l-2-2V13h-2.17L13.83,11z M13,10.17V2.25 C13,1.56,12.44,1,11.75,1S10.5,1.56,10.5,2.25v5.42L13,10.17z M9.5,6.67V4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18v0 L9.5,6.67z\"></path></g>" } } }, - "router": { - "name": "router", + "houseboat": { + "name": "houseboat", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.74,9.64l-1.07,1.07C15.49,10.89,15.23,11,14.97,11L14,11V8.09l1.11,0.82L16,7.7l-6-4.4L4,7.7l0.89,1.21L6,8.09V11 l-0.97,0c-0.27,0-0.52-0.11-0.71-0.29L3.26,9.64L2.2,10.7l1.07,1.07c0.47,0.47,1.1,0.73,1.77,0.73h9.93c0.66,0,1.3-0.26,1.77-0.73 l1.07-1.07L16.74,9.64z M10.75,11V9h-1.5v2H7.5l0.1-4.08L10,5.16l2.4,1.76V11H10.75z M18,14.5V16c-1.58,0-1.72-1-2.66-1 c-0.95,0-1.08,1-2.67,1c-1.58,0-1.72-1-2.67-1c-0.95,0-1.08,1-2.67,1c-1.59,0-1.72-1-2.67-1C3.72,15,3.58,16,2,16v-1.5 c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1 C16.92,13.5,17.05,14.5,18,14.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 4.2c1.5 0 3 .6 4.2 1.7l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2zm-3.3 2.5l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm0 6H5v-4h14v4zM6 16h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,16c-1.95,0-2.1,1-3.34,1c-1.19,0-1.42-1-3.33-1C3.38,16,3.24,17,2,17v2c1.9,0,2.17-1,3.35-1c1.19,0,1.42,1,3.33,1 c1.95,0,2.08-1,3.32-1s1.37,1,3.32,1c1.91,0,2.14-1,3.33-1c1.18,0,1.45,1,3.35,1v-2c-1.24,0-1.38-1-3.33-1c-1.91,0-2.14,1-3.33,1 C14.1,17,13.95,16,12,16z M20.34,11.34l-1.37,1.37C18.78,12.89,18.52,13,18.26,13H17V9.65l1.32,0.97L19.5,9L12,3.5L4.5,9l1.18,1.61 L7,9.65V13H5.74c-0.27,0-0.52-0.11-0.71-0.29l-1.37-1.37l-1.41,1.41l1.37,1.37C4.18,14.68,4.95,15,5.74,15h12.51 c0.8,0,1.56-0.32,2.12-0.88l1.37-1.37L20.34,11.34z M13,13v-2h-2v2H9V8.18l3-2.2l3,2.2V13H13z\"></path>" } } }, - "scanner": { - "name": "scanner", + "grass": { + "name": "grass", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.8 10.7L4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM19 18H5v-4h14v4zM6 15h2v2H6zm4 0h8v2h-8z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,20H2v-2h5.75l0,0C7.02,15.19,4.81,12.99,2,12.26C2.64,12.1,3.31,12,4,12C8.42,12,12,15.58,12,20z M22,12.26 C21.36,12.1,20.69,12,20,12c-2.93,0-5.48,1.58-6.88,3.93c0.29,0.66,0.53,1.35,0.67,2.07c0.13,0.65,0.2,1.32,0.2,2h2h6v-2h-5.75 C16.98,15.19,19.19,12.99,22,12.26z M15.64,11.02c0.78-2.09,2.23-3.84,4.09-5C15.44,6.16,12,9.67,12,14c0,0.01,0,0.02,0,0.02 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85C10.58,6.66,8.88,4.89,6.7,4C8.14,5.86,9,8.18,9,10.71c0,0.21-0.03,0.41-0.04,0.61 c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z\"></path>" } } }, - "security": { - "name": "security", + "storefront": { + "name": "storefront", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M18.91,4.99l1.05,4.37c0.1,0.42,0.01,0.84-0.25,1.17 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5L18.91,4.99z M13,5h1.96l0.54,4.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.04,9.36L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47C4.03,10.21,3.94,9.78,4.04,9.36z M5,19v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z\"></path></g></g>" } } }, - "sim_card": { - "name": "sim_card", + "apartment": { + "name": "apartment", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M14,9V4H7v3H3v9h7v-3h1v3h6V9H14z M6,14H5v-1h1V14z M6,12H5v-1h1V12z M6,10H5V9h1V10z M10,11H9v-1h1V11z M10,9H9V8h1V9z M10,7H9V6h1V7z M12,11h-1v-1h1V11z M12,9h-1V8h1V9z M12,7h-1V6h1V7z M15,14h-1v-1h1V14z M15,12h-1v-1h1V12z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18zM7 17h2v2H7zm8 0h2v2h-2zm-8-6h2v4H7zm4 4h2v4h-2zm0-4h2v2h-2zm4 0h2v4h-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z\"></path></g>" } } }, - "smartphone": { - "name": "smartphone", + "house_siding": { + "name": "house_siding", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12z M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16 v-2h10v2H7z\"></path>" } } }, - "smart_display": { - "name": "smart_display", + "gite": { + "name": "gite", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,8.5l-3-3c0,0,0,0,0,0H7.5V4H6v1.5H5l-3,3V15c0,0,0,0,0,0h9.5H13h5c0,0,0,0,0,0L18,8.5C18,8.5,18,8.5,18,8.5z M3.5,13.5 V10h8v3.5H3.5z M16.5,13.5H13V9.12l1.75-1.75l1.75,1.75V13.5z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><polygon points=\"9.5,7.5 9.5,16.5 16.5,12\"></polygon><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18.01H4V5.99h16V18.01z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,6H9V4H7v2H6l-4,4v9h20v-9L18,6z M4,12h10v5H4V12z M20,17h-4v-6.17l2-2v0l2,2V17z\"></path>" } } }, - "smart_screen": { - "name": "smart_screen", + "casino": { + "name": "casino", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"1.5\" x=\"12.5\" y=\"11.25\"></rect><rect height=\"1.5\" width=\"1.5\" x=\"15\" y=\"11.25\"></rect><rect height=\"1.5\" width=\"1.5\" x=\"10\" y=\"11.25\"></rect><rect height=\"1.5\" width=\"1.5\" x=\"7.5\" y=\"11.25\"></rect><path d=\"M21,5H3C1.9,5,1,5.9,1,7v10c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V7C23,5.9,22.1,5,21,5z M4,17H3V7h1V17z M18,17H6V7h12V17z M21,17h-1V7h1V17z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\"></path><circle cx=\"7.5\" cy=\"16.5\" r=\"1.5\"></circle><circle cx=\"7.5\" cy=\"7.5\" r=\"1.5\"></circle><circle cx=\"12\" cy=\"12\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"16.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"7.5\" r=\"1.5\"></circle>" } } }, - "smart_toy": { - "name": "smart_toy", + "bungalow": { + "name": "bungalow", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10.75,11.5h-1.5V10h1.5V11.5z M16,12.6l-1.27,0.8L14,12.23V17H6v-4.77L5.27,13.4L4,12.6L10,3L16,12.6z M12.5,9.83l-2.5-4 l-2.5,4v5.67h1.75V13h1.5v2.5h1.75V9.83z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M20,9V7c0-1.1-0.9-2-2-2h-3c0-1.66-1.34-3-3-3S9,3.34,9,5H6C4.9,5,4,5.9,4,7v2c-1.66,0-3,1.34-3,3s1.34,3,3,3v4 c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4c1.66,0,3-1.34,3-3S21.66,9,20,9z M18,19L6,19V7h12V19z M9,13c-0.83,0-1.5-0.67-1.5-1.5 S8.17,10,9,10s1.5,0.67,1.5,1.5S9.83,13,9,13z M16.5,11.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S14.17,10,15,10 S16.5,10.67,16.5,11.5z M8,15h8v2H8V15z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,14h-2v-2h2V14z M18.1,16.56L17,14.79V21H7v-6.2l-1.1,1.76L4.2,15.5L12,3l7.8,12.5L18.1,16.56z M15,11.59l-3-4.8l-3,4.8 V19h2v-3h2v3h2V11.59z\"></path>" } } }, - "speaker": { - "name": "speaker", + "no_drinks": { + "name": "no_drinks", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 20V4h10v16H7zm5-11c1.1 0 2-.9 2-2s-.9-2-2-2c-1.11 0-2 .9-2 2s.89 2 2 2zm0 2c-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>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97l-1.42-1.42L14.77,9h-2.94l-2-2h6.74l1.78-2H7.83z\"></path></g>" } } }, - "speaker_group": { - "name": "speaker_group", + "elevator": { + "name": "elevator", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM18 17l-8-.01V3h8v14zm-4-9c1.1 0 2-.89 2-2s-.9-2-2-2-2 .89-2 2 .9 2 2 2zm0 8c1.93 0 3.5-1.57 3.5-3.5S15.93 9 14 9s-3.5 1.57-3.5 3.5S12.07 16 14 16zm0-5c.83 0 1.5.67 1.5 1.5S14.83 14 14 14s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M10,18v-4h1 v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25 S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z\"></path></g>" } } }, - "tablet": { - "name": "tablet", + "child_friendly": { + "name": "child_friendly", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 2v8h8c0-4.42-3.58-8-8-8zm2 6V4.34c1.7.6 3.05 1.95 3.66 3.66H15zm-8.56 3l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61C20.37 14.54 21 12.84 21 11H6.44zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20zm.74-5.34l-.29.37c-.14-.02-.3-.03-.45-.03-1.39 0-2.6.82-3.16 2h-2.68c-.5-1.04-1.5-1.8-2.68-1.97l-.44-.67c-.1-.17-.34-.69-.67-1.36h11.29c-.21.59-.52 1.15-.92 1.66z\"></path>" } } }, - "tablet_android": { - "name": "tablet_android", + "fitness_center": { + "name": "fitness_center", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z\"></path>" } } }, - "tablet_mac": { - "name": "tablet_mac", + "smoke_free": { + "name": "smoke_free", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm-1 0h-2.34L17 15.34zm-2.5-4.35h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zm4.35-3.92c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM3.41 4.59L2 6l7 7H2v3h10l7 7 1.41-1.41z\"></path>" } } }, - "toys": { - "name": "toys", + "smoking_rooms": { + "name": "smoking_rooms", "keywords": [ - "hardware" + "places" ], "heights": { - "20": { - "width": 20, - "path": "<g display=\"none\"><rect display=\"inline\" fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M14.55,8.53l-0.83-2.49c-0.31-0.92-1.17-1.54-2.13-1.54H8.41c-0.97,0-1.83,0.62-2.13,1.54L5.73,7.67l-1-1l0.15-0.15 c0.29-0.29,0.29-0.77,0-1.06s-0.77-0.29-1.06,0L2.47,6.82c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0l0.14-0.14 l0.99,0.99C3.69,9.15,3,10.12,3,11.25c0,0.98,0.51,1.83,1.28,2.32c0.16,1.09,1.09,1.93,2.22,1.93c0.98,0,1.8-0.63,2.11-1.5h2.78 c0.31,0.87,1.14,1.5,2.11,1.5c1.13,0,2.06-0.84,2.22-1.93c0.77-0.49,1.28-1.34,1.28-2.32C17,9.84,15.92,8.68,14.55,8.53z M10.75,6 h0.84c0.32,0,0.61,0.21,0.71,0.51l0.66,1.99h-2.21V6z M7.7,6.51C7.81,6.21,8.09,6,8.41,6h0.84v2.5H7.04L7.7,6.51z M6.5,14 c-0.41,0-0.75-0.34-0.75-0.75S6.09,12.5,6.5,12.5s0.75,0.34,0.75,0.75S6.91,14,6.5,14z M13.5,14c-0.41,0-0.75-0.34-0.75-0.75 s0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75S13.91,14,13.5,14z M15.29,11.9c-0.41-0.54-1.06-0.9-1.79-0.9c-0.98,0-1.8,0.63-2.11,1.5 H8.61C8.3,11.63,7.48,11,6.5,11c-0.73,0-1.38,0.36-1.79,0.9c-0.12-0.19-0.21-0.41-0.21-0.65C4.5,10.56,5.06,10,5.75,10h8.5 c0.69,0,1.25,0.56,1.25,1.25C15.5,11.49,15.41,11.71,15.29,11.9z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g display=\"none\"><rect display=\"inline\" fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M18.75,10.08L17.4,6.05C17,4.82,15.85,4,14.56,4H9.44C8.15,4,7,4.82,6.6,6.05L5.81,8.4L4.41,7l0.29-0.29 c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0l-2,2c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0L3,8.41 l1.79,1.79C3.18,10.72,2,12.22,2,14c0,1.49,0.83,2.78,2.05,3.47C4.27,18.9,5.51,20,7,20c1.3,0,2.4-0.84,2.82-2h4.37 c0.41,1.16,1.51,2,2.82,2c1.49,0,2.73-1.1,2.95-2.53C21.17,16.78,22,15.49,22,14C22,12.05,20.6,10.43,18.75,10.08z M13,6h1.56 c0.43,0,0.81,0.27,0.95,0.68L16.61,10H13V6z M8.49,6.68C8.63,6.27,9.01,6,9.44,6H11v4H7.41L7.39,9.98L8.49,6.68z M7,18 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S7.55,18,7,18z M17,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.55,18,17,18z M19.49,15.32C18.95,14.53,18.03,14,17,14c-1.3,0-2.4,0.84-2.82,2H9.82C9.4,14.84,8.3,14,7,14c-1.03,0-1.95,0.53-2.49,1.32 C4.2,14.97,4,14.51,4,14c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2C20,14.51,19.8,14.97,19.49,15.32z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 16h1.5v3H18zM2 16h15v3H2zm14.03-5.8H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16zM20.5 16H22v3h-1.5zm-1.65-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03z\"></path>" } } }, - "tv": { - "name": "tv", + "tapas": { + "name": "tapas", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,10V1h-8v9c0,1.86,1.28,3.41,3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M16,10V8h4v2 c0,1.1-0.9,2-2,2S16,11.1,16,10z M10,9H8V8h2c1.38,0,2.5-1.12,2.5-2.5C12.5,4.12,11.38,3,10,3H8V1H6v2H4C2.62,3,1.5,4.12,1.5,5.5 C1.5,6.88,2.62,8,4,8h2v1H4c-1.38,0-2.5,1.12-2.5,2.5C1.5,12.88,2.62,14,4,14h2v9h2v-9h2c1.38,0,2.5-1.12,2.5-2.5 C12.5,10.12,11.38,9,10,9z M4,6C3.72,6,3.5,5.78,3.5,5.5S3.72,5,4,5h6c0.28,0,0.5,0.22,0.5,0.5S10.28,6,10,6H4z M10,12H4 c-0.28,0-0.5-0.22-0.5-0.5S3.72,11,4,11h6c0.28,0,0.5,0.22,0.5,0.5S10.28,12,10,12z\"></path>" } } }, - "videogame_asset": { - "name": "videogame_asset", + "microwave": { + "name": "microwave", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h18v8zM6 15h2v-2h2v-2H8V9H6v2H4v2h2z\"></path><circle cx=\"14.5\" cy=\"13.5\" r=\"1.5\"></circle><circle cx=\"18.5\" cy=\"10.5\" r=\"1.5\"></circle>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h10v12H4V6z M20,18h-4V6h4V18z M19,9h-2V7h2V9z M18,13L18,13c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,12.55,18.55,13,18,13z M18,17 L18,17c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,16.55,18.55,17,18,17z M10.25,16 c-0.79,0-1.37-0.38-1.79-0.66C8.13,15.12,7.94,15,7.75,15c-0.37,0-0.8,0.41-0.95,0.61l-1.42-1.42C5.73,13.79,6.59,13,7.75,13 c0.8,0,1.39,0.39,1.81,0.67C9.87,13.88,10.07,14,10.25,14c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,15.21,11.41,16,10.25,16z M10.25,11c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10c-0.37,0-0.8,0.41-0.95,0.61L5.37,9.19C5.73,8.79,6.59,8,7.75,8 c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,10.21,11.41,11,10.25,11z\"></path>" } } }, - "videogame_asset_off": { - "name": "videogame_asset_off", + "foundation": { + "name": "foundation", "keywords": [ - "hardware" + "places" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect><path d=\"M13.25,9c0-0.69,0.56-1.25,1.25-1.25S15.75,8.31,15.75,9s-0.56,1.25-1.25,1.25S13.25,9.69,13.25,9z M8.62,6.5h7.88v7h-0.88 l1.4,1.4c0.57-0.21,0.97-0.76,0.97-1.4v-7C18,5.68,17.33,5,16.5,5H7.12L8.62,6.5z M16.01,18.13L12.88,15H3.5C2.67,15,2,14.32,2,13.5 v-7c0-0.64,0.41-1.19,0.97-1.4L1.87,3.99l1.06-1.06l14.14,14.14L16.01,18.13z M11.38,13.5l-2.75-2.75H7.55v1.75h-1.5v-1.75H4.3v-1.5 h1.75V8.17L4.38,6.5H3.5v7H11.38z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect><path d=\"M17.5,9c0.83,0,1.5,0.67,1.5,1.5S18.33,12,17.5,12S16,11.33,16,10.5S16.67,9,17.5,9z M10.83,8H20v8h-1.17l1.87,1.87 C21.45,17.58,22,16.85,22,16V8c0-1.1-0.9-2-2-2H8.83L10.83,8z M19.78,22.61L15.17,18H4c-1.1,0-2-0.9-2-2V8 c0-0.85,0.55-1.58,1.3-1.87L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M13.17,16l-3-3H9v2H7v-2H5v-2h2V9.83L5.17,8H4v8H13.17z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12z M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z\"></path>" } } }, - "watch": { - "name": "watch", + "no_meeting_room": { + "name": "no_meeting_room", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.31 2l.41 2.48C13.87 4.17 12.96 4 12 4c-.95 0-1.87.17-2.71.47L9.7 2h4.61m.41 17.52L14.31 22H9.7l-.41-2.47c.84.3 1.76.47 2.71.47.96 0 1.87-.17 2.72-.48M16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12s-1.19-4.81-3.04-6.27L16 0zm-4 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5v3.88l2 2V6h3v7.88l2 2V4h-5V3H6.12l2 2zM2.41 2.13L1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41L2.41 2.13zM12 19H7V9.54l5 5V19z\"></path>" } } }, - "sensor_door": { - "name": "sensor_door", + "spa": { + "name": "spa", "keywords": [ - "home" + "places" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15,4v12H5V4H15 M15,3H5C4.45,3,4,3.45,4,4v13h12V4C16,3.45,15.55,3,15,3L15,3z M13,9c-0.55,0-1,0.45-1,1s0.45,1,1,1 s1-0.45,1-1S13.55,9,13,9z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2L18,2z M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5S16.33,10.5,15.5,10.5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39zM12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm-4.33-7.32c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z\"></path>" } } }, - "sensor_window": { - "name": "sensor_window", + "other_houses": { + "name": "other_houses", "keywords": [ - "home" + "places" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V4C16,3.45,15.55,3,15,3z M15,16H5v-6h10V16z M15,9 h-3.5V8h-3v1H5V4h10V9z\"></path></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,3.5L1.75,9.8l0.91,1.19L4,9.97V17h12V9.97l1.34,1.02l0.91-1.19L10,3.5z M14.5,15.5h-9V8.82L10,5.39l4.5,3.44V15.5z M7.75,11.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75S6.59,11,7,11S7.75,11.34,7.75,11.75z M10.75,11.75 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75S9.59,11,10,11S10.75,11.34,10.75,11.75z M13.75,11.75c0,0.41-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75S12.59,11,13,11S13.75,11.34,13.75,11.75z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v7h-4v-1h-4v1H6V4H18z M6,20 v-7h12v7H6z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,3L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M18,19H6v-8.9l6-4.58l6,4.58V19z M9,14 c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S9,13.45,9,14z M12,13c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1 C11,13.45,11.45,13,12,13z M15,14c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S15,14.55,15,14z\"></path>" } } }, - "10mp": { - "name": "10mp", + "roofing": { + "name": "roofing", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M13,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H13c-0.55,0-1,0.45-1,1v4C12,11.05,12.45,11.5,13,11.5z M13.5,7H15 v3h-1.5V7z\"></path></g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path></g><g><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon></g><g><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path></g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path></g></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,18h-2v-2h2V18z M15,14H9v6h6V14L15,14z M19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7-6.31L19,12h3L19,9.3z\"></path>" } } }, - "11mp": { - "name": "11mp", + "pool": { + "name": "pool", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path></g><g><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path></g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path></g><g><polygon points=\"9.5,11.5 11,11.5 11,5.5 8,5.5 8,7 9.5,7\"></polygon></g><g><polygon points=\"14.5,11.5 16,11.5 16,5.5 13,5.5 13,7 14.5,7\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1zm12 8.5h-.02.02zm-16.65-1c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z\"></path><circle cx=\"16.5\" cy=\"5.5\" r=\"2.5\"></circle>" } } }, - "12mp": { - "name": "12mp", + "food_bank": { + "name": "food_bank", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><path d=\"M16.5,10h-3V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H12V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5h4.5V10z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83,0.67,1.5,1.5,1.5v4h1 v-4c0.83,0,1.5-0.67,1.5-1.5v-3H11.5z M13,11.5v3h1V18h1V9.5C13.9,9.5,13,10.4,13,11.5z\"></path>" } } }, - "13mp": { - "name": "13mp", + "stairs": { + "name": "stairs", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><path d=\"M16.5,10.5v-4c0-0.55-0.45-1-1-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5C16.05,11.5,16.5,11.05,16.5,10.5z\"></path><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M18,6h-4.42 v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z\"></path></g>" } } }, - "14mp": { - "name": "14mp", + "no_stroller": { + "name": "no_stroller", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><polygon points=\"15,11.5 16.5,11.5 16.5,10 17.5,10 17.5,8.5 16.5,8.5 16.5,5.5 15,5.5 15,8.5 13.5,8.5 13.5,5.5 12,5.5 12,10 15,10\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M15,8.66v3.51l2,2v-7.9C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66z M19.78,22.61l-1.91-1.91C17.58,21.46,16.86,22,16,22c-1.1,0-2-0.9-2-2c0-0.86,0.54-1.58,1.3-1.87L14.17,17H7.43 c-0.85,0-1.31-1-0.76-1.65l2.69-3.16L1.39,4.22l1.41-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61z M12.17,15l-1.39-1.39 L9.6,15H12.17z M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.6,3.25,6.53,3.7 L8.1,5.27C8.71,5.1,9.35,5,10,5z\"></path></g>" } } }, - "15mp": { - "name": "15mp", + "meeting_room": { + "name": "meeting_room", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><path d=\"M16.5,10.5V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H12V9h3v1h-3v1.5h3.5C16.05,11.5,16.5,11.05,16.5,10.5z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 19V4h-4V3H5v16H3v2h12V6h2v15h4v-2h-2zm-6 0H7V5h6v14zm-3-8h2v2h-2z\"></path>" } } }, - "16mp": { - "name": "16mp", + "fire_extinguisher": { + "name": "fire_extinguisher", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M13,11.5h2.5c0.55,0,1-0.45,1-1V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H13c-0.55,0-1,0.45-1,1v4C12,11.05,12.45,11.5,13,11.5z M13.5,9H15v1.5h-1.5V9z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z\"></path></g>" } } }, - "17mp": { - "name": "17mp", + "no_cell": { + "name": "no_cell", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><path d=\"M13.25,11.5H15l1.46-4.71c0.19-0.64-0.29-1.29-0.96-1.29H12V7h2.62L13.25,11.5z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,6v8.17l2,2V3c0-1.1-0.9-1.99-2-1.99L7,1C6.15,1,5.42,1.55,5.13,2.3L8.83,6H17z M7,3h10v1H7V3z M21.19,21.19L19,19l-2-2 L7,7L5,5L2.81,2.81L1.39,4.22L5,7.83V21c0,1.1,0.9,2,2,2h10c0.85,0,1.58-0.55,1.87-1.3l0.91,0.91L21.19,21.19z M17,21H7v-1h10V21z M7,18V9.83L15.17,18H7z\"></path></g>" } } }, - "18mp": { - "name": "18mp", + "all_inclusive": { + "name": "all_inclusive", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><path d=\"M13,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H13c-0.55,0-1,0.45-1,1v4C12,11.05,12.45,11.5,13,11.5z M13.5,6.5H15 V8h-1.5V6.5z M13.5,9H15v1.5h-1.5V9z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z\"></path>" } } }, - "19mp": { - "name": "19mp", + "charging_station": { + "name": "charging_station", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\"></polygon><path d=\"M16.5,10.5v-4c0-0.55-0.45-1-1-1H13c-0.55,0-1,0.45-1,1V8c0,0.55,0.45,1,1,1h2v1h-3v1.5h3.5 C16.05,11.5,16.5,11.05,16.5,10.5z M15,8h-1.5V6.5H15V8z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.5,11l-3,6v-4h-2l3-6v4H14.5z M17,3H7v1h10V3 M17,20H7v1h10V20 M17,1c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2H17L17,1z M7,18h10V6H7V18L7,18z\"></path></g>" } } }, - "20mp": { - "name": "20mp", + "dry": { + "name": "dry", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M14,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H14c-0.55,0-1,0.45-1,1v4C13,11.05,13.45,11.5,14,11.5z M14.5,7H16v3 h-1.5V7z\"></path><path d=\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z\"></path></g>" } } }, - "21mp": { - "name": "21mp", + "countertops": { + "name": "countertops", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"14.5,11.5 16,11.5 16,5.5 13,5.5 13,7 14.5,7\"></polygon><path d=\"M12,10H9V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H7.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H12V10z\"></path><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M15,17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5v6H15V17z M15,14h1.5v1.5H15V14z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,10h-4V7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V4H4v4 c0,1.1,0.9,2,2,2H2v2h2v8h16v-8h2V10z M6,6h2v2H6V6z M6,18v-6h5v6H6z M18,18h-5v-6h5V18z\"></path>" } } }, - "22mp": { - "name": "22mp", + "child_care": { + "name": "child_care", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\"></path><path d=\"M17.5,10h-3V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H13V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5h4.5V10z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"14.5\" cy=\"10.5\" r=\"1.25\"></circle><circle cx=\"9.5\" cy=\"10.5\" r=\"1.25\"></circle><path d=\"M22.94 11.34c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zm-7 3c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3z\"></path>" } } }, - "23mp": { - "name": "23mp", + "beach_access": { + "name": "beach_access", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\"></path><path d=\"M17.5,10.5v-4c0-0.55-0.45-1-1-1H13V7h3v1h-2v1h2v1h-3v1.5h3.5C17.05,11.5,17.5,11.05,17.5,10.5z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 19.57l-1.427 1.428-6.442-6.442 1.43-1.428zM13.12 3c-2.58 0-5.16.98-7.14 2.95l-.01.01c-3.95 3.95-3.95 10.36 0 14.31l14.3-14.31C18.3 3.99 15.71 3 13.12 3zM6.14 17.27C5.4 16.03 5 14.61 5 13.12c0-.93.16-1.82.46-2.67.19 1.91.89 3.79 2.07 5.44l-1.39 1.38zm2.84-2.84C7.63 12.38 7.12 9.93 7.6 7.6c.58-.12 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.56l-5.45 5.45zm1.47-8.97c.85-.3 1.74-.46 2.67-.46 1.49 0 2.91.4 4.15 1.14l-1.39 1.39c-1.65-1.18-3.52-1.88-5.43-2.07z\"></path>" } } }, - "24mp": { - "name": "24mp", + "no_photography": { + "name": "no_photography", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M17,12.5h-3.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5C18,12.95,17.55,12.5,17,12.5z M16.5,15.5H15V14h1.5V15.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\"></path><polygon points=\"16,11.5 17.5,11.5 17.5,10 18.5,10 18.5,8.5 17.5,8.5 17.5,5.5 16,5.5 16,8.5 14.5,8.5 14.5,5.5 13,5.5 13,10 16,10\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L20,17.17V7h-4.05l-1.83-2H9.88 L8.9,6.07z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2L2.1,2.1l19.8,19.8L20.49,23.31z M9.19,12.02C9.08,12.33,9,12.65,9,13c0,1.66,1.34,3,3,3c0.35,0,0.67-0.08,0.98-0.19L9.19,12.02z M16.17,19l-1.68-1.68 C13.76,17.75,12.91,18,12,18c-2.76,0-5-2.24-5-5c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12H16.17z M14.81,11.98l2.07,2.07 C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5c-0.36,0-0.71,0.04-1.06,0.12l2.07,2.07C13.85,10.49,14.51,11.15,14.81,11.98z\"></path></g></g>" } } }, - "2mp": { - "name": "2mp", + "ac_unit": { + "name": "ac_unit", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M14.5,10h-3V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H10V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5h4.5V10z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z\"></path>" } } }, - "30fps_select": { - "name": "30fps_select", + "rv_hookup": { + "name": "rv_hookup", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M4,4v2h5v2H5v2h4v2H4v2h5c1.1,0,2-0.9,2-2v-1.5C11,9.67,10.83,9,10,9c0.83,0,1-0.67,1-1.5V6c0-1.1-0.9-2-2-2H4z M18,4 c1.1,0,2,0.9,2,2v6c0,1.1-0.9,2-2,2h-3c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H18z M18,6h-3v6h3V6z M5,22H3v-5h2V22z M9,22H7v-5h2V22 z M13,22h-2v-5h2V22z M21,22h-6v-5h6V22z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z\"></path>" } } }, - "3mp": { - "name": "3mp", + "holiday_village": { + "name": "holiday_village", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M7,4L2.5,8.5V16h9V8.5L7,4z M10,14.5H7.75v-2.25h-1.5v2.25H4V9.12l3-3l3,3V14.5z M7.75,10.75h-1.5v-1.5h1.5V10.75z M14.5,16 V7.26L11.24,4H9.12L13,7.88V16H14.5z M17.5,16V6.02L15.48,4h-2.12L16,6.64V16H17.5z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M14.5,10.5v-4c0-0.55-0.45-1-1-1H10V7h3v1h-2v1h2v1h-3v1.5h3.5C14.05,11.5,14.5,11.05,14.5,10.5z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M8,4l-6,6v10h12V10L8,4z M12,18H9v-3H7v3H4v-7.17l4-4l4,4V18z M9,13H7v-2h2V13z M18,20V8.35L13.65,4h-2.83L16,9.18V20H18z M22,20V6.69L19.31,4h-2.83L20,7.52V20H22z\"></path>" } } }, - "4mp": { - "name": "4mp", + "family_restroom": { + "name": "family_restroom", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><polygon points=\"12.5,11.5 14,11.5 14,10 15,10 15,8.5 14,8.5 14,5.5 12.5,5.5 12.5,8.5 11,8.5 11,5.5 9.5,5.5 9.5,10 12.5,10\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z\"></path></g>" } } }, - "5mp": { - "name": "5mp", + "wheelchair_pickup": { + "name": "wheelchair_pickup", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M14.5,10.5V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H10V9h3v1h-3v1.5h3.5C14.05,11.5,14.5,11.05,14.5,10.5z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z\"></path></g>" } } }, - "60fps_select": { - "name": "60fps_select", + "room_preferences": { + "name": "room_preferences", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18,6v6h-3V6H18z M18,4h-3c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M11,6V4H6 C4.9,4,4,4.9,4,6v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H6V6H11z M9,10v2H6v-2H9z M5,22H3v-5h2V22z M9,22H7v-5h2 V22z M13,22h-2v-5h2V22z M21,22h-6v-5h6V22z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z M19,4v6h-2V6h-2v6h-2V5H7v14h5v2H3v-2h2V3h10v1H19z M12,13h-2v-2h2V13z\"></path></g>" } } }, - "6mp": { - "name": "6mp", + "no_backpack": { + "name": "no_backpack", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,11.5h2.5c0.55,0,1-0.45,1-1V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H11c-0.55,0-1,0.45-1,1v4C10,11.05,10.45,11.5,11,11.5z M11.5,9H13v1.5h-1.5V9z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect><path d=\"M6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V2h3v2h4V2h3v2.14c1.72,0.45,3,2,3,3.86v9.17l-2-2V8c0-1.1-0.9-2-2-2H8.83L6.98,4.15z M14.83,12l1.67,1.67V12H14.83z M19.78,22.61l-0.85-0.85C18.65,21.91,18.34,22,18,22H6c-1.1,0-2-0.9-2-2V8 c0-0.36,0.06-0.69,0.15-1.02L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M17.17,20l-6-6H7.5v-2h1.67L6,8.83V20H17.17z\"></path>" } } }, - "7mp": { - "name": "7mp", + "business_center": { + "name": "business_center", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11.25,11.5H13l1.46-4.71c0.19-0.64-0.29-1.29-0.96-1.29H10V7h2.62L11.25,11.5z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zM4 9h16v5h-5v-3H9v3H4V9zm9 6h-2v-2h2v2zm6 4H5v-3h4v1h6v-1h4v3z\"></path>" } } }, - "8mp": { - "name": "8mp", + "tty": { + "name": "tty", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M11,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H11c-0.55,0-1,0.45-1,1v4C10,11.05,10.45,11.5,11,11.5z M11.5,6.5H13 V8h-1.5V6.5z M11.5,9H13v1.5h-1.5V9z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M16,6h-2V4h2V6z M18,7h-2v2h2V7z M19,9h2V7h-2V9z M19,4h-2v2h2V4z M15,7h-2v2h2V7z M19,10h-2v2h2V10z M16,10h-2v2h2V10z M13,4h-2v2h2V4z M20,15.82v4.15c0,0.56-0.47,1.03-1.03,1c-2.89-0.17-5.6-1.03-7.97-2.4C8.27,16.99,6.01,14.73,4.43,12 C3.05,9.63,2.2,6.92,2.03,4.03C2,3.47,2.47,3,3.03,3h4.15c0.48,0,0.89,0.34,0.98,0.8L8.9,7.48c0.07,0.33-0.04,0.67-0.27,0.9 L6.1,10.9c1.43,2.5,3.5,4.57,6,6l2.52-2.52c0.24-0.24,0.58-0.34,0.9-0.27l3.67,0.73C19.66,14.93,20,15.34,20,15.82z M5.18,8.99 l1.65-1.65L6.36,5H4.13C4.3,6.37,4.66,7.71,5.18,8.99z M18,16.64l-2.34-0.47l-1.65,1.65c1.28,0.52,2.63,0.87,3.99,1.05V16.64z M20,4v2h2V4H20z M20,12h2v-2h-2V12z M13,10h-2v2h2V10z\"></path></g>" } } }, - "9mp": { - "name": "9mp", + "airport_shuttle": { + "name": "airport_shuttle", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\"></path><path d=\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M14.5,10.5v-4c0-0.55-0.45-1-1-1H11c-0.55,0-1,0.45-1,1V8c0,0.55,0.45,1,1,1h2v1h-3v1.5h3.5 C14.05,11.5,14.5,11.05,14.5,10.5z M13,8h-1.5V6.5H13V8z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z\"></path>" } } }, - "add_a_photo": { - "name": "add_a_photo", + "cottage": { + "name": "cottage", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,3.5L5.5,6.94V5.5H4v2.58L1.75,9.8l0.91,1.19L4,9.97V17h12V9.97l1.34,1.02l0.91-1.19L10,3.5z M14.5,15.5h-3.75v-3h-1.5v3 H5.5V8.82L10,5.39l4.5,3.44V15.5z M8.5,1.5c0,0.9-0.6,2.25-2.25,2.25C5.91,3.76,5.5,3.9,5.5,4.5H4c0-0.9,0.6-2.25,2.25-2.25 C6.59,2.24,7,2.1,7,1.5H8.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21 6h-3.17L16 4h-6v2h5.12l1.83 2H21v12H5v-9H3v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 6h3V4H5V1H3v3H0v2h3v3h2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M18,19h-5v-4h-2v4H6v-8.9l6-4.58 l6,4.58V19z M10,1c0,1.66-1.34,3-3,3C6.45,4,6,4.45,6,5H4c0-1.66,1.34-3,3-3c0.55,0,1-0.45,1-1H10z\"></path>" } } }, - "add_photo_alternate": { - "name": "add_photo_alternate", + "rice_bowl": { + "name": "rice_bowl", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 20H4V6h9V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2v9zm-7.79-3.17l-1.96-2.36L5.5 18h11l-3.54-4.71zM20 4V1h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V6h3V4h-3z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.88V20h-4v-1.12l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39H19.66 M12,2 C6.48,2,2,6.48,2,12c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25h0C22,6.48,17.52,2,12,2L12,2z M10,12V4.26 C10.64,4.1,11.31,4,12,4s1.36,0.1,2,0.26V12H10L10,12z M16,12V5.08c2.39,1.39,4,3.96,4,6.92H16L16,12z M4,12 c0-2.95,1.61-5.53,4-6.92V12H4L4,12z\"></path>" } } }, - "add_to_photos": { - "name": "add_to_photos", + "soap": { + "name": "soap", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M16.5,1 C15.67,1,15,1.67,15,2.5S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z M20.75,16c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6 c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75 c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4 c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z\"></path></g>" } } }, - "adjust": { - "name": "adjust", + "chalet": { + "name": "chalet", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M8.27,6.5L2.5,12.27l1.06,1.06l0.88-0.88L4.5,16H12v-3.62l0.94,0.94L14,12.27L8.27,6.5z M10.5,14.5H9V12H7.5v2.5H5.94v-3.55 l2.32-2.32l2.23,2.25V14.5z M18,6.5h-1.39l0.9,0.9l-0.35,0.35L15.9,6.5H15v0.9l1.25,1.25L15.9,9L15,8.11V9.5h-0.5V8.11L13.6,9 l-0.35-0.35L14.5,7.4V6.5h-0.9l-1.25,1.25L12,7.4l0.9-0.9H11.5V6h1.39L12,5.1l0.35-0.35L13.6,6h0.9V5.1l-1.25-1.25L13.6,3.5l0.9,0.9 V3H15v1.39l0.9-0.9l0.35,0.35L15,5.1V6h0.9l1.25-1.25L17.5,5.1L16.61,6H18V6.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17.5,15L10,7.5L2.5,15l1.41,1.41L5,15.33V20h10v-4.67l1.09,1.09L17.5,15z M13,18h-2v-3H9v3H7v-4.67l3-3l3,3V18z M22,7.5 h-1.19l0.75,0.75l-0.71,0.71L19.39,7.5H18.5v0.89l1.45,1.45l-0.71,0.71L18.5,9.81V11h-1V9.81l-0.75,0.75l-0.71-0.71l1.45-1.45V7.5 h-0.89l-1.45,1.45l-0.71-0.71l0.75-0.75H14v-1h1.19l-0.75-0.75l0.71-0.71l1.45,1.45h0.89V5.61l-1.45-1.45l0.71-0.71l0.75,0.75V3h1 v1.19l0.75-0.75l0.71,0.71L18.5,5.61V6.5h0.89l1.45-1.45l0.71,0.71L20.81,6.5H22V7.5z\"></path>" } } }, - "animation": { - "name": "animation", + "do_not_step": { + "name": "do_not_step", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M15,2c-2.71,0-5.05,1.54-6.22,3.78c-1.28,0.67-2.34,1.72-3,3C3.54,9.95,2,12.29,2,15c0,3.87,3.13,7,7,7 c2.71,0,5.05-1.54,6.22-3.78c1.28-0.67,2.34-1.72,3-3C20.46,14.05,22,11.71,22,9C22,5.13,18.87,2,15,2z M9,20c-2.76,0-5-2.24-5-5 c0-1.12,0.37-2.16,1-3c0,3.87,3.13,7,7,7C11.16,19.63,10.12,20,9,20z M12,17c-2.76,0-5-2.24-5-5c0-1.12,0.37-2.16,1-3 c0,3.86,3.13,6.99,7,7C14.16,16.63,13.12,17,12,17z M16.7,13.7C16.17,13.89,15.6,14,15,14c-2.76,0-5-2.24-5-5 c0-0.6,0.11-1.17,0.3-1.7C10.83,7.11,11.4,7,12,7c2.76,0,5,2.24,5,5C17,12.6,16.89,13.17,16.7,13.7z M19,12c0-3.86-3.13-6.99-7-7 c0.84-0.63,1.87-1,3-1c2.76,0,5,2.24,5,5C20,10.12,19.63,11.16,19,12z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07 L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15z M21.18,21.2l-1.41,1.41l-5.94-5.94L10.5,20H1v-2.63 c0-0.84,0.52-1.57,1.3-1.88c0.58-0.23,1.28-0.56,1.97-1.02l1.38,1.38C5.74,15.95,5.87,16,6,16s0.26-0.05,0.36-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.28-1.28c0.27-0.24,0.53-0.51,0.77-0.8l1.27,1.27c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.4-1.4c0.19-0.34,0.34-0.72,0.45-1.12l1.71,1.72c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.19-0.2,0.19-0.5,0.01-0.7l-7.9-7.9l1.42-1.41L21.18,21.2z M12.42,15.26l-1.67-1.68L7.42,16.9c-0.78,0.78-2.05,0.78-2.83-0.01 L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z\"></path></g>" } } }, - "assistant": { - "name": "assistant", + "checkroom": { + "name": "checkroom", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-1l1.88-4.12L18 11l-4.12-1.88L12 5l-1.88 4.12L6 11l4.12 1.88z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z\"></path></g>" } } }, - "assistant_photo": { - "name": "assistant_photo", + "backpack": { + "name": "backpack", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.36 6l.08.39.32 1.61H18v6h-3.36l-.08-.39-.32-1.61H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z\"></path>" + "path": "<g><path d=\"M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59,4,6.14,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.14,18.72,4.59,17,4.14z M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M16.5,12v4h-2v-2h-7v-2H16.5z\"></path><path d=\"M0,0v24h24V0H0z\" fill=\"none\"></path></g>" } } }, - "audiotrack": { - "name": "audiotrack", + "sports_bar": { + "name": "sports_bar", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.5,7.5h-1.27C14.47,7.05,14.6,6.54,14.6,6c0-1.79-1.46-3.25-3.25-3.25c-0.24,0-0.47,0.03-0.69,0.07 C10.05,2.31,9.26,2,8.4,2C6.95,2,5.7,2.89,5.17,4.15C3.91,4.55,3,5.73,3,7.12c0,1.51,1.07,2.77,2.5,3.06V17H14v-1.5h1.5 c0.83,0,1.5-0.67,1.5-1.5V9C17,8.17,16.33,7.5,15.5,7.5z M12.5,15.5H7v-5.37c0.51-0.15,0.97-0.43,1.34-0.8l1.39-1.39 c0.28-0.28,0.66-0.44,1.06-0.44h1.71V15.5z M10.79,6c-0.8,0-1.55,0.31-2.12,0.88L7.28,8.27C6.96,8.59,6.51,8.78,6.02,8.75 C5.2,8.7,4.54,8.02,4.5,7.2C4.46,6.27,5.2,5.5,6.12,5.5c0,0,0,0,0,0c0.14,0,0.27-0.1,0.29-0.24C6.53,4.26,7.39,3.5,8.4,3.5 c0.71,0,1.34,0.37,1.69,0.93c0.07,0.12,0.23,0.15,0.34,0.08c0.27-0.16,0.58-0.26,0.92-0.26c0.96,0,1.75,0.79,1.75,1.75H10.79z M15.5,14H14V9h1.5V14z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6zm-2 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15,19H8l0-6.63c1.26-0.34,2.11-1.27,2.77-1.99C11.6,9.47,12.08,9,13,9l2,0V19z M10,2.02c-1.89,0-3.51,1.11-4.27,2.71 C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,21h11v-2h2c1.1,0,2-0.9,2-2v-6c0-1.1-0.9-2-2-2h-1.56C17.79,8.41,18,7.73,18,7 c0-2.21-1.79-4-4-4c-0.34,0-0.66,0.05-0.98,0.13C12.2,2.45,11.16,2.02,10,2.02L10,2.02z M7,10.5c-1.1,0-2-0.9-2-2 c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65 c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5C7,10.5,7,10.5,7,10.5L7,10.5z M17,17v-6h2v6H17 L17,17z\"></path>" } } }, - "autofps_select": { - "name": "autofps_select", + "hot_tub": { + "name": "hot_tub", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"12.03,6.3 11.97,6.3 10.95,9.19 13.05,9.19\"></polygon><rect height=\"5\" width=\"2\" x=\"3\" y=\"17\"></rect><path d=\"M12,15c3.31,0,6-2.69,6-6s-2.69-6-6-6S6,5.69,6,9S8.69,15,12,15z M11.37,5h1.25l2.63,7h-1.21l-0.63-1.79h-2.83L9.96,12 H8.74L11.37,5z\"></path><rect height=\"5\" width=\"2\" x=\"7\" y=\"17\"></rect><rect height=\"5\" width=\"2\" x=\"11\" y=\"17\"></rect><rect height=\"5\" width=\"6\" x=\"15\" y=\"17\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"7\" cy=\"6\" r=\"2\"></circle><path d=\"M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zM17.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06zm-4 0c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06z\"></path>" } } }, - "auto_awesome": { - "name": "auto_awesome", + "iron": { + "name": "iron", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,5.5c-1.1,0-2,0.9-2,2V11c0,0.28-0.22,0.5-0.5,0.5H14V8c0-1.1-0.9-2-2-2H8C6.9,6,6,6.9,6,8h1.5c0-0.28,0.22-0.5,0.5-0.5 h4c0.28,0,0.5,0.22,0.5,0.5v1H5c-1.66,0-3,1.34-3,3v2.5h12V13h0.5c1.1,0,2-0.9,2-2V7.5C16.5,7.22,16.72,7,17,7h1V5.5H17z M12.4,13 H3.6v-0.8c0-0.88,0.72-1.6,1.6-1.6h7.2V13z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><polygon points=\"19,9 20.25,6.25 23,5 20.25,3.75 19,1 17.75,3.75 15,5 17.75,6.25\"></polygon><polygon points=\"19,15 17.75,17.75 15,19 17.75,20.25 19,23 20.25,20.25 23,19 20.25,17.75\"></polygon><path d=\"M11.5,9.5L9,4L6.5,9.5L1,12l5.5,2.5L9,20l2.5-5.5L17,12L11.5,9.5z M9.99,12.99L9,15.17l-0.99-2.18L5.83,12l2.18-0.99 L9,8.83l0.99,2.18L12.17,12L9.99,12.99z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,6c-1.66,0-3,1.34-3,3v4c0,0.55-0.45,1-1,1v-4c0-1.66-1.34-3-3-3h-4c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1h4 c0.55,0,1,0.45,1,1v1H6c-2.21,0-4,1.79-4,4v3h15v-2c1.66,0,3-1.34,3-3V9c0-0.55,0.45-1,1-1h1V6H21z M15,16H4v-1c0-1.1,0.9-2,2-2h9 V16z\"></path>" } } }, - "auto_awesome_mosaic": { - "name": "auto_awesome_mosaic", + "bathtub": { + "name": "bathtub", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><circle cx=\"6.5\" cy=\"6.5\" r=\"1.5\"></circle><path d=\"M16,11V5.12C16,3.95,15.05,3,13.88,3c-0.56,0-1.1,0.22-1.5,0.62l-0.83,0.83c-0.17-0.08-0.37-0.12-0.57-0.12 c-0.28,0-0.54,0.08-0.76,0.23l1.93,1.93c0.14-0.22,0.23-0.48,0.23-0.76c0-0.2-0.05-0.39-0.12-0.57l0.83-0.83 C13.3,4.12,13.58,4,13.88,4C14.5,4,15,4.5,15,5.12V11H9.1c-0.2-0.14-0.38-0.3-0.55-0.48L7.62,9.49C7.49,9.35,7.33,9.23,7.16,9.15 C6.95,9.05,6.72,9,6.49,9C5.67,9,5,9.67,5,10.5V11H3v4c0,0.55,0.45,1,1,1v0.5C4,16.78,4.22,17,4.5,17h11c0.28,0,0.5-0.22,0.5-0.5 V16c0.55,0,1-0.45,1-1v-4H16z M16,15H4v-3h12V15z\"></path></g></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,5v14c0,1.1,0.89,2,2,2h6V3H5C3.89,3,3,3.9,3,5z M9,19H5V5h4V19z\"></path><path d=\"M19,3h-6v8h8V5C21,3.9,20.1,3,19,3z M19,9h-4V5h4V9z\"></path><path d=\"M13,21h6c1.1,0,2-0.9,2-2v-6h-8V21z M15,15h4v4h-4V15z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"7\" cy=\"7\" r=\"2\"></circle><path d=\"M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1h14 c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z M20,19H4v-4h16V19z\"></path></g></g>" } } }, - "auto_awesome_motion": { - "name": "auto_awesome_motion", + "umbrella": { + "name": "umbrella", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M14,2H4C2.9,2,2,2.9,2,4v10h2V4h10V2z M18,6H8C6.9,6,6,6.9,6,8v10h2V8h10V6z M20,10h-8c-1.1,0-2,0.9-2,2v8 c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-8C22,10.9,21.1,10,20,10z M20,20h-8v-8h8V20z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z\"></path></g>" } } }, - "auto_fix_high": { - "name": "auto_fix_high", + "baby_changing_station": { + "name": "baby_changing_station", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><polygon points=\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\"></polygon><polygon points=\"8.5,7 9.44,4.94 11.5,4 9.44,3.06 8.5,1 7.56,3.06 5.5,4 7.56,4.94\"></polygon><polygon points=\"20,12.5 19.06,14.56 17,15.5 19.06,16.44 20,18.5 20.94,16.44 23,15.5 20.94,14.56\"></polygon><path d=\"M17.71,9.12l-2.83-2.83C14.68,6.1,14.43,6,14.17,6c-0.26,0-0.51,0.1-0.71,0.29L2.29,17.46c-0.39,0.39-0.39,1.02,0,1.41 l2.83,2.83C5.32,21.9,5.57,22,5.83,22s0.51-0.1,0.71-0.29l11.17-11.17C18.1,10.15,18.1,9.51,17.71,9.12z M14.17,8.42l1.41,1.41 L14.41,11L13,9.59L14.17,8.42z M5.83,19.59l-1.41-1.41L11.59,11L13,12.41L5.83,19.59z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z\"></path></g>" } } }, - "auto_fix_normal": { - "name": "auto_fix_normal", + "crib": { + "name": "crib", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16,12V9.5C16,8.67,15.33,8,14.5,8H10V4H7C5.34,4,4,5.34,4,7v5c0,0.83,0.67,1.5,1.5,1.5H7v2.27 c-0.59-0.31-1.13-0.7-1.59-1.17l-1.06,1.06C5.79,17.1,7.79,18,10,18c2.21,0,4.21-0.9,5.66-2.34l-1.06-1.06 c-0.47,0.47-1,0.86-1.59,1.17l0-2.27h1.5C15.33,13.5,16,12.83,16,12z M11.5,16.33c-0.48,0.11-0.98,0.17-1.5,0.17 s-1.02-0.06-1.5-0.17V13.5h3V16.33z M5.5,12V7c0-0.83,0.67-1.5,1.5-1.5h1.5v4h6V12H5.5z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><polygon points=\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\"></polygon><path d=\"M17.71,9.12l-2.83-2.83C14.68,6.1,14.43,6,14.17,6c-0.26,0-0.51,0.1-0.71,0.29L2.29,17.46c-0.39,0.39-0.39,1.02,0,1.41 l2.83,2.83C5.32,21.9,5.57,22,5.83,22s0.51-0.1,0.71-0.29l11.17-11.17C18.1,10.15,18.1,9.51,17.71,9.12z M14.17,8.42l1.41,1.41 L14.41,11L13,9.59L14.17,8.42z M5.83,19.59l-1.41-1.41L11.59,11L13,12.41L5.83,19.59z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,9h-6V4H8C5.79,4,4,5.79,4,8v6c0,1.1,0.9,2,2,2h2v2.93c-0.61-0.35-1.16-0.78-1.65-1.27l-1.42,1.42 C6.74,20.88,9.24,22,12,22c2.76,0,5.26-1.12,7.07-2.93l-1.42-1.42c-0.49,0.49-1.05,0.92-1.65,1.27V16h2c1.1,0,2-0.9,2-2v-3 C20,9.9,19.1,9,18,9z M14,19.75C13.36,19.91,12.69,20,12,20c-0.69,0-1.36-0.09-2-0.25V16h4V19.75z M18,14H6V8c0-1.1,0.9-2,2-2h2v5h8 V14z\"></path>" } } }, - "auto_fix_off": { - "name": "auto_fix_off", + "golf_course": { + "name": "golf_course", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><polygon points=\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\"></polygon><path d=\"M14.17,8.42l1.41,1.41l-1.46,1.46l1.41,1.41l2.17-2.17c0.39-0.39,0.39-1.02,0-1.41l-2.83-2.83C14.68,6.1,14.43,6,14.17,6 c-0.26,0-0.51,0.1-0.71,0.29l-2.17,2.17l1.41,1.41L14.17,8.42z\"></path><path d=\"M1.39,4.22l7.07,7.07l-6.17,6.17c-0.39,0.39-0.39,1.02,0,1.41l2.83,2.83C5.32,21.9,5.57,22,5.83,22s0.51-0.1,0.71-0.29 l6.17-6.17l7.07,7.07l1.41-1.41L2.81,2.81L1.39,4.22z M11.29,14.12l-5.46,5.46l-1.41-1.41l5.46-5.46L11.29,14.12z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"19.5\" cy=\"19.5\" r=\"1.5\"></circle><path d=\"M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z\"></path>" } } }, - "auto_stories": { - "name": "auto_stories", + "wash": { + "name": "wash", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><path d=\"M22.47,5.2C22,4.96,21.51,4.76,21,4.59v12.03C19.86,16.21,18.69,16,17.5,16c-1.9,0-3.78,0.54-5.5,1.58V5.48 C10.38,4.55,8.51,4,6.5,4C4.71,4,3.02,4.44,1.53,5.2C1.2,5.36,1,5.71,1,6.08v12.08c0,0.58,0.47,0.99,1,0.99 c0.16,0,0.32-0.04,0.48-0.12C3.69,18.4,5.05,18,6.5,18c2.07,0,3.98,0.82,5.5,2c1.52-1.18,3.43-2,5.5-2c1.45,0,2.81,0.4,4.02,1.04 c0.16,0.08,0.32,0.12,0.48,0.12c0.52,0,1-0.41,1-0.99V6.08C23,5.71,22.8,5.36,22.47,5.2z M10,16.62C8.86,16.21,7.69,16,6.5,16 c-1.19,0-2.36,0.21-3.5,0.62V6.71C4.11,6.24,5.28,6,6.5,6C7.7,6,8.89,6.25,10,6.72V16.62z M19,0.5l-5,5V15l5-4.5V0.5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M13.5,9C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1 c0,0-2.5,2.83-2.5,4.5C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z\"></path></g>" } } }, - "bedtime": { - "name": "bedtime", + "no_flash": { + "name": "no_flash", "keywords": [ - "image" + "places" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M8.66,4.15c-1.29,4.18,1.04,8.89,5.6,10.08C13.14,15.34,11.61,16,10,16c-3.31,0-6-2.69-6-6C4,7.15,5.99,4.76,8.66,4.15 M10,3c-3.91,0-7,3.17-7,7c0,3.87,3.14,7,7,7c2.6,0,4.86-1.42,6.07-3.51C10.81,13.31,7.6,7.58,10.24,3C10.16,3,10.08,3,10,3L10,3z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M9.27,4.49c-1.63,7.54,3.75,12.41,7.66,13.8C15.54,19.38,13.81,20,12,20c-4.41,0-8-3.59-8-8C4,8.55,6.2,5.6,9.27,4.49 M11.99,2.01C6.4,2.01,2,6.54,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02c-7.51-0.25-12.09-8.43-8.32-14.97 C12.22,2.01,12.11,2.01,11.99,2.01L11.99,2.01z\"></path></g>" + "path": "<g><path d=\"M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z M16,11.4l0,1.77l2,2V11c0-0.88-0.72-1.6-1.6-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16z M2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8c0.75,0,1.38-0.52,1.55-1.22 l2.54,2.54l1.41-1.41L2.1,2.1z M11.5,15.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S9.17,14,10,14S11.5,14.67,11.5,15.5z M15.96,20H4v-8.6h2.14h0.88l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5c0,1.93,1.57,3.5,3.5,3.5 c1.68,0,3.07-1.18,3.42-2.76l2.55,2.55L15.96,20z\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g>" } } }, - "blur_circular": { - "name": "blur_circular", + "carpenter": { + "name": "carpenter", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78-0.78,2.05,0,2.83l1.41,1.41c0.78,0.78,2.05,0.78,2.83,0l4.24-4.24 C20.51,16.28,20.51,15.01,19.73,14.23z M5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62z M14.07,19.88l-1.41-1.41l4.24-4.24 l1.41,1.41L14.07,19.88z\"></path>" } } }, - "blur_linear": { - "name": "blur_linear", + "balcony": { + "name": "balcony", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M8.5,8.5V10H7V8.5H8.5z M13,10V8.5h-1.5V10H13z M17,12v6H3v-6h1V8c0-3.31,2.69-6,6-6s6,2.69,6,6v4H17z M6.12,13.5H4.5v3 h1.62V13.5z M9.25,13.5H7.62v3h1.62V13.5z M9.25,12l0-8.44C7.12,3.92,5.5,5.77,5.5,8v4H9.25z M10.75,12h3.75V8 c0-2.23-1.62-4.08-3.75-4.44V12z M12.38,13.5h-1.62v3h1.62V13.5z M15.5,13.5h-1.62v3h1.62V13.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M10,10v2H8v-2H10z M16,12v-2h-2v2H16z M21,14v8H3v-8h1v-4c0-4.42,3.58-8,8-8s8,3.58,8,8v4H21z M7,16H5v4h2V16z M11,16H9v4h2 V16z M11,4.08C8.16,4.56,6,7.03,6,10v4h5V4.08z M13,14h5v-4c0-2.97-2.16-5.44-5-5.92V14z M15,16h-2v4h2V16z M19,16h-2v4h2V16z\"></path>" } } }, - "blur_off": { - "name": "blur_off", + "kitchen": { + "name": "kitchen", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"14\" cy=\"6\" r=\"1\"></circle><path d=\"M13.8 11.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\"></path><circle cx=\"18\" cy=\"10\" r=\"1\"></circle><circle cx=\"18\" cy=\"6\" r=\"1\"></circle><path d=\"M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\"></path><circle cx=\"10\" cy=\"6\" r=\"1\"></circle><circle cx=\"18\" cy=\"14\" r=\"1\"></circle><circle cx=\"6\" cy=\"18\" r=\"1\"></circle><path d=\"M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\"></path><circle cx=\"10\" cy=\"18\" r=\"1\"></circle><path d=\"M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\"></path><circle cx=\"6\" cy=\"14\" r=\"1\"></circle><path d=\"M2.5 5.27L6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 5h2v3H8zm0 7h2v5H8zm10-9.99L6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5z\"></path>" } } }, - "blur_on": { - "name": "blur_on", + "escalator_warning": { + "name": "escalator_warning", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z\"></path></g>" } } }, - "brightness_1": { - "name": "brightness_1", + "house": { + "name": "house", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,8.29V5h-2v1.57L10,4l-7,6h2v6h4v-4h2v4h4v-6h2L15,8.29z M14,15h-2v-4H8v4H6V8.75l4-3.43l4,3.43V15z\"></path><path d=\"M9,9h2c0-0.55-0.45-1-1-1C9.45,8,9,8.45,9,9z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3z M17,18h-2v-6H9v6H7v-7.81l5-4.5l5,4.5V18z\"></path><path d=\"M10,10h4c0-1.1-0.9-2-2-2S10,8.9,10,10z\"></path></g></g>" } } }, - "brightness_2": { - "name": "brightness_2", + "escalator": { + "name": "escalator", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07C10.9 17.77 12 14.95 12 12s-1.1-5.77-3.01-7.93C9.32 4.02 9.66 4 10 4m0-2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,5L19,5l0,14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3L19,3z M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z\"></path></g>" } } }, - "brightness_3": { - "name": "brightness_3", + "free_breakfast": { + "name": "free_breakfast", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.7 4.91C15.25 6.24 17 8.92 17 12s-1.75 5.76-4.3 7.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z\"></path>" } } }, - "brightness_4": { - "name": "brightness_4", + "corporate_fare": { + "name": "corporate_fare", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12.29 7c-.74 0-1.45.17-2.08.46 1.72.79 2.92 2.53 2.92 4.54s-1.2 3.75-2.92 4.54c.63.29 1.34.46 2.08.46 2.76 0 5-2.24 5-5s-2.24-5-5-5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,7V3H2v18h20V7H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2 h4V11z M18,15h-4v2h4V15z\"></path>" } } }, - "brightness_5": { - "name": "brightness_5", + "no_food": { + "name": "no_food", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-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>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M1,21h15.01v0.98c0,0.56-0.45,1.01-1.01,1.01H2.01C1.45,22.99,1,22.54,1,21.98V21z M20.49,23.31L16,18.83V19H1v-2h13.17 l-2-2H1c0-3.24,2.46-5.17,5.38-5.79l-5.7-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31z M10.17,13l-2-2c-1.42,0.06-3.52,0.56-4.55,2 H10.17z M23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z\"></path></g>" } } }, - "brightness_6": { - "name": "brightness_6", + "night_shelter": { + "name": "night_shelter", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5v11c3.03 0 5.5-2.47 5.5-5.5S15.03 6.5 12 6.5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4 C17,12.9,16.1,12,15,12z M9.75,12.5c-0.69,0-1.25,0.56-1.25,1.25C8.5,14.44,9.06,15,9.75,15S11,14.44,11,13.75 C11,13.06,10.44,12.5,9.75,12.5z\"></path>" } } }, - "brightness_7": { - "name": "brightness_7", + "bento": { + "name": "bento", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-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><circle cx=\"12\" cy=\"12\" r=\"2\"></circle>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M20,5H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,11h-6V7h6V11z M4,7h8v10H4V7z M14,17v-4h6v4H14z M9.5,12c0,0.83-0.67,1.5-1.5,1.5S6.5,12.83,6.5,12s0.67-1.5,1.5-1.5S9.5,11.17,9.5,12z\"></path></g>" } } }, - "broken_image": { - "name": "broken_image", + "cabin": { + "name": "cabin", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M5.5,4.5H4c0-0.9,0.6-2.25,2.25-2.25C6.59,2.24,7,2.1,7,1.5h1.5c0,0.9-0.6,2.25-2.25,2.25C5.91,3.76,5.5,3.9,5.5,4.5z M18.25,9.8l-0.91,1.19L16,9.97V17H4V9.97l-1.34,1.02L1.75,9.8L4,8.08V5.5h1.5v1.44L10,3.5L18.25,9.8z M10,5.39L8.54,6.5h2.91 L10,5.39z M5.5,8.82V9.5h9V8.82L13.42,8H6.58L5.5,8.82z M5.5,11v1.5h9V11H5.5z M14.5,15.5V14h-9v1.5H14.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41l-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M10,1c0,1.66-1.34,3-3,3C6.45,4,6,4.45,6,5H4c0-1.66,1.34-3,3-3c0.55,0,1-0.45,1-1H10z M12,3L6,7.58V6H4v3.11L1,11.4 l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M13.94,7h-3.89L12,5.52L13.94,7z M7.44,9h9.12L18,10.1V11H6v-0.9L7.44,9z M18,13v2H6v-2H18z M6,19v-2h12v2H6z\"></path>" } } }, - "brush": { - "name": "brush", + "water_damage": { + "name": "water_damage", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 16c.55 0 1 .45 1 1 0 1.1-.9 2-2 2-.17 0-.33-.02-.5-.05.31-.55.5-1.21.5-1.95 0-.55.45-1 1-1M18.67 3c-.26 0-.51.1-.71.29L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29zM7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,3L2,12h3v8h14v-8h3L12,3z M7,18v-7.81l5-4.5l5,4.5V18H7z M14,14c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,2-4,2-4 S14,12.9,14,14z\"></path>" } } }, - "burst_mode": { - "name": "burst_mode", + "room_service": { + "name": "room_service", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H11V7h10v10zm-3.57-4.38l-2 2.57L14 13.47l-2 2.52h8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.98 17H2v2h20v-2zM21 16c-.27-4.07-3.25-7.4-7.16-8.21.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18zm-9-6.42c2.95 0 5.47 1.83 6.5 4.41h-13c1.03-2.58 3.55-4.41 6.5-4.41z\"></path>" } } }, - "camera": { - "name": "camera", + "villa": { + "name": "villa", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.5,8.5C14.67,8.5,14,9.17,14,10h-1V3L3,6.89V17h14v-7C17,9.17,16.33,8.5,15.5,8.5z M4.5,7.91l7-2.72V10h-4v5.5h-3V7.91z M15.5,15.5H13V13h-1.5v2.5H9v-4h6.5V15.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.25 2.26l-.08-.04-.01.02C13.46 2.09 12.74 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-4.75-3.31-8.72-7.75-9.74zM19.41 9h-7.99l2.71-4.7c2.4.66 4.35 2.42 5.28 4.7zM13.1 4.08L10.27 9l-1.15 2L6.4 6.3C7.84 4.88 9.82 4 12 4c.37 0 .74.03 1.1.08zM5.7 7.09L8.54 12l1.15 2H4.26C4.1 13.36 4 12.69 4 12c0-1.85.64-3.55 1.7-4.91zM4.59 15h7.98l-2.71 4.7c-2.4-.67-4.34-2.42-5.27-4.7zm6.31 4.91L14.89 13l2.72 4.7C16.16 19.12 14.18 20 12 20c-.38 0-.74-.04-1.1-.09zm7.4-3l-4-6.91h5.43c.17.64.27 1.31.27 2 0 1.85-.64 3.55-1.7 4.91z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,10c-1.1,0-2,0.9-2,2h-1V3L3,8v13h18v-9C21,10.9,20.1,10,19,10z M5,9.37l9-3.46V12H9v7H5V9.37z M19,19h-3v-3h-2v3h-3v-5 h8V19z\"></path>" } } }, - "camera_alt": { - "name": "camera_alt", + "mood": { + "name": "mood", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\"></path>" } } }, - "camera_front": { - "name": "camera_front", + "snowboarding": { + "name": "snowboarding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M12.75,4.5c0.96,0,1.75-0.78,1.75-1.75C14.5,1.78,13.72,1,12.75,1S11,1.78,11,2.75C11,3.72,11.79,4.5,12.75,4.5z M17.6,16.93c-0.14-0.03-0.29,0-0.41,0.09c-0.55,0.4-1.27,0.58-1.99,0.43L14,17.19l-1-4.89l-2.6-2l1.46-2.35 c0.98,1.53,2.69,2.55,4.64,2.55V9c-1.47,0-2.75-0.79-3.45-1.97L12.3,5.76C12.11,5.43,11.68,5,11,5H6.5l-2,3l1.27,0.9L7.3,6.5h1.93 L7.48,9.32c-0.3,0.48-0.38,1.07-0.22,1.61L8,13.5l-2.75,1.83l-0.66-0.14c-0.72-0.15-1.3-0.61-1.65-1.2 c-0.07-0.12-0.19-0.21-0.34-0.24c-0.29-0.06-0.54,0.13-0.59,0.38c-0.03,0.11,0,0.25,0.06,0.36c0.36,0.63,1.09,1.42,2.31,1.68 l8.89,1.89L15,18.42c1.29,0.27,2.3-0.23,2.79-0.59c0.11-0.08,0.17-0.19,0.2-0.31C18.04,17.27,17.9,16.99,17.6,16.93z M7.3,15.76 l2.45-1.62L9.3,11.5l2.34,1.65l0.76,3.7L7.3,15.76z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zM11.99 8C13.1 8 14 7.1 14 6s-.9-2-2.01-2S10 4.9 10 6s.89 2 1.99 2zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7v-2h10v2zm0-3.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2h10v10.5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S14,4.1,14,3z M21.4,20.09c-0.23-0.05-0.46,0.02-0.64,0.17 c-0.69,0.6-1.64,0.88-2.6,0.67L17,20.69l-1-6.19l-3.32-2.67l1.8-2.89C15.63,10.78,17.68,12,20,12v-2c-1.85,0-3.44-1.12-4.13-2.72 l-0.52-1.21C15.16,5.64,14.61,5,13.7,5H8L5.5,9l1.7,1.06L9.1,7h2.35l-2.51,3.99c-0.28,0.45-0.37,1-0.25,1.52L9.5,16L6,18.35 l-0.47-0.1c-0.96-0.2-1.71-0.85-2.1-1.67c-0.1-0.21-0.28-0.37-0.51-0.42c-0.43-0.09-0.82,0.2-0.9,0.58C1.98,16.88,2,17.05,2.07,17.2 c0.58,1.24,1.71,2.2,3.15,2.51l12.63,2.69c1.44,0.31,2.86-0.11,3.9-1.01c0.13-0.11,0.21-0.26,0.24-0.41 C22.06,20.6,21.83,20.18,21.4,20.09z M8.73,18.93l3.02-2.03l-0.44-3.32l2.84,2.02l0.75,4.64L8.73,18.93z\"></path>" } } }, - "camera_rear": { - "name": "camera_rear", + "whatsapp": { + "name": "whatsapp", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect></g><g><g><g><path d=\"M15.69,4.23c-1.51-1.51-3.51-2.34-5.65-2.34c-4.4,0-7.98,3.58-7.98,7.98c0,1.41,0.37,2.78,1.07,3.99L2,18l4.23-1.11 c1.17,0.64,2.48,0.97,3.81,0.97h0c4.4,0,7.98-3.58,7.98-7.98C18.03,7.75,17.2,5.74,15.69,4.23z M10.05,16.51L10.05,16.51 c-1.19,0-2.36-0.32-3.38-0.92l-0.24-0.14L3.92,16.1l0.67-2.45L4.43,13.4c-0.66-1.06-1.01-2.28-1.01-3.53 c0-3.66,2.98-6.63,6.64-6.63c1.77,0,3.44,0.69,4.69,1.95c1.25,1.25,1.94,2.92,1.94,4.69C16.68,13.54,13.71,16.51,10.05,16.51z M13.69,11.55c-0.2-0.1-1.18-0.58-1.36-0.65c-0.18-0.07-0.32-0.1-0.45,0.1c-0.13,0.2-0.52,0.65-0.63,0.78 c-0.12,0.13-0.23,0.15-0.43,0.05c-0.2-0.1-0.84-0.31-1.6-0.99C8.62,10.31,8.22,9.66,8.1,9.46S8.09,9.15,8.19,9.05 c0.09-0.09,0.2-0.23,0.3-0.35s0.13-0.2,0.2-0.33c0.07-0.13,0.03-0.25-0.02-0.35c-0.05-0.1-0.45-1.08-0.61-1.48 C7.89,6.15,7.73,6.2,7.61,6.19C7.49,6.19,7.36,6.19,7.22,6.19c-0.13,0-0.35,0.05-0.53,0.25c-0.18,0.2-0.7,0.68-0.7,1.66 c0,0.98,0.71,1.93,0.81,2.06c0.1,0.13,1.41,2.15,3.41,3.01c0.48,0.21,0.85,0.33,1.14,0.42c0.48,0.15,0.91,0.13,1.26,0.08 c0.38-0.06,1.18-0.48,1.35-0.95c0.17-0.47,0.17-0.87,0.12-0.95C14.02,11.69,13.89,11.64,13.69,11.55z\"></path></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><path d=\"M19.05,4.91C17.18,3.03,14.69,2,12.04,2c-5.46,0-9.91,4.45-9.91,9.91c0,1.75,0.46,3.45,1.32,4.95L2.05,22l5.25-1.38 c1.45,0.79,3.08,1.21,4.74,1.21h0c0,0,0,0,0,0c5.46,0,9.91-4.45,9.91-9.91C21.95,9.27,20.92,6.78,19.05,4.91z M12.04,20.15 L12.04,20.15c-1.48,0-2.93-0.4-4.2-1.15l-0.3-0.18l-3.12,0.82l0.83-3.04l-0.2-0.31c-0.82-1.31-1.26-2.83-1.26-4.38 c0-4.54,3.7-8.24,8.24-8.24c2.2,0,4.27,0.86,5.82,2.42c1.56,1.56,2.41,3.63,2.41,5.83C20.28,16.46,16.58,20.15,12.04,20.15z M16.56,13.99c-0.25-0.12-1.47-0.72-1.69-0.81c-0.23-0.08-0.39-0.12-0.56,0.12c-0.17,0.25-0.64,0.81-0.78,0.97 c-0.14,0.17-0.29,0.19-0.54,0.06c-0.25-0.12-1.05-0.39-1.99-1.23c-0.74-0.66-1.23-1.47-1.38-1.72c-0.14-0.25-0.02-0.38,0.11-0.51 c0.11-0.11,0.25-0.29,0.37-0.43c0.12-0.14,0.17-0.25,0.25-0.41c0.08-0.17,0.04-0.31-0.02-0.43c-0.06-0.12-0.56-1.34-0.76-1.84 c-0.2-0.48-0.41-0.42-0.56-0.43C8.86,7.33,8.7,7.33,8.53,7.33c-0.17,0-0.43,0.06-0.66,0.31C7.65,7.89,7.01,8.49,7.01,9.71 c0,1.22,0.89,2.4,1.01,2.56c0.12,0.17,1.75,2.67,4.23,3.74c0.59,0.26,1.05,0.41,1.41,0.52c0.59,0.19,1.13,0.16,1.56,0.1 c0.48-0.07,1.47-0.6,1.67-1.18c0.21-0.58,0.21-1.07,0.14-1.18S16.81,14.11,16.56,13.99z\"></path></g></g></g>" } } }, - "camera_roll": { - "name": "camera_roll", + "safety_divider": { + "name": "safety_divider", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm6 13h-8v2H4V5h3V3h2v2h3v2h8v11zM9 15h2v2H9zm0-7h2v2H9zm4 7h2v2h-2zm0-7h2v2h-2zm4 7h2v2h-2zm0-7h2v2h-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,5h2v14h-2V5z M5,12c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C3,11.1,3.9,12,5,12z M7.78,13.58 C6.93,13.21,5.99,13,5,13s-1.93,0.21-2.78,0.58C1.48,13.9,1,14.62,1,15.43L1,16h8l0-0.57C9,14.62,8.52,13.9,7.78,13.58z M19,12 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C17,11.1,17.9,12,19,12z M21.78,13.58C20.93,13.21,19.99,13,19,13s-1.93,0.21-2.78,0.58 C15.48,13.9,15,14.62,15,15.43L15,16h8l0-0.57C23,14.62,22.52,13.9,21.78,13.58z\"></path>" } } }, - "cases": { - "name": "cases", + "people": { + "name": "people", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,9H1v11c0,1.11,0.89,2,2,2h17v-2H3V9z\"></path><path d=\"M18,5V3c0-1.1-0.9-2-2-2h-4c-1.1,0-2,0.9-2,2v2H5v11c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5H18z M12,3h4v2h-4V3z M21,16H7 V7h14V16z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\"></path>" } } }, - "center_focus_strong": { - "name": "center_focus_strong", + "history_edu": { + "name": "history_edu", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M7,4v0.73c-0.68-0.32-1.4-0.5-2.13-0.5c-1.28,0-2.56,0.49-3.54,1.46l2.12,2.12h1.41L4.76,9.13 c0.62,0.62,1.42,0.92,2.23,0.92c0,0,0.01,0,0.01,0V12H5v2.5C5,15.33,5.67,16,6.5,16H14c1.1,0,2-0.9,2-2V4H7z M6.99,9.05 c-0.43,0-0.84-0.12-1.19-0.36l0.15-1.87H3.87L2.84,5.79c0.61-0.36,1.31-0.55,2.03-0.55c1.07,0,2.07,0.42,2.83,1.17l1.41,1.41 l-0.6,0.6C8.1,8.82,7.56,9.05,6.99,9.05z M15,14c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2H8V9.87c0.44-0.15,0.86-0.39,1.22-0.74l0.6-0.6 L12.29,11H13v-0.71L8.4,5.7C8.28,5.57,8.14,5.48,8,5.37V5h7V14z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5 3c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm-7 0H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z\"></path></g></g>" } } }, - "center_focus_weak": { - "name": "center_focus_weak", + "pages": { + "name": "pages", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm7 3c-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 2zm7-11h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 2h6v6h-3l1-4-4 1V5zM5 5h6v3L7 7l1 4H5V5zm6 14H5v-6h3l-1 4 4-1v3zm8 0h-6v-3l4 1-1-4h3v6zm-4.37-4.37L12 13.72l-2.63.91.91-2.63-.91-2.63 2.63.91 2.63-.91-.91 2.63.91 2.63z\"></path>" } } }, - "circle": { - "name": "circle", + "groups": { + "name": "groups", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.47,2,2,6.47,2,12c0,5.53,4.47,10,10,10s10-4.47,10-10C22,6.47,17.53,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14 c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2 c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14 c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9 c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61C18,15.21,17.32,14.13,16.24,13.65z M8.07,16 c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69H8.07z M12,8 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8 M12,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C15,7.34,13.66,6,12,6L12,6z\"></path></g>" } } }, - "collections": { - "name": "collections", + "sentiment_neutral": { + "name": "sentiment_neutral", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 14h6v1.5H9z\"></path><circle cx=\"15.5\" cy=\"9.5\" r=\"1.5\"></circle><circle cx=\"8.5\" cy=\"9.5\" r=\"1.5\"></circle><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" } } }, - "collections_bookmark": { - "name": "collections_bookmark", + "cookie": { + "name": "cookie", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"8.75\" cy=\"7.25\" r=\"1.25\"></circle><circle cx=\"6.75\" cy=\"11.25\" r=\"1.25\"></circle><circle cx=\"12.5\" cy=\"12.5\" r=\".75\"></circle><path d=\"M17.96,9.2C16.53,9.17,15,7.64,15.81,5.82c-2.38,0.8-4.62-1.27-4.15-3.65C5.27,0.82,2,6.46,2,10c0,4.42,3.58,8,8,8 C14.71,18,18.43,13.94,17.96,9.2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5c0-3.2,2.69-6.69,6.65-6.51c0.3,2.04,1.93,3.68,3.99,3.96 c0.05,0.3,0.4,2.09,2.35,2.93C16.31,13.67,13.57,16.5,10,16.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 2v5l-1-.75L15 9V4h2zm3 12H8V4h5v9l3-2.25L19 13V4h1v12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"10.5\" cy=\"8.5\" r=\"1.5\"></circle><circle cx=\"8.5\" cy=\"13.5\" r=\"1.5\"></circle><circle cx=\"15\" cy=\"15\" r=\"1\"></circle><path d=\"M21.95,10.99c-1.79-0.03-3.7-1.95-2.68-4.22c-2.97,1-5.78-1.59-5.19-4.56C7.11,0.74,2,6.41,2,12c0,5.52,4.48,10,10,10 C17.89,22,22.54,16.92,21.95,10.99z M12,20c-4.41,0-8-3.59-8-8c0-3.31,2.73-8.18,8.08-8.02c0.42,2.54,2.44,4.56,4.99,4.94 c0.07,0.36,0.52,2.55,2.92,3.63C19.7,16.86,16.06,20,12,20z\"></path></g></g>" } } }, - "colorize": { - "name": "colorize", + "sports_hockey": { + "name": "sports_hockey", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M3,14v2h1v-3C3.45,13,3,13.45,3,14z\"></path></g><g><polygon points=\"12.32,13 11.1,10.34 14,4 11.8,4 10,7.94 8.2,4 6,4 8.9,10.34 10,12.74 11.5,16 15,16 15,13\"></polygon></g><g><path d=\"M16,13v3h1v-2C17,13.45,16.55,13,16,13z\"></path></g><g><polygon points=\"7.68,13 5,13 5,16 8.5,16 9.45,13.94 8.35,11.54\"></polygon></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.66 5.41l.92.92-2.69 2.69-.92-.92 2.69-2.69M17.67 3c-.26 0-.51.1-.71.29l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42l-2.34-2.34c-.2-.19-.45-.29-.7-.29zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z\"></path><path d=\"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z\"></path><g><path d=\"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z\"></path></g><path d=\"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z\"></path></g></g>" } } }, - "color_lens": { - "name": "color_lens", + "workspace_premium": { + "name": "workspace_premium", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,2C6.41,2,3.5,4.91,3.5,8.5c0,1.83,0.76,3.48,1.97,4.66V19L10,18l4.5,1v-5.82c1.23-1.18,2-2.84,2-4.68 C16.5,4.91,13.59,2,10,2z M13,17.13l-3-0.67l-3.03,0.67v-2.88C7.88,14.73,8.91,15,10,15c1.08,0,2.1-0.27,3-0.74V17.13z M10,13.5 c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S12.76,13.5,10,13.5z M8.14,11.35L10,9.94l1.85,1.41l-0.7-2.28L13,7.6h-2.27L10,5.35 L9.27,7.6H7l1.85,1.47L8.14,11.35z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z\"></path><circle cx=\"6.5\" cy=\"11.5\" r=\"1.5\"></circle><circle cx=\"9.5\" cy=\"7.5\" r=\"1.5\"></circle><circle cx=\"14.5\" cy=\"7.5\" r=\"1.5\"></circle><circle cx=\"17.5\" cy=\"11.5\" r=\"1.5\"></circle>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.68,13.69L12,11.93l2.31,1.76l-0.88-2.85L15.75,9h-2.84L12,6.19L11.09,9H8.25l2.31,1.84L9.68,13.69z M20,10 c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,2.03,0.76,3.87,2,5.28V23l6-2l6,2v-7.72C19.24,13.87,20,12.03,20,10z M12,4c3.31,0,6,2.69,6,6 s-2.69,6-6,6s-6-2.69-6-6S8.69,4,12,4z M12,19l-4,1.02v-3.1C9.18,17.6,10.54,18,12,18s2.82-0.4,4-1.08v3.1L12,19z\"></path>" } } }, - "compare": { - "name": "compare", + "sentiment_very_dissatisfied": { + "name": "sentiment_very_dissatisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24l-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z\"></path>" } } }, - "control_point": { - "name": "control_point", + "sports_soccer": { + "name": "sports_soccer", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10.5,5.45l1.55-1.08 c1.14,0.41,2.11,1.16,2.81,2.12l-0.48,1.67l-0.68,0.23L10.5,6.15V5.45z M13.01,9.13l-1.14,3.37H8.12L6.99,9.13L10,7.02L13.01,9.13 z M7.95,4.37L9.5,5.45v0.7L6.31,8.39L5.63,8.15L5.15,6.49C5.84,5.53,6.82,4.78,7.95,4.37z M6.8,13.55l-1.52,0.13 c-0.79-1-1.26-2.26-1.27-3.63l1.3-0.95L6,9.34l1.19,3.53L6.8,13.55z M11.53,15.8c-0.49,0.13-1,0.2-1.53,0.2s-1.04-0.08-1.53-0.2 l-0.81-1.74l0.32-0.55h4.04l0.32,0.55L11.53,15.8z M14.72,13.69l-1.52-0.13l-0.4-0.68L14,9.34l0.69-0.24l1.3,0.95 C15.98,11.42,15.51,12.68,14.72,13.69z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z\"></path></g></g>" } } }, - "control_point_duplicate": { - "name": "control_point_duplicate", + "sledding": { + "name": "sledding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M8.25,3.75C8.25,2.78,9.03,2,10,2s1.75,0.78,1.75,1.75S10.97,5.5,10,5.5S8.25,4.72,8.25,3.75z M18.85,16.93 c-0.51,1.58-2.21,2.44-3.78,1.93L1,14.28l0.31-0.95l3.13,1.02l0.46-1.43L1.77,11.9l0.31-0.95l1.42,0.46V8l4.4-1.87 c0.32-0.14,0.68-0.17,1.04-0.06c0.79,0.24,1.24,1.08,1,1.87L9.15,10.5l2.09-0.37c0.45-0.08,0.89,0.16,1.08,0.57l1.92,4.2l1.92,0.62 l-0.31,0.95l-2.85-0.93l-0.46,1.43l2.85,0.93c1.05,0.34,2.18-0.24,2.52-1.28c0.34-1.05-0.24-2.18-1.28-2.52l0.31-0.95 C18.5,13.66,19.36,15.35,18.85,16.93z M5,11.9l1.17,0.38c-0.31-0.38-0.43-0.89-0.28-1.39l0.8-2.62L5,9V11.9z M12.04,15.24 l-6.18-2.01l-0.46,1.43l6.18,2.01L12.04,15.24z M12.3,14.27l-1.12-2.46L7.7,12.78L12.3,14.27z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,3.4,14,4.5z M22.8,20.24c-0.68,2.1-2.94,3.25-5.04,2.57h0L1,17.36 l0.46-1.43l3.93,1.28l0.46-1.43L1.93,14.5l0.46-1.43L4,13.6V9.5l5.47-2.35c0.39-0.17,0.84-0.21,1.28-0.07 c0.95,0.31,1.46,1.32,1.16,2.27l-1.05,3.24L13,12.25c0.89-0.15,1.76,0.32,2.14,1.14l2.08,4.51l1.93,0.63l-0.46,1.43l-3.32-1.08 L14.9,20.3l3.32,1.08l0,0c1.31,0.43,2.72-0.29,3.15-1.61c0.43-1.31-0.29-2.72-1.61-3.15l0.46-1.43 C22.33,15.88,23.49,18.14,22.8,20.24z M6,14.25l1.01,0.33c-0.22-0.42-0.28-0.92-0.12-1.4L7.92,10L6,10.82V14.25z M13.94,18.41 l-6.66-2.16l-0.46,1.43l6.66,2.16L13.94,18.41z M14.63,17.05l-1.18-2.56l-3.97,0.89L14.63,17.05z\"></path>" } } }, - "crop": { - "name": "crop", + "emoji_symbols": { + "name": "emoji_symbols", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M5.21,14.09l-1.06,1.06C4.02,15.27,4,15.42,4,15.5s0.02,0.23,0.15,0.35C4.27,15.98,4.42,16,4.5,16 s0.23-0.02,0.35-0.15l0.35-0.35l0.71-0.71L5.21,14.09z\" fill=\"none\"></path><path d=\"M5.71,11.96c0-0.08-0.02-0.23-0.15-0.35s-0.28-0.15-0.35-0.15c-0.08,0-0.23,0.02-0.35,0.15 c-0.13,0.13-0.15,0.28-0.15,0.35c0,0.08,0.02,0.23,0.15,0.35l0.35,0.35l0.35-0.35C5.69,12.19,5.71,12.04,5.71,11.96z\" fill=\"none\"></path><rect height=\"1\" width=\"5\" x=\"4\" y=\"3\"></rect><polygon points=\"4,5 4,6 6,6 6,9 6.99,9 6.99,6 9,6 9,5\"></polygon><rect height=\".99\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.8428 13.8943)\" width=\"7.07\" x=\"10.31\" y=\"13.5\"></rect><path d=\"M12.71,12.71c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41 C11.68,13.1,12.32,13.1,12.71,12.71z\"></path><path d=\"M16.71,15.29c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0 C17.1,16.32,17.1,15.68,16.71,15.29z\"></path><path d=\"M12.5,9C13.33,9,14,8.33,14,7.5C14,7.47,14,4,14,4h2V3h-3v3.09C12.84,6.04,12.68,6,12.5,6C11.67,6,11,6.67,11,7.5 S11.67,9,12.5,9z\"></path><path d=\"M8.04,12.67l-1.41,1.41l-0.71-0.71l0.35-0.35c0.59-0.59,0.59-1.54,0-2.12c-0.29-0.29-0.68-0.44-1.06-0.44 c-0.38,0-0.77,0.15-1.06,0.44c-0.59,0.59-0.59,1.54,0,2.12l0.35,0.35l-1.06,1.06c-0.59,0.59-0.59,1.54,0,2.12 C3.73,16.85,4.12,17,4.5,17s0.77-0.15,1.06-0.44l1.06-1.06l1.41,1.41l0.71-0.71l-1.41-1.41v0l1.41-1.41L8.04,12.67z M4.85,12.32 c-0.13-0.13-0.15-0.28-0.15-0.35c0-0.08,0.02-0.23,0.15-0.35c0.13-0.13,0.28-0.15,0.35-0.15c0.08,0,0.23,0.02,0.35,0.15 s0.15,0.28,0.15,0.35c0,0.08-0.02,0.23-0.15,0.35l-0.35,0.35L4.85,12.32z M4.85,15.85C4.73,15.98,4.58,16,4.5,16 s-0.23-0.02-0.35-0.15C4.02,15.73,4,15.58,4,15.5s0.02-0.23,0.15-0.35l1.06-1.06l0.71,0.71L5.21,15.5L4.85,15.85z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><rect height=\"2\" width=\"8\" x=\"3\" y=\"2\"></rect><polygon points=\"6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7\"></polygon><rect height=\"2\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)\" width=\"11\" x=\"11.5\" y=\"16\"></rect><circle cx=\"14.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"19.5\" cy=\"19.5\" r=\"1.5\"></circle><path d=\"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z\"></path><path d=\"M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z\"></path></g></g>" } } }, - "crop_16_9": { - "name": "crop_16_9", + "emoji_nature": { + "name": "emoji_nature", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M16.96,4.8c-0.11-0.33-0.43-0.55-0.79-0.55c-0.02,0-0.04,0-0.06,0H15.5l-0.19-0.6C15.22,3.27,14.88,3,14.5,3h0 c-0.38,0-0.72,0.27-0.81,0.65l-0.19,0.6h-0.61c-0.02,0-0.04,0-0.06,0c-0.36,0-0.68,0.22-0.79,0.55c-0.12,0.35,0.03,0.73,0.35,0.92 l0.54,0.33l-0.24,0.77c-0.14,0.36-0.03,0.78,0.28,1.01C13.12,7.95,13.29,8,13.46,8c0.19,0,0.38-0.07,0.54-0.2l0.51-0.43l0.51,0.43 C15.16,7.93,15.35,8,15.54,8c0.17,0,0.34-0.05,0.49-0.16c0.31-0.23,0.43-0.65,0.28-1.01l-0.24-0.77l0.54-0.33 C16.93,5.53,17.08,5.15,16.96,4.8z M14.5,6C14.22,6,14,5.78,14,5.5C14,5.22,14.22,5,14.5,5S15,5.22,15,5.5C15,5.78,14.78,6,14.5,6 z\"></path><path d=\"M11.27,8.73c-0.36-0.36-0.8-0.59-1.27-0.68V7H9.5v1C8.86,8,8.22,8.24,7.73,8.73C7.6,8.87,7.41,9.05,7.2,9.26L5.74,8.71 C5.23,8.53,4.67,8.56,4.18,8.79C3.69,9.02,3.32,9.43,3.14,9.95c-0.36,1.01,0.13,2.1,1.09,2.53c-0.41,0.92-0.25,2.04,0.5,2.79 C5.22,15.76,5.86,16,6.5,16c0.35,0,0.71-0.08,1.03-0.23c0.2,0.45,0.54,0.82,0.99,1.04C8.8,16.94,9.1,17,9.4,17 c0.23,0,0.46-0.04,0.68-0.12h0c0.51-0.18,0.92-0.55,1.16-1.04c0.23-0.49,0.26-1.04,0.08-1.56l-0.56-1.49 c0.2-0.2,0.39-0.39,0.52-0.52C11.76,11.78,12,11.14,12,10.5h1V10h-1.05C11.85,9.54,11.63,9.09,11.27,8.73z M7.3,14.77 C7.06,14.92,6.79,15,6.5,15c-0.4,0-0.78-0.16-1.06-0.44c-0.5-0.5-0.55-1.27-0.18-1.85c0.09,0.01,0.18,0.02,0.27,0.02 c0.84,0,1.66-0.27,2.35-0.59C7.52,12.91,7.23,13.84,7.3,14.77z M4.71,11.6c-0.26-0.09-0.47-0.28-0.59-0.53s-0.13-0.53-0.04-0.79 c0.09-0.26,0.28-0.47,0.53-0.59c0.14-0.07,0.29-0.1,0.45-0.1c0.11,0,0.23,0.02,0.34,0.06l2.94,1.11 C7.46,11.31,5.95,12.04,4.71,11.6z M10.33,15.41c-0.12,0.25-0.33,0.44-0.59,0.53c-0.26,0.09-0.54,0.08-0.79-0.04 c-0.25-0.12-0.44-0.33-0.53-0.59c-0.44-1.24,0.29-2.75,0.84-3.63l1.11,2.93C10.46,14.88,10.45,15.16,10.33,15.41z M10.56,11.56 l-0.2,0.2l-0.5-1.31c-0.01-0.03-0.03-0.04-0.05-0.07c-0.02-0.04-0.04-0.07-0.07-0.1c-0.03-0.03-0.06-0.05-0.1-0.07 c-0.02-0.01-0.04-0.04-0.07-0.05L8.23,9.65l0.21-0.21C8.72,9.16,9.1,9,9.5,9c0.4,0,0.78,0.16,1.06,0.44 C11.15,10.02,11.15,10.98,10.56,11.56z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z\"></path><path d=\"M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.12,0.12-0.3,0.3-0.5,0.5L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c0.78,0.78,1.8,1.17,2.83,1.17c0.37,0,0.73-0.07,1.09-0.17 c0.29,0.42,0.68,0.77,1.16,1C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85 l-0.49-1.3c0.2-0.2,0.38-0.38,0.5-0.5c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M7.58,18.82c-0.15,0.04-0.3,0.06-0.46,0.06c-0.53,0-1.04-0.21-1.41-0.59c-0.38-0.38-0.59-0.88-0.59-1.41 c0-0.16,0.03-0.32,0.06-0.47c0.14,0.01,0.28,0.03,0.42,0.03c0.85,0,1.68-0.2,2.44-0.48C7.72,16.85,7.5,17.83,7.58,18.82z M4.67,14.29c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19 C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57 c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03 c-0.02-0.04-0.04-0.08-0.06-0.12c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09 c-0.03-0.03-0.07-0.05-0.11-0.07c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8 c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59C12.8,12.66,12.84,13.81,12.2,14.6z\"></path></g></g>" } } }, - "crop_3_2": { - "name": "crop_3_2", + "sports_handball": { + "name": "sports_handball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M13.23,8.6l-3.46-2c-1.43-0.83-1.93-2.67-1.1-4.1l0.5-0.87L8.3,1.14L7.8,2C6.7,3.92,7.35,6.36,9.27,7.47l-4.5,7.79 l0.87,0.5l1.5-2.6l1.73,1l-3,5.2l0.87,0.5l6-10.39c1.43,0.83,1.93,2.67,1.1,4.1l-0.5,0.87l0.87,0.5l0.5-0.87 C15.8,12.15,15.14,9.71,13.23,8.6z\"></path><circle cx=\"11\" cy=\"2\" r=\"1\"></circle><circle cx=\"12.5\" cy=\"5.5\" r=\"1.5\"></circle></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z\"></path><path d=\"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z\"></path><path d=\"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z\"></path></g></g>" } } }, - "crop_5_4": { - "name": "crop_5_4", + "follow_the_signs": { + "name": "follow_the_signs", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.4,5.5,9.5,5.5z M5.75,8.9L3,23h2.1l1.75-8L9,17v6h2v-7.55L8.95,13.4 l0.6-3C10.85,12,12.8,13,15,13v-2c-1.85,0-3.45-1-4.35-2.45L9.7,6.95C9.35,6.35,8.7,6,8,6C7.75,6,7.5,6.05,7.25,6.15L2,8.3V13h2 V9.65L5.75,8.9 M13,2v7h3.75v14h1.5V9H22V2H13z M18.01,8V6.25H14.5v-1.5h3.51V3l2.49,2.5L18.01,8z\"></path>" } } }, - "crop_7_5": { - "name": "crop_7_5", + "sports_basketball": { + "name": "sports_basketball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M5.3,6.28C6.22,7.09,6.84,8.22,6.97,9.5 H4.03C4.13,8.29,4.59,7.18,5.3,6.28z M4.03,10.5h2.95c-0.13,1.28-0.75,2.41-1.67,3.22C4.59,12.82,4.13,11.71,4.03,10.5z M9.5,15.97c-1.34-0.11-2.55-0.66-3.5-1.51c1.11-0.99,1.84-2.39,1.97-3.96H9.5V15.97z M9.5,9.5H7.97C7.84,7.93,7.11,6.53,6,5.54 c0.95-0.85,2.16-1.4,3.5-1.51V9.5z M15.97,9.5h-2.95c0.13-1.28,0.75-2.41,1.67-3.22C15.41,7.18,15.87,8.29,15.97,9.5z M10.5,4.03 c1.34,0.11,2.55,0.66,3.5,1.51c-1.11,0.99-1.84,2.39-1.97,3.96H10.5V4.03z M10.5,15.97V10.5h1.53c0.13,1.57,0.86,2.97,1.97,3.96 C13.05,15.31,11.84,15.86,10.5,15.97z M14.7,13.72c-0.91-0.81-1.54-1.94-1.67-3.22h2.95C15.87,11.71,15.41,12.82,14.7,13.72z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.23,7.75 C6.1,8.62,6.7,9.74,6.91,11H4.07C4.22,9.82,4.63,8.72,5.23,7.75z M4.07,13h2.84c-0.21,1.26-0.81,2.38-1.68,3.25 C4.63,15.28,4.22,14.18,4.07,13z M11,19.93c-1.73-0.22-3.29-1-4.49-2.14c1.3-1.24,2.19-2.91,2.42-4.79H11V19.93z M11,11H8.93 C8.69,9.12,7.81,7.44,6.5,6.2C7.71,5.06,9.27,4.29,11,4.07V11z M19.93,11h-2.84c0.21-1.26,0.81-2.38,1.68-3.25 C19.37,8.72,19.78,9.82,19.93,11z M13,4.07c1.73,0.22,3.29,0.99,4.5,2.13c-1.31,1.24-2.19,2.92-2.43,4.8H13V4.07z M13,19.93V13 h2.07c0.24,1.88,1.12,3.55,2.42,4.79C16.29,18.93,14.73,19.71,13,19.93z M18.77,16.25c-0.87-0.86-1.46-1.99-1.68-3.25h2.84 C19.78,14.18,19.37,15.28,18.77,16.25z\"></path></g></g>" } } }, - "crop_din": { - "name": "crop_din", + "pix": { + "name": "pix", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect></g><g><g><path d=\"M12.79,13.58l-2.41-2.41c-0.1-0.1-0.22-0.12-0.28-0.12c-0.06,0-0.18,0.02-0.28,0.12L7.4,13.59 c-0.71,0.71-1.45,0.7-2.13,0.7l3.02,3.01c0.94,0.94,2.46,0.94,3.39,0l3.03-3.02C14,14.28,13.38,14.17,12.79,13.58z\"></path><path d=\"M7.4,6.41l2.42,2.42C9.9,8.9,10,8.94,10.1,8.94s0.21-0.04,0.28-0.12l2.39-2.39c0.58-0.59,1.21-0.71,1.96-0.71L11.71,2.7 c-0.94-0.94-2.46-0.94-3.39,0L5.29,5.71C6.02,5.71,6.7,5.71,7.4,6.41z\"></path><path d=\"M17.29,8.28l-1.8-1.81h-1.01c-0.44,0-0.86,0.17-1.16,0.48l-2.4,2.4c-0.22,0.22-0.52,0.34-0.81,0.34 c-0.29,0-0.59-0.12-0.81-0.34L6.87,6.94C6.57,6.63,6.15,6.46,5.72,6.46H4.53L2.7,8.3c-0.94,0.94-0.94,2.46,0,3.39l1.83,1.84h1.18 c0.43,0,0.85-0.17,1.16-0.48l2.42-2.42c0.22-0.22,0.52-0.34,0.81-0.34s0.59,0.11,0.81,0.34l2.41,2.41 c0.08,0.08,0.16,0.15,0.25,0.2c0.27,0.18,0.58,0.28,0.91,0.28h1.01l1.8-1.81c0.36-0.36,0.58-0.8,0.67-1.25 C17.99,10.31,18,10.16,18,10C18,9.38,17.76,8.76,17.29,8.28z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M15.45,16.52l-3.01-3.01c-0.11-0.11-0.24-0.13-0.31-0.13s-0.2,0.02-0.31,0.13L8.8,16.53c-0.34,0.34-0.87,0.89-2.64,0.89 l3.71,3.7c1.17,1.17,3.07,1.17,4.24,0l3.72-3.71C16.92,17.41,16.16,17.23,15.45,16.52z\"></path><path d=\"M8.8,7.47l3.02,3.02c0.08,0.08,0.2,0.13,0.31,0.13s0.23-0.05,0.31-0.13l2.99-2.99c0.71-0.74,1.52-0.91,2.43-0.91 l-3.72-3.71c-1.17-1.17-3.07-1.17-4.24,0l-3.71,3.7C7.95,6.58,8.49,7.16,8.8,7.47z\"></path><path d=\"M21.11,9.85l-2.25-2.26H17.6c-0.54,0-1.08,0.22-1.45,0.61l-3,3c-0.28,0.28-0.65,0.42-1.02,0.42 c-0.36,0-0.74-0.15-1.02-0.42L8.09,8.17c-0.38-0.38-0.9-0.6-1.45-0.6H5.17l-2.29,2.3c-1.17,1.17-1.17,3.07,0,4.24l2.29,2.3h1.48 c0.54,0,1.06-0.22,1.45-0.6l3.02-3.02c0.28-0.28,0.65-0.42,1.02-0.42c0.37,0,0.74,0.14,1.02,0.42l3.01,3.01 c0.38,0.38,0.9,0.6,1.45,0.6h1.26l2.25-2.26C22.3,12.96,22.3,11.04,21.11,9.85z\"></path></g></g>" } } }, - "crop_free": { - "name": "crop_free", + "hiking": { + "name": "hiking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M4.9,10.75l1.64,0.32l0.96-4.91L6.84,6.03C6.03,5.87,5.24,6.4,5.08,7.21l-0.57,2.94C4.46,10.43,4.63,10.69,4.9,10.75z M14,18h1V8 h-1l0,1.41c-2.11-0.42-2.13-2.19-3.11-2.97c-0.21-0.17-0.45-0.29-0.7-0.36c-0.81-0.23-1.7,0.27-1.88,1.16C8.15,8.06,6.2,18,6.2,18 h1.53l1.19-6.01l1.58,1.58V18H12v-5.05l-1.46-1.46l0.49-2.48c0.72,0.95,1.76,1.64,2.97,1.89L14,18z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M17.5,10.78c-1.23-0.37-2.22-1.17-2.8-2.18l-1-1.6 c-0.41-0.65-1.11-1-1.84-1c-0.78,0-1.59,0.5-1.78,1.44S7,23,7,23h2.1l1.8-8l2.1,2v6h2v-7.5l-2.1-2l0.6-3c1,1.15,2.41,2.01,4,2.34V23 H19V9h-1.5L17.5,10.78z M7.43,13.13l-2.12-0.41c-0.54-0.11-0.9-0.63-0.79-1.17l0.76-3.93c0.21-1.08,1.26-1.79,2.34-1.58l1.16,0.23 L7.43,13.13z\"></path>" } } }, - "crop_landscape": { - "name": "crop_landscape", + "sports_martial_arts": { + "name": "sports_martial_arts", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"4.5\" cy=\"4.5\" r=\"1.5\"></circle><polygon points=\"16.79,2 9.96,7.54 8.27,6.22 11.01,4.64 7.37,1 6.67,1.71 9.38,4.42 4.25,7.38 3.31,10.78 5.13,14 6,13.51 4.39,10.65 4.88,8.87 8.5,11 9,18 10,18 10.5,10 17.5,2.71\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"19.8,2 11.6,8.7 10.39,7.66 13.99,5.58 9.41,1 8,2.41 10.74,5.15 5,8.46 3.81,12.75 6.27,17 8,16 5.97,12.48 6.32,11.18 9.5,13 10,22 12,22 12.5,12 21,3.4\"></polygon><circle cx=\"5\" cy=\"5\" r=\"2\"></circle></g></g>" } } }, - "crop_original": { - "name": "crop_original", + "construction": { + "name": "construction", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"5.5\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.3383 13.8538)\" width=\"2\" x=\"13.05\" y=\"10.62\"></rect><path d=\"M14.23,8.98c1.38,0,2.5-1.12,2.5-2.5c0-0.51-0.15-0.98-0.42-1.38l-2.08,2.08l-0.71-0.71l2.08-2.08 c-0.4-0.26-0.87-0.42-1.38-0.42c-1.38,0-2.5,1.12-2.5,2.5c0,0.32,0.07,0.63,0.18,0.91L10.69,8.6L9.64,7.54l0.71-0.71L8.93,5.42 L10.34,4C9.56,3.22,8.29,3.22,7.51,4L4.69,6.83l1.06,1.06l-2.13,0L3.27,8.24l2.83,2.83l0.35-0.35L6.46,8.6l1.06,1.06l0.71-0.71 l1.06,1.06l-4.6,4.6l1.41,1.41l7.22-7.22C13.6,8.91,13.91,8.98,14.23,8.98z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"8.48\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)\" width=\"3\" x=\"16.34\" y=\"12.87\"></rect><path d=\"M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z\"></path></g></g>" } } }, - "crop_portrait": { - "name": "crop_portrait", + "public_off": { + "name": "public_off", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z\"></path></g>" } } }, - "crop_rotate": { - "name": "crop_rotate", + "sports_tennis": { + "name": "sports_tennis", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14.09,10.28c2.2-2.2,2.55-5.4,0.8-7.16c-1.76-1.76-4.96-1.4-7.16,0.8C6.4,5.24,5.75,6.93,5.82,8.44l0,0 c-0.04,0.82,0.29,2.73-0.98,4.01L2.28,15L3,15.72l2.56-2.56c1.27-1.27,3.19-0.94,4.01-0.98l0,0 C11.07,12.25,12.76,11.6,14.09,10.28z M7.64,10.36C6.27,9,6.63,6.42,8.43,4.62s4.38-2.16,5.75-0.8c1.36,1.36,1.01,3.94-0.8,5.75 S9,11.73,7.64,10.36z\"></path><path d=\"M16.12,12.88C15.54,12.29,14.77,12,14,12s-1.54,0.29-2.12,0.88c-1.17,1.17-1.17,3.07,0,4.24C12.46,17.71,13.23,18,14,18 s1.54-0.29,2.12-0.88C17.29,15.95,17.29,14.05,16.12,12.88z M15.41,16.41C15.04,16.79,14.53,17,14,17s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C12.96,13.21,13.47,13,14,13s1.04,0.21,1.41,0.59C16.19,14.37,16.19,15.63,15.41,16.41z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8c0-1.11-.9-2-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2h2v-2H8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z\"></path><path d=\"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z\"></path></g>" } } }, - "crop_square": { - "name": "crop_square", + "group_add": { + "name": "group_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><g><path d=\"M6,10c1.66,0,3-1.34,3-3S7.66,4,6,4S3,5.34,3,7S4.34,10,6,10z M6,5.5c0.83,0,1.5,0.67,1.5,1.5S6.83,8.5,6,8.5 S4.5,7.83,4.5,7S5.17,5.5,6,5.5z\"></path></g><g><path d=\"M11.03,12.37C9.56,11.5,7.84,11,6,11s-3.56,0.5-5.03,1.37C0.36,12.72,0,13.39,0,14.09V16h12v-1.91 C12,13.39,11.64,12.72,11.03,12.37z M10.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C3.02,12.9,4.5,12.5,6,12.5 c1.5,0,2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\"></path></g><g><path d=\"M15.03,12.37c-0.92-0.54-1.94-0.92-3.02-1.14c0.92,0.64,1.48,1.71,1.48,2.86V16H16v-1.91 C16,13.39,15.64,12.72,15.03,12.37z\"></path></g><g><path d=\"M10,10c1.66,0,3-1.34,3-3s-1.34-3-3-3C9.79,4,9.58,4.02,9.38,4.06C10.07,4.85,10.5,5.87,10.5,7 c0,1.13-0.43,2.14-1.12,2.93C9.58,9.98,9.79,10,10,10z\"></path></g><g><polygon points=\"19.5,7.75 17.75,7.75 17.75,6 16.25,6 16.25,7.75 14.5,7.75 14.5,9.25 16.25,9.25 16.25,11 17.75,11 17.75,9.25 19.5,9.25\"></polygon></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"22,9 22,7 20,7 20,9 18,9 18,11 20,11 20,13 22,13 22,11 24,11 24,9\"></polygon><path d=\"M8,12c2.21,0,4-1.79,4-4s-1.79-4-4-4S4,5.79,4,8S5.79,12,8,12z M8,6c1.1,0,2,0.9,2,2s-0.9,2-2,2S6,9.1,6,8S6.9,6,8,6z\"></path><path d=\"M8,13c-2.67,0-8,1.34-8,4v3h16v-3C16,14.34,10.67,13,8,13z M14,18H2v-0.99C2.2,16.29,5.3,15,8,15s5.8,1.29,6,2V18z\"></path><path d=\"M12.51,4.05C13.43,5.11,14,6.49,14,8s-0.57,2.89-1.49,3.95C14.47,11.7,16,10.04,16,8S14.47,4.3,12.51,4.05z\"></path><path d=\"M16.53,13.83C17.42,14.66,18,15.7,18,17v3h2v-3C20,15.55,18.41,14.49,16.53,13.83z\"></path></g></g>" } } }, - "dehaze": { - "name": "dehaze", + "poll": { + "name": "poll", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z\"></path>" } } }, - "details": { - "name": "details", + "military_tech": { + "name": "military_tech", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M13.16,13.29l-2.27-0.19l-0.56-1.31l2.45-1.63C12.92,10.06,13,9.9,13,9.73V3H7v6.73c0,0.17,0.08,0.32,0.22,0.42l2.45,1.63 l-0.56,1.31l-2.27,0.19l1.72,1.49L8.05,17L10,15.82L11.95,17l-0.52-2.22L13.16,13.29z M10.5,4H12v5.46l-1.5,1V4z M9.5,10.46 l-1.5-1V4h1.5V10.46z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M11,11.07l-2-1.2V4h2V11.07z M15,9.87 l-2,1.2V4h2V9.87z\"></path></g></g>" } } }, - "dirty_lens": { - "name": "dirty_lens", + "connect_without_contact": { + "name": "connect_without_contact", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19h-7.02 c-0.22-0.84-0.52-1.76-0.13-2.33c0.81-1.12,2.67,1.77,3.81-0.09c0.77-1.57-1.58-1.29-1.64-2.12c-0.05-0.84,3.68,0.17,3.04-1.66 c-0.61-1.73-2.42,0.48-2.76-0.53c-0.58-1.74,4.7-1.68,2.85-4.01c-1.76-2.22-2.47,2.85-4.41,2.33c-1.34-0.36-1.01-2.88-2.65-2.44 c-1.88,0.51,1.03,2.2,0,2.86c-0.96,0.63-1.72-0.92-2.51-1.19c-0.2-0.07-0.69-0.05-0.91,0.19c-0.78,0.86,0.28,1.16,0.25,1.91 c-0.02,0.75-1.59,0.49-1.51,1.49c0.12,1.6,2.18,0.45,2.4,1.24c0.55,1.98-1.89,2.15-0.5,3.27c1.53,0.71,1.91-1.94,2.8-1.35 c0.58,0.38,0.3,1.45,0.16,2.43H4V7h4.05l1.83-2h4.24l1.83,2H20V19z\"></path><path d=\"M17.28,17.15c0,0.48,0.39,0.86,0.86,0.86c0.48,0,0.86-0.38,0.86-0.86s-0.39-0.86-0.86-0.86 C17.66,16.29,17.28,16.67,17.28,17.15z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,14H9c0-4.97,4.03-9,9-9v2C14.13,7,11,10.13,11,14z M18,11V9c-2.76,0-5,2.24-5,5h2C15,12.34,16.34,11,18,11z M7,4 c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M11.45,4.5h-2C9.21,5.92,7.99,7,6.5,7h-3C2.67,7,2,7.67,2,8.5V11h6V8.74 C9.86,8.15,11.25,6.51,11.45,4.5z M19,17c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M20.5,18h-3 c-1.49,0-2.71-1.08-2.95-2.5h-2c0.2,2.01,1.59,3.65,3.45,4.24V22h6v-2.5C22,18.67,21.33,18,20.5,18z\"></path>" } } }, - "edit": { - "name": "edit", + "recommend": { + "name": "recommend", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.06 9.02l.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z\"></path><path d=\"M17,10h-4.59l0.58-3.41v-0.2c-0.01-0.26-0.12-0.51-0.3-0.7L12,5l-4.6,5c-0.27,0.26-0.42,0.62-0.4,1v5c0,1.1,0.9,2,2,2h5.5 c0.56,0.03,1.08-0.29,1.3-0.8l2.1-4.9c0.08-0.15,0.12-0.33,0.1-0.5V11C18,10.45,17.55,10,17,10z\"></path></g></g>" } } }, - "euro": { - "name": "euro", + "king_bed": { + "name": "king_bed", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><path d=\"M12,15c-1.63,0-3.06-0.79-3.98-2H12l1-2H7.1C7.04,10.68,7,10.34,7,10s0.04-0.68,0.1-1H12l1-2H8.02C8.94,5.79,10.37,5,12,5 c1.38,0,2.63,0.56,3.54,1.46l1.41-1.41C15.68,3.78,13.93,3,12,3C9.21,3,6.81,4.64,5.68,7H3L2,9h3.08C5.03,9.33,5,9.66,5,10 s0.03,0.67,0.08,1H3l-1,2h3.68c1.12,2.36,3.53,4,6.32,4c1.93,0,3.68-0.78,4.95-2.05l-1.41-1.41C14.63,14.44,13.38,15,12,15z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect fill=\"none\" height=\"2\" width=\"4.5\" x=\"10.5\" y=\"6\"></rect><rect fill=\"none\" height=\"2\" width=\"4.5\" x=\"5\" y=\"6\"></rect><polygon fill=\"none\" points=\"9.5,9 4,9 4,12 16,12 16,9 10.5,9\"></polygon><path d=\"M16,8V6c0-0.55-0.45-1-1-1H5C4.45,5,4,5.45,4,6v2C3.45,8,3,8.45,3,9v4h1l0.75,2h0.5L6,13h8l0.75,2h0.5L16,13h1V9 C17,8.45,16.55,8,16,8z M10.5,6H15v2h-4.5V6z M5,6h4.5v2H5V6z M16,12H4V9h12V12z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M22,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1 l0.67-2H22V12z M18,10h-5V7h5V10z M6,7h5v3H6V7z M4,12h16v3H4V12z\"></path></g>" } } }, - "exposure": { - "name": "exposure", + "skateboarding": { + "name": "skateboarding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M7.49,19.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75S7.49,18.84,7.49,19.25z M13.26,18.5 c-0.41,0-0.75,0.34-0.75,0.75S12.85,20,13.26,20c0.41,0,0.75-0.34,0.75-0.75S13.67,18.5,13.26,18.5z M12.25,4.5 C13.21,4.5,14,3.72,14,2.75C14,1.78,13.22,1,12.25,1S10.5,1.78,10.5,2.75C10.5,3.72,11.29,4.5,12.25,4.5z M17,16.5 c0,0.12-0.04,0.24-0.13,0.34C16.46,17.29,15.58,18,14.26,18H5.74c-1.25,0-2.13-0.62-2.61-1.16C3.05,16.75,3,16.62,3,16.5 C3,16.24,3.2,16,3.5,16c0.14,0,0.28,0.06,0.38,0.17C4.34,16.68,5,17,5.74,17H6l2-3l-1.23-3.23C6.6,10.33,6.65,9.84,6.9,9.44 L8.73,6.5H6.8L5.27,8.9L4,8l2-3h4.5c0.68,0,1.11,0.43,1.3,0.76l0.75,1.27C13.25,8.21,14.53,9,16,9v1.5c-1.95,0-3.66-1.02-4.64-2.55 L10,10.13l3.5,2.37V17h0.76c0.74,0,1.4-0.32,1.86-0.83c0.1-0.11,0.23-0.17,0.38-0.17C16.8,16,17,16.24,17,16.5z M12,13.4l-3-1.65 l0.7,2.45L7.8,17H12V13.4z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1.41 2L5 17.59V5h12.59zM6.41 19L19 6.41V19H6.41zM6 7h5v1.5H6zm10 5.5h-1.5v2h-2V16h2v2H16v-2h2v-1.5h-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S13,4.1,13,3z M7.25,22.5c-0.41,0-0.75,0.34-0.75,0.75S6.84,24,7.25,24 S8,23.66,8,23.25S7.66,22.5,7.25,22.5z M15.75,22.5c-0.41,0-0.75,0.34-0.75,0.75S15.34,24,15.75,24s0.75-0.34,0.75-0.75 S16.16,22.5,15.75,22.5z M19.24,19c-0.24,0-0.45,0.11-0.59,0.3c-0.55,0.73-1.42,1.2-2.4,1.2H16v-6l-4.32-2.67l1.8-2.89 C14.63,10.78,16.68,12,19,12v-2c-1.85,0-3.44-1.12-4.13-2.72l-0.52-1.21C14.16,5.64,13.61,5,12.7,5H7L4.5,9l1.7,1.06L8.1,7h2.35 l-2.4,3.84c-0.31,0.5-0.39,1.11-0.21,1.67l1.34,4.15l-3.12,3.76c-0.7-0.16-1.3-0.57-1.71-1.12C4.21,19.11,3.99,19,3.75,19 C3.31,19,3,19.36,3,19.75c0,0.15,0.05,0.31,0.15,0.45c0.82,1.1,2.13,1.8,3.6,1.8h9.5c1.47,0,2.78-0.7,3.6-1.8 c0.1-0.14,0.15-0.3,0.15-0.45C20,19.36,19.68,19,19.24,19z M14,20.5H8.6l2.9-3.5l-1-3.3l3.5,2.2V20.5z\"></path>" } } }, - "exposure_neg_1": { - "name": "exposure_neg_1", + "facebook": { + "name": "facebook", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 11v2h8v-2H4zm15 7h-2V7.38L14 8.4V6.7L18.7 5h.3v13z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z\"></path>" } } }, - "exposure_neg_2": { - "name": "exposure_neg_2", + "man": { + "name": "man", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"10\" cy=\"3.75\" r=\"1.75\"></circle><path d=\"M11.5,7h-3C7.67,7,7,7.67,7,8.5V13h1.5v5h3v-5H13V8.5C13,7.67,12.33,7,11.5,7z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 11v2h8v-2H2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14,7h-4C8.9,7,8,7.9,8,9v6h2v7h4v-7h2V9C16,7.9,15.1,7,14,7z\"></path><circle cx=\"12\" cy=\"4\" r=\"2\"></circle></g></g>" } } }, - "exposure_plus_1": { - "name": "exposure_plus_1", + "school": { + "name": "school", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 7H8v4H4v2h4v4h2v-4h4v-2h-4V7zm10 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 3L1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm6.82 6L12 12.72 5.18 9 12 5.28 18.82 9zM17 15.99l-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72z\"></path>" } } }, - "exposure_plus_2": { - "name": "exposure_plus_2", + "female": { + "name": "female", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14.25,8.25C14.25,5.9,12.35,4,10,4S5.75,5.9,5.75,8.25c0,2.09,1.51,3.82,3.5,4.17V14h-1.5v1.5h1.5V17h1.5v-1.5h1.5V14h-1.5 v-1.58C12.74,12.07,14.25,10.34,14.25,8.25z M7.25,8.25C7.25,6.73,8.48,5.5,10,5.5s2.75,1.23,2.75,2.75S11.52,11,10,11 S7.25,9.77,7.25,8.25z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17c.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM8 7H6v4H2v2h4v4h2v-4h4v-2H8V7z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17.5,9.5C17.5,6.46,15.04,4,12,4S6.5,6.46,6.5,9.5c0,2.7,1.94,4.93,4.5,5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1 C15.56,14.43,17.5,12.2,17.5,9.5z M8.5,9.5C8.5,7.57,10.07,6,12,6s3.5,1.57,3.5,3.5S13.93,13,12,13S8.5,11.43,8.5,9.5z\"></path>" } } }, - "exposure_zero": { - "name": "exposure_zero", + "notifications": { + "name": "notifications", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.14 12.5c0 1-.1 1.85-.3 2.55s-.48 1.27-.83 1.7c-.36.44-.79.75-1.3.95s-1.07.3-1.7.3c-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95s-.65-1.01-.85-1.7c-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04h-.01zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19s-.61.06-.86.18-.47.31-.64.58-.31.62-.4 1.06-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19.62-.06.87-.19.46-.33.63-.61.3-.64.39-1.09.13-.99.13-1.62v-2.66h-.01z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z\"></path>" } } }, - "face_retouching_natural": { - "name": "face_retouching_natural", + "notifications_paused": { + "name": "notifications_paused", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19.89,10.75C19.96,11.16,20,11.57,20,12c0,4.41-3.59,8-8,8s-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14 c2.6-0.98,4.69-2.99,5.74-5.55c3.38,4.14,7.97,3.73,8.99,3.61l-0.89-1.93c-0.13,0.01-4.62,0.38-7.18-3.86 c1.01-0.16,1.71-0.15,2.59-0.01c2.52-1.15,1.93-0.89,2.76-1.26C14.78,2.3,13.43,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10 s10-4.48,10-10c0-1.43-0.3-2.78-0.84-4.01L19.89,10.75z M8.08,5.03C7.45,6.92,6.13,8.5,4.42,9.47C5.05,7.58,6.37,6,8.08,5.03z\"></path><circle cx=\"15\" cy=\"13\" r=\"1.25\"></circle><circle cx=\"9\" cy=\"13\" r=\"1.25\"></circle><polygon points=\"23,4.5 20.6,3.4 19.5,1 18.4,3.4 16,4.5 18.4,5.6 19.5,8 20.6,5.6\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.5 9.8h2.8l-2.8 3.4V15h5v-1.8h-2.8l2.8-3.4V8h-5zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z\"></path>" } } }, - "face_retouching_off": { - "name": "face_retouching_off", + "reduce_capacity": { + "name": "reduce_capacity", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"9\" cy=\"13\" r=\"1.25\"></circle><path d=\"M17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12c0,1.22-0.28,2.37-0.77,3.4l1.49,1.49 C21.53,15.44,22,13.78,22,12c0-5.52-4.48-10-10-10c-1.78,0-3.44,0.47-4.89,1.28l5.33,5.33C13.93,9.49,15.65,10,17.5,10z M10.66,4.12C11.09,4.05,11.54,4,12,4c2.9,0,5.44,1.56,6.84,3.88C18.41,7.95,17.96,8,17.5,8C14.6,8,12.06,6.44,10.66,4.12z\"></path><path d=\"M1.89,3.72l2.19,2.19C2.78,7.6,2,9.71,2,12c0,5.52,4.48,10,10,10c2.29,0,4.4-0.78,6.09-2.08l2.19,2.19l1.41-1.41 L3.31,2.31L1.89,3.72z M16.66,18.49C15.35,19.44,13.74,20,12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14 c1.39-0.52,2.63-1.35,3.64-2.39L16.66,18.49z M6.23,8.06C5.7,8.61,5.09,9.09,4.42,9.47C4.68,8.7,5.05,7.99,5.51,7.34L6.23,8.06z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M12.75,13v-2h-1.5v2H9l3,3l3-3H12.75z\"></path>" } } }, - "filter": { - "name": "filter", + "sports_esports": { + "name": "sports_esports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.82,13.55l-0.62-5.76C15.08,6.77,14.23,6,13.21,6H6.79C5.77,6,4.92,6.77,4.81,7.78l-0.62,5.76 C4.09,14.32,4.69,15,5.46,15c0.34,0,0.67-0.14,0.91-0.38L8,13h4l1.62,1.62c0.24,0.24,0.57,0.38,0.91,0.38 C15.31,15,15.91,14.32,15.82,13.55z M14.76,13.9c-0.03,0.04-0.1,0.1-0.22,0.1c-0.08,0-0.15-0.03-0.21-0.09L12.41,12H7.59 l-1.91,1.91C5.62,13.97,5.54,14,5.46,14c-0.11,0-0.19-0.06-0.22-0.1c-0.03-0.04-0.09-0.12-0.07-0.25L5.8,7.89 C5.86,7.38,6.28,7,6.79,7h6.41c0.51,0,0.94,0.38,0.99,0.89l0.63,5.78C14.84,13.78,14.79,13.86,14.76,13.9z\"></path><polygon points=\"8,8 7.5,8 7.5,9.25 6.25,9.25 6.25,9.75 7.5,9.75 7.5,11 8,11 8,9.75 9.25,9.75 9.25,9.25 8,9.25\"></polygon><circle cx=\"12.5\" cy=\"10.5\" r=\".5\"></circle><circle cx=\"11.5\" cy=\"8.5\" r=\".5\"></circle></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.96 10.29l-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M19.48,16.81C19.4,16.9,19.27,17,19.06,17c-0.15,0-0.29-0.06-0.39-0.16L15.83,14H8.17 l-2.84,2.84C5.23,16.94,5.09,17,4.94,17c-0.21,0-0.34-0.1-0.42-0.19c-0.08-0.09-0.16-0.23-0.13-0.44l1.09-7.66 C5.63,7.74,6.48,7,7.47,7h9.06c0.99,0,1.84,0.74,1.98,1.72l1.09,7.66C19.63,16.58,19.55,16.72,19.48,16.81z\"></path><polygon points=\"9,8 8,8 8,10 6,10 6,11 8,11 8,13 9,13 9,11 11,11 11,10 9,10\"></polygon><circle cx=\"17\" cy=\"12\" r=\"1\"></circle><circle cx=\"15\" cy=\"9\" r=\"1\"></circle></g></g>" } } }, - "filter_1": { - "name": "filter_1", + "thumb_down_alt": { + "name": "thumb_down_alt", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\" opacity=\".87\"></path><path d=\"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L11.77 14H3v-2l3-7h9v10zm4-12h4v12h-4z\"></path>" } } }, - "filter_2": { - "name": "filter_2", + "ios_share": { + "name": "ios_share", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M16,5l-1.42,1.42l-1.59-1.59V16h-1.98V4.83L9.42,6.42L8,5l4-4L16,5z M20,10v11c0,1.1-0.9,2-2,2H6c-1.11,0-2-0.9-2-2V10 c0-1.11,0.89-2,2-2h3v2H6v11h12V10h-3V8h3C19.1,8,20,8.89,20,10z\"></path></g>" } } }, - "filter_3": { - "name": "filter_3", + "sports_volleyball": { + "name": "sports_volleyball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3z M10.5,4.04 c2.66,0.22,4.84,2.17,5.37,4.73L10.5,5.67V4.04z M7,4.81c0.75-0.43,1.6-0.7,2.5-0.78v5.68L7,11.15V4.81z M4.58,12.55 C4.21,11.78,4,10.91,4,10c0-1.77,0.78-3.35,2-4.45v6.18L4.58,12.55z M5.08,13.42L10,10.58l2.5,1.44l-5.48,3.17 C6.25,14.74,5.58,14.15,5.08,13.42z M10,16c-0.65,0-1.28-0.11-1.87-0.3l5.37-3.1l1.42,0.82C13.84,14.98,12.04,16,10,16z M10.5,9.71V6.82l5.5,3.18c0,0.91-0.21,1.77-0.58,2.55L10.5,9.71z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,4.07 c3.07,0.38,5.57,2.52,6.54,5.36L13,5.65V4.07z M8,5.08c1.18-0.69,3.33-1.06,3-1.02v7.35l-3,1.73V5.08z M4.63,15.1 C4.23,14.14,4,13.1,4,12c0-2.02,0.76-3.86,2-5.27v7.58L4.63,15.1z M5.64,16.83L12,13.15l3,1.73l-6.98,4.03 C7.09,18.38,6.28,17.68,5.64,16.83z M10.42,19.84 M12,20c-0.54,0-1.07-0.06-1.58-0.16l6.58-3.8l1.36,0.78 C16.9,18.75,14.6,20,12,20z M13,11.42V7.96l7,4.05c0,1.1-0.23,2.14-0.63,3.09L13,11.42z\"></path></g></g>" } } }, - "filter_4": { - "name": "filter_4", + "sports_golf": { + "name": "sports_golf", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3C7.24,3,5,5.24,5,8s2.24,5,5,5s5-2.24,5-5S12.76,3,10,3z M10,12c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4 C14,10.21,12.21,12,10,12z\"></path><circle cx=\"8.5\" cy=\"6.5\" r=\".5\"></circle><circle cx=\"11.5\" cy=\"6.5\" r=\".5\"></circle><circle cx=\"10\" cy=\"5.5\" r=\".5\"></circle><path d=\"M7,15h1.5c0.55,0,1,0.45,1,1v1h1v-1c0-0.55,0.45-1,1-1H13v-1H7V15z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z\"></path><circle cx=\"10\" cy=\"8\" r=\"1\"></circle><circle cx=\"14\" cy=\"8\" r=\"1\"></circle><circle cx=\"12\" cy=\"6\" r=\"1\"></circle><path d=\"M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z\"></path></g></g>" } } }, - "filter_5": { - "name": "filter_5", + "sentiment_satisfied": { + "name": "sentiment_satisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"15.5\" cy=\"9.5\" r=\"1.5\"></circle><circle cx=\"8.5\" cy=\"9.5\" r=\"1.5\"></circle><path d=\"M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" } } }, - "filter_6": { - "name": "filter_6", + "kitesurfing": { + "name": "kitesurfing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M8.26,3c0,0.97-0.78,1.75-1.75,1.75S4.76,3.97,4.76,3s0.78-1.75,1.75-1.75S8.26,2.03,8.26,3z M16.33,1h-1.41l-2.52,2.51 l0.71,0.71L16.33,1z M15,16.5c-1.53,1.33-3.48,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5 c0.86,0,1.71-0.2,2.5-0.6c1.58,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18l0-1.5h-0.5 C16.63,17.5,15.76,17.17,15,16.5z M15.52,10c-1.1,0-2.7,0.49-4.39,1.25L10,10H8V7h1c1.51,0,2.86-0.67,3.78-1.72l-1.07-1.07 C11.07,5,10.09,5.5,9,5.5H6.5C5.67,5.5,5,6.17,5,7v1.46v2.06c0,0.32,0.07,0.63,0.22,0.91l1.28,2.52c-0.42,0.31-0.82,0.63-1.19,0.94 C5.9,15.53,6.66,16,7.5,16c1,0,1.89-0.66,2.5-1.5c0.55,0.76,1.33,1.37,2.22,1.48C14.85,14.3,17,12.3,17,11.02 C17,10.2,16.19,10,15.52,10z M7.88,13L7.3,11.5h2.03l0.39,0.44C9.24,12.19,8.36,12.69,7.88,13z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M6,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S6,4.1,6,3z M20.06,1h-2.12L15.5,3.44l1.06,1.06L20.06,1z M22,23v-2h-1 c-1.04,0-2.08-0.35-3-1c-1.83,1.3-4.17,1.3-6,0c-1.83,1.3-4.17,1.3-6,0c-0.91,0.65-1.96,1-3,1H2l0,2h1c1.03,0,2.05-0.25,3-0.75 c1.89,1,4.11,1,6,0c1.89,1,4.11,1,6,0h0c0.95,0.5,1.97,0.75,3,0.75H22z M21,13.28c0,1.44-2.19,3.62-5.04,5.58 C15.65,18.95,15.33,19,15,19c-1.2,0-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5c-0.94,0-1.81-0.41-2.49-0.99 c0.46-0.39,0.96-0.78,1.49-1.17l-1.55-2.97C6.15,13.3,6,12.64,6,12V8c0-1.1,0.9-2,2-2h3c1.38,0,2.63-0.56,3.54-1.46l1.41,1.41 C14.68,7.21,12.93,8,11,8H9.6l0,3.5h2.8l1.69,1.88c1.95-0.84,3.77-1.38,5.06-1.38C19.99,12,21,12.25,21,13.28z M12.2,14.27 l-0.7-0.77L9,13.6l0.83,2.01C10.42,15.23,11.64,14.55,12.2,14.27z\"></path></g>" } } }, - "filter_7": { - "name": "filter_7", + "add_moderator": { + "name": "add_moderator", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2l4-8V5h-6v2h4l-4 8h2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M6,11.09v-4.7l6-2.25l6,2.25v3.69c0.71,0.1,1.38,0.31,2,0.6V5l-8-3L4,5v6.09c0,5.05,3.41,9.76,8,10.91 c0.03-0.01,0.05-0.02,0.08-0.02c-0.79-0.78-1.4-1.76-1.75-2.84C7.76,17.53,6,14.42,6,11.09z\"></path><path d=\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S19.76,12,17,12z M20,17.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20V17.5z\"></path></g></g>" } } }, - "filter_8": { - "name": "filter_8", + "emoji_events": { + "name": "emoji_events", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M15,6h-2V5H7v1H5C4.45,6,4,6.45,4,7v1c0,1.66,1.34,3,3,3h0.18c0.36,1.01,1.24,1.77,2.32,1.95V15H7v1h2.5h1H13v-1h-2.5 v-2.05c1.08-0.18,1.96-0.94,2.32-1.95H13c1.66,0,3-1.34,3-3V7C16,6.45,15.55,6,15,6z M5,8V7h2v3C5.9,10,5,9.1,5,8z M10,12 c-1.1,0-2-0.9-2-2V6h4v4C12,11.1,11.1,12,10,12z M15,8c0,1.1-0.9,2-2,2V7h2V8z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,5h-2V3H7v2H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94c0.63,1.5,1.98,2.63,3.61,2.96V19H7v2h10v-2h-4v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M12,14 c-1.65,0-3-1.35-3-3V5h6v6C15,12.65,13.65,14,12,14z M19,8c0,1.3-0.84,2.4-2,2.82V7h2V8z\"></path>" } } }, - "filter_9": { - "name": "filter_9", + "psychology": { + "name": "psychology", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M12.92,7.68l-0.5-0.87c-0.03-0.06-0.1-0.08-0.15-0.06l-0.62,0.25c-0.13-0.1-0.27-0.18-0.42-0.24l-0.09-0.66 C11.12,6.04,11.06,6,11,6h-1C9.94,6,9.89,6.04,9.88,6.11L9.78,6.77C9.63,6.83,9.49,6.92,9.36,7.01L8.74,6.76 c-0.06-0.02-0.12,0-0.15,0.06l-0.5,0.87C8.06,7.74,8.07,7.81,8.12,7.84l0.53,0.41C8.63,8.33,8.62,8.42,8.62,8.5 c0,0.08,0.01,0.17,0.02,0.24L8.12,9.16C8.07,9.19,8.06,9.26,8.08,9.32l0.5,0.87c0.03,0.06,0.1,0.08,0.15,0.06l0.62-0.25 c0.13,0.1,0.27,0.18,0.42,0.24l0.09,0.66C9.89,10.96,9.94,11,10,11h1c0.06,0,0.12-0.04,0.12-0.11l0.09-0.66 c0.15-0.06,0.29-0.15,0.42-0.24l0.62,0.25c0.06,0.02,0.12,0,0.15-0.06l0.5-0.87c0.03-0.06,0.02-0.12-0.03-0.16l-0.52-0.41 c0.01-0.08,0.02-0.16,0.02-0.24c0-0.08-0.01-0.17-0.02-0.24l0.53-0.41C12.93,7.81,12.94,7.74,12.92,7.68z M10.5,9.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S11.05,9.5,10.5,9.5z\"></path><path d=\"M10.5,4C8.19,4,6.3,5.75,6.05,8l-1.53,2.22C4.3,10.55,4.53,11,4.93,11H6v2c0,0.55,0.45,1,1,1h1v2h5v-3.76 c1.21-0.81,2-2.18,2-3.74C15,6.01,12.99,4,10.5,4z M12,11.65V15H9v-2H7v-3H5.89l1.13-1.64C7.09,6.5,8.61,5,10.5,5 C12.43,5,14,6.57,14,8.5C14,9.89,13.18,11.09,12,11.65z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z\"></path><path d=\"M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z\"></path></g></g>" } } }, - "filter_9_plus": { - "name": "filter_9_plus", + "outdoor_grill": { + "name": "outdoor_grill", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M15.66,13.88c-0.14-0.21-0.33-0.4-0.54-0.54C14.8,13.13,14.41,13,14,13s-0.8,0.13-1.12,0.34 c-0.21,0.14-0.4,0.33-0.54,0.54c-0.03,0.04-0.04,0.08-0.06,0.12H7.72l1.36-2.09C9.38,11.96,9.69,12,10,12s0.62-0.04,0.92-0.09 l0.78,1.2c0.22-0.26,0.47-0.49,0.76-0.66l-0.54-0.83C13.73,10.86,15,9.08,15,7H5c0,2.08,1.27,3.86,3.08,4.62l-3,4.61 C4.93,16.46,5,16.77,5.23,16.92c0.23,0.15,0.54,0.08,0.69-0.15L7.07,15H12c0,1.1,0.9,2,2,2s2-0.9,2-2 C16,14.59,15.87,14.2,15.66,13.88z M6.13,8h7.75c-0.45,1.72-2.01,3-3.87,3C8.14,11,6.57,9.72,6.13,8z M14,16c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C15,15.55,14.55,16,14,16z\"></path><path d=\"M8.64,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77C8.37,3.92,8.21,3.76,8.34,3h-0.5C7.71,3.67,7.86,4.23,8.37,4.78 C8.51,4.92,8.85,5.18,8.64,6z\"></path><path d=\"M10.14,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77C9.87,3.92,9.71,3.76,9.84,3h-0.5C9.21,3.67,9.36,4.23,9.87,4.78 C10.01,4.92,10.35,5.18,10.14,6z\"></path><path d=\"M11.64,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77c-0.25-0.3-0.41-0.47-0.28-1.23h-0.5c-0.13,0.67,0.02,1.23,0.53,1.78 C11.51,4.92,11.85,5.18,11.64,6z\"></path></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8c0-1.11-.9-2-2-2h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z M7.42,10h9.16c-0.77,1.76-2.54,3-4.58,3 S8.19,11.76,7.42,10z\"></path><path d=\"M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z\"></path><path d=\"M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z\"></path><path d=\"M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z\"></path></g></g>" } } }, - "filter_b_and_w": { - "name": "filter_b_and_w", + "heart_broken": { + "name": "heart_broken", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M13.6,3c-0.77,0-1.52,0.2-2.18,0.56L10,8h2.5L10,15.89L11,9H8.5l1.13-4.7C8.77,3.49,7.61,3,6.4,3C3.94,3,2,4.95,2,7.43 c0,3.33,3.33,5.79,8,10.07c4.38-3.98,8-6.65,8-10.07C18,4.95,16.06,3,13.6,3z M8.71,14.31C5.56,11.47,3.5,9.53,3.5,7.43 c0-1.64,1.27-2.93,2.9-2.93c0.53,0,1.07,0.14,1.54,0.41L6.6,10.5h2.67L8.71,14.31z M12.38,13.35l2.17-6.85h-2.5l0.59-1.84 c0.32-0.11,0.64-0.16,0.96-0.16c1.63,0,2.9,1.29,2.9,2.93C16.5,9.3,14.78,11.16,12.38,13.35z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16l-7-8v8H5l7-8V5h7v14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M16.5,3c-0.96,0-1.9,0.25-2.73,0.69L12,9h3l-3,10l1-9h-3l1.54-5.39C10.47,3.61,9.01,3,7.5,3C4.42,3,2,5.42,2,8.5 c0,4.13,4.16,7.18,10,12.5c5.47-4.94,10-8.26,10-12.5C22,5.42,19.58,3,16.5,3z M10.24,16.73C6.45,13.34,4,11,4,8.5 C4,6.54,5.54,5,7.5,5c0.59,0,1.19,0.15,1.73,0.42L7.35,12h3.42L10.24,16.73z M15.13,15.53L17.69,7h-2.91l0.61-1.82 C15.75,5.06,16.13,5,16.5,5C18.46,5,20,6.54,20,8.5C20,10.71,17.98,12.93,15.13,15.53z\"></path></g>" } } }, - "filter_center_focus": { - "name": "filter_center_focus", + "sentiment_very_satisfied": { + "name": "sentiment_very_satisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm1-10.06L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12L13 9.94zm-4.12 0L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11l1.06-1.06zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\"></path>" } } }, - "filter_drama": { - "name": "filter_drama", + "fitbit": { + "name": "fitbit", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.31,11.51c0.83,0,1.51-0.68,1.51-1.51s-0.68-1.51-1.51-1.51c-0.83,0-1.51,0.68-1.51,1.51S15.48,11.51,16.31,11.51z M12.92,11.34c0.74,0,1.34-0.6,1.34-1.34s-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34S12.18,11.34,12.92,11.34z M12.92,7.94 c0.74,0,1.34-0.6,1.34-1.34c0-0.74-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34C11.58,7.33,12.18,7.94,12.92,7.94z M12.92,14.74 c0.74,0,1.34-0.6,1.34-1.34c0-0.74-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34C11.58,14.14,12.18,14.74,12.92,14.74z M9.52,11.18 c0.65,0,1.18-0.53,1.18-1.18s-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18S8.87,11.18,9.52,11.18z M9.52,7.77 c0.65,0,1.18-0.53,1.18-1.18s-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18S8.87,7.77,9.52,7.77z M9.52,14.59 c0.65,0,1.18-0.53,1.18-1.18c0-0.65-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18C8.35,14.06,8.87,14.59,9.52,14.59z M9.52,18 c0.65,0,1.18-0.53,1.18-1.18c0-0.65-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18C8.35,17.47,8.87,18,9.52,18z M9.52,4.36 c0.65,0,1.18-0.53,1.18-1.18S10.17,2,9.52,2C8.87,2,8.35,2.53,8.35,3.18S8.87,4.36,9.52,4.36z M6.13,11.01 c0.56,0,1.01-0.45,1.01-1.01S6.69,8.99,6.13,8.99c-0.56,0-1.01,0.45-1.01,1.01S5.57,11.01,6.13,11.01z M6.13,14.41 c0.56,0,1.01-0.45,1.01-1.01c0-0.56-0.45-1.01-1.01-1.01c-0.56,0-1.01,0.45-1.01,1.01C5.12,13.95,5.57,14.41,6.13,14.41z M6.13,7.61 c0.56,0,1.01-0.45,1.01-1.01c0-0.56-0.45-1.01-1.01-1.01c-0.56,0-1.01,0.45-1.01,1.01C5.12,7.16,5.57,7.61,6.13,7.61z M3.04,10.84 c0.46,0,0.84-0.38,0.84-0.84S3.5,9.16,3.04,9.16C2.57,9.16,2.2,9.54,2.2,10S2.57,10.84,3.04,10.84z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.89,13.89c1.04,0,1.89-0.85,1.89-1.89s-0.85-1.89-1.89-1.89C18.85,10.11,18,10.96,18,12S18.85,13.89,19.89,13.89z M15.65,13.68c0.93,0,1.68-0.75,1.68-1.68s-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68S14.72,13.68,15.65,13.68z M15.65,9.42 c0.93,0,1.68-0.75,1.68-1.68c0-0.93-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68C13.97,8.67,14.72,9.42,15.65,9.42z M15.65,17.93c0.93,0,1.68-0.75,1.68-1.68c0-0.93-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68 C13.97,17.17,14.72,17.93,15.65,17.93z M11.41,13.47c0.81,0,1.47-0.66,1.47-1.47s-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 S10.59,13.47,11.41,13.47z M11.41,9.21c0.81,0,1.47-0.66,1.47-1.47s-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 S10.59,9.21,11.41,9.21z M11.41,17.73c0.81,0,1.47-0.66,1.47-1.47c0-0.81-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 C9.93,17.07,10.59,17.73,11.41,17.73z M11.41,22c0.81,0,1.47-0.66,1.47-1.47c0-0.81-0.66-1.47-1.47-1.47 c-0.81,0-1.47,0.66-1.47,1.47C9.93,21.34,10.59,22,11.41,22z M11.41,4.94c0.81,0,1.47-0.66,1.47-1.47S12.22,2,11.41,2 c-0.81,0-1.47,0.66-1.47,1.47S10.59,4.94,11.41,4.94z M7.16,13.26c0.7,0,1.26-0.57,1.26-1.26s-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26S6.46,13.26,7.16,13.26z M7.16,17.51c0.7,0,1.26-0.57,1.26-1.26c0-0.7-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26C5.9,16.94,6.46,17.51,7.16,17.51z M7.16,9.02c0.7,0,1.26-0.57,1.26-1.26c0-0.7-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26C5.9,8.45,6.46,9.02,7.16,9.02z M3.29,13.05c0.58,0,1.05-0.47,1.05-1.05s-0.47-1.05-1.05-1.05 c-0.58,0-1.05,0.47-1.05,1.05S2.71,13.05,3.29,13.05z\"></path>" } } }, - "filter_frames": { - "name": "filter_frames", + "transgender": { + "name": "transgender", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13.5,1.5V3h1.94l-3.16,3.16C11.62,5.74,10.84,5.5,10,5.5S8.38,5.74,7.72,6.16l-0.6-0.6L8.18,4.5L7.12,3.44L6.06,4.5L4.56,3 H6.5V1.5H2V6h1.5V4.06L5,5.56L3.94,6.62L5,7.68l1.06-1.06l0.56,0.56C6.07,7.89,5.75,8.78,5.75,9.75c0,2.09,1.51,3.83,3.5,4.18v1.57 h-1.5V17h1.5v1.5h1.5V17h1.5v-1.5h-1.5v-1.57c1.99-0.35,3.5-2.09,3.5-4.18c0-0.97-0.32-1.86-0.87-2.57l3.12-3.12V6H18V1.5H13.5z M10,12.5c-1.52,0-2.75-1.23-2.75-2.75C7.25,8.23,8.48,7,10,7s2.75,1.23,2.75,2.75C12.75,11.27,11.52,12.5,10,12.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM6 18h12V8H6v10zm2-8h8v6H8v-6z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,8c1.93,0,3.5,1.57,3.5,3.5S13.93,15,12,15s-3.5-1.57-3.5-3.5S10.07,8,12,8z M16.53,8.38l3.97-3.96V7h2V1h-6v2h2.58 l-3.97,3.97C14.23,6.36,13.16,6,12,6c-1.16,0-2.23,0.36-3.11,0.97L8.24,6.32l1.41-1.41L8.24,3.49L6.82,4.9L4.92,3H7.5V1h-6v6h2V4.42 l1.91,1.9L3.99,7.74l1.41,1.41l1.41-1.41l0.65,0.65C6.86,9.27,6.5,10.34,6.5,11.5c0,2.7,1.94,4.94,4.5,5.41L11,19H9v2h2v2h2v-2h2v-2 h-2l0-2.09c2.56-0.47,4.5-2.71,4.5-5.41C17.5,10.34,17.14,9.27,16.53,8.38z\"></path>" } } }, - "filter_hdr": { - "name": "filter_hdr", + "piano": { + "name": "piano", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M7,15.5H4.5v-11H6v7C6,11.78,6.22,12,6.5,12H7V15.5z M12,15.5H8V12h0.5C8.78,12,9,11.78,9,11.5v-7h2v7c0,0.28,0.22,0.5,0.5,0.5H12 V15.5z M15.5,15.5H13V12h0.5c0.28,0,0.5-0.22,0.5-0.5v-7h1.5V15.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M14,14.5h0.25V19h-4.5v-4.5H10 c0.55,0,1-0.45,1-1V5h2v8.5C13,14.05,13.45,14.5,14,14.5z M5,5h2v8.5c0,0.55,0.45,1,1,1h0.25V19H5V5z M19,19h-3.25v-4.5H16 c0.55,0,1-0.45,1-1V5h2V19z\"></path>" } } }, - "filter_none": { - "name": "filter_none", + "whatshot": { + "name": "whatshot", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.57 13.16c-1.36.28-2.17 1.16-2.17 2.41 0 1.34 1.11 2.42 2.49 2.42 2.05 0 3.71-1.66 3.71-3.71 0-1.07-.15-2.12-.46-3.12-.79 1.07-2.2 1.72-3.57 2zM13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM12 20c-3.31 0-6-2.69-6-6 0-1.53.3-3.04.86-4.43 1.01 1.01 2.41 1.63 3.97 1.63 2.66 0 4.75-1.83 5.28-4.43C17.34 8.97 18 11.44 18 14c0 3.31-2.69 6-6 6z\"></path>" } } }, - "filter_tilt_shift": { - "name": "filter_tilt_shift", + "sanitizer": { + "name": "sanitizer", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15.5,6.5C15.5,5.66,17,4,17,4s1.5,1.66,1.5,2.5C18.5,7.33,17.83,8,17,8S15.5,7.33,15.5,6.5z M19.5,15 c1.38,0,2.5-1.12,2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17,10.83,17,12.5C17,13.88,18.12,15,19.5,15z M13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14z M16,12v8c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-8c0-2.97,2.16-5.43,5-5.91V4H7V2h6c1.13,0,2.15,0.39,2.99,1.01l-1.43,1.43 C14.1,4.17,13.57,4,13,4h-2v2.09C13.84,6.57,16,9.03,16,12z M14,12c0-2.21-1.79-4-4-4s-4,1.79-4,4v8h8V12z\"></path>" } } }, - "filter_vintage": { - "name": "filter_vintage", + "person_add": { + "name": "person_add", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-.91-.52-1.95-.8-3.01-.8-1.02 0-2.05.26-2.99.8-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-.94-.54-1.97-.8-2.99-.8-1.05 0-2.1.28-3.01.8 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19.91.52 1.95.8 3.01.8 1.02 0 2.05-.26 2.99-.8.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54.94.54 1.97.8 2.99.8 1.05 0 2.1-.28 3.01-.8-.01-2.07-1.08-4.08-3-5.19zm-2.54-3.88c.21-.17.38-.29.54-.37.61-.35 1.3-.54 2-.54.27 0 .53.03.79.08-.31.91-.94 1.69-1.78 2.18-.17.1-.36.18-.58.27l-1.38.52c-.17-.46-.41-.87-.72-1.24l1.13-.9zM12 3.37c.63.72 1 1.66 1 2.63 0 .19-.02.41-.05.63l-.23 1.44C12.48 8.03 12.24 8 12 8s-.48.03-.71.07l-.23-1.44C11.02 6.41 11 6.19 11 6c0-.98.37-1.91 1-2.63zM4.51 7.68c.26-.06.53-.08.8-.08.69 0 1.38.18 1.99.54.15.09.32.2.49.35l1.15.96c-.3.36-.53.76-.7 1.2l-1.38-.52c-.21-.09-.4-.18-.56-.27-.87-.5-1.49-1.27-1.79-2.18zm3.33 7.79c-.21.17-.38.29-.54.37-.61.35-1.3.54-2 .54-.27 0-.53-.03-.79-.08.31-.91.94-1.69 1.78-2.18.17-.1.36-.18.58-.27l1.38-.52c.16.46.41.88.72 1.24l-1.13.9zM12 20.63c-.63-.72-1-1.66-1-2.63 0-.2.02-.41.06-.65l.22-1.42c.23.04.47.07.72.07.24 0 .48-.03.71-.07l.23 1.44c.04.22.06.44.06.63 0 .98-.37 1.91-1 2.63zm6.69-4.24c-.69 0-1.38-.18-1.99-.54-.18-.1-.34-.22-.49-.34l-1.15-.96c.3-.36.54-.76.7-1.21l1.38.52c.22.08.41.17.57.26.85.49 1.47 1.27 1.78 2.18-.27.07-.54.09-.8.09z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H9zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z\"></path>" } } }, - "flare": { - "name": "flare", + "share": { + "name": "share", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24l2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71l1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" } } }, - "flash_auto": { - "name": "flash_auto", + "emoji_objects": { + "name": "emoji_objects", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><path d=\"M14.91,7.07c-0.01-0.04-0.01-0.08-0.02-0.12c-0.06-0.28-0.15-0.56-0.26-0.82c-0.02-0.05-0.04-0.09-0.06-0.14 c-0.11-0.26-0.25-0.5-0.4-0.74c-0.03-0.04-0.05-0.08-0.08-0.11c-0.16-0.23-0.34-0.46-0.55-0.66c-0.02-0.02-0.03-0.03-0.05-0.05 c-0.2-0.2-0.42-0.38-0.66-0.54c-0.02-0.02-0.04-0.03-0.06-0.05c-0.24-0.16-0.49-0.29-0.75-0.41c-0.04-0.02-0.09-0.04-0.13-0.06 c-0.26-0.11-0.53-0.19-0.81-0.25c-0.05-0.01-0.1-0.02-0.15-0.03C10.64,3.04,10.34,3.01,10.04,3C10.03,3,10.01,3,10,3 C9.9,3,9.79,3.01,9.69,3.02c-0.06,0-0.12,0-0.18,0.01C9.31,3.04,9.12,3.07,8.93,3.11c-1.94,0.4-3.49,2-3.84,3.95 c-0.31,1.72,0.26,3.3,1.33,4.4C6.78,11.84,7,12.34,7,12.87c0,0.77,0,1.6,0,2.14c0,0.55,0.45,1,1,1h0.28l0,0c0.35,0.6,0.98,1,1.72,1 s1.38-0.4,1.72-1l0,0H12c0.55,0,1-0.45,1-1v-2.13c0-0.52,0.21-1.02,0.58-1.4C14.45,10.57,15,9.35,15,8 C15,7.68,14.96,7.37,14.91,7.07z M12,15l-2,0l0,0l0,0l-2,0l0-1h4V15z M12,13H8h0l0-1h4V13z M12.86,10.77 c-0.07,0.07-0.12,0.15-0.19,0.23H7.32c-0.06-0.08-0.12-0.16-0.19-0.24c-0.91-0.94-1.3-2.22-1.06-3.52 c0.29-1.57,1.52-2.83,3.06-3.16C9.42,4.03,9.71,4,10,4c2.21,0,4,1.79,4,4C14,9.04,13.6,10.02,12.86,10.77z\"></path><g><g><g><rect height=\"2.5\" width=\"1\" x=\"9.5\" y=\"8.5\"></rect></g></g><g><g><rect height=\"2.5\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.9225 8.8839)\" width=\"1\" x=\"8.76\" y=\"6.72\"></rect></g></g><g><g><rect height=\"2.5\" transform=\"matrix(-0.7071 -0.7071 0.7071 -0.7071 12.6945 21.1976)\" width=\"1\" x=\"10.24\" y=\"6.72\"></rect></g></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,17h-4v-1h4V17z M10,19v-1h4v1H10z M15.31,13.74c-0.09,0.08-0.16,0.18-0.24,0.26H8.92c-0.08-0.09-0.15-0.19-0.24-0.27c-1.32-1.18-1.91-2.94-1.59-4.7 c0.36-1.94,1.96-3.55,3.89-3.93C11.32,5.03,11.66,5,12,5c2.76,0,5,2.24,5,5C17,11.43,16.39,12.79,15.31,13.74z\"></path></g><g><rect height=\"3\" width=\"1\" x=\"11.5\" y=\"11\"></rect><rect height=\"3\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.0312 10.8536)\" width=\"1\" x=\"10.59\" y=\"8.79\"></rect><rect height=\"3\" transform=\"matrix(-0.7071 -0.7071 0.7071 -0.7071 14.7678 26.7028)\" width=\"1\" x=\"12.41\" y=\"8.79\"></rect></g></g>" } } }, - "flash_off": { - "name": "flash_off", + "male": { + "name": "male", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16,4h-4.5v1.5h1.94l-2.76,2.76C9.99,7.78,9.15,7.5,8.25,7.5C5.9,7.5,4,9.4,4,11.75C4,14.1,5.9,16,8.25,16 s4.25-1.9,4.25-4.25c0-0.9-0.28-1.74-0.76-2.43l2.76-2.76V8.5H16V4z M8.25,14.5c-1.52,0-2.75-1.23-2.75-2.75S6.73,9,8.25,9 S11,10.23,11,11.75S9.77,14.5,8.25,14.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.5,11c1.93,0,3.5,1.57,3.5,3.5S11.43,18,9.5,18S6,16.43,6,14.5S7.57,11,9.5,11z M9.5,9C6.46,9,4,11.46,4,14.5 S6.46,20,9.5,20s5.5-2.46,5.5-5.5c0-1.16-0.36-2.23-0.97-3.12L18,7.42V10h2V4h-6v2h2.58l-3.97,3.97C11.73,9.36,10.66,9,9.5,9z\"></path>" } } }, - "flash_on": { - "name": "flash_on", + "piano_off": { + "name": "piano_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V15.5C3,16.33,3.67,17,4.5,17h10.38l1.13,1.13L17.07,17.07z M7,15.5H4.5V6.62 L6,8.12v3.38C6,11.78,6.22,12,6.5,12H7V15.5z M8,15.5V12h0.5C8.78,12,9,11.78,9,11.5v-0.38l3,3v1.38H8z M5.12,3H15.5 C16.33,3,17,3.67,17,4.5v10.38l-1.5-1.5V4.5H14v7c0,0.11-0.04,0.2-0.1,0.28L11,8.88V4.5H9v2.38L5.12,3z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 2v11h3v9l7-12h-4l3-8z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61L21.19,21.19z M8.25,19H5V7.83l2,2v3.67 c0,0.55,0.45,1,1,1h0.25V19z M9.75,19v-4.5H10c0.46,0,0.82-0.31,0.94-0.73l3.31,3.31V19H9.75z M11,8.17L5.83,3H19c1.1,0,2,0.9,2,2 v13.17l-2-2V5h-2v8.5c0,0.19-0.07,0.36-0.16,0.51L13,10.17V5h-2V8.17z\"></path>" } } }, - "flip": { - "name": "flip", + "architecture": { + "name": "architecture", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M6.67,14.89L6.79,16l0.81-0.77l1.92-5.28C9.19,9.9,8.87,9.79,8.58,9.63L6.67,14.89z\"></path><path d=\"M11.42,9.63c-0.29,0.16-0.61,0.27-0.95,0.32l1.92,5.28L13.21,16l0.13-1.11L11.42,9.63z\"></path><path d=\"M12,7c0-0.93-0.64-1.71-1.5-1.93V4h-1v1.07C8.64,5.29,8,6.07,8,7c0,1.1,0.9,2,2,2S12,8.1,12,7z M10,8C9.45,8,9,7.55,9,7 c0-0.55,0.45-1,1-1s1,0.45,1,1C11,7.55,10.55,8,10,8z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z\"></path><path d=\"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z\"></path><path d=\"M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z\"></path></g></g>" } } }, - "flip_camera_android": { - "name": "flip_camera_android", + "science": { + "name": "science", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M8,10c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S8,8.9,8,10z M11,10c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S11,9.45,11,10z\"></path><path d=\"M7,7H4.83C5.86,5.21,7.79,4,10,4c2.61,0,4.82,1.67,5.65,4h1.06C15.85,5.11,13.17,3,10,3C7.44,3,5.22,4.39,4,6.44V4H3v4h4 V7z\"></path><path d=\"M13,12v1h2.17c-1.04,1.79-2.96,3-5.17,3c-2.61,0-4.82-1.67-5.65-4H3.29c0.86,2.89,3.54,5,6.71,5c2.56,0,4.78-1.39,6-3.44 V16h1v-4H13z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10.5,5.52v3.75L14.96,15l-9.91,0L9.5,9.27V5.52L9.08,5h1.84L10.5,5.52z M11.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81 L8.5,5.87v3.05l-4.24,5.46C3.74,15.04,4.21,16,5.04,16h9.91c0.83,0,1.3-0.96,0.79-1.61L11.5,8.93V5.87l0.85-1.06 C12.61,4.48,12.38,4,11.96,4L11.96,4z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z\"></path><path d=\"M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z\"></path><path d=\"M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13,11.33L18,18H6l5-6.67V6h2 M15.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L9,6.5v4.17L3.2,18.4C2.71,19.06,3.18,20,4,20h16 c0.82,0,1.29-0.94,0.8-1.6L15,10.67V6.5l1.35-1.69C16.61,4.48,16.38,4,15.96,4L15.96,4z\"></path></g>" } } }, - "flip_camera_ios": { - "name": "flip_camera_ios", + "surfing": { + "name": "surfing", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16,5h-2l-2-2H8L6,5H4C3.45,5,3,5.45,3,6v9c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V6C17,5.45,16.55,5,16,5z M16,15H4V6h2 h0.41l0.29-0.29L8.41,4h3.17l1.71,1.71L13.59,6H14h2V15z\"></path><path d=\"M10,6C9.28,6,8.62,6.2,8.04,6.54l0.73,0.73C9.15,7.1,9.56,7,10,7c1.65,0,3,1.35,3,3h-1.5l2,2l2-2H14C14,7.79,12.21,6,10,6 z\"></path><path d=\"M10,13c-1.65,0-3-1.35-3-3h1.5l-2-2l-2,2H6c0,2.21,1.79,4,4,4c0.72,0,1.38-0.2,1.96-0.54l-0.73-0.73 C10.85,12.9,10.44,13,10,13z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.5,3.25C15.5,4.22,14.72,5,13.75,5S12,4.22,12,3.25s0.78-1.75,1.75-1.75S15.5,2.28,15.5,3.25z M15,16.5 c-1.52,1.33-3.48,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5c0.86,0,1.71-0.2,2.5-0.6 c1.57,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18l0-1.5h-0.5C16.63,17.5,15.76,17.17,15,16.5z M11.9,7.2 L10,8.48L13,11v3.09c0.5,0.35,0.98,0.71,1.41,1.07c-0.54,0.5-1.2,0.84-1.91,0.84c-1,0-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16 c-0.19,0-0.37-0.02-0.55-0.07C4.71,14.38,3,12.66,3,11.52c0-0.45,0.28-1.02,1.47-1.02c0.68,0,1.56,0.19,2.53,0.51L6.53,8.28 c-0.1-0.57,0.13-1.16,0.63-1.5l1.72-1.16L7.54,5.38l-2.3,1.56L4.4,5.7l2.8-1.9l4.22,0.69c0.36,0.06,0.69,0.23,0.91,0.51l1.38,2.1 c0.64,0.85,1.66,1.4,2.8,1.4V10c-1.64,0-3.09-0.79-4-2L11.9,7.2z M8.4,9.15l0.35,2.55c0.86,0.37,2.18,1.05,2.74,1.42V11.7L8.4,9.15z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h3.17h0.88l0.59-0.65L9.88,5h4.24l1.24,1.35L15.95,7h0.88H20V19z\"></path></g><g><path d=\"M12,17c-2.21,0-4-1.79-4-4h2l-2.5-2.5L5,13h2c0,2.76,2.24,5,5,5c0.86,0,1.65-0.24,2.36-0.62l-0.74-0.74 C13.13,16.87,12.58,17,12,17z\"></path></g><g><path d=\"M12,8c-0.86,0-1.65,0.24-2.36,0.62l0.74,0.73C10.87,9.13,11.42,9,12,9c2.21,0,4,1.79,4,4h-2l2.5,2.5L19,13h-2 C17,10.24,14.76,8,12,8z\"></path></g></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,23c-1.03,0-2.06-0.25-3-0.75h0c-1.89,1-4.11,1-6,0c-1.89,1-4.11,1-6,0C5.05,22.75,4.03,23,3,23H2l0-2h1 c1.04,0,2.08-0.35,3-1c1.83,1.3,4.17,1.3,6,0c1.83,1.3,4.17,1.3,6,0c0.91,0.65,1.96,1,3,1h1v2H21z M17,1.5c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S18.1,1.5,17,1.5z M14.43,8.48L12.18,10L16,13v3.84c0.53,0.38,1.03,0.78,1.49,1.17C16.81,18.59,15.94,19,15,19 c-1.2,0-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5c-0.33,0-0.65-0.05-0.96-0.14C5.19,16.9,3,14.72,3,13.28C3,12.25,4.01,12,4.85,12 c0.98,0,2.28,0.31,3.7,0.83l-0.53-3.1C7.91,9.06,8.2,8.35,8.8,7.94l2.15-1.45l-2-0.37L6.13,8.05L5,6.4L8.5,4l5.55,1.03 c0.45,0.09,0.93,0.37,1.22,0.89l0.88,1.55C17.01,8.98,18.64,10,20.5,10v2C17.91,12,15.64,10.58,14.43,8.48z M10.3,11.1l0.44,2.65 c0.92,0.42,2.48,1.27,3.26,1.75V14L10.3,11.1z\"></path>" } } }, - "gradient": { - "name": "gradient", + "person_add_alt_1": { + "name": "person_add_alt_1", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M2,13.86V16h12v-2.14c0-1.9-4-2.86-6-2.86C6,11,2,11.96,2,13.86z M3,13.86C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15H3 V13.86z\"></path><path d=\"M11,7c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7c0,1.66,1.34,3,3,3C9.66,10,11,8.66,11,7z M10,7c0,1.1-0.9,2-2,2S6,8.1,6,7 s0.9-2,2-2S10,5.9,10,7z\"></path><polygon points=\"13,9 15,9 15,7 16,7 16,9 18,9 18,10 16,10 16,12 15,12 15,10 13,10\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M11,8c0,1.1-0.9,2-2,2S7,9.1,7,8s0.9-2,2-2S11,6.9,11,8z M1,18v2h16v-2c0-2.66-5.33-4-8-4S1,15.34,1,18z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z M20,15v-3h3v-2h-3V7h-2v3h-3v2 h3v3H20z\"></path></g>" } } }, - "grain": { - "name": "grain", + "co2": { + "name": "co2", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11.5,8h-2C9.22,8,9,8.22,9,8.5v3C9,11.78,9.22,12,9.5,12h2c0.28,0,0.5-0.22,0.5-0.5v-3C12,8.22,11.78,8,11.5,8z M11,11h-1 V9h1V11z M17,14h-3v-2c0-0.28,0.22-0.5,0.5-0.5H16V11h-2v-1h2.5c0.28,0,0.5,0.22,0.5,0.5V12c0,0.28-0.22,0.5-0.5,0.5H15V13h2V14z M4,11.34V8.67C4,8.3,4.3,8,4.67,8h1.66C6.7,8,7,8.3,7,8.67v0.66H6V9H5v2h1v-0.34h1v0.67C7,11.7,6.7,12,6.34,12H4.67 C4.3,12,4,11.7,4,11.34z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,9h-3c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-4C15,9.45,14.55,9,14,9z M13.5,13.5h-2v-3h2V13.5z M8,13v1c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1H6.5v-0.5h-2v3h2V13H8z M20.5,15.5h-2 v1h3V18H17v-2.5c0-0.55,0.45-1,1-1h2v-1h-3V12h3.5c0.55,0,1,0.45,1,1v1.5C21.5,15.05,21.05,15.5,20.5,15.5z\"></path>" } } }, - "grid_off": { - "name": "grid_off", + "public": { + "name": "public", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14L0 2.55l2 2V20c0 1.1.9 2 2 2h15.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-.61.08-1.21.21-1.78L8.99 15v1c0 1.1.9 2 2 2v1.93C7.06 19.43 4 16.07 4 12zm13.89 5.4c-.26-.81-1-1.4-1.9-1.4h-1v-3c0-.55-.45-1-1-1h-6v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41C17.92 5.77 20 8.65 20 12c0 2.08-.81 3.98-2.11 5.4z\"></path>" } } }, - "grid_on": { - "name": "grid_on", + "luggage": { + "name": "luggage", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3 H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1s1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c1.1,0,2-0.9,2-2V8 C19,6.9,18.1,6,17,6z M10.5,3.5h3V6h-3V3.5z M17,19H7V8h10V19z\"></path></g>" } } }, - "hdr_enhanced_select": { - "name": "hdr_enhanced_select", + "emoji_food_beverage": { + "name": "emoji_food_beverage", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><g><path d=\"M15,5H5v7c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2V9h1c0.55,0,1-0.45,1-1V6C16,5.45,15.55,5,15,5z M8.5,8.2L9,8.54V10H8V8.54 L8.5,8.2z M13,9v3c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V6h2.25v1.17L7.11,7.93C7.04,7.97,7,8.05,7,8.13v2.62 C7,10.89,7.11,11,7.25,11h2.5C9.89,11,10,10.89,10,10.75V8.13c0-0.08-0.04-0.16-0.11-0.21L8.75,7.17V6H13V9z M15,8h-1V6h1V8z\"></path></g><g><rect height=\"1\" width=\"11\" x=\"4\" y=\"15\"></rect></g></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S8.69,2,12,2z M12,4C9.79,4,8,5.79,8,8s1.79,4,4,4s4-1.79,4-4 S14.21,4,12,4z M13,11h-2V9H9V7h2V5h2v2h2v2h-2V11z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M18,18.5c0,0.6-0.4,1.1-0.9,1.4 L18,22h-1.5l-0.9-2h-1.1v2H13v-6h3.5c0.8,0,1.5,0.7,1.5,1.5V18.5z M16.5,18.5v-1h-2v1H16.5z M3.5,18v-2H5v6H3.5v-2.5h-2V22H0v-6 h1.5v2H3.5z M10,16c0.8,0,1.5,0.7,1.5,1.5v3c0,0.8-0.7,1.5-1.5,1.5H6.5v-6H10z M10,20.5v-3H8v3H10z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><rect height=\"2\" width=\"18\" x=\"2\" y=\"19\"></rect><path d=\"M20,3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.89,2-2V5C22,3.89,21.11,3,20,3z M16,13 c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V5h3v1.4L7.19,7.85C7.07,7.94,7,8.09,7,8.24v4.26C7,12.78,7.22,13,7.5,13h4 c0.28,0,0.5-0.22,0.5-0.5V8.24c0-0.15-0.07-0.3-0.19-0.39L10,6.4V5h6V13z M9.5,7.28l1.5,1.2V12H8V8.48L9.5,7.28z M20,8h-2V5h2V8z\"></path></g></g>" } } }, - "hdr_off": { - "name": "hdr_off", + "personal_injury": { + "name": "personal_injury", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,8c1.66,0,3-1.34,3-3s-1.34-3-3-3S7,3.34,7,5S8.34,8,10,8z M10,3.5c0.83,0,1.5,0.67,1.5,1.5S10.83,6.5,10,6.5 S8.5,5.83,8.5,5S9.17,3.5,10,3.5z M15.03,10.37C13.56,9.5,11.84,9,10,9s-3.56,0.5-5.03,1.37C4.36,10.73,4,11.39,4,12.09V18h1.5 v-5.91c0-0.18,0.09-0.34,0.22-0.42C7.02,10.9,8.5,10.5,10,10.5c0.63,0,1.25,0.07,1.85,0.21l-1.29,2.79H8.73 c-1.24,0-2.25,1.01-2.25,2.25c0,1.24,1.01,2.25,2.25,2.25h5.77c0.83,0,1.5-0.67,1.5-1.5v-4.41C16,11.39,15.64,10.73,15.03,10.37z M9.18,16.5H8.73c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h1.15L9.18,16.5z M14.5,16.5h-3.66l2.46-5.33 c0.34,0.14,0.67,0.31,0.98,0.49c0.14,0.08,0.22,0.25,0.22,0.42V16.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49L1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,10c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S8,3.79,8,6C8,8.21,9.79,10,12,10z M12,4c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 s-2-0.9-2-2C10,4.9,10.9,4,12,4z M18.39,12.56C16.71,11.7,14.53,11,12,11c-2.53,0-4.71,0.7-6.39,1.56C4.61,13.07,4,14.1,4,15.22V22 h2v-6.78c0-0.38,0.2-0.72,0.52-0.88C7.71,13.73,9.63,13,12,13c0.76,0,1.47,0.07,2.13,0.2l-1.55,3.3H9.75C8.23,16.5,7,17.73,7,19.25 C7,20.77,8.23,22,9.75,22h2.18H18c1.1,0,2-0.9,2-2v-4.78C20,14.1,19.39,13.07,18.39,12.56z M10.94,20H9.75C9.34,20,9,19.66,9,19.25 c0-0.41,0.34-0.75,0.75-0.75h1.89L10.94,20z M18,20h-4.85l2.94-6.27c0.54,0.2,1.01,0.41,1.4,0.61C17.8,14.5,18,14.84,18,15.22V20z\"></path>" } } }, - "hdr_on": { - "name": "hdr_on", + "person_add_alt": { + "name": "person_add_alt", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M8,10c1.66,0,3-1.34,3-3S9.66,4,8,4S5,5.34,5,7S6.34,10,8,10z M8,5.5c0.83,0,1.5,0.67,1.5,1.5S8.83,8.5,8,8.5 S6.5,7.83,6.5,7S7.17,5.5,8,5.5z\"></path><path d=\"M13.03,12.37C11.56,11.5,9.84,11,8,11s-3.56,0.5-5.03,1.37C2.36,12.72,2,13.39,2,14.09V16h12v-1.91 C14,13.39,13.64,12.72,13.03,12.37z M12.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C5.02,12.9,6.5,12.5,8,12.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\"></path><polygon points=\"16.25,7.75 16.25,6 14.75,6 14.75,7.75 13,7.75 13,9.25 14.75,9.25 14.75,11 16.25,11 16.25,9.25 18,9.25 18,7.75\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,9V6h-2v3h-3v2h3v3h2v-3h3V9H20z M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6 c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2S7,9.1,7,8C7,6.9,7.9,6,9,6z M15.39,14.56C13.71,13.7,11.53,13,9,13c-2.53,0-4.71,0.7-6.39,1.56 C1.61,15.07,1,16.1,1,17.22V20h16v-2.78C17,16.1,16.39,15.07,15.39,14.56z M15,18H3v-0.78c0-0.38,0.2-0.72,0.52-0.88 C4.71,15.73,6.63,15,9,15c2.37,0,4.29,0.73,5.48,1.34C14.8,16.5,15,16.84,15,17.22V18z\"></path></g>" } } }, - "hdr_plus": { - "name": "hdr_plus", + "person_remove_alt_1": { + "name": "person_remove_alt_1", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M2,13.86V16h12v-2.14c0-1.9-4-2.86-6-2.86C6,11,2,11.96,2,13.86z M3,13.86C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15H3 V13.86z\"></path><path d=\"M11,7c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7c0,1.66,1.34,3,3,3C9.66,10,11,8.66,11,7z M10,7c0,1.1-0.9,2-2,2S6,8.1,6,7 s0.9-2,2-2S10,5.9,10,7z\"></path><rect height=\"1\" transform=\"matrix(-1 4.479249e-11 -4.479249e-11 -1 30 19)\" width=\"4\" x=\"13\" y=\"9\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M8.13,19c1.15,0.64,2.47,1,3.87,1c4.41,0,8-3.59,8-8s-3.59-8-8-8s-8,3.59-8,8c0,2.52,1.17,4.77,3,6.24V13h3.5 c0.8,0,1.5,0.7,1.5,1.5v1c0,0.6-0.4,1.1-0.9,1.4L12,19h-1.5l-0.9-2H8.5v2H8.13z M12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10 S2,17.52,2,12S6.48,2,12,2z M17.5,16H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16z M10.5,15.5v-1h-2v1H10.5z M10.5,8V6H12v6 h-1.5V9.5h-2V12H7V6h1.5v2H10.5z M16,6c0.8,0,1.5,0.7,1.5,1.5v3c0,0.8-0.7,1.5-1.5,1.5h-3V6H16z M16,10.5v-3h-1.5v3H16z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z\"></path><path d=\"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z\"></path><rect height=\"2\" width=\"6\" x=\"17\" y=\"10\"></rect></g></g>" } } }, - "hdr_strong": { - "name": "hdr_strong", + "engineering": { + "name": "engineering", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M4.82,8H5c0,1.38,1.12,2.5,2.5,2.5S10,9.38,10,8h0.32c0.14,0,0.25-0.11,0.25-0.25S10.45,7.5,10.32,7.5H10 c0-1.02-0.62-1.9-1.5-2.29v0.54C8.5,5.89,8.39,6,8.25,6S8,5.89,8,5.75v-0.7C7.84,5.02,7.67,5,7.5,5S7.16,5.02,7,5.05v0.7 C7,5.89,6.89,6,6.75,6S6.5,5.89,6.5,5.75V5.21C5.62,5.6,5,6.48,5,7.5H4.82c-0.14,0-0.25,0.11-0.25,0.25S4.68,8,4.82,8z M9,8 c0,0.83-0.67,1.5-1.5,1.5S6,8.83,6,8H9z\"></path><path d=\"M17.27,5.31l0.66-0.59L17.4,3.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L16.04,3h-1.07l-0.18,0.87 c-0.12,0.05-0.24,0.12-0.34,0.19L13.6,3.79l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27 c0.1,0.07,0.2,0.13,0.31,0.18L14.96,8h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61 C17.28,5.55,17.28,5.43,17.27,5.31z M15.5,6.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C16.39,5.99,15.99,6.39,15.5,6.39z\"></path><path d=\"M15.3,8.72l-0.59,0.2c-0.07-0.05-0.15-0.1-0.23-0.13l-0.13-0.61H13.6l-0.13,0.61c-0.08,0.04-0.17,0.08-0.24,0.14 l-0.59-0.19l-0.38,0.65l0.46,0.41c-0.01,0.09-0.01,0.18,0,0.26l-0.46,0.42l0.38,0.65l0.6-0.19c0.07,0.05,0.14,0.09,0.22,0.12 l0.14,0.62h0.75l0.13-0.61c0.08-0.04,0.15-0.08,0.22-0.13l0.59,0.19l0.38-0.65l-0.46-0.42c0.01-0.09,0.01-0.17,0-0.26l0.47-0.42 L15.3,8.72z M13.97,10.54c-0.35,0-0.62-0.28-0.62-0.62c0-0.35,0.28-0.62,0.62-0.62c0.35,0,0.62,0.28,0.62,0.62 C14.6,10.26,14.32,10.54,13.97,10.54z\"></path><path d=\"M7.5,12C5,12,2,13.24,2,15v0.97h11V15C13,13.24,10,12,7.5,12z M3,14.97C3.05,14.1,5.21,13,7.5,13s4.45,1.1,4.5,1.97H3z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 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>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z M3,19c0.22-0.72,3.31-2,6-2c2.7,0,5.8,1.29,6,2H3z\"></path><path d=\"M4.74,9H5c0,2.21,1.79,4,4,4s4-1.79,4-4h0.26c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13 c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5 C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z M11,9c0,1.1-0.9,2-2,2s-2-0.9-2-2H11z\"></path><path d=\"M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z\"></path><path d=\"M19.4,10.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05-0.24,0.12-0.34,0.19 l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27c0.1,0.07,0.2,0.13,0.31,0.18 L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61c0.01-0.13,0.01-0.25,0-0.37l0.66-0.59 L19.4,10.79z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C18.39,12.99,17.99,13.39,17.5,13.39z\"></path></g></g>" } } }, - "hdr_weak": { - "name": "hdr_weak", + "group_remove": { + "name": "group_remove", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M6,10c1.66,0,3-1.34,3-3S7.66,4,6,4S3,5.34,3,7S4.34,10,6,10z M6,5.5c0.83,0,1.5,0.67,1.5,1.5S6.83,8.5,6,8.5 S4.5,7.83,4.5,7S5.17,5.5,6,5.5z M11.03,12.37C9.56,11.5,7.84,11,6,11s-3.56,0.5-5.03,1.37C0.36,12.72,0,13.39,0,14.09V16h12v-1.91 C12,13.39,11.64,12.72,11.03,12.37z M10.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C3.02,12.9,4.5,12.5,6,12.5s2.98,0.4,4.28,1.16 c0.14,0.08,0.22,0.25,0.22,0.42C10.5,14.08,10.5,14.5,10.5,14.5z M16,14.09V16h-2.5v-1.91c0-1.15-0.56-2.22-1.48-2.86 c1.08,0.22,2.1,0.6,3.02,1.14C15.64,12.72,16,13.39,16,14.09z M9.38,9.93C10.07,9.14,10.5,8.13,10.5,7s-0.43-2.15-1.12-2.94 C9.58,4.02,9.79,4,10,4c1.66,0,3,1.34,3,3s-1.34,3-3,3C9.79,10,9.58,9.98,9.38,9.93z M19.5,9.25h-5v-1.5h5V9.25z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M24,9v2h-6V9H24z M8,4C5.79,4,4,5.79,4,8s1.79,4,4,4s4-1.79,4-4S10.21,4,8,4z M8,10c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S9.1,10,8,10z M8,13c-2.67,0-8,1.34-8,4v3h16v-3C16,14.34,10.67,13,8,13z M14,18H2v-0.99C2.2,16.29,5.3,15,8,15s5.8,1.29,6,2V18z M12.51,4.05C13.43,5.11,14,6.49,14,8s-0.57,2.89-1.49,3.95C14.47,11.7,16,10.04,16,8S14.47,4.3,12.51,4.05z M16.53,13.83 C17.42,14.66,18,15.7,18,17v3h2v-3C20,15.55,18.41,14.49,16.53,13.83z\"></path>" } } }, - "healing": { - "name": "healing", + "party_mode": { + "name": "party_mode", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.73 12.02l3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34c-.39-.39-1.02-.39-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM9 12c0-1.66 1.34-3 3-3h3.98c-.92-1.21-2.35-2-3.98-2-2.76 0-5 2.24-5 5 0 .34.04.68.1 1h2.08c-.11-.31-.18-.65-.18-1zm6 0c0 1.66-1.34 3-3 3H8.02c.92 1.21 2.35 2 3.98 2 2.76 0 5-2.24 5-5 0-.34-.03-.68-.1-1h-2.08c.11.31.18.65.18 1z\"></path>" } } }, - "hevc": { - "name": "hevc", + "sports_football": { + "name": "sports_football", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.54,4.46C15.32,4.24,14.25,4,12.84,4c-2.02,0-4.73,0.5-6.53,2.31c-3.06,3.06-2.37,8.71-1.85,9.23 C4.68,15.76,5.75,16,7.16,16c2.02,0,4.73-0.5,6.53-2.31C16.75,10.63,16.07,4.99,15.54,4.46z M12.84,5c0.96,0,1.64,0.12,1.96,0.21 c0.14,0.46,0.26,1.48,0.18,2.69L12.1,5.03C12.38,5.01,12.64,5,12.84,5z M5.2,14.79c-0.14-0.46-0.26-1.48-0.18-2.69l2.87,2.87 C7.62,14.99,7.36,15,7.16,15C6.2,15,5.52,14.88,5.2,14.79z M12.99,12.99c-1.1,1.1-2.58,1.6-3.83,1.83l-3.98-3.98 c0.25-1.36,0.79-2.78,1.83-3.82c1.1-1.1,2.58-1.6,3.83-1.83l3.98,3.98C14.57,10.52,14.03,11.94,12.99,12.99z\"></path><rect height=\"1\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.1421 10)\" width=\"6\" x=\"7\" y=\"9.5\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"5.5,11 4.5,11 4.5,9 3,9 3,15 4.5,15 4.5,12.5 5.5,12.5 5.5,15 7,15 7,9 5.5,9\"></polygon><path d=\"M21,11v-1c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-1h-1.5v0.5h-1v-3h1V11H21z\"></path><polygon points=\"14.25,13.5 13.5,9 12,9 13,15 15.5,15 16.5,9 15,9\"></polygon><polygon points=\"8,9 8,15 11.5,15 11.5,13.5 9.5,13.5 9.5,12.5 11.5,12.5 11.5,11 9.5,11 9.5,10.5 11.5,10.5 11.5,9\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20.31,3.69C19.99,3.36,18.37,3,16.26,3c-3.03,0-7.09,0.75-9.8,3.46C1.87,11.05,2.9,19.52,3.69,20.31 C4.01,20.64,5.63,21,7.74,21c3.03,0,7.09-0.75,9.8-3.46C22.13,12.95,21.1,4.48,20.31,3.69z M7.74,19c-1.14,0-2.02-0.12-2.53-0.23 c-0.18-0.79-0.3-2.21-0.17-3.83l4.01,4.01C8.53,18.99,8.08,19,7.74,19z M16.13,16.13c-1.33,1.33-3.06,2.05-4.66,2.44l-6.04-6.04 c0.42-1.68,1.16-3.37,2.45-4.65c1.32-1.32,3.05-2.04,4.64-2.43l6.05,6.05C18.15,13.17,17.4,14.85,16.13,16.13z M18.96,9.09 l-4.03-4.03C15.45,5.01,15.91,5,16.26,5c1.14,0,2.02,0.12,2.53,0.23C18.97,6.02,19.09,7.45,18.96,9.09z\"></path><rect height=\"1.98\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12.0001)\" width=\"7.92\" x=\"8.04\" y=\"11.01\"></rect></g></g>" } } }, - "hide_image": { - "name": "hide_image", + "downhill_skiing": { + "name": "downhill_skiing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M12,3.75C12,2.78,12.78,2,13.75,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C12.79,5.5,12,4.72,12,3.75z M6.83,6.38 c-0.89,0.5-1.13,1.7-0.37,2.43l3.1,2.94L8,15.8l-5.66-2.04L2,14.7l10.85,3.9C13.52,18.86,14.24,19,15,19c1.09,0,2.12-0.29,3-0.8 l-0.74-0.74C16.58,17.81,15.81,18,15,18c-0.6,0-1.14-0.1-1.67-0.29l-0.35-0.12l1.9-5.83c-0.34-0.04-0.67-0.11-0.98-0.2l0,0l0,0 l-1.85,5.7l-2.62-0.94l1.91-4.98L8.74,8.74L10.9,7.5c0.65,1.8,2.31,3.12,4.3,3.28L16,8.31L15.05,8l-0.38,1.17 c-1.22-0.34-2.17-1.31-2.47-2.55l-0.24-0.97C11.72,4.67,10.61,4.2,9.75,4.7L6.83,6.38z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,5v11.17l2,2V5c0-1.1-0.9-2-2-2H5.83l2,2H19z\"></path><path d=\"M2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61l1.41-1.41L2.81,2.81z M5,19V7.83l7.07,7.07L11.25,16 L9,13l-3,4h8.17l2,2H5z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18.5,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18.5,3.4,18.5,4.5z M15.78,20.9l0.76,0.27c0.62,0.21,1.27,0.33,1.96,0.33 c0.84,0,1.65-0.18,2.38-0.5L22,22.13C20.95,22.68,19.76,23,18.5,23c-0.86,0-1.68-0.14-2.45-0.41L2,17.47l0.5-1.41l6.9,2.51 l1.72-4.44L7.55,10.4C6.66,9.46,6.88,7.93,8,7.28l3.48-2.01c1.1-0.64,2.52-0.1,2.91,1.11l0.33,1.08c0.44,1.42,1.48,2.57,2.83,3.14 L18.07,9l1.43,0.46l-1.12,3.45c-2.45-0.4-4.48-2.07-5.38-4.32l-2.53,1.45l3.03,3.46l-2.22,5.76l3.09,1.12l2.1-6.44h0l0,0 c0.46,0.18,0.94,0.31,1.44,0.41L15.78,20.9z\"></path>" } } }, - "image": { - "name": "image", + "coronavirus": { + "name": "coronavirus", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.5,12c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S9.5,11.45,9.5,12z M13.75,10c0.55,0,1-0.45,1-1s-0.45-1-1-1 s-1,0.45-1,1S13.2,10,13.75,10z M10.25,10c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S9.7,10,10.25,10z M10.25,14 c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C11.25,14.45,10.8,14,10.25,14z M22,11.25v1.5c0,0.41-0.34,0.75-0.75,0.75 c-0.41,0-0.75-0.34-0.75-0.75h-1.54c-0.15,1.37-0.69,2.63-1.52,3.65l1.09,1.09l0.01-0.01c0.29-0.29,0.77-0.29,1.06,0 c0.29,0.29,0.29,0.77,0,1.06l-1.06,1.06c-0.29,0.29-0.77,0.29-1.06,0c-0.29-0.29-0.29-0.76-0.01-1.05l-1.09-1.09 c-1.02,0.82-2.27,1.36-3.64,1.51v1.54h0.01c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75h-1.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.33-0.74,0.74-0.75v-1.55c-1.37-0.15-2.62-0.69-3.63-1.51l-1.09,1.09l0.01,0.01 c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0L4.4,18.54c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.76-0.29,1.05-0.01 l1.09-1.09c-0.82-1.02-1.36-2.26-1.5-3.63H3.5c0,0.41-0.34,0.75-0.75,0.75C2.34,13.5,2,13.16,2,12.75v-1.5 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75h1.54c0.15-1.37,0.69-2.61,1.5-3.63L5.45,6.53C5.16,6.81,4.69,6.81,4.4,6.52 c-0.29-0.29-0.29-0.77,0-1.06L5.46,4.4c0.29-0.29,0.77-0.29,1.06,0c0.29,0.29,0.29,0.77,0,1.06L6.51,5.47L7.6,6.56 c1.02-0.82,2.26-1.36,3.63-1.51V3.5c-0.41-0.01-0.74-0.34-0.74-0.75C10.5,2.34,10.84,2,11.25,2h1.5c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75h-0.01v1.54c1.37,0.14,2.62,0.69,3.64,1.51l1.09-1.09c-0.29-0.29-0.28-0.76,0.01-1.05 c0.29-0.29,0.77-0.29,1.06,0l1.06,1.06c0.29,0.29,0.29,0.77,0,1.06s-0.77,0.29-1.06,0l-0.01-0.01L17.44,7.6 c0.82,1.02,1.37,2.27,1.52,3.65h1.54c0-0.41,0.34-0.75,0.75-0.75C21.66,10.5,22,10.84,22,11.25z M17,12c0-2.76-2.24-5-5-5 s-5,2.24-5,5s2.24,5,5,5S17,14.76,17,12z M12,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C13,11.45,12.55,11,12,11z M15.5,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C16.5,11.45,16.05,11,15.5,11z M13.75,14c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1s1-0.45,1-1C14.75,14.45,14.3,14,13.75,14z\"></path>" } } }, - "image_aspect_ratio": { - "name": "image_aspect_ratio", + "thumb_up_alt": { + "name": "thumb_up_alt", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\" opacity=\".87\"></path><path d=\"M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4l-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z\"></path>" } } }, - "image_not_supported": { - "name": "image_not_supported", + "people_outline": { + "name": "people_outline", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect><path d=\"M17.07,17.07L2.93,2.93L2.22,3.64L4,5.41V15c0,0.55,0.45,1,1,1h9.59l1.78,1.78L17.07,17.07z M5,15V6.41l5.41,5.41 l-1.05,1.32L8,11.33L6,14h6.59l1,1H5z M6.41,5l-1-1H15c0.55,0,1,0.45,1,1v9.59l-1-1V5H6.41z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.9,21.9l-6.1-6.1l-2.69-2.69l0,0L5,5l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31 L21.9,21.9z M5,19V7.83l6.84,6.84L11,15.72L9,13l-3,4h8.17l2,2H5z M7.83,5l-2-2H19c1.1,0,2,0.9,2,2v13.17l-2-2V5H7.83z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\"></path>" } } }, - "image_search": { - "name": "image_search", + "south_america": { + "name": "south_america", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M3.5,10c0-1.54,0.54-2.95,1.43-4.07L7.5,8.5v1 C7.5,10.33,8.17,11,9,11v4.17c0,0.22,0.07,0.43,0.2,0.6l0.55,0.73C6.28,16.36,3.5,13.5,3.5,10z M10.5,16.48V15l3.32-4.74 C13.94,10.09,14,9.89,14,9.68V9c0-0.55-0.45-1-1-1h-1.2l-1.15-1.44C10.37,6.21,9.93,6,9.48,6H6.5V4.52C7.51,3.88,8.71,3.5,10,3.5 c3.58,0,6.5,2.92,6.5,6.5C16.5,13.42,13.85,16.22,10.5,16.48z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M4,12c0-1.95,0.7-3.74,1.87-5.13L9,10 v1c0,1.1,0.9,2,2,2v5.59c0,0.27,0.11,0.52,0.29,0.71L12,20C7.58,20,4,16.42,4,12z M13,19.94V18l3.75-5.62 c0.16-0.25,0.25-0.54,0.25-0.83V10.5c0-0.55-0.45-1-1-1h-1.5l-1.4-1.75C12.72,7.28,12.15,7,11.54,7H8V5.07C9.18,4.39,10.54,4,12,4 c4.41,0,8,3.59,8,8C20,16.07,16.94,19.44,13,19.94z\"></path>" } } }, - "incomplete_circle": { - "name": "incomplete_circle", + "paragliding": { + "name": "paragliding", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-2.21,0.9-4.21,2.34-5.66L10,10V2C14.42,2,18,5.58,18,10z\"></path>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect><path d=\"M10,14.25c-0.97,0-1.75-0.78-1.75-1.75s0.78-1.75,1.75-1.75s1.75,0.78,1.75,1.75S10.97,14.25,10,14.25z M10.5,15.5h-1 c-2.21,0-4-1.79-4-4H4c0,2.33,1.45,4.32,3.5,5.12V20h5v-3.38c2.05-0.8,3.5-2.79,3.5-5.12h-1.5C14.5,13.71,12.71,15.5,10.5,15.5z M19,3.48v3.17c0,0.61-0.68,0.95-1.19,0.61c-0.1-0.07-0.2-0.13-0.31-0.19L16,10.5h-1.5L13,5.7c-0.94-0.13-1.95-0.2-3-0.2 S7.94,5.57,7,5.7l-1.5,4.8H4L2.5,7.05C2.39,7.12,2.29,7.18,2.19,7.25C1.68,7.59,1,7.26,1,6.64V3.48C1,1.56,5.03,0,10,0 S19,1.56,19,3.48z M5.84,5.89C4.92,6.08,4.1,6.32,3.4,6.61l1.32,3.03L5.84,5.89z M16.6,6.61c-0.7-0.29-1.52-0.54-2.44-0.72 l1.13,3.75L16.6,6.61z M17.5,3.48C17.34,2.95,14.78,1.5,10,1.5s-7.34,1.45-7.5,2l0,1.87C4.4,4.5,7.1,4,10,4c2.9,0,5.6,0.5,7.5,1.37 V3.48z\"></path>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-2.76,1.12-5.26,2.93-7.07L12,12V2C17.52,2,22,6.48,22,12z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,16.1,13.1,17,12,17z M15.48,17.94C14.68,18.54,14,19,12,19 s-2.68-0.46-3.48-1.06C8.04,17.55,7,16.76,7,14H5c0,2.7,0.93,4.41,2.3,5.5c0.5,0.4,1.1,0.7,1.7,0.9V24h6v-3.6 c0.6-0.2,1.2-0.5,1.7-0.9c1.37-1.09,2.3-2.8,2.3-5.5h-2C17,16.76,15.96,17.55,15.48,17.94z M23,4.25v3.49c0,0.8-0.88,1.26-1.56,0.83 C21.3,8.48,21.16,8.39,21,8.31L19,13h-2l-1.5-6.28C14.4,6.58,13.22,6.5,12,6.5S9.6,6.58,8.5,6.72L7,13H5L3,8.31 C2.84,8.39,2.7,8.48,2.56,8.57C1.88,9,1,8.55,1,7.74V4.25C1,1.9,5.92,0,12,0S23,1.9,23,4.25z M6.9,6.98 C5.97,7.17,5.12,7.41,4.37,7.69l1.51,3.55L6.9,6.98z M19.63,7.69c-0.75-0.28-1.6-0.52-2.53-0.71l1.02,4.25L19.63,7.69z M21,4.31 C20.65,3.63,17.57,2,12,2S3.35,3.63,3,4.31v1.77C5.34,5.07,8.56,4.5,12,4.5s6.66,0.57,9,1.58V4.31z\"></path>" } } }, - "iso": { - "name": "iso", + "single_bed": { + "name": "single_bed", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,8V6c0-0.55-0.45-1-1-1H6C5.45,5,5,5.45,5,6v2C4.45,8,4,8.45,4,9v4h1l0.75,2h0.5L7,13h6l0.75,2h0.5L15,13h1V9 C16,8.45,15.55,8,15,8z M10.5,6H14v2h-3.5V6z M6,6h3.5v2H6V6z M15,12H5V9h10V12z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2 H20V12z M16,10h-3V7h3V10z M8,7h3v3H8V7z M6,12h12v3H6V12z\"></path></g>" } } }, - "landscape": { - "name": "landscape", + "boy": { + "name": "boy", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M12.5,12.5h-1V16h-3v-3.5h-1V9c0-0.83,0.67-1.5,1.5-1.5h2c0.83,0,1.5,0.67,1.5,1.5V12.5z M10,6.5 c0.69,0,1.25-0.56,1.25-1.25S10.69,4,10,4S8.75,4.56,8.75,5.25S9.31,6.5,10,6.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,7.5c0.97,0,1.75-0.78,1.75-1.75S12.97,4,12,4s-1.75,0.78-1.75,1.75S11.03,7.5,12,7.5z M14,20v-5h1v-4.5 c0-1.1-0.9-2-2-2h-2c-1.1,0-2,0.9-2,2V15h1v5H14z\"></path></g></g>" } } }, - "leak_add": { - "name": "leak_add", + "person_remove": { + "name": "person_remove", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M2,13.86V16h12v-2.14c0-1.9-4-2.86-6-2.86C6,11,2,11.96,2,13.86z M3,13.86C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15H3 V13.86z\"></path><path d=\"M11,7c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7c0,1.66,1.34,3,3,3C9.66,10,11,8.66,11,7z M10,7c0,1.1-0.9,2-2,2S6,8.1,6,7 s0.9-2,2-2S10,5.9,10,7z\"></path><rect height=\"1\" transform=\"matrix(-1 4.479249e-11 -4.479249e-11 -1 30 19)\" width=\"4\" x=\"13\" y=\"9\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z\"></path><path d=\"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z\"></path><rect height=\"2\" width=\"6\" x=\"17\" y=\"10\"></rect></g></g>" } } }, - "leak_remove": { - "name": "leak_remove", + "front_hand": { + "name": "front_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.5,6.5c-0.17,0-0.34,0.02-0.5,0.06V3.5c0-1.1-0.9-2-2-2c-0.19,0-0.37,0.03-0.55,0.08C12.26,0.67,11.46,0,10.5,0 C9.62,0,8.88,0.56,8.61,1.34C8.42,1.28,8.21,1.25,8,1.25c-1.1,0-2,0.9-2,2v0.81C5.84,4.02,5.67,4,5.5,4c-1.1,0-2,0.9-2,2v7 c0,3.87,3.13,7,7,7s7-3.13,7-7V8.5C17.5,7.4,16.6,6.5,15.5,6.5z M16,13c0,3.04-2.46,5.5-5.5,5.5S5,16.04,5,13V6 c0-0.28,0.22-0.5,0.5-0.5S6,5.72,6,6v4h1.5V3.25c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V9H10V2c0-0.28,0.22-0.5,0.5-0.5 S11,1.72,11,2v7h1.5V3.5C12.5,3.22,12.72,3,13,3s0.5,0.22,0.5,0.5l0,7.79C12.03,11.88,11,13.32,11,15h1.5c0-1.38,1.12-2.5,2.5-2.5 v-4C15,8.22,15.22,8,15.5,8S16,8.22,16,8.5V13z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18.5,8c-0.17,0-0.34,0.02-0.5,0.05V4.5C18,3.12,16.88,2,15.5,2c-0.19,0-0.37,0.02-0.54,0.06C14.75,0.89,13.73,0,12.5,0 c-1.06,0-1.96,0.66-2.33,1.59C9.96,1.53,9.73,1.5,9.5,1.5C8.12,1.5,7,2.62,7,4v0.55C6.84,4.52,6.67,4.5,6.5,4.5C5.12,4.5,4,5.62,4,7 v8.5c0,4.69,3.81,8.5,8.5,8.5s8.5-3.81,8.5-8.5v-5C21,9.12,19.88,8,18.5,8z M19,15.5c0,3.59-2.91,6.5-6.5,6.5S6,19.09,6,15.5V7 c0-0.28,0.22-0.5,0.5-0.5S7,6.72,7,7v5h2V4c0-0.28,0.22-0.5,0.5-0.5S10,3.72,10,4v7h2V2.5C12,2.22,12.22,2,12.5,2S13,2.22,13,2.5V11 h2V4.5C15,4.22,15.22,4,15.5,4S16,4.22,16,4.5v8.92c-1.77,0.77-3,2.53-3,4.58h2c0-1.66,1.34-3,3-3v-4.5c0-0.28,0.22-0.5,0.5-0.5 s0.5,0.22,0.5,0.5V15.5z\"></path>" } } }, - "lens": { - "name": "lens", + "sick": { + "name": "sick", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.32,10.56L8.38,9.5L7.32,8.44l1.06-1.06L10.5,9.5l-2.12,2.12L7.32,10.56z M4.5,9c0.03,0,0.05,0.01,0.08,0.01 C5.77,6.07,8.64,4,12,4c2.19,0,4.16,0.88,5.61,2.3c0.15-0.6,0.45-1.29,0.81-1.96C16.68,2.88,14.44,2,11.99,2 c-4.88,0-8.94,3.51-9.81,8.14C2.74,9.44,3.59,9,4.5,9z M21,10.5c-0.42,0-0.82-0.09-1.19-0.22C19.93,10.83,20,11.41,20,12 c0,4.42-3.58,8-8,8c-3.36,0-6.23-2.07-7.42-5.01C4.55,14.99,4.53,15,4.5,15c-0.52,0-1.04-0.14-1.5-0.4 c-0.32-0.18-0.59-0.42-0.82-0.7c0.89,4.61,4.93,8.1,9.8,8.1C17.52,22,22,17.52,22,12c0-0.55-0.06-1.09-0.14-1.62 C21.58,10.45,21.3,10.5,21,10.5z M21,3c0,0-2,2.9-2,4c0,1.1,0.9,2,2,2s2-0.9,2-2C23,5.9,21,3,21,3z M15.62,7.38L13.5,9.5l2.12,2.12 l1.06-1.06L15.62,9.5l1.06-1.06L15.62,7.38z M8.56,17c0.69-1.19,1.97-2,3.44-2s2.75,0.81,3.44,2h1.68c-0.8-2.05-2.79-3.5-5.12-3.5 c-0.87,0-1.7,0.2-2.43,0.57l0,0L5.99,12c0-0.52-0.26-1.02-0.74-1.29c-0.72-0.41-1.63-0.17-2.05,0.55c-0.41,0.72-0.17,1.63,0.55,2.05 c0.48,0.28,1.05,0.25,1.49,0l2.97,1.72l0,0C7.64,15.56,7.18,16.24,6.88,17H8.56z\"></path>" } } }, - "linked_camera": { - "name": "linked_camera", + "elderly": { + "name": "elderly", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 9v11H4V8h4.05l1.83-2H15V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-2zm.67-1.01H22C21.99 4.68 19.31 2 16 2v1.33c2.58 0 4.66 2.08 4.67 4.66zm-2.67 0h1.33c-.01-1.84-1.49-3.32-3.33-3.32V6c1.11 0 1.99.89 2 1.99zM7 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm8 0c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3 3 1.34 3 3z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M20,12.5V23h-1V12.5c0-0.28-0.22-0.5-0.5-0.5 S18,12.22,18,12.5v1h-1v-0.69c-1.46-0.38-2.7-1.29-3.51-2.52C13.18,11.16,13,12.07,13,13c0,0.23,0.02,0.46,0.03,0.69L15,16.5V23h-2 v-5l-1.78-2.54L11,19l-3,4l-1.6-1.2L9,18.33V13c0-1.15,0.18-2.29,0.5-3.39L8,10.46V14H6V9.3l5.4-3.07l0,0.01 c0.59-0.31,1.32-0.33,1.94,0.03c0.36,0.21,0.63,0.51,0.8,0.85l0,0l0.79,1.67C15.58,10.1,16.94,11,18.5,11C19.33,11,20,11.67,20,12.5 z\"></path>" } } }, - "looks": { - "name": "looks", + "girl": { + "name": "girl", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,6.5c0.69,0,1.25-0.56,1.25-1.25S10.69,4,10,4S8.75,4.56,8.75,5.25S9.31,6.5,10,6.5z M11.5,13v3h-3v-3H7l1.9-4.76 C9.08,7.79,9.52,7.5,10,7.5s0.92,0.29,1.1,0.74L13,13H11.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,7.5c0.97,0,1.75-0.78,1.75-1.75S12.97,4,12,4s-1.75,0.78-1.75,1.75S11.03,7.5,12,7.5z M14,16v4h-4v-4H8l2.38-6.38 C10.63,8.95,11.28,8.5,12,8.5s1.37,0.45,1.62,1.12L16,16H14z\"></path></g></g>" } } }, - "looks_3": { - "name": "looks_3", + "kayaking": { + "name": "kayaking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11.5,6.25C11.5,7.22,10.72,8,9.75,8S8,7.22,8,6.25S8.78,4.5,9.75,4.5S11.5,5.28,11.5,6.25z M18,17.5h-0.5 c-0.87,0-1.74-0.33-2.5-1h0c-1.52,1.33-3.47,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5 c0.86,0,1.71-0.2,2.5-0.6c1.58,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18L18,17.5z M20,14.5 c0,0-1.43,0.64-3.67,1.19c-0.52-0.27-0.97-0.7-1.33-1.19c-0.61,0.84-1.5,1.5-2.5,1.5s-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16 S5.61,15.34,5,14.5c-0.36,0.49-0.81,0.92-1.33,1.19C1.43,15.14,0,14.5,0,14.5s2.47-1.1,6-1.67l1.07-3.29 c0.26-0.79,1.1-1.22,1.89-0.96C9.05,8.6,9.13,8.64,9.2,8.68l2,1.12l2.44-1.3l1.33-3L14.6,4.51L15.72,2L18,3.02l-1.12,2.51L15.89,5.9 l-3.01,6.77C17,13.16,20,14.5,20,14.5z M12.65,10.72l-1.46,0.8l-1.36-0.77l-0.57,1.77C9.5,12.51,9.75,12.5,10,12.5 c0.63,0,1.24,0.02,1.83,0.07L12.65,10.72z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.11-.9-2-2-2H9v2h4v2h-2v2h2v2H9v2h4c1.1 0 2-.89 2-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,23c-1.03,0-2.06-0.25-3-0.75h0c-1.89,1-4.11,1-6,0c-1.89,1-4.11,1-6,0C5.05,22.75,4.03,23,3,23H2l0-2h1 c1.04,0,2.08-0.35,3-1c1.83,1.3,4.17,1.3,6,0c1.83,1.3,4.17,1.3,6,0c0.91,0.65,1.96,1,3,1h1v2H21z M12,5.5c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S13.1,5.5,12,5.5z M24,17.5c0,0-1.52,0.71-3.93,1.37c-0.82-0.23-1.53-0.75-2.07-1.37c-0.73,0.84-1.8,1.5-3,1.5 s-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5s-2.27-0.66-3-1.5c-0.54,0.61-1.25,1.13-2.07,1.37C1.52,18.21,0,17.5,0,17.5 s2.93-1.36,7.13-2.08l1.35-4.17c0.31-0.95,1.32-1.47,2.27-1.16c0.09,0.03,0.19,0.07,0.27,0.11l0,0l2.47,1.3l2.84-1.5l1.65-3.71 l-0.51-1.32L18.8,2L22,3.43L20.67,6.4l-1.31,0.5l-3.72,8.34C20.49,15.87,24,17.5,24,17.5z M15.02,12.96l-1.52,0.8l-1.75-0.92 l-0.71,2.17C11.36,15.01,11.68,15,12,15c0.71,0,1.4,0.03,2.07,0.08L15.02,12.96z\"></path>" } } }, - "looks_4": { - "name": "looks_4", + "add_reaction": { + "name": "add_reaction", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M.04 0h24v24h-24V0z\" fill=\"none\"></path><path d=\"M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-14V5h14v14zm-6-2h2V7h-2v4h-2V7h-2v6h4z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7,9.5C7,8.67,7.67,8,8.5,8S10,8.67,10,9.5c0,0.83-0.67,1.5-1.5,1.5S7,10.33,7,9.5z M12,17.5c2.33,0,4.31-1.46,5.11-3.5 H6.89C7.69,16.04,9.67,17.5,12,17.5z M15.5,11c0.83,0,1.5-0.67,1.5-1.5C17,8.67,16.33,8,15.5,8S14,8.67,14,9.5 C14,10.33,14.67,11,15.5,11z M22,1h-2v2h-2v2h2v2h2V5h2V3h-2V1z M20,12c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-4.42,3.58-8,8-8 c1.46,0,2.82,0.4,4,1.08V2.84C14.77,2.3,13.42,2,11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12 c0-1.05-0.17-2.05-0.47-3h-2.13C19.78,9.93,20,10.94,20,12z\"></path>" } } }, - "looks_5": { - "name": "looks_5", + "sports_kabaddi": { + "name": "sports_kabaddi", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"13.5\" cy=\"2.5\" r=\"1.5\"></circle><path d=\"M12,10.34c-0.81-0.06-1.53-0.32-2.17-0.78l0,0C9.6,9.4,9.38,9.22,9.17,9.01L7.29,7.12c-0.39-0.39-1.02-0.39-1.41,0 L3.07,9.91c-0.22,0.22-0.32,0.52-0.29,0.82l0.42,3.75l-2.75,2.75l0.71,0.71l3.25-3.25l0.04-2L6,14.03L6,18h1v-4.69l-1.96-2.05 l2.51-2.51l0.9,0.9c1.02,1.02,2.13,1.62,3.56,1.69V10.34z\"></path><path d=\"M9.5,6.99c0.82,0,1.5-0.68,1.5-1.5c0-0.77-0.59-1.38-1.34-1.47C9.61,4.01,9.56,3.99,9.5,3.99C8.68,3.99,8,4.66,8,5.49 C8,5.67,8.05,5.84,8.11,6C8.32,6.57,8.86,6.99,9.5,6.99z\"></path><path d=\"M19,9.53V6.18l-3.85-1.53c-0.18-0.08-0.37-0.11-0.56-0.11c-0.5,0-0.96,0.25-1.23,0.68l-0.82,1.32 C12,7.46,11.11,8.15,10.08,8.47c0.24,0.21,0.48,0.39,0.74,0.53c0.06,0.03,0.15,0.08,0.26,0.15c0.73-0.34,1.38-0.82,1.91-1.42 l0.44-0.51l0.67,3.33L12,12.24V18h1v-4.8l2.59-2.16L17.16,18h1.08L15.87,6.09L18,6.81v2.72H19z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-2c0-1.11-.9-2-2-2h-2V9h4V7H9v6h4v2H9v2h4c1.1 0 2-.89 2-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"16.5\" cy=\"2.38\" r=\"2\"></circle><path d=\"M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z\"></path><path d=\"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z\"></path><path d=\"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z\"></path></g></g>" } } }, - "looks_6": { - "name": "looks_6", + "recycling": { + "name": "recycling", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13,14h3.83l-1.09,2.17C15.49,16.68,14.97,17,14.4,17H13 M7.62,7.72l1.8-3L8.52,3.23c-0.39-0.65-1.33-0.65-1.72,0L5.05,6.17 L7.62,7.72z M16.34,8.49L13.72,10l1.83,3h0.85c0.57,0,1.09-0.32,1.34-0.83c0.23-0.46,0.21-1-0.06-1.44L16.34,8.49z M4.37,15.08 c-0.22,0.37-0.24,0.83-0.05,1.22C4.54,16.73,4.98,17,5.46,17H8.5v-3H5.02L4.37,15.08z M13,14v-1.54l-3,3l3,3V17 M14.01,4.6 l-1.13-1.88C12.62,2.28,12.13,2,11.6,2H8.95l2.49,4.15l-1.29,0.77l4.12,1.03l1.03-4.12L14.01,4.6z M5.3,11.58l1.28,0.77L5.56,8.23 L1.44,9.26l1.29,0.77l-0.42,0.69c-0.26,0.44-0.28,0.98-0.06,1.44l1.22,2.44L5.3,11.58z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 17h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2zm8-10H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M5.77,7.15L7.2,4.78l1.03-1.71c0.39-0.65,1.33-0.65,1.72,0l1.48,2.46l-1.23,2.06L9.2,9.21L5.77,7.15z M21.72,12.97 l-1.6-2.66l-3.46,2L18.87,16H20c0.76,0,1.45-0.43,1.79-1.11C21.93,14.61,22,14.31,22,14C22,13.64,21.9,13.29,21.72,12.97z M16,21 h1.5c0.76,0,1.45-0.43,1.79-1.11L20.74,17H16v-2l-4,4l4,4V21z M10,17H5.7l-0.84,1.41c-0.3,0.5-0.32,1.12-0.06,1.65l0,0 C5.08,20.63,5.67,21,6.32,21H10V17z M6.12,14.35l1.73,1.04L6.48,9.9L1,11.27l1.7,1.02l-0.41,0.69c-0.35,0.59-0.38,1.31-0.07,1.92 l1.63,3.26L6.12,14.35z M17.02,5.14l-1.3-2.17C15.35,2.37,14.7,2,14,2h-3.53l3.12,5.2l-1.72,1.03l5.49,1.37l1.37-5.49L17.02,5.14z\"></path>" } } }, - "looks_one": { - "name": "looks_one", + "nordic_walking": { + "name": "nordic_walking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M15,11 V9.5c-3.12,0-2.99-2.17-4.11-3.06c-0.57-0.46-1.35-0.57-2.03-0.28L5,7.79V11h1.5V8.78l1.65-0.7L6.2,18h1.53l1.19-6.02l1.58,1.59V18 H12v-5.05l-1.46-1.46l0.49-2.48C11.94,10.21,13.37,11,15,11z M14,18h1v-6h-1V18z M6.03,12H5l-1.4,6h1.03L6.03,12z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-7-2h2V7h-4v2h2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,23h-1.5v-9H19V23z M7.53,14H6l-2,9h1.53L7.53,14z M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M9.8,8.9L7,23h2.1l1.8-8l2.1,2v6h2v-7.5l-2.1-2l0.6-3C14.8,12,16.8,13,19,13v-2c-1.9,0-3.5-1-4.3-2.4l-1-1.6 c-0.56-0.89-1.68-1.25-2.65-0.84L6,8.3V13h2V9.6L9.8,8.9z\"></path>" } } }, - "looks_two": { - "name": "looks_two", + "sentiment_dissatisfied": { + "name": "sentiment_dissatisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V9c0-1.11-.9-2-2-2H9v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"15.5\" cy=\"9.5\" r=\"1.5\"></circle><circle cx=\"8.5\" cy=\"9.5\" r=\"1.5\"></circle><path d=\"M12 14c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5zm-.01-12C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" } } }, - "loupe": { - "name": "loupe", + "fireplace": { + "name": "fireplace", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10.51,10.25c-0.11,0.32-0.11,0.61-0.06,0.96c0.07,0.42,0.24,0.78,0.15,1.2c-0.1,0.44-0.58,1.04-1.15,1.22 c0.96,0.79,2.4,0.28,2.54-0.99C12.12,11.49,10.91,11.16,10.51,10.25z\"></path><path d=\"M3,3v14h14V3H3z M10,15c-1.66,0-2.97-1.74-3-2.88c0-0.04,0-0.08-0.01-0.14c-0.14-1.8,1.27-3.24,2.87-4.29 c0.23,0.85,0.81,1.85,2.11,2.71c0.72,0.47,1.03,1,1.03,1.75C13,13.72,11.65,15,10,15z M16,16h-2v-1h-1.33 c0.81-0.7,1.33-1.71,1.33-2.85c0-1.45-0.87-2.19-1.48-2.59C10.16,8.01,10.8,6,10.8,6C5.42,8.74,5.99,11.74,6,12.15 C6.03,13.1,6.63,14.21,7.53,15H6v1H4V4h12V16z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12.01,12.46c-0.15,0.42-0.15,0.82-0.08,1.28c0.1,0.55,0.33,1.04,0.2,1.6c-0.13,0.59-0.77,1.38-1.53,1.63 c1.28,1.05,3.2,0.37,3.39-1.32C14.16,14.11,12.55,13.67,12.01,12.46z\"></path><path d=\"M2,2v20h20V2H2z M12,18c-1.58,0-2.97-1.88-3-3.06c0-0.05-0.01-0.13-0.01-0.22c-0.13-1.73,1-3.2,2.47-4.37 c0.47,1.01,1.27,2.03,2.57,2.92C14.61,13.69,15,14.13,15,15C15,16.65,13.65,18,12,18z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8 c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z\"></path></g></g>" } } }, - "mic_external_off": { - "name": "mic_external_off", + "person_off": { + "name": "person_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11.64,9.51C12.46,8.98,13,8.05,13,7c0-1.66-1.34-3-3-3C8.95,4,8.02,4.54,7.49,5.36L8.6,6.47C8.81,5.91,9.36,5.5,10,5.5 c0.83,0,1.5,0.67,1.5,1.5c0,0.64-0.41,1.19-0.97,1.4L11.64,9.51z M15.99,13.87c-0.07-0.62-0.41-1.18-0.95-1.5 c-0.35-0.21-0.72-0.39-1.1-0.56L15.99,13.87z M2.93,2.93L1.87,3.99l7.07,7.07c-1.44,0.15-2.78,0.62-3.97,1.31 C4.36,12.72,4,13.39,4,14.09V16h9.88l2.13,2.13l1.06-1.06L2.93,2.93z M5.5,14.5v-0.41c0-0.18,0.09-0.34,0.22-0.42 C7.02,12.9,8.5,12.5,10,12.5c0.13,0,0.26,0,0.39,0.01l1.99,1.99H5.5z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M10,5c0-1.66-1.34-3-3-3C6.38,2,5.81,2.19,5.33,2.5l4.15,4.15C9.8,6.18,10,5.61,10,5z\"></path><path d=\"M14,6c0-1.1,0.9-2,2-2s2,0.9,2,2v9.17l2,2V6c0-2.21-1.79-4-4-4s-4,1.79-4,4v3.17l2,2V6z\"></path><path d=\"M2.1,2.1L0.69,3.51L5.17,8H4l1,10h1c0,2.21,1.79,4,4,4s4-1.79,4-4v-1.17l6.49,6.49l1.41-1.41L2.1,2.1z M7.19,16H6.81 l-0.6-6h0.96l0.56,0.56L7.19,16z M12,18c0,1.1-0.9,2-2,2s-2-0.9-2-2h1l0.56-5.61L12,14.83V18z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,17.17l-3.37-3.38c0.64,0.22,1.23,0.48,1.77,0.76C19.37,15.06,19.98,16.07,20,17.17z M21.19,21.19l-1.41,1.41L17.17,20H4 v-2.78c0-1.12,0.61-2.15,1.61-2.66c1.29-0.66,2.87-1.22,4.67-1.45L1.39,4.22l1.41-1.41L21.19,21.19z M15.17,18l-3-3 c-0.06,0-0.11,0-0.17,0c-2.37,0-4.29,0.73-5.48,1.34C6.2,16.5,6,16.84,6,17.22V18H15.17z M12,6c1.1,0,2,0.9,2,2 c0,0.86-0.54,1.59-1.3,1.87l1.48,1.48C15.28,10.64,16,9.4,16,8c0-2.21-1.79-4-4-4c-1.4,0-2.64,0.72-3.35,1.82l1.48,1.48 C10.41,6.54,11.14,6,12,6z\"></path>" } } }, - "mic_external_on": { - "name": "mic_external_on", + "masks": { + "name": "masks", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M9.22,7C9.7,6.47,10,5.77,10,5c0-1.66-1.34-3-3-3S4,3.34,4,5c0,0.77,0.3,1.47,0.78,2H9.22z\"></path><path d=\"M16,2c-2.21,0-4,1.79-4,4v12c0,1.1-0.9,2-2,2s-2-0.9-2-2h1l1-10H4l1,10h1c0,2.21,1.79,4,4,4s4-1.79,4-4V6c0-1.1,0.9-2,2-2 s2,0.9,2,2v16h2V6C20,3.79,18.21,2,16,2z M7.19,16H6.81l-0.6-6h1.58L7.19,16z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M7,11.5V9.85c1.12-0.23,1.95-0.69,2.66-1.08C10.48,8.33,11.07,8,12,8c0.93,0,1.52,0.33,2.34,0.78c0.71,0.39,1.54,0.84,2.66,1.08 v1.65c0,2.76-2.24,5-5,5S7,14.26,7,11.5z M20.5,9c0,3.65-1.49,5.27-3.01,5.98c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1 s1,0.45,1,1V9z M10.69,10.48c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58C10.72,9.3,11.23,9,12,9 s1.27,0.3,1.8,0.62c0.34,0.2,0.71,0.42,1.2,0.59v1.04c-0.75-0.21-1.26-0.51-1.71-0.78C12.83,10.2,12.49,10,12,10 C11.51,10,11.16,10.2,10.69,10.48z\"></path>" } } }, - "monochrome_photos": { - "name": "monochrome_photos", + "back_hand": { + "name": "back_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.5,4c-0.17,0-0.34,0.02-0.5,0.06V3.25c0-1.1-0.9-2-2-2c-0.21,0-0.42,0.03-0.61,0.09C12.12,0.56,11.38,0,10.5,0 C9.54,0,8.74,0.67,8.55,1.58C8.37,1.53,8.19,1.5,8,1.5c-1.1,0-2,0.9-2,2v5.4C5.79,8.7,5.55,8.55,5.27,8.45L4.24,8.09 C4.07,8.03,3.9,8,3.73,8c-1,0-1.79,1.03-1.39,2.05l2.18,5.54C5.57,18.25,8.14,20,11,20c3.59,0,6.5-2.91,6.5-6.5V6 C17.5,4.9,16.6,4,15.5,4z M16,13.5c0,2.76-2.24,5-5,5c-2.24,0-4.25-1.37-5.07-3.46L3.76,9.51l0.8,0.28c0.27,0.1,0.49,0.31,0.6,0.58 L6,12.5h1.5v-9C7.5,3.22,7.72,3,8,3s0.5,0.22,0.5,0.5V10H10V2c0-0.28,0.22-0.5,0.5-0.5S11,1.72,11,2v8h1.5V3.25 c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V10H15V6c0-0.28,0.22-0.5,0.5-0.5S16,5.72,16,6V13.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,7c0-1.38-1.12-2.5-2.5-2.5c-0.17,0-0.34,0.02-0.5,0.05V4c0-1.38-1.12-2.5-2.5-2.5c-0.23,0-0.46,0.03-0.67,0.09 C14.46,0.66,13.56,0,12.5,0c-1.23,0-2.25,0.89-2.46,2.06C9.87,2.02,9.69,2,9.5,2C8.12,2,7,3.12,7,4.5v5.89 c-0.34-0.31-0.76-0.54-1.22-0.66L5.01,9.52c-0.83-0.23-1.7,0.09-2.19,0.83c-0.38,0.57-0.4,1.31-0.15,1.95l2.56,6.43 C6.49,21.91,9.57,24,13,24h0c4.42,0,8-3.58,8-8V7z M19,16c0,3.31-2.69,6-6,6h0c-2.61,0-4.95-1.59-5.91-4.01l-2.6-6.54l0.53,0.14 c0.46,0.12,0.83,0.46,1,0.9L7,15h2V4.5C9,4.22,9.22,4,9.5,4S10,4.22,10,4.5V12h2V2.5C12,2.22,12.22,2,12.5,2S13,2.22,13,2.5V12h2V4 c0-0.28,0.22-0.5,0.5-0.5S16,3.72,16,4v8h2V7c0-0.28,0.22-0.5,0.5-0.5S19,6.72,19,7L19,16z\"></path>" } } }, - "motion_photos_auto": { - "name": "motion_photos_auto", + "compost": { + "name": "compost", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M9.4,10.69c0.07-0.18,0.1-0.37,0.1-0.57C9.5,8,6,8,6,8s0.25,0.27,0.24,1.25l0.01,0.88c0,0.9,0.73,1.62,1.62,1.62 c0.42,0,0.8-0.16,1.09-0.42c0.16,0.4,0.4,1.1,0.42,1.72c-1.06,0.16-1.96,0.73-2.46,1.51C5.46,13.57,4.5,11.9,4.5,10 c0-3.03,2.47-5.5,5.5-5.5h0v2l3.5-3.25L10,0v2h0c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8h-2.5c0,1.9-0.97,3.57-2.43,4.56 c-0.49-0.77-1.36-1.33-2.39-1.5c0.11-0.95,0.33-1.57,0.63-2.38C11.63,10.88,12,11,12.4,11C15,11,15,6.91,15,6c0,0-0.5,1-2,1h-0.6 c-1.1,0-2,0.9-2,2c0,0.38,0.11,0.74,0.29,1.04c0.14-0.15,1.05-1.09,1.81-1.54c-0.48,0.4-1.78,1.93-2.5,3.71 C9.42,11.08,8.51,10.17,8.25,10C8.69,10.17,9.24,10.58,9.4,10.69z\"></path></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99z M11.29,7.5h1.43 l3.01,8h-1.39l-0.72-2.04h-3.23L9.66,15.5H8.28L11.29,7.5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12.87,11.81c-0.23-0.38-0.37-0.83-0.37-1.31C12.5,9.12,13.62,8,15,8l1,0c1.51,0,2-1,2-1s0.55,6-3,6 c-0.49,0-0.94-0.14-1.32-0.38c-0.24,0.64-0.59,1.76-0.76,2.96c1.26,0.22,2.28,0.89,2.77,1.77c1.69-1.17,2.81-3.13,2.81-5.35h3 c0,5.24-4.26,9.5-9.5,9.5S2.5,17.24,2.5,12S6.76,2.5,12,2.5V0l4,4l-4,4V5.5c-3.58,0-6.5,2.92-6.5,6.5c0,2.21,1.11,4.17,2.81,5.35 c0.51-0.92,1.63-1.62,2.98-1.8c-0.09-0.69-0.26-1.42-0.49-2.03C10.45,13.82,10,14,9.5,14c-1.1,0-2-0.9-2-2v-0.99 c0-0.56-0.19-1.09-0.5-1.51c0,0,4.45-0.23,4.5,2.5c0,0.29-0.06,0.56-0.17,0.8C10.91,12.48,10.47,12.2,10,12 c0.58,0.43,1.37,1.37,2,2.6c0.67-1.62,1.68-3.27,3-4.6C14.24,10.52,13.53,11.12,12.87,11.81z\"></path>" } } }, - "motion_photos_off": { - "name": "motion_photos_off", + "water_drop": { + "name": "water_drop", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,2c0,0-6.5,5.16-6.5,9.5c0,3.59,2.91,6.5,6.5,6.5s6.5-2.91,6.5-6.5C16.5,7.16,10,2,10,2z M10,16.5c-2.76,0-5-2.24-5-5 c0-2.47,3.1-5.8,5-7.53c1.9,1.73,5,5.05,5,7.53C15,14.26,12.76,16.5,10,16.5z M7.03,11.93c0.24,1.66,1.79,2.77,3.4,2.54 c0.3-0.04,0.57,0.19,0.57,0.49c0,0.28-0.2,0.47-0.42,0.5c-2.23,0.31-4.22-1.23-4.54-3.39C6,11.77,6.23,11.5,6.54,11.5 C6.79,11.5,7,11.68,7.03,11.93z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.42L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l10.93,10.94C14.86,19.59,13.48,20,12,20z\"></path><path d=\"M12,4c4.41,0,8,3.59,8,8c0,1.48-0.41,2.86-1.12,4.05l1.45,1.45C21.39,15.93,22,14.04,22,12c0-5.52-4.48-10-10-10 C9.96,2,8.07,2.61,6.49,3.66l1.45,1.45C9.14,4.41,10.52,4,12,4z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,2c-5.33,4.55-8,8.48-8,11.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2C20,10.48,17.33,6.55,12,2z M12,20c-3.35,0-6-2.57-6-6.2 c0-2.34,1.95-5.44,6-9.14c4.05,3.7,6,6.79,6,9.14C18,17.43,15.35,20,12,20z M7.83,14c0.37,0,0.67,0.26,0.74,0.62 c0.41,2.22,2.28,2.98,3.64,2.87c0.43-0.02,0.79,0.32,0.79,0.75c0,0.4-0.32,0.73-0.72,0.75c-2.13,0.13-4.62-1.09-5.19-4.12 C7.01,14.42,7.37,14,7.83,14z\"></path>" } } }, - "motion_photos_on": { - "name": "motion_photos_on", + "catching_pokemon": { + "name": "catching_pokemon", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z\"></path>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M12.25,10c0,1.24-1.01,2.25-2.25,2.25S7.75,11.24,7.75,10S8.76,7.75,10,7.75S12.25,8.76,12.25,10z M18,10c0,4.42-3.58,8-8,8 s-8-3.58-8-8s3.58-8,8-8S18,5.58,18,10z M16.5,10h-3.25c0-1.79-1.46-3.25-3.25-3.25S6.75,8.21,6.75,10H3.5c0,3.58,2.92,6.5,6.5,6.5 S16.5,13.58,16.5,10z\"></path>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.5,12c0,1.38-1.12,2.5-2.5,2.5c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5C13.38,9.5,14.5,10.62,14.5,12z M22,12 c0,5.52-4.48,10-10,10C6.48,22,2,17.52,2,12S6.48,2,12,2C17.52,2,22,6.48,22,12z M20,12h-4c0-2.21-1.79-4-4-4c-2.21,0-4,1.79-4,4H4 c0,4.41,3.59,8,8,8C16.41,20,20,16.41,20,12z\"></path>" } } }, - "motion_photos_pause": { - "name": "motion_photos_pause", + "sports_cricket": { + "name": "sports_cricket", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z M9.25,12.5h-1.5v-5h1.5V12.5z M12.25,12.5 h-1.5v-5h1.5V12.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14.5,3C13.12,3,12,4.12,12,5.5C12,6.88,13.12,8,14.5,8C15.88,8,17,6.88,17,5.5C17,4.12,15.88,3,14.5,3z M14.5,7 C13.67,7,13,6.33,13,5.5S13.67,4,14.5,4S16,4.67,16,5.5S15.33,7,14.5,7z\"></path><path d=\"M12.34,11.51L5.97,5.15C5.87,5.05,5.75,5,5.62,5C5.49,5,5.36,5.05,5.26,5.15L3.15,7.26c-0.2,0.2-0.2,0.51,0,0.71 l6.36,6.36c0.1,0.1,0.23,0.15,0.35,0.15c0.13,0,0.26-0.05,0.35-0.15l2.12-2.12C12.53,12.02,12.53,11.71,12.34,11.51z M9.86,13.27 L4.21,7.62l1.41-1.41l5.66,5.66L9.86,13.27z\"></path><rect height=\"4\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.9645 13.9853)\" width=\"1\" x=\"12.9\" y=\"13.4\"></rect></g></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M11,15H9V9h2V15z M15,15h-2V9h2V15z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M15.04,12.79l-8.5-8.5C6.35,4.1,6.09,4,5.83,4S5.32,4.1,5.13,4.29L2.29,7.13c-0.39,0.39-0.39,1.03,0,1.42l8.5,8.5 c0.2,0.2,0.45,0.29,0.71,0.29c0.26,0,0.51-0.1,0.71-0.29l2.83-2.83C15.43,13.82,15.43,13.18,15.04,12.79z M11.5,14.92L4.41,7.83 l1.42-1.42l7.09,7.09L11.5,14.92z\"></path><rect height=\"6\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)\" width=\"2\" x=\"16.17\" y=\"16.17\"></rect><path d=\"M18.5,2C16.57,2,15,3.57,15,5.5C15,7.43,16.57,9,18.5,9S22,7.43,22,5.5C22,3.57,20.43,2,18.5,2z M18.5,7 C17.67,7,17,6.33,17,5.5S17.67,4,18.5,4S20,4.67,20,5.5S19.33,7,18.5,7z\"></path></g></g>" } } }, - "motion_photos_paused": { - "name": "motion_photos_paused", + "location_city": { + "name": "location_city", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z\"></path>" } } }, - "movie_creation": { - "name": "movie_creation", + "person_outline": { + "name": "person_outline", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z\"></path>" } } }, - "movie_filter": { - "name": "movie_filter", + "plus_one": { + "name": "plus_one", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 11l-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94zm8.01-7l2 4h-3l-2-4h-2l2 4h-3l-2-4h-2l2 4h-3l-2-4h-1c-1.1 0-1.99.9-1.99 2l-.01 12c0 1.1.9 2 2 2h16c1.1 0 1.99-.9 1.99-2V4h-3.99zm2 14h-16V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4.01v8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z\"></path>" } } }, - "mp": { - "name": "mp", + "nights_stay": { + "name": "nights_stay", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.46,13.85c-1.73,0-4.6-0.93-6.08-3.8C7.75,6.89,9.03,4.11,9.76,3C6,3.13,3,6.21,3,9.99c0,0.4,0.04,0.78,0.1,1.16 C3.39,11.06,3.69,11,4,11c0.03,0,0.06,0.01,0.09,0.01C4.04,10.68,4,10.34,4,9.99c0-2.63,1.67-4.85,4.03-5.67 c-0.52,1.53-0.79,3.76,0.46,6.18c1.2,2.33,3.32,3.66,5.31,4.14C12.74,15.51,11.41,16,10.01,16c-0.64,0-1.25-0.1-1.83-0.29 C8,16.03,7.76,16.3,7.46,16.52C8.25,16.82,9.11,17,10.01,17c2.45,0,4.6-1.26,5.86-3.17C15.74,13.85,15.6,13.85,15.46,13.85z\"></path><path d=\"M7.5,14.5C7.5,13.67,6.83,13,6,13l-0.27,0C5.38,12.4,4.74,12,4,12c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2c0.53,0,1.54,0,2,0 C6.83,16,7.5,15.33,7.5,14.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17,9h-3.5v6H15v-1.5h2c0.55,0,1-0.45,1-1V10C18,9.45,17.55,9,17,9z M16.5,12H15v-1.5h1.5V12z\"></path><path d=\"M11.5,9H7c-0.55,0-1,0.45-1,1v5h1.5v-4.5h1v3H10v-3h1V15h1.5v-5C12.5,9.45,12.05,9,11.5,9z\"></path><path d=\"M19,3H5C3.9,3,3,3.9,3,5V19c0,1.1,0.9,2,2,2H19c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M5,19L5,5h14l0,14L5,19z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19.78,17.51c-2.47,0-6.57-1.33-8.68-5.43C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12 c0,0.14,0.02,0.28,0.02,0.42C2.61,12.16,3.28,12,3.98,12c0,0,0,0,0,0c0-3.09,1.73-5.77,4.3-7.1C7.78,7.09,7.74,9.94,9.32,13 c1.57,3.04,4.18,4.95,6.8,5.86c-1.23,0.74-2.65,1.15-4.13,1.15c-0.5,0-1-0.05-1.48-0.14c-0.37,0.7-0.94,1.27-1.64,1.64 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C20.18,17.5,19.98,17.51,19.78,17.51z\"></path><path d=\"M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z\"></path></g></g>" } } }, - "music_note": { - "name": "music_note", + "notifications_off": { + "name": "notifications_off", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 3l.01 10.55c-.59-.34-1.27-.55-2-.55C7.79 13 6 14.79 6 17s1.79 4 4.01 4S14 19.21 14 17V7h4V3h-6zm-1.99 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm0-15.5c2.49 0 4 2.02 4 4.5v.1l2 2V11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23l1.64 1.64c.18-.02.36-.05.55-.05zM5.41 3.35L4 4.76l2.81 2.81C6.29 8.57 6 9.74 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35zM16 17H8v-6c0-.68.12-1.32.34-1.9L16 16.76V17z\"></path>" } } }, - "music_off": { - "name": "music_off", + "emoji_transportation": { + "name": "emoji_transportation", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><polygon points=\"8,5 11,5 11,8 12,8 12,4 7,4 7,7 4,7 4,16 5,16 5,8 8,8\"></polygon><rect height=\"1\" width=\"1\" x=\"6\" y=\"9\"></rect><rect height=\"1\" width=\"1\" x=\"9\" y=\"6\"></rect><rect height=\"1\" width=\"1\" x=\"6\" y=\"11\"></rect><rect height=\"1\" width=\"1\" x=\"6\" y=\"13\"></rect><path d=\"M15.11,9.34C15.05,9.14,14.85,9,14.64,9H9.36C9.15,9,8.95,9.14,8.89,9.34L8,12v2v0.5V15v0.5C8,15.78,8.22,16,8.5,16 S9,15.78,9,15.5V15h6v0.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V15v-0.5V14v-2L15.11,9.34z M9.72,10h4.56l0.67,2H9.05L9.72,10 z M9.5,14C9.22,14,9,13.78,9,13.5S9.22,13,9.5,13s0.5,0.22,0.5,0.5S9.78,14,9.5,14z M14.5,14c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5S14.78,14,14.5,14z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 7h4V3h-6v4.61l2 2zm-2 3.44L4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44zM10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z\"></path><polygon points=\"14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4\"></polygon><rect height=\"2\" width=\"2\" x=\"5\" y=\"11\"></rect><rect height=\"2\" width=\"2\" x=\"10\" y=\"5\"></rect><rect height=\"2\" width=\"2\" x=\"5\" y=\"15\"></rect><rect height=\"2\" width=\"2\" x=\"5\" y=\"19\"></rect></g></g>" } } }, - "nature": { - "name": "nature", + "notifications_active": { + "name": "notifications_active", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 16.12h-.03c3.49-.4 6.2-3.36 6.2-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88zM7.17 9.17c0-2.76 2.24-5 5-5s5 2.24 5 5-2.24 5-5 5-5-2.24-5-5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42z\"></path>" } } }, - "nature_people": { - "name": "nature_people", + "ice_skating": { + "name": "ice_skating", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.5,14c0,1.38-1.12,2.5-2.5,2.5h-1.5V15H16v-3.5c0-1.35-0.89-2.49-2.2-2.85l-2.2-0.6c-0.65-0.18-1.1-0.77-1.1-1.45V2.5H3 V15h2.5v1.5H2V18h13c2.21,0,4-1.79,4-4H17.5z M4.5,13.5V4H9v1H7.5C7.22,5,7,5.22,7,5.5C7,5.77,7.22,6,7.5,6H9 c0,0.57-0.01,0.76,0.03,1H7.5C7.22,7,7,7.22,7,7.5C7,7.77,7.22,8,7.5,8h1.85c0.38,0.72,1.04,1.28,1.86,1.5l2.19,0.6 c0.65,0.18,1.1,0.73,1.1,1.4v2H4.5z M12,16.5H7V15h5V16.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"4.5\" cy=\"9.5\" r=\"1.5\"></circle><path d=\"M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M21,17c0,1.66-1.34,3-3,3h-2v-2h3v-4c0-1.79-1.19-3.34-2.91-3.82l-2.62-0.74C12.62,9.19,12,8.39,12,7.5V3H3v15h3v2H2v2h16 c2.76,0,5-2.24,5-5H21z M5,16V5h5v1H8.5C8.22,6,8,6.22,8,6.5C8,6.78,8.22,7,8.5,7H10l0.1,1H8.5C8.22,8,8,8.22,8,8.5 C8,8.78,8.22,9,8.5,9h1.81c0.45,1.12,1.4,2.01,2.6,2.36l2.62,0.73C16.4,12.33,17,13.1,17,14v2H5z M14,20H8v-2h6V20z\"></path></g>" } } }, - "navigate_before": { - "name": "navigate_before", + "sports_rugby": { + "name": "sports_rugby", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7c-0.35-0.35-1.34-0.6-2.6-0.6c-1.93,0-4.47,0.6-6.24,2.37 C3.54,9.39,3.81,14.42,4.7,15.3c0.35,0.35,1.34,0.6,2.6,0.6c1.93,0,4.47-0.6,6.24-2.37C16.46,10.61,16.19,5.58,15.3,4.7z M5.55,14.45c0.1-1.05,0.88-3.7,3.04-5.86c2.13-2.13,4.76-2.94,5.86-3.03c-0.1,1.05-0.88,3.7-3.04,5.86 C9.28,13.54,6.66,14.35,5.55,14.45z M7.17,7.17c1.63-1.63,3.86-1.98,5.01-2.06c-1.36,0.52-2.94,1.4-4.3,2.76 c-1.35,1.35-2.24,2.92-2.76,4.28C5.22,10.58,5.75,8.6,7.17,7.17z M12.83,12.83c-1.63,1.63-3.86,1.98-5.01,2.06 c1.36-0.52,2.94-1.4,4.3-2.76c1.35-1.35,2.24-2.92,2.76-4.28C14.78,9.42,14.25,11.4,12.83,12.83z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.61 7.41L14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M5.71,18.29 c0.63-1.89,2.16-4.99,4.87-7.7c2.68-2.68,5.78-4.23,7.7-4.88c-0.63,1.89-2.16,4.99-4.88,7.7C10.74,16.09,7.64,17.64,5.71,18.29z M7.76,7.76c2.64-2.64,6.34-3.12,8.03-3.19c-2.05,0.94-4.46,2.46-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63 C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.34,3.12-8.03,3.19c2.05-0.94,4.46-2.46,6.61-4.61 c2.16-2.16,3.67-4.58,4.62-6.63C19.34,10.67,18.56,13.93,16.24,16.24z\"></path></g>" } } }, - "navigate_next": { - "name": "navigate_next", + "woman": { + "name": "woman", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"10\" cy=\"3.75\" r=\"1.75\"></circle><path d=\"M11.39,7.92C11.15,7.36,10.61,7,10,7S8.85,7.36,8.61,7.92L6,14h2.5v4h3.01v-4H14L11.39,7.92z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10.02 6L8.61 7.41 13.19 12l-4.58 4.59L10.02 18l6-6-6-6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M13.94,8.31C13.62,7.52,12.85,7,12,7s-1.62,0.52-1.94,1.31L7,16h3v6h4v-6h3L13.94,8.31z\"></path><circle cx=\"12\" cy=\"4\" r=\"2\"></circle></g></g>" } } }, - "palette": { - "name": "palette", + "group": { + "name": "group", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M10,2c-4.41,0-8,3.59-8,8s3.59,8,8,8c1.1,0,2-0.9,2-2c0-0.49-0.18-0.96-0.51-1.34c-0.24-0.3-0.02-0.66,0.3-0.66h1.42 c2.65,0,4.8-2.15,4.8-4.8C18,5.23,14.41,2,10,2z M13.2,12.5h-1.42c-1.05,0-1.9,0.85-1.9,1.9c0,0.47,0.19,0.92,0.47,1.25 c0.34,0.39,0.02,0.85-0.36,0.85c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5s6.5,2.56,6.5,5.7C16.5,11.02,15.02,12.5,13.2,12.5z\"></path><circle cx=\"14.5\" cy=\"9.5\" r=\"1.25\"></circle><circle cx=\"12\" cy=\"6.5\" r=\"1.25\"></circle><circle cx=\"5.5\" cy=\"9.5\" r=\"1.25\"></circle><circle cx=\"8\" cy=\"6.5\" r=\"1.25\"></circle></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><g><path d=\"M12,22C6.49,22,2,17.51,2,12S6.49,2,12,2s10,4.04,10,9c0,3.31-2.69,6-6,6h-1.77c-0.28,0-0.5,0.22-0.5,0.5 c0,0.12,0.05,0.23,0.13,0.33c0.41,0.47,0.64,1.06,0.64,1.67C14.5,20.88,13.38,22,12,22z M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8 c0.28,0,0.5-0.22,0.5-0.5c0-0.16-0.08-0.28-0.14-0.35c-0.41-0.46-0.63-1.05-0.63-1.65c0-1.38,1.12-2.5,2.5-2.5H16 c2.21,0,4-1.79,4-4C20,7.14,16.41,4,12,4z\"></path><circle cx=\"6.5\" cy=\"11.5\" r=\"1.5\"></circle><circle cx=\"9.5\" cy=\"7.5\" r=\"1.5\"></circle><circle cx=\"14.5\" cy=\"7.5\" r=\"1.5\"></circle><circle cx=\"17.5\" cy=\"11.5\" r=\"1.5\"></circle></g></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\"></path>" } } }, - "panorama": { - "name": "panorama", + "group_off": { + "name": "group_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M7.66,5.54C7.77,5.51,7.88,5.5,8,5.5c0.83,0,1.5,0.67,1.5,1.5c0,0.12-0.01,0.23-0.04,0.34l1.15,1.15 C10.86,8.05,11,7.54,11,7c0-1.66-1.34-3-3-3C7.46,4,6.95,4.14,6.51,4.39L7.66,5.54z M11.68,9.56C12.19,8.83,12.5,7.95,12.5,7 c0-1.13-0.43-2.15-1.12-2.94C11.58,4.02,11.79,4,12,4c1.66,0,3,1.34,3,3c0,1.62-1.28,2.94-2.88,3L11.68,9.56z M15.41,13.29 c-0.2-0.83-0.69-1.57-1.39-2.06c1.08,0.22,2.1,0.6,3.02,1.14c0.6,0.36,0.97,1.02,0.97,1.72v1.79L15.41,13.29z M5,7.12L1.16,3.28 l1.06-1.06l15.56,15.56l-1.06,1.06L13.88,16H2v-1.91c0-0.7,0.36-1.36,0.97-1.72C4.44,11.5,6.16,11,8,11c0.31,0,0.62,0.01,0.92,0.04 l0,0L7.88,10C6.32,9.93,5.07,8.68,5,7.12z M10.89,13.01C9.97,12.67,8.99,12.5,8,12.5c-1.5,0-2.98,0.4-4.28,1.16 c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h8.88C12.38,14.5,10.89,13.01,10.89,13.01L10.89,13.01z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H3V6h18v12zm-6.5-7L11 15.51 8.5 12.5 5 17h14z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15,8c0-1.42-0.5-2.73-1.33-3.76C14.09,4.1,14.53,4,15,4c2.21,0,4,1.79,4,4s-1.79,4-4,4c-0.06,0-0.12,0-0.18,0l-0.77-0.77 C14.65,10.29,15,9.18,15,8z M22.83,20H23v-3c0-2.18-3.58-3.47-6.34-3.87c1.1,0.75,1.95,1.71,2.23,2.94L22.83,20z M9,6 C8.94,6,8.89,6,8.84,6.01l-1.6-1.6C7.77,4.15,8.37,4,9,4c2.21,0,4,1.79,4,4c0,0.63-0.15,1.23-0.41,1.76l-1.6-1.6 C11,8.11,11,8.06,11,8C11,6.9,10.1,6,9,6z M9.17,12C9.11,12,9.06,12,9,12c-2.21,0-4-1.79-4-4c0-0.06,0-0.11,0-0.17L0.69,3.51 L2.1,2.1l19.8,19.8l-1.41,1.41L17,19.83V20H1v-3c0-2.66,5.33-4,8-4c0.37,0,0.8,0.03,1.25,0.08L9.17,12z M9,15 c-2.7,0-5.8,1.29-6,2.01V18h12v-0.17l-2.11-2.11C11.76,15.31,10.33,15,9,15z\"></path>" } } }, - "panorama_fish_eye": { - "name": "panorama_fish_eye", + "scale": { + "name": "scale", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10,18c-0.83,0-1.5-0.67-1.5-1.5c0-0.41,0.17-0.79,0.44-1.06l0,0C9.54,14.84,13,13.5,13,13.5s-1.34,3.46-1.94,4.06 C10.79,17.83,10.41,18,10,18z M18,18h-5v-1.5l3.4,0c-0.77-5.48-5.79-5.65-6.4-5.65c-0.61,0-5.63,0.17-6.4,5.65l3.4,0V18H2 c0-5.88,3.72-7.97,6.5-8.5V7C4.8,6.55,2,4.49,2,2h16c0,2.49-2.8,4.55-6.5,5v2.5C14.28,10.03,18,12.12,18,18z M10,5.6 c2.67,0,4.83-0.95,5.84-2.1H4.16C5.17,4.65,7.33,5.6,10,5.6z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14,11V8c4.56-0.58,8-3.1,8-6H2c0,2.9,3.44,5.42,8,6l0,3c-3.68,0.73-8,3.61-8,11h6v-2H4.13c0.93-6.83,6.65-7.2,7.87-7.2 s6.94,0.37,7.87,7.2H16v2h6C22,14.61,17.68,11.73,14,11z M18.87,4C17.5,5.19,15,6.12,12,6.12C9,6.12,6.5,5.19,5.13,4H18.87z M12,22 c-1.1,0-2-0.9-2-2c0-0.55,0.22-1.05,0.59-1.41C11.39,17.79,16,16,16,16s-1.79,4.61-2.59,5.41C13.05,21.78,12.55,22,12,22z\"></path></g>" } } }, - "panorama_horizontal": { - "name": "panorama_horizontal", + "no_luggage": { + "name": "no_luggage", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><g><path d=\"M16,13.17l-1.5-1.5V9H16V13.17z M19.78,22.61l-1.85-1.85C17.65,20.91,17.34,21,17,21c0,0.55-0.45,1-1,1s-1-0.45-1-1H9 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c-1.1,0-2-0.9-2-2V8c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38 L19.78,22.61z M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M12.75,9h-0.92l0.92,0.92V9z M19,8v8.17 l-2-2V8h-6.17L9.84,7.01L9,6.17V6V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3h2C18.1,6,19,6.9,19,8z M10.5,6h3V3.5h-3V6z\"></path></g></g>" } } }, - "panorama_horizontal_select": { - "name": "panorama_horizontal_select", + "clean_hands": { + "name": "clean_hands", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,5.5c-3.89,0-6.95-0.84-8.69-1.43C2.67,3.85,2,4.33,2,5.02L2,19c0,0.68,0.66,1.17,1.31,0.95 C5.36,19.26,8.1,18.5,12,18.5c3.87,0,6.66,0.76,8.69,1.45C21.34,20.16,22,19.68,22,19l0-14c0-0.68-0.66-1.17-1.31-0.95 C18.66,4.73,15.86,5.5,12,5.5z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7l1.37-0.63L16.99,5 M20,14c1.1,0,2-0.9,2-2c0-1.1-2-4-2-4 s-2,2.9-2,4C18,13.1,18.9,14,20,14z M11,6.1V4h2c0.57,0,1.1,0.17,1.55,0.45l1.43-1.43C15.15,2.39,14.13,2,13,2c-1.47,0-5.44,0-5.5,0 v2H9v2.11C7.22,6.48,5.8,7.79,5.25,9.5h2.16C7.94,8.61,8.89,8,10,8c1.62,0,2.94,1.29,2.99,2.9L15,11.65V11 C15,8.58,13.28,6.56,11,6.1z M22,19v1l-8,2.5l-7-1.94V22H1V11h7.97l6.16,2.3C16.25,13.72,17,14.8,17,16h2C20.66,16,22,17.34,22,19z M5,20v-7H3v7H5z M19.9,18.57c-0.16-0.33-0.51-0.56-0.9-0.56h-5.35c-0.54,0-1.07-0.09-1.58-0.26l-2.38-0.79l0.63-1.9l2.38,0.79 C13.01,15.95,15,16,15,16c0-0.37-0.23-0.7-0.57-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z\"></path>" } } }, - "panorama_photosphere": { - "name": "panorama_photosphere", + "real_estate_agent": { + "name": "real_estate_agent", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,5.5v6h-1.5V6.26l-4-2.91l-4,2.91V7.5H6v-2l5.5-4L17,5.5z M18,16v0.5l-6.5,2L6,16.82V18H1V9h6l5.59,2 c0.85,0.3,1.41,1.1,1.41,2h1C16.66,13,18,14.34,18,16z M4.5,10.5h-2v6h2v-0.14V10.5z M16.39,15.43c-0.23-0.54-0.76-0.93-1.39-0.93 H9.74l-2-0.8l0.53-1.4l1.87,0.7h2.36c0-0.26-0.17-0.5-0.42-0.59L6.74,10.5H6v4.75l5.5,1.68L16.39,15.43z M12.62,6h-0.75v0.75h0.75V6 z M11.12,6h-0.75v0.75h0.75V6z M12.62,7.5h-0.75v0.75h0.75V7.5z M11.12,7.5h-0.75v0.75h0.75V7.5z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21.95,8.15c-0.29-0.16-0.61-0.31-0.93-0.46C19.4,4.33,15.98,2,12,2C8.02,2,4.6,4.33,2.99,7.68 c-0.33,0.15-0.64,0.3-0.93,0.46C1.41,8.5,1,9.17,1,9.91v4.18c0,0.74,0.41,1.41,1.05,1.77c0.29,0.16,0.61,0.31,0.93,0.46 C4.6,19.67,8.02,22,12,22c3.98,0,7.4-2.33,9.01-5.68c0.33-0.15,0.64-0.3,0.93-0.46C22.59,15.5,23,14.83,23,14.09V9.91 C23,9.17,22.59,8.5,21.95,8.15z M21,9.91C21,9.91,21,9.91,21,9.91l0,4.19C18.81,15.31,15.53,16,12,16c-3.53,0-6.81-0.7-9-1.91 c0,0,0,0,0,0l0-4.18C5.2,8.69,8.47,8,12,8C15.53,8,18.81,8.7,21,9.91z M12,4c2.37,0,4.49,1.04,5.95,2.68C16.17,6.25,14.15,6,12,6 C9.85,6,7.83,6.25,6.05,6.68C7.51,5.04,9.63,4,12,4z M12,20c-2.37,0-4.49-1.04-5.95-2.68C7.83,17.75,9.85,18,12,18 s4.17-0.25,5.95-0.68C16.49,18.96,14.37,20,12,20z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,6.5V14h-2V7.5L14,4L9,7.5V9H7V6.5l7-5L21,6.5z M15.5,7h-1v1h1V7z M13.5,7h-1v1h1V7z M15.5,9h-1v1h1V9z M13.5,9h-1v1h1V9 z M19,16h-2c0-1.2-0.75-2.28-1.87-2.7L8.97,11H1v11h6v-1.44l7,1.94l8-2.5v-1C22,17.34,20.66,16,19,16z M3,20v-7h2v7H3z M13.97,20.41 L7,18.48V13h1.61l5.82,2.17C14.77,15.3,15,15.63,15,16c0,0-1.99-0.05-2.3-0.15l-2.38-0.79l-0.63,1.9l2.38,0.79 c0.51,0.17,1.04,0.26,1.58,0.26H19c0.39,0,0.74,0.23,0.9,0.56L13.97,20.41z\"></path>" } } }, - "panorama_photosphere_select": { - "name": "panorama_photosphere_select", + "waving_hand": { + "name": "waving_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M6.23,3.87L3.05,7.05c-2.73,2.73-2.73,7.17,0,9.9s7.17,2.73,9.9,0L17.9,12c0.78-0.78,0.78-2.05,0-2.83 c-0.12-0.12-0.26-0.23-0.4-0.31l0.57-0.57c0.78-0.78,0.78-2.05,0-2.83c-0.15-0.15-0.32-0.27-0.5-0.36c0.36-0.75,0.23-1.67-0.39-2.29 c-0.68-0.68-1.72-0.77-2.5-0.27c-0.09-0.16-0.2-0.31-0.33-0.44c-0.78-0.78-2.05-0.78-2.83,0L9.37,4.27 c-0.08-0.14-0.19-0.28-0.31-0.4C8.28,3.09,7.01,3.09,6.23,3.87z M7.29,4.93c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 L5.17,8.46c0.98,0.98,0.98,2.56,0,3.54l1.06,1.06c1.19-1.19,1.47-2.93,0.86-4.39l5.51-5.51c0.2-0.2,0.51-0.2,0.71,0 c0.2,0.2,0.2,0.51,0,0.71L9.41,7.76l1.06,1.06l4.95-4.95c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-4.95,4.95l1.06,1.06 l4.07-4.07c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71L12.24,12l1.06,1.06l2.83-2.83c0.2-0.2,0.51-0.2,0.71,0 c0.2,0.2,0.2,0.51,0,0.71l-4.95,4.95c-2.15,2.15-5.63,2.15-7.78,0s-2.15-5.63,0-7.78L7.29,4.93z M1,6c0-2.76,2.24-5,5-5v1 C3.79,2,2,3.79,2,6H1z M19,14c0,2.76-2.24,5-5,5v-1c2.21,0,4-1.79,4-4H19z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21.95,8.15c-0.29-0.16-0.61-0.31-0.93-0.46C19.4,4.33,15.98,2,12,2C8.02,2,4.6,4.33,2.99,7.68 c-0.33,0.15-0.64,0.3-0.93,0.46C1.41,8.5,1,9.17,1,9.91v4.18c0,0.74,0.41,1.41,1.05,1.77c0.29,0.16,0.61,0.31,0.93,0.46 C4.6,19.67,8.02,22,12,22c3.98,0,7.4-2.33,9.01-5.68c0.33-0.15,0.64-0.3,0.93-0.46C22.59,15.5,23,14.83,23,14.09V9.91 C23,9.17,22.59,8.5,21.95,8.15z M12,4c2.37,0,4.49,1.04,5.95,2.68C16.17,6.25,14.15,6,12,6C9.85,6,7.83,6.25,6.05,6.68 C7.51,5.04,9.63,4,12,4z M12,20c-2.37,0-4.49-1.04-5.95-2.68C7.83,17.75,9.85,18,12,18s4.17-0.25,5.95-0.68 C16.49,18.96,14.37,20,12,20z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.03,4.95L3.49,8.49c-3.32,3.32-3.32,8.7,0,12.02s8.7,3.32,12.02,0l6.01-6.01c0.97-0.97,0.97-2.56,0-3.54 c-0.12-0.12-0.25-0.23-0.39-0.32l0.39-0.39c0.97-0.97,0.97-2.56,0-3.54c-0.16-0.16-0.35-0.3-0.54-0.41c0.4-0.92,0.23-2.02-0.52-2.77 c-0.87-0.87-2.22-0.96-3.2-0.28c-0.1-0.15-0.21-0.29-0.34-0.42c-0.97-0.97-2.56-0.97-3.54,0l-2.51,2.51 c-0.09-0.14-0.2-0.27-0.32-0.39C9.58,3.98,8,3.98,7.03,4.95z M8.44,6.37c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 l-3.18,3.18c1.17,1.17,1.17,3.07,0,4.24l1.41,1.41c1.45-1.45,1.82-3.57,1.12-5.36l6.3-6.3c0.2-0.2,0.51-0.2,0.71,0s0.2,0.51,0,0.71 l-4.6,4.6l1.41,1.41l6.01-6.01c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-6.01,6.01l1.41,1.41l4.95-4.95 c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-5.66,5.66l1.41,1.41l3.54-3.54c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 L14.1,19.1c-2.54,2.54-6.65,2.54-9.19,0s-2.54-6.65,0-9.19L8.44,6.37z M23,17c0,3.31-2.69,6-6,6v-1.5c2.48,0,4.5-2.02,4.5-4.5H23z M1,7c0-3.31,2.69-6,6-6v1.5C4.52,2.5,2.5,4.52,2.5,7H1z\"></path>" } } }, - "panorama_vertical": { - "name": "panorama_vertical", + "vaccines": { + "name": "vaccines", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.75,9V8.5c0.41,0,0.75-0.34,0.75-0.75C16.5,7.34,16.16,7,15.75,7h-4C11.34,7,11,7.34,11,7.75c0,0.41,0.34,0.75,0.75,0.75 V9c0,0-1.25,1-1.25,2.5v5c0,0.83,0.67,1.5,1.5,1.5h3.5c0.83,0,1.5-0.67,1.5-1.5v-5.25C17,10,15.75,9,15.75,9z M15.5,16.5H12V15h3.5 V16.5z M15.5,14H12v-1h3.5V14z M15.5,12H12v-0.5c0-1.13,1.25-1.25,1.25-2.5V8.5h1V9c0,1.25,1.25,1.37,1.25,2.5V12z M6,10.5 C6,10.78,6.22,11,6.5,11H8v1.5H4.5v-6H8V8H6.5C6.22,8,6,8.22,6,8.5C6,8.78,6.22,9,6.5,9H8v1H6.5C6.22,10,6,10.22,6,10.5z M2.25,5.75 C2.25,6.16,2.59,6.5,3,6.5l0,6C3,13.33,3.67,14,4.5,14h1v3L7,18.5V14h1c0.83,0,1.5-0.67,1.5-1.5l0-6c0.41,0,0.75-0.34,0.75-0.75 C10.25,5.34,9.91,5,9.5,5H7V3.5h0.5c0.41,0,0.75-0.34,0.75-0.75C8.25,2.34,7.91,2,7.5,2H5C4.59,2,4.25,2.34,4.25,2.75 C4.25,3.16,4.59,3.5,5,3.5h0.5V5H3C2.59,5,2.25,5.34,2.25,5.75z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8s-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8s.39 5.4 1.16 8H6.54z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,5.5H8V4h0.5c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1H6v1.5H3c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1V15c0,1.1,0.9,2,2,2h1v4l2,1.5V17h1c1.1,0,2-0.9,2-2V7.5c0.55,0,1-0.45,1-1C12,5.95,11.55,5.5,11,5.5z M9,9H7.25 C6.84,9,6.5,9.34,6.5,9.75c0,0.41,0.34,0.75,0.75,0.75H9V12H7.25c-0.41,0-0.75,0.34-0.75,0.75c0,0.41,0.34,0.75,0.75,0.75H9L9,15H5 V7.5h4V9z M19.5,10.5V10c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-5c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1v0.5c0,0.5-1.5,1.16-1.5,3V20 c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-6.5C21,11.66,19.5,11,19.5,10.5z M16.5,10.5V10h1v0.5c0,1.6,1.5,2,1.5,3V14h-4 c0-0.21,0-0.39,0-0.5C15,12.5,16.5,12.1,16.5,10.5z M19,15.5V17h-4c0-0.51,0-1.02,0-1.5H19z M15,20c0,0,0-0.63,0-1.5h4V20H15z\"></path>" } } }, - "panorama_vertical_select": { - "name": "panorama_vertical_select", + "switch_account": { + "name": "switch_account", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18.5,12c0-3.89,0.84-6.95,1.43-8.69C20.15,2.67,19.67,2,18.98,2L5,2C4.32,2,3.84,2.66,4.05,3.31C4.74,5.36,5.5,8.1,5.5,12 c0,3.87-0.76,6.66-1.45,8.69C3.84,21.34,4.32,22,5,22h14c0.68,0,1.17-0.66,0.95-1.31C19.27,18.66,18.5,15.86,18.5,12z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z M14,11c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C11,9.66,12.34,11,14,11z M14,7c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S13.45,7,14,7z M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4 C22,2.9,21.1,2,20,2z M10.69,16c0.95-0.63,2.09-1,3.31-1s2.36,0.37,3.31,1H10.69z M20,15.73C18.53,14.06,16.4,13,14,13 s-4.53,1.06-6,2.73V4h12V15.73z\"></path></g>" } } }, - "panorama_wide_angle": { - "name": "panorama_wide_angle", + "snowshoeing": { + "name": "snowshoeing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10.25,3.75C10.25,2.78,11.03,2,12,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C11.04,5.5,10.25,4.72,10.25,3.75z M8.16,17.02c-0.4-0.11-0.78-0.35-1.06-0.7l2.29-1.65l0.53-2.69l1.58,1.58V17L10,17v1h3c0.67,0,1.3-0.22,1.8-0.6 c0.14-0.11,0.2-0.25,0.2-0.4c0-0.25-0.19-0.5-0.5-0.5c-0.11,0-0.21,0.04-0.3,0.1C13.87,16.85,13.45,17,13,17v-4.05l-1.46-1.46 l0.49-2.48C12.94,10.21,14.37,11,16,11V9.5c-3.12,0-2.99-2.17-4.11-3.06c-0.57-0.46-1.35-0.57-2.03-0.28L6,7.79V11h1.5V8.79 l1.65-0.7L8.03,13.8l-1.85,1.34L5.29,14L4.5,14.61l1.82,2.32C6.92,17.71,7.81,18,8.03,18c0.39,0,0.66-0.47,0.39-0.81 C8.35,17.11,8.26,17.05,8.16,17.02z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12.5,3.5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S12.5,4.6,12.5,3.5z M6.32,19.03l-1.14-1.47L4,18.5l2.38,3.04 c0.51,0.65,1.16,1.15,1.88,1.41c0.28,0.1,0.53,0.04,0.72-0.11c0.3-0.23,0.42-0.7,0.12-1.07c-0.08-0.1-0.2-0.17-0.31-0.22 c-0.43-0.18-0.82-0.45-1.14-0.83l-0.08-0.1L11,18.2l0.89-3.22l2.11,2v4.52h-2V23h3.87c0.82,0,1.61-0.21,2.26-0.61 c0.26-0.16,0.37-0.39,0.37-0.64c0-0.38-0.3-0.75-0.77-0.75c-0.13,0-0.26,0.04-0.37,0.1c-0.4,0.23-0.87,0.37-1.36,0.4l0-6.02l-2.11-2 l0.6-3C15.79,11.98,17.8,13,20,13v-2c-1.9,0-3.51-1.02-4.31-2.42l-1-1.58c-0.4-0.6-1-1-1.7-1C12.24,6,11.58,6.34,7,8.28V13h2V9.58 l1.79-0.7L9.2,17L6.32,19.03z\"></path>" } } }, - "panorama_wide_angle_select": { - "name": "panorama_wide_angle_select", + "sports_motorsports": { + "name": "sports_motorsports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M11.16,5C11,5,10.85,5.01,10.69,5.02C3.25,5.6,3,14.07,3,14.07V15c0,0.55,0.45,1,1,1h7.5c3.13,0,5.65-2.62,5.49-5.79 C16.84,7.2,14.14,5,11.16,5z M6.82,7.6L10,8.91c0.51,0.21,0.86,0.64,0.96,1.17c0.11,0.54-0.05,1.07-0.44,1.45 C10.22,11.83,9.82,12,9.39,12H4.32C4.66,10.62,5.37,8.86,6.82,7.6z M14.76,13.6C13.9,14.5,12.74,15,11.5,15H4l0-0.9 c0-0.07,0.02-0.49,0.12-1.1h5.27c0.69,0,1.35-0.27,1.84-0.76c1.32-1.32,0.87-3.55-0.85-4.25L7.77,6.91c0.81-0.47,1.8-0.8,2.99-0.89 C10.9,6.01,11.03,6,11.16,6c2.55,0,4.72,1.91,4.84,4.26C16.06,11.51,15.62,12.7,14.76,13.6z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M12,4C8.03,4,5.15,4.63,3,5c-0.55,1.97-1,3.92-1,7c0,3.03,0.45,5.05,1,7c2.15,0.37,4.98,1,9,1c3.97,0,6.85-0.63,9-1 c0.57-2.02,1-3.99,1-7c0-3.03-0.45-5.05-1-7C18.85,4.63,16.02,4,12,4z\"></path></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21.96,11.22C21.57,7.01,17.76,4,13.56,4c-0.19,0-0.38,0.01-0.57,0.02C2,4.74,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10 C18.67,20,22.41,15.99,21.96,11.22z M5.26,11.56c0.57-1.29,1.28-2.35,2.14-3.19l3.62,1.53c0.6,0.25,0.98,0.83,0.98,1.48 c0,0.89-0.72,1.61-1.61,1.61H4.72C4.87,12.53,5.04,12.05,5.26,11.56z M18.44,16.04C17.3,17.29,15.68,18,14,18H4v-0.8 c0-0.02,0.01-0.92,0.24-2.2h6.15c1.99,0,3.61-1.62,3.61-3.61c0-1.45-0.87-2.76-2.2-3.32L9.3,7.01c1.1-0.57,2.37-0.9,3.82-0.99 C13.27,6,13.42,6,13.56,6c3.31,0,6.13,2.37,6.41,5.41C20.13,13.13,19.59,14.77,18.44,16.04z\"></path></g>" } } }, - "photo": { - "name": "photo", + "travel_explore": { + "name": "travel_explore", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.85,8.5h-1.54c-0.48-2.03-1.93-3.68-3.82-4.48V4.5C12.5,5.33,11.83,6,11,6H9v1c0,0.55-0.45,1-1,1H7v2h1v2H7L3.64,8.64 C3.55,9.08,3.5,9.53,3.5,10c0,3.58,2.92,6.5,6.5,6.5V18c-4.42,0-8-3.58-8-8s3.58-8,8-8C13.91,2,17.15,4.8,17.85,8.5z M18,16.44 l-1.06,1.06l-2.56-2.56c-0.54,0.35-1.19,0.56-1.88,0.56C10.57,15.5,9,13.93,9,12s1.57-3.5,3.5-3.5S16,10.07,16,12 c0,0.69-0.21,1.34-0.56,1.88L18,16.44z M14.5,12c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14.5,13.1,14.5,12z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.3,16.9c0.4-0.7,0.7-1.5,0.7-2.4c0-2.5-2-4.5-4.5-4.5S11,12,11,14.5s2,4.5,4.5,4.5c0.9,0,1.7-0.3,2.4-0.7l3.2,3.2 l1.4-1.4L19.3,16.9z M15.5,17c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5S16.9,17,15.5,17z M12,20v2 C6.48,22,2,17.52,2,12C2,6.48,6.48,2,12,2c4.84,0,8.87,3.44,9.8,8h-2.07c-0.64-2.46-2.4-4.47-4.73-5.41V5c0,1.1-0.9,2-2,2h-2v2 c0,0.55-0.45,1-1,1H8v2h2v3H9l-4.79-4.79C4.08,10.79,4,11.38,4,12C4,16.41,7.59,20,12,20z\"></path>" } } }, - "photo_album": { - "name": "photo_album", + "cruelty_free": { + "name": "cruelty_free", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M13.93,11.7c-0.21-0.21-0.41-0.43-0.57-0.64c0.93-1.37,2.14-3.69,2.14-6.56C15.5,2.94,15.01,2,14,2 c-1.23,0-3.17,1.65-4,4.78C9.17,3.65,7.23,2,6,2C4.99,2,4.5,2.94,4.5,4.5c0,2.87,1.21,5.19,2.14,6.56 c-0.18,0.22-0.35,0.42-0.57,0.64c-0.2,0.2-1.57,1.1-1.57,2.8C4.5,16.43,6.07,18,8,18c1.18,0,2-0.4,2-0.4s0.82,0.4,2,0.4 c1.93,0,3.5-1.57,3.5-3.5C15.5,12.8,14.13,11.9,13.93,11.7z M13.88,3.53C13.94,3.69,14,4,14,4.5c0,2.32-0.94,4.27-1.73,5.49 c0,0-0.45-0.34-1.16-0.48C11.26,5.49,13.21,3.77,13.88,3.53z M6,4.5C6,4,6.06,3.69,6.12,3.53c0.67,0.24,2.62,1.96,2.77,5.98 C8.18,9.65,7.73,9.99,7.73,9.99C6.94,8.77,6,6.82,6,4.5z M12,16.5c-0.93,0-1.61-0.35-1.87-0.52c0.38-0.09,0.67-0.59,0.67-0.78 c0-0.22-0.36-0.4-0.8-0.4s-0.8,0.18-0.8,0.4c0,0.2,0.29,0.69,0.67,0.78C9.61,16.15,8.93,16.5,8,16.5c-1.1,0-2-0.9-2-2 c0-0.69,0.44-1.15,0.91-1.54c0.27-0.21,0.58-0.58,0.88-0.94C8.41,11.27,8.72,10.9,10,10.9s1.59,0.37,2.21,1.12 c0.3,0.36,0.61,0.73,0.88,0.94C13.56,13.35,14,13.81,14,14.5C14,15.6,13.1,16.5,12,16.5z M11.6,13.2c0,0.33-0.18,0.6-0.4,0.6 s-0.4-0.27-0.4-0.6c0-0.33,0.18-0.6,0.4-0.6S11.6,12.87,11.6,13.2z M9.2,13.2c0,0.33-0.18,0.6-0.4,0.6s-0.4-0.27-0.4-0.6 c0-0.33,0.18-0.6,0.4-0.6S9.2,12.87,9.2,13.2z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 2v5l-1-.75L9 9V4h2zm7 16H6V4h1v9l3-2.25L13 13V4h5v16zm-6.72-2.04L9.5 15.81 7 19h10l-3.22-4.26z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,14c-0.24-0.24-0.44-0.49-0.65-0.75C17.51,11.5,19,8.56,19,5c0-1.95-0.74-3-2-3c-1.54,0-3.96,2.06-5,5.97 C10.96,4.06,8.54,2,7,2C5.74,2,5,3.05,5,5c0,3.56,1.49,6.5,2.65,8.25C7.44,13.51,7.24,13.76,7,14c-0.25,0.25-2,1.39-2,3.5 C5,19.98,7.02,22,9.5,22c1.5,0,2.5-0.5,2.5-0.5s1,0.5,2.5,0.5c2.48,0,4.5-2.02,4.5-4.5C19,15.39,17.25,14.25,17,14z M16.88,4.03 C16.94,4.2,17,4.51,17,5c0,2.84-1.11,5.24-2.07,6.78c-0.38-0.26-0.83-0.48-1.4-0.62C13.77,6.64,15.97,4.33,16.88,4.03z M7,5 c0-0.49,0.06-0.8,0.12-0.97c0.91,0.3,3.11,2.61,3.36,7.13c-0.58,0.14-1.03,0.35-1.4,0.62C8.11,10.24,7,7.84,7,5z M14.5,20 c-1,0-1.8-0.33-2.22-0.56C12.7,19.26,13,18.73,13,18.5c0-0.28-0.45-0.5-1-0.5s-1,0.22-1,0.5c0,0.23,0.3,0.76,0.72,0.94 C11.3,19.67,10.5,20,9.5,20C8.12,20,7,18.88,7,17.5c0-0.7,0.43-1.24,1-1.73c0.44-0.36,0.61-0.52,1.3-1.37 c0.76-0.95,1.09-1.4,2.7-1.4s1.94,0.45,2.7,1.4c0.69,0.85,0.86,1.01,1.3,1.37c0.57,0.49,1,1.03,1,1.73C17,18.88,15.88,20,14.5,20z M14,16c0,0.41-0.22,0.75-0.5,0.75S13,16.41,13,16c0-0.41,0.22-0.75,0.5-0.75S14,15.59,14,16z M11,16c0,0.41-0.22,0.75-0.5,0.75 S10,16.41,10,16c0-0.41,0.22-0.75,0.5-0.75S11,15.59,11,16z\"></path>" } } }, - "photo_camera": { - "name": "photo_camera", + "notifications_none": { + "name": "notifications_none", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.12 4l1.83 2H20v12H4V6h4.05l1.83-2h4.24M15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2zm-3 7c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z\"></path>" } } }, - "photo_camera_back": { - "name": "photo_camera_back", + "precision_manufacturing": { + "name": "precision_manufacturing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10.5,9C10.78,9,11,8.78,11,8.5V8.43l1.43,1.43c0.15,0.15,0.37,0.19,0.56,0.1l2.72-1.27c0.25-0.12,0.36-0.41,0.24-0.66v0 c-0.12-0.25-0.41-0.36-0.66-0.24l-2.4,1.12L11,7.01V6.99l1.89-1.89l2.4,1.12c0.25,0.12,0.55,0.01,0.66-0.24v0 c0.12-0.25,0.01-0.55-0.24-0.66l-2.72-1.27C12.8,3.96,12.58,4,12.43,4.15L11,5.57V5.5C11,5.22,10.78,5,10.5,5S10,5.22,10,5.5v1 H7.93c-0.26-1-1.27-1.71-2.4-1.45C4.8,5.22,4.21,5.82,4.05,6.54C3.83,7.56,4.37,8.47,5.21,8.84L6.5,14H6c-0.55,0-1,0.45-1,1v1h8v-1 c0-0.55-0.45-1-1-1h-1.14L7.56,8.23C7.73,8.02,7.86,7.77,7.93,7.5H10v1C10,8.78,10.22,9,10.5,9z M6,8C5.45,8,5,7.55,5,7 c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M9.38,14H7.82L6.65,9.28h0.04L9.38,14z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z\"></path><polygon points=\"11.25,16 9,13 6,17 18,17 14.25,12\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7 c0,1.1,0.6,2.05,1.48,2.58L7.08,18H6c-1.1,0-2,0.9-2,2v1h13v-1c0-1.1-0.9-2-2-2h-1.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M11.11,18H9.17 l-2.46-8h0.1L11.11,18z\"></path></g>" } } }, - "photo_camera_front": { - "name": "photo_camera_front", + "elderly_woman": { + "name": "elderly_woman", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14.62,8.99c-0.32,0-0.61,0.14-0.81,0.35c-1.91-0.49-1.98-2.15-2.92-2.91c-0.26-0.21-0.57-0.34-0.89-0.4 C6.85,5.45,5.5,14.26,5.5,15h1.6l-1.6,2l1,1L9,15h1.5v3H12v-3l-1.46-3.93l0.28-2.33l0,0c0,0,0,0,0,0 c0.02,0.03,0.91,1.44,2.68,2.02v0.25h0.75v-0.88c0-0.21,0.17-0.38,0.38-0.38S15,9.91,15,10.12V18h0.75v-7.88 C15.75,9.5,15.25,8.99,14.62,8.99z\"></path><path d=\"M9.34,3.22C9.29,3.39,9.25,3.56,9.25,3.75c0,0.97,0.79,1.75,1.75,1.75c0.96,0,1.75-0.78,1.75-1.75 C12.75,2.78,11.97,2,11,2c-0.29,0-0.57,0.08-0.81,0.21C10.08,1.94,9.81,1.75,9.5,1.75c-0.41,0-0.75,0.34-0.75,0.75 C8.75,2.86,9.01,3.14,9.34,3.22z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z\"></path><circle cx=\"12\" cy=\"11\" r=\"2\"></circle><path d=\"M14.78,14.58C13.93,14.21,12.99,14,12,14s-1.93,0.21-2.78,0.58C8.48,14.9,8,15.62,8,16.43V17h8v-0.57 C16,15.62,15.52,14.9,14.78,14.58z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18.5,11c-1.56,0-2.92-0.9-3.58-2.21l-0.79-1.67l0,0C14.12,7.1,13.63,6,12.34,6l0,0C8.72,6,6,16.69,6,19h2.5l-2.1,2.8 L8,23l3-4h2v4h2v-4.03L13,13l0.49-2.71c0.81,1.23,2.05,2.14,3.51,2.52v0.69h1v-1c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V23h1 V12.5C20,11.67,19.33,11,18.5,11z\"></path><path d=\"M11.6,2.91c-0.06,0.19-0.1,0.38-0.1,0.59c0,1.1,0.9,2,2,2s2-0.9,2-2c0-1.1-0.9-2-2-2c-0.21,0-0.4,0.04-0.59,0.1 C12.76,1.25,12.41,1,12,1c-0.55,0-1,0.45-1,1C11,2.41,11.25,2.76,11.6,2.91z\"></path></g></g>" } } }, - "photo_filter": { - "name": "photo_filter", + "social_distance": { + "name": "social_distance", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 10v9H4.98V5h9V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zm-2.94-2.06L17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7zM12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M4,5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S4,6.1,4,5z M8.78,8.58C7.93,8.21,6.99,8,6,8S4.07,8.21,3.22,8.58 C2.48,8.9,2,9.62,2,10.43L2,11h8l0-0.57C10,9.62,9.52,8.9,8.78,8.58z M18,7c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2 C16,6.1,16.9,7,18,7z M20.78,8.58C19.93,8.21,18.99,8,18,8c-0.99,0-1.93,0.21-2.78,0.58C14.48,8.9,14,9.62,14,10.43L14,11h8l0-0.57 C22,9.62,21.52,8.9,20.78,8.58z M18.01,13.01l-1.41,1.41L18.17,16H5.83l1.58-1.59l-1.41-1.41L2,17l3.99,3.99l1.41-1.41L5.83,18 h12.34l-1.58,1.58l1.41,1.41L22,17L18.01,13.01z\"></path>" } } }, - "photo_library": { - "name": "photo_library", + "cake": { + "name": "cake", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3zm1 11H5v-3c.9-.01 1.76-.37 2.4-1.01l1.09-1.07 1.07 1.07c1.31 1.31 3.59 1.3 4.89 0l1.08-1.07 1.07 1.07c.64.64 1.5 1 2.4 1.01v3zm0-4.5c-.51-.01-.99-.2-1.35-.57l-2.13-2.13-2.14 2.13c-.74.74-2.03.74-2.77 0L8.48 12.8l-2.14 2.13c-.35.36-.83.56-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3.5z\"></path>" } } }, - "photo_size_select_actual": { - "name": "photo_size_select_actual", + "interests": { + "name": "interests", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M6,11c-1.65,0-3,1.35-3,3s1.35,3,3,3s3-1.35,3-3S7.65,11,6,11z M6,15.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S6.83,15.5,6,15.5z M11,17h6v-6h-6V17z M12.5,12.5h3v3h-3V12.5z M7.4,7.5H4.6L6,5.03L7.4,7.5z M2.01,9H10L6,2 L2.01,9z M15.72,2.5c-0.81,0-1.39,0.43-1.72,0.89c-0.33-0.47-0.91-0.89-1.72-0.89c-1.19,0-2.1,0.98-2.1,2.1 c0,1.53,1.85,2.61,3.82,4.4c1.98-1.78,3.82-2.87,3.82-4.4C17.82,3.48,16.92,2.5,15.72,2.5z M14,7c-1.12-0.95-2.32-1.87-2.32-2.42 c0-0.33,0.27-0.58,0.58-0.58c0.24,0,0.4,0.13,0.57,0.29L14,5.4l1.18-1.11C15.34,4.14,15.5,4,15.74,4c0.31,0,0.58,0.25,0.58,0.58 C16.33,5.13,15.12,6.05,14,7z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.02,13c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S9.23,13,7.02,13z M7.02,19c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S8.12,19,7.02,19z M13,13v8h8v-8H13z M19,19h-4v-4h4V19z M7,2l-5,9h10L7,2z M7,6.12L8.6,9H5.4L7,6.12z M19.25,2.5 c-1.06,0-1.81,0.56-2.25,1.17c-0.44-0.61-1.19-1.17-2.25-1.17C13.19,2.5,12,3.78,12,5.25c0,2,2.42,3.42,5,5.75 c2.58-2.33,5-3.75,5-5.75C22,3.78,20.81,2.5,19.25,2.5z M17,8.35c-1.45-1.22-3-2.4-3-3.1c0-0.43,0.35-0.75,0.75-0.75 c0.31,0,0.52,0.17,0.73,0.37L17,6.3l1.52-1.43c0.21-0.2,0.42-0.37,0.73-0.37c0.4,0,0.75,0.32,0.75,0.75C20,5.95,18.45,7.13,17,8.35z\"></path>" } } }, - "photo_size_select_large": { - "name": "photo_size_select_large", + "edit_notifications": { + "name": "edit_notifications", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13.5,11.03V14h-7V9c0-1.93,1.57-3.5,3.5-3.5c0.58,0,1.13,0.14,1.61,0.39l1.1-1.1C12.19,4.47,11.62,4.23,11,4.1V3 c0-0.55-0.45-1-1-1S9,2.45,9,3v1.1C6.72,4.56,5,6.58,5,9v5H4v1.5h12V14h-1V9.53L13.5,11.03z M10,18c0.83,0,1.5-0.67,1.5-1.5h-3 C8.5,17.33,9.17,18,10,18z M14.32,5.27l1.41,1.41l-3.82,3.82H10.5l0-1.41L14.32,5.27z M14.81,4.77l0.63-0.63 c0.2-0.2,0.51-0.2,0.71,0l0.71,0.71c0.2,0.2,0.2,0.51,0,0.71l-0.63,0.63L14.81,4.77z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8l2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M17.58,6.25l1.77,1.77L14.37,13H12.6v-1.77L17.58,6.25z M20.85,5.81l-1.06-1.06c-0.2-0.2-0.51-0.2-0.71,0l-0.85,0.85 l1.77,1.77l0.85-0.85C21.05,6.32,21.05,6,20.85,5.81z M18,12.2V17h2v2H4v-2h2v-7c0-2.79,1.91-5.14,4.5-5.8V3.5 C10.5,2.67,11.17,2,12,2s1.5,0.67,1.5,1.5v0.7c0.82,0.21,1.57,0.59,2.21,1.09l-1.43,1.43C13.64,6.26,12.85,6,12,6 c-2.21,0-4,1.79-4,4v7h8v-2.8L18,12.2z M10,20h4c0,1.1-0.9,2-2,2S10,21.1,10,20z\"></path></g>" } } }, - "photo_size_select_small": { - "name": "photo_size_select_small", + "emoji_emotions": { + "name": "emoji_emotions", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M10,14c1.86,0,3.41-1.28,3.86-3H6.14C6.59,12.72,8.14,14,10,14z\"></path><path d=\"M9.99,3C6.13,3,3,6.14,3,10s3.13,7,6.99,7c3.87,0,7.01-3.14,7.01-7S13.86,3,9.99,3z M9.99,16C6.69,16,4,13.31,4,10 s2.69-6,5.99-6C13.31,4,16,6.69,16,10S13.31,16,9.99,16z\"></path><circle cx=\"13\" cy=\"8\" r=\"1\"></circle><circle cx=\"7\" cy=\"8\" r=\"1\"></circle></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><circle cx=\"15.5\" cy=\"9.5\" r=\"1.5\"></circle><circle cx=\"8.5\" cy=\"9.5\" r=\"1.5\"></circle><path d=\"M12,18c2.28,0,4.22-1.66,5-4H7C7.78,16.34,9.72,18,12,18z\"></path><path d=\"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z\"></path></g></g>" } } }, - "picture_as_pdf": { - "name": "picture_as_pdf", + "notification_add": { + "name": "notification_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M20,7.69h-2.25V10h-1.5V7.69H14V6.31h2.25V4h1.5v2.31H20V7.69z M13.5,11v3h-7V9c0-1.93,1.57-3.5,3.5-3.5 c0.58,0,1.13,0.14,1.61,0.39l1.1-1.1C12.19,4.47,11.62,4.23,11,4.1V3c0-0.55-0.45-1-1-1S9,2.45,9,3v1.1C6.72,4.56,5,6.58,5,9v5H4 v1.5h12V14h-1v-3H13.5z M10,18c0.83,0,1.5-0.67,1.5-1.5h-3C8.5,17.33,9.17,18,10,18z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm12 6V9c0-.55-.45-1-1-1h-2v5h2c.55 0 1-.45 1-1zm-2-3h1v3h-1V9zm4 2h1v-1h-1V9h1V8h-2v5h1zm-8 0h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9v5h1v-2zm0-2h1v1h-1V9z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect><g><path d=\"M16,14v3H8v-7c0-2.21,1.79-4,4-4c0.85,0,1.64,0.26,2.28,0.72l1.43-1.43c-0.64-0.51-1.39-0.88-2.21-1.09V3.5 C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5v0.7C7.91,4.86,6,7.21,6,10v7H4v2h16v-2h-2v-3H16z M12,22c1.1,0,2-0.9,2-2h-4 C10,21.1,10.9,22,12,22z M24,8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z\"></path></g>" } } }, - "portrait": { - "name": "portrait", + "mood_bad": { + "name": "mood_bad", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.42zM8.48 16c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z\"></path>" } } }, - "raw_off": { - "name": "raw_off", + "person": { + "name": "person", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"17.15,14.32 17.74,11.96 18.5,15 19.98,15 21.48,9 19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 14.72,11.9\"></polygon><path d=\"M1.39,4.22L6.17,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-0.67l1.43,1.43L8.75,15h1.5l0.38-1.5h0.04 l9.11,9.11l1.41-1.41L2.81,2.81L1.39,4.22z M6.5,11.5h-2v-1h2V11.5z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 10c2.7 0 5.8 1.29 6 2H6c.23-.72 3.31-2 6-2m0-12C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 10c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z\"></path>" } } }, - "raw_on": { - "name": "raw_on", + "remove_moderator": { + "name": "remove_moderator", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M6.5,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-1C8,9.7,7.3,9,6.5,9z M6.5,11.5h-2v-1h2V11.5z\"></path><path d=\"M10.25,9l-1.5,6h1.5l0.38-1.5h1.75l0.37,1.5h1.5l-1.5-6H10.25z M11,12l0.25-1h0.5L12,12H11z\"></path><polygon points=\"19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 15.5,15 16.98,15 17.74,11.96 18.5,15 19.98,15 21.48,9\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,4.14l6,2.25v4.7c0,1.19-0.23,2.36-0.64,3.44l1.51,1.51c0.72-1.53,1.13-3.22,1.13-4.95V5l-8-3L6.78,3.96l1.55,1.55 L12,4.14z M2.81,2.81L1.39,4.22L4,6.83v4.26c0,5.05,3.41,9.76,8,10.91c1.72-0.43,3.28-1.36,4.55-2.62l3.23,3.23l1.41-1.41 L2.81,2.81z M12,19.92c-3.45-1.13-6-4.82-6-8.83V8.83l9.14,9.14C14.24,18.85,13.17,19.54,12,19.92z\"></path></g>" } } }, - "receipt_long": { - "name": "receipt_long", + "6_ft_apart": { + "name": "6_ft_apart", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path><g><path d=\"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M15,20H6c-0.55,0-1-0.45-1-1v-1h10V20z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z\"></path><rect height=\"2\" width=\"6\" x=\"9\" y=\"7\"></rect><rect height=\"2\" width=\"2\" x=\"16\" y=\"7\"></rect><rect height=\"2\" width=\"6\" x=\"9\" y=\"10\"></rect><rect height=\"2\" width=\"2\" x=\"16\" y=\"10\"></rect></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z\"></path>" } } }, - "remove_red_eye": { - "name": "remove_red_eye", + "deck": { + "name": "deck", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"4.37,10 3.38,10.18 4,13.5 4,17 5,17 5,14 7,14 7,17 8,17 8,13 4.92,13\"></polygon><polygon points=\"15.08,13 12,13 12,17 13,17 13,14 15,14 15,17 16,17 16,13.5 16.62,10.18 15.63,10\"></polygon><path d=\"M10,3L3,8h6.5v9h1V8H17L10,3z M6.12,7L10,4.23L13.88,7H6.12z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6.5c3.79 0 7.17 2.13 8.82 5.5-1.65 3.37-5.02 5.5-8.82 5.5S4.83 15.37 3.18 12C4.83 8.63 8.21 6.5 12 6.5m0-2C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5-2.5-1.12-2.5-2.5 1.12-2.5 2.5-2.5m0-2c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M22,9L12,2L2,9h9v13h2V9H22z M12,4.44L15.66,7H8.34L12,4.44z\"></path><polygon points=\"4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16\"></polygon><polygon points=\"19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12\"></polygon></g></g>" } } }, - "rotate_90_degrees_ccw": { - "name": "rotate_90_degrees_ccw", + "sports": { + "name": "sports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M9.5,6C8.06,6,6.8,6.68,5.98,7.73C5.99,7.66,6,7.58,6,7.5C6,6.67,5.33,6,4.5,6S3,6.67,3,7.5S3.67,9,4.5,9 c0.33,0,0.62-0.11,0.87-0.28C5.13,9.26,5,9.87,5,10.5C5,12.99,7.01,15,9.5,15s4.5-2.01,4.5-4.5c0-0.08-0.02-0.16-0.02-0.24 c0-0.04,0.01-0.09,0.01-0.12C13.93,9.53,14.37,9,14.97,9H18V6H9.5z M4.5,8C4.22,8,4,7.78,4,7.5C4,7.22,4.22,7,4.5,7S5,7.22,5,7.5 C5,7.78,4.78,8,4.5,8z M11.47,12.02C11.02,12.61,10.31,13,9.5,13C8.12,13,7,11.88,7,10.5c0-1.27,0.95-2.3,2.17-2.47 C9.28,8.02,9.39,8,9.5,8c1.38,0,2.5,1.12,2.5,2.5C12,11.07,11.8,11.6,11.47,12.02z\"></path></g><g><circle cx=\"9.5\" cy=\"10.5\" r=\"1.5\"></circle></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z\"></path></g><g><circle cx=\"11\" cy=\"12\" r=\"2\"></circle></g></g></g>" } } }, - "rotate_left": { - "name": "rotate_left", + "sports_baseball": { + "name": "sports_baseball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M4,10c0-1.63,0.65-3.11,1.71-4.19 C7.09,6.7,8,8.24,8,10s-0.91,3.3-2.29,4.19C4.65,13.11,4,11.63,4,10z M10,16c-1.31,0-2.51-0.42-3.5-1.14C8.01,13.77,9,12,9,10 S8.01,6.23,6.5,5.14C7.49,4.42,8.69,4,10,4s2.51,0.42,3.5,1.14C11.99,6.23,11,8,11,10s0.99,3.77,2.5,4.86 C12.51,15.58,11.31,16,10,16z M14.29,14.19C12.91,13.3,12,11.76,12,10s0.91-3.3,2.29-4.19C15.35,6.89,16,8.37,16,10 S15.35,13.11,14.29,14.19z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.11 8.53L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.61,16.78C4.6,15.45,4,13.8,4,12 s0.6-3.45,1.61-4.78C7.06,8.31,8,10.05,8,12S7.06,15.69,5.61,16.78z M12,20c-1.89,0-3.63-0.66-5-1.76c1.83-1.47,3-3.71,3-6.24 S8.83,7.23,7,5.76C8.37,4.66,10.11,4,12,4s3.63,0.66,5,1.76c-1.83,1.47-3,3.71-3,6.24s1.17,4.77,3,6.24C15.63,19.34,13.89,20,12,20 z M18.39,16.78C16.94,15.69,16,13.95,16,12s0.94-3.69,2.39-4.78C19.4,8.55,20,10.2,20,12S19.4,15.45,18.39,16.78z\"></path></g>" } } }, - "rotate_right": { - "name": "rotate_right", + "people_alt": { + "name": "people_alt", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><g><path d=\"M8.5,6C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9S7,8.33,7,7.5S7.67,6,8.5,6 M8.5,5C7.12,5,6,6.12,6,7.5C6,8.88,7.12,10,8.5,10 S11,8.88,11,7.5C11,6.12,9.88,5,8.5,5L8.5,5z\"></path></g><g><path d=\"M10.99,9.95C11.16,9.98,11.33,10,11.5,10c1.38,0,2.5-1.12,2.5-2.5 C14,6.12,12.88,5,11.5,5c-0.17,0-0.34,0.02-0.51,0.05C11.61,5.68,12,6.55,12,7.5S11.61,9.32,10.99,9.95z\" fill-rule=\"evenodd\"></path></g><g><path d=\"M8.5,12c2.15,0,4.38,0.77,4.5,1.23V14H4l0-0.77C4.12,12.77,6.35,12,8.5,12 M8.5,11C6.66,11,3,11.66,3,13.23V15h11v-1.77 C14,11.66,10.34,11,8.5,11L8.5,11z\"></path></g><g><path d=\"M13.73,11.23c0.75,0.48,1.27,1.12,1.27,2V15h2v-1.77 C17,12.18,15.36,11.54,13.73,11.23z\" fill-rule=\"evenodd\"></path></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.55 5.55L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42l1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3C23,14.82,19.43,13.53,16.67,13.13z\"></path><path d=\"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76 C14.09,11.9,14.53,12,15,12z\"></path><path d=\"M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z\"></path><path d=\"M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z M15,18H3l0-0.99C3.2,16.29,6.3,15,9,15s5.8,1.29,6,2V18z\"></path></g></g>" } } }, - "shutter_speed": { - "name": "shutter_speed", + "hive": { + "name": "hive", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M18.08,7.58L16.2,4.42h-2.89L11.88,2H8.12L6.69,4.42H3.8L1.92,7.58L3.36,10l-1.43,2.42l1.88,3.17h2.89L8.12,18h3.75 l1.43-2.42h2.89l1.88-3.17L16.64,10L18.08,7.58z M11.02,11.67H8.98L7.99,10l0.99-1.67h2.04L12.01,10L11.02,11.67z M8.98,3.5h2.04 l0.99,1.67l-0.99,1.67H8.98L7.99,5.17L8.98,3.5z M4.65,5.92h2.04l0.99,1.67L6.69,9.25H4.65L3.67,7.58L4.65,5.92z M3.67,12.42 l0.99-1.67h2.04l0.99,1.67l-0.99,1.67H4.65L3.67,12.42z M11.02,16.5H8.98l-0.99-1.67l0.99-1.67h2.04l0.99,1.67L11.02,16.5z M15.35,14.08h-2.04l-0.99-1.67l0.99-1.67h2.04l0.99,1.67L15.35,14.08z M15.35,9.25h-2.04l-0.99-1.67l0.99-1.67h2.04l0.99,1.67 L15.35,9.25z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 1H9v2h6V1zm4.03 6.39l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21.5,9l-2.25-4h-3.31l-1.69-3h-4.5L8.06,5H4.75L2.5,9l1.69,3L2.5,15l2.25,4h3.31l1.69,3h4.5l1.69-3h3.31l2.25-4l-1.69-3 L21.5,9z M19.21,9l-1.12,2h-2.14l-1.12-2l1.12-2h2.14L19.21,9z M10.94,14l-1.12-2l1.12-2h2.12l1.12,2l-1.12,2H10.94z M13.08,4 l1.12,1.98L13.06,8h-2.12L9.8,5.98L10.92,4H13.08z M5.92,7h2.14l1.12,2l-1.12,2H5.92L4.79,9L5.92,7z M4.79,15l1.12-2h2.14l1.12,2 l-1.12,2H5.92L4.79,15z M10.92,20L9.8,18.02L10.94,16h2.12l1.13,2.02L13.08,20H10.92z M18.08,17h-2.14l-1.12-2l1.12-2h2.14l1.12,2 L18.08,17z\"></path></g>" } } }, - "slideshow": { - "name": "slideshow", + "self_improvement": { + "name": "self_improvement", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"10\" cy=\"5.5\" r=\"1.5\"></circle><path d=\"M16,12v-1c-1.67,0-3.28-0.85-4.11-2.16C11.55,8.29,10.91,8,10.27,8H9.73C9.09,8,8.45,8.29,8.11,8.84 C7.28,10.15,5.67,11,4,11v1c2,0,3.51-0.75,4.5-1.96v2.45l-2.77,1.19C5.29,13.88,5,14.31,5,14.79C5,15.46,5.54,16,6.21,16H8 c0,0,0-0.11,0-0.25C8,14.79,8.79,14,9.75,14h2c0.14,0,0.25,0.11,0.25,0.25s-0.11,0.25-0.25,0.25h-2c-0.69,0-1.25,0.56-1.25,1.25 c0,0.05,0,0.25,0,0.25h5.29c0.67,0,1.21-0.54,1.21-1.21c0-0.48-0.29-0.92-0.73-1.11L11.5,12.5v-2.45C12.49,11.25,14,12,16,12z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"12\" cy=\"6\" r=\"2\"></circle><path d=\"M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z\"></path></g></g>" } } }, - "straighten": { - "name": "straighten", + "domain_add": { + "name": "domain_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M5,15.5H3.5V14H5V15.5z M5,12.33H3.5v-1.5H5V12.33z M5,9.17H3.5v-1.5H5V9.17z M5,6H3.5V4.5H5V6z M8.5,15.5H7V14h1.5V15.5z M8.5,12.33H7v-1.5h1.5V12.33z M8.5,9.17H7v-1.5h1.5V9.17z M7,6V4.5h1.5V6H7z M18,12.5V6h-8V3H2v14h11.5v-1.5H10v-1.67h1.5v-1.5H10 v-1.67h1.5v-1.5H10V7.5h6.5v5H18z M15,9.17h-1.5v1.5H15V9.17z M15,12.33h-1.5v1.5H15V12.33z M18,15.5V14h-1.5v1.5H15V17h1.5v1.5H18 V17h1.5v-1.5H18z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,7V3H2v18h14v-2h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V7H12z M6,19H4v-2h2V19z M6,15H4v-2h2V15z M6,11H4V9h2V11z M6,7H4V5h2 V7z M10,19H8v-2h2V19z M10,15H8v-2h2V15z M10,11H8V9h2V11z M10,7H8V5h2V7z M24,19v2h-2v2h-2v-2h-2v-2h2v-2h2v2H24z M18,11h-2v2h2 V11z M18,15h-2v2h2V15z\"></path></g>" } } }, - "style": { - "name": "style", + "health_and_safety": { + "name": "health_and_safety", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2.53 19.65l1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zm-9.2 3.8L7.87 7.79l7.35-3.04h.01l4.95 11.95-7.35 3.05z\"></path><circle cx=\"11\" cy=\"9\" r=\"1\"></circle><path d=\"M5.88 19.75c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M10.5,13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13z M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2 z M18,11.09c0,4-2.55,7.7-6,8.83c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\"></path>" } } }, - "switch_camera": { - "name": "switch_camera", + "emoji_flags": { + "name": "emoji_flags", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><path d=\"M12,8l-1-1H7V5.85C7.29,5.67,7.5,5.37,7.5,5c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V16h1v-3h3l1,1h4V8 H12z M14,13h-2.59l-1-1H7V8h3.59l1,1H14V13z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM9.88 4h4.24l1.83 2H20v12H4V6h4.05\"></path><path d=\"M15 11H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z\"></path></g>" } } }, - "switch_video": { - "name": "switch_video", + "domain": { + "name": "domain", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zM16 17H4V7h12v10z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z\"></path>" } } }, - "tag_faces": { - "name": "tag_faces", + "sports_mma": { + "name": "sports_mma", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14,7c-0.55,0-1,0.45-1,1l-0.01-3c0-0.55-0.45-1-1-1H6C5.45,4,5,4.45,5,5v4.57c0.01,0.07,0.01,0.13,0.02,0.2l0.57,2.83 C5.63,12.83,5.84,13,6.08,13h7.85c0.24,0,0.44-0.17,0.49-0.4l0.57-2.83c0.01-0.07,0.01-0.13,0.02-0.2V8C15,7.45,14.55,7,14,7z M13.97,9.73l-0.37,1.87c-0.05,0.23-0.25,0.4-0.49,0.4H6.9c-0.24,0-0.44-0.17-0.49-0.4L6.03,9.73C6.02,9.62,6.01,9.51,6,9.4V5 h5.99L12,8v1h2C14,9,13.99,9.62,13.97,9.73z\"></path><path d=\"M6,15.5C6,15.78,6.22,16,6.5,16h7c0.28,0,0.5-0.22,0.5-0.5V14H6V15.5z\"></path><g><rect height=\"2\" width=\"4\" x=\"7\" y=\"7\"></rect></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z\"></path><path d=\"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8H17c0.55,0,1.09-0.44,1.2-0.98l0.77-3.83C18.99,11.06,19,10.93,19,10.8V9V8C19,7.45,18.55,7,18,7z M17,10.6c0,0.13-0.64,3.4-0.64,3.4H7.64c0,0-0.64-3.26-0.64-3.4V5h8v5h2V10.6z\"></path><rect height=\"3\" width=\"6\" x=\"8\" y=\"7\"></rect></g></g>" } } }, - "texture": { - "name": "texture", + "emoji_people": { + "name": "emoji_people", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><circle cx=\"10\" cy=\"5\" r=\"1\"></circle><path d=\"M12.29,7.29C12.11,7.11,11.85,7,11.59,7H8.5C7.12,7,6,5.88,6,4.5V4H5v0.5C5,6.26,6.31,7.75,8,8v4v4h1v-4h2v4h1v-4V8.41 l2.83,2.83l0.71-0.71L12.29,7.29z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.51 3.08L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3L3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><circle cx=\"12\" cy=\"4\" r=\"2\"></circle><path d=\"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z\"></path></g></g>" } } }, - "thermostat_auto": { - "name": "thermostat_auto", + "unsubscribe": { + "name": "unsubscribe", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M11,12V6c0-1.66-1.34-3-3-3S5,4.34,5,6v6c-1.21,0.91-2,2.37-2,4c0,1.12,0.38,2.14,1,2.97V19h0.02c0.91,1.21,2.35,2,3.98,2 s3.06-0.79,3.98-2H12v-0.03c0.62-0.83,1-1.85,1-2.97C13,14.37,12.21,12.91,11,12z M5,16c0-0.94,0.45-1.84,1.2-2.4L7,13V6 c0-0.55,0.45-1,1-1s1,0.45,1,1v7l0.8,0.6c0.75,0.57,1.2,1.46,1.2,2.4H5z M18.62,4h-1.61l-3.38,9h1.56L16,10.7h3.63l0.8,2.3H22 L18.62,4z M16.47,9.39l1.31-3.72h0.08l1.31,3.72H16.47z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.99 14.04V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10.05c.28 1.92 2.1 3.35 4.18 2.93 1.34-.27 2.43-1.37 2.7-2.71.25-1.24-.16-2.39-.94-3.18zm-2-9.04L12 8.5 5 5h13.99zm-3.64 10H5V7l7 3.5L19 7v6.05c-.16-.02-.33-.05-.5-.05-1.39 0-2.59.82-3.15 2zm5.15 2h-4v-1h4v1z\"></path>" } } }, - "timelapse": { - "name": "timelapse", + "rss_feed": { + "name": "rss_feed", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.24 7.75c-1.17-1.17-2.7-1.76-4.24-1.76v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 1.99c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"6.18\" cy=\"17.82\" r=\"2.18\"></circle><path d=\"M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z\"></path>" } } }, - "timer": { - "name": "timer", + "forum": { + "name": "forum", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.07 1.01h-6v2h6v-2zm-4 13h2v-6h-2v6zm8.03-6.62l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.14 4.74 14.19 4 12.07 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.11-.74-4.06-1.97-5.61zm-7.03 12.62c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 4v7H5.17L4 12.17V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z\"></path>" } } }, - "timer_10": { - "name": "timer_10", + "call_received": { + "name": "call_received", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41L20 5.41z\"></path>" } } }, - "timer_3": { - "name": "timer_3", + "wifi_calling": { + "name": "wifi_calling", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16.67,5.3C16.53,5.19,15.11,4,13,4c-2.12,0-3.53,1.19-3.67,1.3L13,10L16.67,5.3z M13,5c0.91,0,1.67,0.27,2.21,0.54 L13,8.37l-2.21-2.83C11.33,5.27,12.09,5,13,5z\"></path><path d=\"M14.33,12.33c-0.83,0-1.63-0.13-2.38-0.38c-0.07-0.02-0.14-0.03-0.21-0.03c-0.17,0-0.34,0.06-0.47,0.19l-1.47,1.47 c-1.89-0.96-3.43-2.5-4.39-4.39l1.47-1.47c0.19-0.18,0.24-0.44,0.17-0.67C6.8,6.3,6.67,5.5,6.67,4.67C6.67,4.3,6.37,4,6,4H3.67 C3.3,4,3,4.3,3,4.67C3,10.93,8.07,16,14.33,16C14.7,16,15,15.7,15,15.33V13C15,12.63,14.7,12.33,14.33,12.33z M4.01,5h1.67 C5.7,5.74,5.82,6.46,6.03,7.15L4.72,8.47C4.3,7.39,4.04,6.22,4.01,5z M14,14.99c-1.22-0.04-2.39-0.29-3.47-0.72l1.31-1.31 c0.7,0.21,1.43,0.33,2.16,0.36V14.99z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.1-0.04-0.21-0.05-0.31-0.05c-0.26,0-0.51,0.1-0.71,0.29l-2.2,2.2 c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4 C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z M5.03,5h1.5 C6.6,5.89,6.75,6.76,6.99,7.59l-1.2,1.2C5.38,7.59,5.12,6.32,5.03,5z M19,18.97c-1.32-0.09-2.59-0.35-3.8-0.75l1.19-1.19 c0.85,0.24,1.72,0.39,2.6,0.45V18.97z\"></path></g><g><path d=\"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z\"></path></g></g></g>" } } }, - "timer_off": { - "name": "timer_off", + "portable_wifi_off": { + "name": "portable_wifi_off", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 8v.86l2 2V8zM9 1h6v2H9zm3 5c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.68 0-3.25.47-4.59 1.27l1.47 1.47c.94-.47 2-.74 3.12-.74zM3.16 3.86L1.75 5.27 4.5 8.02C3.56 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.41-1.41L3.16 3.86zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3.42 2.36L2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z\"></path>" } } }, - "tonality": { - "name": "tonality", + "key_off": { + "name": "key_off", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M16.88,9l-5.76,0l-1.5-1.5l7.88,0l0,0L20,10l-3.75,3.5l-1.75-1.25l-0.07,0.06l-1.07-1.07l1.06-0.89l1.69,1.21l1.72-1.6 L16.88,9 M8,10.12C7.94,11.17,7.06,12,6,12c-1.1,0-2-0.9-2-2c0-1.06,0.83-1.94,1.88-2L4.65,6.77C3.39,7.3,2.5,8.55,2.5,10 c0,1.93,1.57,3.5,3.5,3.5c1.45,0,2.7-0.89,3.23-2.15L8,10.12z M10.35,12.47C9.49,13.98,7.86,15,6,15c-2.76,0-5-2.24-5-5 c0-1.86,1.02-3.49,2.53-4.35L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06L10.35,12.47z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M10.7,13.53l-1.71-1.71C9,11.88,9,11.94,9,12c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.06,0,0.12,0,0.18,0.01L5.47,8.3 C4.02,8.9,3,10.33,3,12c0,2.21,1.79,4,4,4C8.67,16,10.1,14.98,10.7,13.53z M12.19,15.02C11.15,16.8,9.21,18,7,18 c-3.31,0-6-2.69-6-6c0-2.21,1.2-4.15,2.98-5.19L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L12.19,15.02z M16.26,13.43l1.24-0.93 l1.81,1.36L21.17,12l-1-1l-6.34,0l-2-2L21,9l0,0l3,3l-4.5,4.5l-0.69-0.51L16.26,13.43z\"></path></g></g>" } } }, - "transform": { - "name": "transform", + "domain_disabled": { + "name": "domain_disabled", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1.41 1.69L0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z\"></path>" } } }, - "tune": { - "name": "tune", + "alternate_email": { + "name": "alternate_email", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 1.95c-5.52 0-10 4.48-10 10s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\"></path>" } } }, - "video_camera_back": { - "name": "video_camera_back", + "key": { + "name": "key", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M17.5,8.5h-6.75C10.11,6.48,8.24,5,6,5c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.24,0,4.11-1.48,4.75-3.5h0.75L13,13l1.5-1.5L16,13 l3-3L17.5,8.5z M6,12.5c-1.38,0-2.5-1.12-2.5-2.5S4.62,7.5,6,7.5S8.5,8.62,8.5,10S7.38,12.5,6,12.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M16,18 H4V6h12V18z M11.62,11.5L9,15l-1.62-2.17L5,16h10L11.62,11.5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,10h-8.35C11.83,7.67,9.61,6,7,6c-3.31,0-6,2.69-6,6s2.69,6,6,6c2.61,0,4.83-1.67,5.65-4H13l2,2l2-2l2,2l4-4.04L21,10z M7,15c-1.65,0-3-1.35-3-3c0-1.65,1.35-3,3-3s3,1.35,3,3C10,13.65,8.65,15,7,15z\"></path></g>" } } }, - "video_camera_front": { - "name": "video_camera_front", + "call_missed": { + "name": "call_missed", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M16,9.69V18H4V6h12V9.69z\"></path><circle cx=\"10\" cy=\"10\" r=\"2\"></circle><path d=\"M14,15.43c0-0.81-0.48-1.53-1.22-1.85C11.93,13.21,10.99,13,10,13c-0.99,0-1.93,0.21-2.78,0.58C6.48,13.9,6,14.62,6,15.43 V16h8V15.43z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.59 7L12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9L19.59 7z\"></path>" } } }, - "video_stable": { - "name": "video_stable", + "sentiment_satisfied_alt": { + "name": "sentiment_satisfied_alt", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,18V6h2.95l-2.33,8.73L16.82,18H4 z M15.62,15.61l-8.55-2.29l1.31-4.92l8.56,2.29L15.62,15.61z M20,18h-2.95l2.34-8.73L7.18,6H20V18z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"15.5\" cy=\"9.5\" r=\"1.5\"></circle><circle cx=\"8.5\" cy=\"9.5\" r=\"1.5\"></circle><path d=\"M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" } } }, - "view_comfy": { - "name": "view_comfy", + "chat_bubble_outline": { + "name": "chat_bubble_outline", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5v14h19V5H3zm17 4h-2.25V7H20v2zM9.25 11h2.25v2H9.25v-2zm-2 2H5v-2h2.25v2zm4.25-4H9.25V7h2.25v2zm2-2h2.25v2H13.5V7zm-2 8v2H9.25v-2h2.25zm2 0h2.25v2H13.5v-2zm0-2v-2h2.25v2H13.5zm4.25-2H20v2h-2.25v-2zM7.25 7v2H5V7h2.25zM5 15h2.25v2H5v-2zm12.75 2v-2H20v2h-2.25z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z\"></path>" } } }, - "view_compact": { - "name": "view_compact", + "phonelink_lock": { + "name": "phonelink_lock", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5v14h19V5H3zm2 2h15v4H5V7zm0 10v-4h4v4H5zm6 0v-4h9v4h-9z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z\"></path>" } } }, - "vignette": { - "name": "vignette", + "email": { + "name": "email", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 5v14H3V5h18m0-2H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 5c3.25 0 6 1.83 6 4s-2.75 4-6 4-6-1.83-6-4 2.75-4 6-4m0-2c-4.42 0-8 2.69-8 6s3.58 6 8 6 8-2.69 8-6-3.58-6-8-6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z\"></path>" } } }, - "vrpano": { - "name": "vrpano", + "chat_bubble": { + "name": "chat_bubble", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21.01,4C20.45,4,17.4,5.5,12,5.5c-5.31,0-8.49-1.49-9.01-1.49C2.46,4.01,2,4.45,2,5.02V19c0,0.57,0.46,1,0.99,1 c0.57,0,3.55-1.5,9.01-1.5c5.42,0,8.44,1.5,9.01,1.5c0.53,0,0.99-0.43,0.99-1V5C22,4.43,21.54,4,21.01,4z M20,17.63 c-2.01-0.59-4.62-1.13-8-1.13c-3.39,0-5.99,0.54-8,1.13V6.38C6.58,7.11,9.32,7.5,12,7.5c3.38,0,5.99-0.54,8-1.13V17.63z\"></path><path d=\"M9.17,10.99l-3.69,4.42C7.48,15.15,9.66,15,12,15c2.3,0,4.52,0.15,6.51,0.4L14,10l-2.83,3.39L9.17,10.99z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z\"></path>" } } }, - "wb_auto": { - "name": "wb_auto", + "mark_email_unread": { + "name": "mark_email_unread", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,7.22V15c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h8.18C12.07,4.31,12,4.65,12,5H4l6,3.82l2.81-1.79 c0.24,0.26,0.53,0.47,0.85,0.64L10,10L4,6.18V15h12V7.82C16.37,7.68,16.71,7.48,17,7.22z M13,5c0,1.1,0.9,2,2,2s2-0.9,2-2 s-0.9-2-2-2S13,3.9,13,5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L9 7H7zm-.15 5.65L8 9l1.15 3.65h-2.3zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76l-.01.01C12.76 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c2.96 0 5.55-1.61 6.93-4 .03-.06.05-.12.08-.18.05-.08.09-.17.14-.25l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-8.63 7.67C12.38 16.64 10.35 18 8 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6c0 .96-.23 1.86-.63 2.67z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M22,8.98V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h10.1C14.04,4.32,14,4.66,14,5s0.04,0.68,0.1,1 H4l8,5l3.67-2.29c0.47,0.43,1.02,0.76,1.63,0.98L12,13L4,8v10h16V9.9C20.74,9.75,21.42,9.42,22,8.98z M16,5c0,1.66,1.34,3,3,3 s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z\"></path></g>" } } }, - "wb_cloudy": { - "name": "wb_cloudy", + "stay_current_landscape": { + "name": "stay_current_landscape", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.01 6c2.61 0 4.89 1.86 5.4 4.43l.3 1.5 1.52.11c1.56.11 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3h-13c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.95 6 12.01 6m0-2C9.12 4 6.6 5.64 5.35 8.04 2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96C18.68 6.59 15.65 4 12.01 4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z\"></path>" } } }, - "wb_incandescent": { - "name": "wb_incandescent", + "person_search": { + "name": "person_search", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M9.43,11.86c0.36-0.68,0.67-0.89,0.72-0.93C7.85,10.59,4,11.52,4,13.21V15h5.35c-0.15-0.32-0.25-0.66-0.3-1H5v-0.79 C5,12.71,7.33,11.72,9.43,11.86z\"></path><path d=\"M9,10c1.38,0,2.5-1.12,2.5-2.5C11.5,6.12,10.38,5,9,5C7.62,5,6.5,6.12,6.5,7.5C6.5,8.88,7.62,10,9,10z M9,6 c0.83,0,1.5,0.67,1.5,1.5S9.83,9,9,9S7.5,8.33,7.5,7.5S8.17,6,9,6z\"></path><path d=\"M16.06,16.35l-1.48-1.48c0.26-0.4,0.42-0.87,0.42-1.38c0-1.38-1.12-2.5-2.5-2.5S10,12.12,10,13.5c0,1.38,1.12,2.5,2.5,2.5 c0.51,0,0.98-0.15,1.38-0.42l1.48,1.48L16.06,16.35z M12.5,15c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S13.33,15,12.5,15z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3.55 19.09l1.41 1.41 1.79-1.8-1.41-1.41zM11 20h2v3h-2zM1 11h3v2H1zm12-6.95v3.96l1 .58c1.24.72 2 2.04 2 3.46 0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.42.77-2.74 2-3.46l1-.58V4.05h2m2-2H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19V2.05zM20 11h3v2h-3zm-2.76 7.71l1.79 1.8 1.41-1.41-1.8-1.79z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M10,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,5.79,6,8C6,10.21,7.79,12,10,12z M10,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S8,9.1,8,8C8,6.9,8.9,6,10,6z\"></path><path d=\"M4,18c0.22-0.72,3.31-2,6-2c0-0.7,0.13-1.37,0.35-1.99C7.62,13.91,2,15.27,2,18v2h9.54c-0.52-0.58-0.93-1.25-1.19-2H4z\"></path><path d=\"M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 c0.93,0.93,1.62,1.62,2.57,2.57L22,20.59C20.5,19.09,21.21,19.79,19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C18,17.1,17.1,18,16,18z\"></path></g></g>" } } }, - "wb_iridescent": { - "name": "wb_iridescent", + "mobile_screen_share": { + "name": "mobile_screen_share", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-10h2v3h-2zm9.46 4.01L19.04 3.6l-1.79 1.79 1.41 1.41zM11 20h2v3h-2zm6.24-1.29l1.79 1.8 1.42-1.42-1.8-1.79zM4.96 3.595l1.788 1.79L5.34 6.79 3.553 5.003zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05v-18C19 1.85 18.1 1 17 1zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z\"></path>" } } }, - "wb_shade": { - "name": "wb_shade", + "dialpad": { + "name": "dialpad", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14,12v2.5l5.5,5.5H22L14,12z M14,20h3l-3-3V20z M8,4l-6,6h2v10h8V10h2L8,4z M9,14H7v-4h2V14z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" } } }, - "wb_sunny": { - "name": "wb_sunny", + "hourglass_top": { + "name": "hourglass_top", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M14,3H6v4l3,3l-3,3v4h8v-4l-3-3l3-3V3z M13,13.41V16H7v-2.59l3-3L13,13.41z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79zM1 10.5h3v2H1zM11 .55h2V3.5h-2zm8.04 2.495l1.408 1.407-1.79 1.79-1.407-1.408zm-1.8 15.115l1.79 1.8 1.41-1.41-1.8-1.79zM20 10.5h3v2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-1 4h2v2.95h-2zm-7.45-.96l1.41 1.41 1.79-1.8-1.41-1.41z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z\"></path></g>" } } }, - "wb_twilight": { - "name": "wb_twilight", + "swap_calls": { + "name": "swap_calls", "keywords": [ - "image" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><rect height=\"1.5\" width=\"16\" x=\"2\" y=\"14.5\"></rect><rect height=\"2.5\" width=\"1.5\" x=\"9.25\" y=\"3\"></rect><rect height=\"1.5\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.1972 12.8523)\" width=\"2.5\" x=\"14.16\" y=\"5.91\"></rect><rect height=\"2.5\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -3.3852 5.1557)\" width=\"1.5\" x=\"3.78\" y=\"5.41\"></rect><path d=\"M10,7c-3.31,0-6,2.69-6,6h12C16,9.69,13.31,7,10,7z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" transform=\"matrix(0.7069 -0.7074 0.7074 0.7069 -0.3887 15.676)\" width=\"3\" x=\"17.22\" y=\"7.31\"></rect><rect height=\"2\" width=\"20\" x=\"2\" y=\"18\"></rect><rect height=\"3\" width=\"2\" x=\"11\" y=\"4\"></rect><rect height=\"3\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.2992 6.1783)\" width=\"2\" x=\"4.31\" y=\"6.78\"></rect><path d=\"M5,16h14c0-3.87-3.13-7-7-7S5,12.13,5,16z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 4l-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z\"></path>" } } }, - "360": { - "name": "360", + "desktop_access_disabled": { + "name": "desktop_access_disabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1.41 1.69L0 3.1l1 .99V16c0 1.1.89 2 1.99 2H10v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z\"></path>" } } }, - "add_business": { - "name": "add_business", + "mark_chat_read": { + "name": "mark_chat_read", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"1\" width=\"10\" x=\"4\" y=\"4\"></rect><path d=\"M13,14h1v-3h1v-1l-1-4H4l-1,4v1h1v5h6v-5h3V14z M9,15H5v-4h4V15z M4.03,10l0.75-3h8.44l0.75,3H4.03z\"></path><polygon points=\"18,15 16,15 16,13 15,13 15,15 13,15 13,16 15,16 15,18 16,18 16,16 18,16\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,14H6l-3,3V4c0-0.55,0.45-1,1-1h12c0.55,0,1,0.45,1,1v4l-1-0.02V4H4v9l6,0V14z M18,10.76l-0.71-0.71l-3.54,3.54 l-1.41-1.41l-0.71,0.71L13.76,15L18,10.76z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"15\" x=\"2\" y=\"4\"></rect><path d=\"M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z\"></path><polygon points=\"23,18 20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,18l-6,0l-4,4V4c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v7l-2,0V4H4v12l8,0V18z M23,14.34l-1.41-1.41l-4.24,4.24l-2.12-2.12 l-1.41,1.41L17.34,20L23,14.34z\"></path></g>" } } }, - "add_location": { - "name": "add_location", + "hub": { + "name": "hub", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.5,5.5C16.12,5.5,15,6.62,15,8c0,0.08,0,0.15,0.01,0.22L13.42,8.7c-0.52-1.15-1.61-2-2.92-2.17V4.95 c1.14-0.23,2-1.24,2-2.45C12.5,1.12,11.38,0,10,0S7.5,1.12,7.5,2.5c0,1.21,0.86,2.22,2,2.45v1.58C8.2,6.71,7.11,7.55,6.58,8.7 L4.99,8.22C5,8.15,5,8.08,5,8c0-1.38-1.12-2.5-2.5-2.5S0,6.62,0,8c0,1.38,1.12,2.5,2.5,2.5c0.95,0,1.78-0.53,2.2-1.32L6.3,9.66 c-0.18,1.12,0.15,2.3,0.99,3.18l-1.15,1.43C5.8,14.1,5.41,14,5,14c-1.38,0-2.5,1.12-2.5,2.5C2.5,17.88,3.62,19,5,19 s2.5-1.12,2.5-2.5c0-0.61-0.22-1.17-0.58-1.6l1.15-1.43c1.18,0.71,2.68,0.71,3.86,0l1.15,1.43c-0.36,0.43-0.58,0.99-0.58,1.6 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5c0-1.38-1.12-2.5-2.5-2.5c-0.41,0-0.8,0.1-1.14,0.27l-1.15-1.43 c0.84-0.88,1.17-2.06,0.99-3.18l1.59-0.48c0.42,0.78,1.25,1.32,2.2,1.32c1.38,0,2.5-1.12,2.5-2.5C20,6.62,18.88,5.5,17.5,5.5z M2.5,9c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C3.5,8.55,3.05,9,2.5,9z M5,17.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C6,17.05,5.55,17.5,5,17.5z M9,2.5c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S9,3.05,9,2.5z M10,12.5 c-1.24,0-2.25-1.01-2.25-2.25C7.75,9.01,8.76,8,10,8s2.25,1.01,2.25,2.25C12.25,11.49,11.24,12.5,10,12.5z M15,15.5 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C14,15.95,14.45,15.5,15,15.5z M17.5,9c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C18.5,8.55,18.05,9,17.5,9z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><g><path d=\"M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2 c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z\"></path></g></g></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,6.5c-1.66,0-3,1.34-3,3c0,0.07,0,0.14,0.01,0.21l-2.03,0.68c-0.64-1.21-1.82-2.09-3.22-2.32V5.91 C14.04,5.57,15,4.4,15,3c0-1.66-1.34-3-3-3S9,1.34,9,3c0,1.4,0.96,2.57,2.25,2.91v2.16c-1.4,0.23-2.58,1.11-3.22,2.32L5.99,9.71 C6,9.64,6,9.57,6,9.5c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c1.06,0,1.98-0.55,2.52-1.37l2.03,0.68 c-0.2,1.29,0.17,2.66,1.09,3.69l-1.41,1.77C6.85,17.09,6.44,17,6,17c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3 c0-0.68-0.22-1.3-0.6-1.8l1.41-1.77c1.36,0.76,3.02,0.75,4.37,0l1.41,1.77C15.22,18.7,15,19.32,15,20c0,1.66,1.34,3,3,3s3-1.34,3-3 s-1.34-3-3-3c-0.44,0-0.85,0.09-1.23,0.26l-1.41-1.77c0.93-1.04,1.29-2.4,1.09-3.69l2.03-0.68c0.53,0.82,1.46,1.37,2.52,1.37 c1.66,0,3-1.34,3-3S22.66,6.5,21,6.5z M3,10.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C4,10.05,3.55,10.5,3,10.5z M6,21 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C7,20.55,6.55,21,6,21z M11,3c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1 S11,3.55,11,3z M12,15c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5C14.5,13.88,13.38,15,12,15z M18,19 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C17,19.45,17.45,19,18,19z M21,10.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C22,10.05,21.55,10.5,21,10.5z\"></path>" } } }, - "add_location_alt": { - "name": "add_location_alt", + "location_on": { + "name": "location_on", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm1-9.94v2.02A6.53 6.53 0 0 0 12 5c-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14V11h2v.2c0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.34 0 .67.02 1 .06z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z\"></path><circle cx=\"12\" cy=\"9\" r=\"2.5\"></circle>" } } }, - "add_road": { - "name": "add_road", + "rtt": { + "name": "rtt", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"12\" width=\"1\" x=\"4\" y=\"4\"></rect><rect height=\"7\" width=\"1\" x=\"15\" y=\"4\"></rect><rect height=\"2\" width=\"1\" x=\"9.5\" y=\"4\"></rect><rect height=\"2\" width=\"1\" x=\"9.5\" y=\"14\"></rect><polygon points=\"18,15 16,15 16,13 15,13 15,15 13,15 13,16 15,16 15,18 16,18 16,16 18,16\"></polygon><rect height=\"2\" width=\"1\" x=\"9.5\" y=\"9\"></rect></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18\"></polygon><rect height=\"9\" width=\"2\" x=\"18\" y=\"4\"></rect><rect height=\"16\" width=\"2\" x=\"4\" y=\"4\"></rect><rect height=\"4\" width=\"2\" x=\"11\" y=\"4\"></rect><rect height=\"4\" width=\"2\" x=\"11\" y=\"10\"></rect><rect height=\"4\" width=\"2\" x=\"11\" y=\"16\"></rect></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M9.03,3l-1.11,7.07h2.62l0.7-4.5h2.58L11.8,18.43H9.47L9.06,21h7.27l0.4-2.57h-2.35l2-12.86h2.58l-0.71,4.5h2.65L22,3H9.03 z M8,5H4L3.69,7h4L8,5z M7.39,9h-4l-0.31,2h4L7.39,9z M8.31,17h-6L2,19h6L8.31,17z M8.93,13h-6l-0.31,2h6.01L8.93,13z\"></path></g>" } } }, - "agriculture": { - "name": "agriculture", + "read_more": { + "name": "read_more", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M3.5,8H8c0-0.55-0.45-1-1-1H3.5C3.22,7,3,7.22,3,7.5C3,7.78,3.22,8,3.5,8z\"></path><path d=\"M17,11.51V7c0-0.55-0.45-1-1-1h-4.47l-0.8-0.8l1.06-1.06l-0.53-0.53L8.61,6.27L9.14,6.8l1.06-1.06l0.8,0.8V9 c0,0.55-0.45,1-1,1H7.93C7.66,9.74,7.36,9.52,7.02,9.36L6.83,9.8L6.48,9.66l0.19-0.44C6.3,9.08,5.91,9,5.5,9 C5.1,9,4.71,9.08,4.35,9.21l0.18,0.44L4.19,9.8L4,9.35c-0.72,0.34-1.3,0.92-1.65,1.64l0.45,0.19l-0.14,0.35l-0.44-0.19 C2.08,11.7,2,12.09,2,12.5c0,0.4,0.08,0.79,0.21,1.15l0.44-0.18l0.14,0.35L2.35,14c0.34,0.72,0.92,1.3,1.64,1.65l0.19-0.45 l0.35,0.14l-0.19,0.44C4.7,15.92,5.09,16,5.5,16c0.4,0,0.79-0.08,1.15-0.21l-0.18-0.44l0.35-0.14L7,15.65 c0.72-0.34,1.3-0.92,1.65-1.64L8.2,13.83l0.14-0.35l0.44,0.19c0.08-0.22,0.13-0.44,0.17-0.67h4.1C13.02,13.16,13,13.33,13,13.5 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C18,12.68,17.6,11.97,17,11.51z M5.5,15C4.12,15,3,13.88,3,12.5C3,11.12,4.12,10,5.5,10 S8,11.12,8,12.5C8,13.88,6.88,15,5.5,15z M13.51,12H8.95c-0.04-0.22-0.09-0.44-0.16-0.65l-0.44,0.18L8.2,11.19 c0,0,0.45-0.19,0.45-0.19H10c1.1,0,2-0.9,2-2V7h4v4.05C15.84,11.02,15.67,11,15.5,11C14.68,11,13.97,11.4,13.51,12z M15.5,15 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,15,15.5,15z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"11,10 8,7 8,9.5 3,9.5 3,10.5 8,10.5 8,13\"></polygon><rect height=\"1\" width=\"6\" x=\"11\" y=\"7\"></rect><rect height=\"1\" width=\"6\" x=\"11\" y=\"12\"></rect><rect height=\"1\" width=\"4\" x=\"13\" y=\"9.5\"></rect></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z\"></path><path d=\"M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"9\" x=\"13\" y=\"7\"></rect><rect height=\"2\" width=\"9\" x=\"13\" y=\"15\"></rect><rect height=\"2\" width=\"6\" x=\"16\" y=\"11\"></rect><polygon points=\"13,12 8,7 8,11 2,11 2,13 8,13 8,17\"></polygon></g></g>" } } }, - "alt_route": { - "name": "alt_route", + "contact_phone": { + "name": "contact_phone", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M8.38,9.41l-0.71,0.71c-0.47-0.5-0.93-1.1-1.25-1.96L7.4,7.91C7.66,8.54,8,9.01,8.38,9.41z M9.5,6l-3-3l-3,3h2.53 c0.02,0.43,0.07,0.83,0.14,1.19l0.97-0.24C7.08,6.66,7.04,6.34,7.02,6H9.5z M16.5,6l-3-3l-3,3h2.48c-0.12,2.22-1.02,3.11-1.9,3.96 c-0.39,0.37-0.78,0.75-1.08,1.23c-0.26-0.41-0.58-0.75-0.91-1.07l-0.71,0.71C9.03,11.47,9.5,11.99,9.5,13v4h1v-4c0,0,0,0,0,0h0 c0-1.1,0.53-1.61,1.27-2.32c0.94-0.9,2.07-2.03,2.21-4.68H16.5z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zm-2.99-1.01L21 16l-1.51-2h-1.64c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.64L21 8l-1.99-1.99c-1.31.98-2.28 2.37-2.73 3.99-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3.01 2.73 3.99zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z\"></path>" } } }, - "atm": { - "name": "atm", + "list_alt": { + "name": "list_alt", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 9v1.5h2.25V15h1.5v-4.5H14V9H8zM6 9H3c-.55 0-1 .45-1 1v5h1.5v-1.5h2V15H7v-5c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v5H17v-4.5h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM19 19H5V5h14v14z\"></path>" } } }, - "attractions": { - "name": "attractions", + "phone_enabled": { + "name": "phone_enabled", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><path d=\"M17,10c0-0.68-0.1-1.34-0.29-1.97c0.49-0.55,0.6-1.36,0.21-2.03c-0.39-0.67-1.15-0.98-1.87-0.83 c-0.91-0.95-2.08-1.64-3.4-1.96C11.42,2.51,10.77,2,10,2S8.58,2.51,8.35,3.21c-1.32,0.32-2.49,1.01-3.4,1.96 C4.22,5.02,3.46,5.33,3.07,6C2.68,6.67,2.8,7.48,3.29,8.03C3.1,8.66,3,9.32,3,10s0.1,1.34,0.29,1.97C2.8,12.52,2.68,13.33,3.07,14 c0.39,0.67,1.15,0.98,1.87,0.83c0.33,0.35,0.69,0.66,1.09,0.93L4.99,18h1.66l0.71-1.52c0.32,0.13,0.65,0.23,0.99,0.32 C8.58,17.49,9.23,18,10,18s1.42-0.51,1.65-1.21c0.34-0.08,0.67-0.19,0.99-0.32L13.36,18h1.66l-1.04-2.24 c0.4-0.27,0.76-0.59,1.09-0.93c0.72,0.15,1.48-0.16,1.87-0.83c0.39-0.67,0.27-1.48-0.21-2.03C16.9,11.34,17,10.68,17,10z M11.46,15.3c-0.31-0.48-0.85-0.8-1.46-0.8s-1.15,0.32-1.46,0.8c-0.19-0.05-0.37-0.11-0.55-0.18l1.06-2.28 C9.35,12.93,9.67,13,10,13s0.65-0.07,0.95-0.17l1.06,2.28C11.83,15.18,11.65,15.24,11.46,15.3z M8.5,10c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S8.5,10.83,8.5,10z M15.32,11.38c-0.57,0.03-1.11,0.34-1.42,0.87 c-0.31,0.53-0.3,1.16-0.04,1.67c-0.17,0.16-0.35,0.32-0.53,0.46l-1.1-2.37C12.7,11.47,13,10.78,13,10c0-1.66-1.34-3-3-3 s-3,1.34-3,3c0,0.78,0.3,1.47,0.78,2.01l-1.1,2.37c-0.19-0.14-0.37-0.29-0.53-0.46c0.26-0.51,0.26-1.14-0.04-1.67 c-0.31-0.53-0.85-0.84-1.42-0.87C4.57,10.94,4.5,10.48,4.5,10s0.07-0.94,0.18-1.38C5.25,8.59,5.8,8.28,6.1,7.75 c0.31-0.53,0.3-1.16,0.04-1.67C6.8,5.44,7.62,4.96,8.54,4.7C8.85,5.18,9.39,5.5,10,5.5s1.15-0.32,1.46-0.8 c0.91,0.25,1.73,0.73,2.39,1.38c-0.26,0.51-0.26,1.14,0.04,1.67c0.31,0.53,0.85,0.84,1.42,0.87c0.11,0.44,0.18,0.9,0.18,1.38 S15.43,10.94,15.32,11.38z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><path d=\"M20.15,14.42c0.23-0.77,0.35-1.58,0.35-2.42s-0.12-1.65-0.35-2.42c0.78-0.6,1.02-1.7,0.51-2.58s-1.58-1.23-2.49-0.85 c-1.11-1.17-2.56-2.03-4.18-2.42C13.85,2.75,13.01,2,12,2s-1.85,0.75-1.98,1.73C8.39,4.12,6.95,4.98,5.83,6.15 C4.92,5.77,3.85,6.12,3.34,7S3.07,8.98,3.85,9.58C3.62,10.35,3.5,11.16,3.5,12s0.12,1.65,0.35,2.42c-0.78,0.6-1.02,1.7-0.51,2.58 s1.58,1.23,2.49,0.85c0.4,0.42,0.83,0.79,1.3,1.12L5.78,22h1.88l0.98-2.19c0.44,0.19,0.9,0.34,1.38,0.46 C10.15,21.25,10.99,22,12,22s1.85-0.75,1.98-1.73c0.46-0.11,0.91-0.26,1.34-0.44L16.3,22h1.88l-1.34-3 c0.48-0.34,0.93-0.72,1.34-1.15c0.91,0.38,1.99,0.03,2.49-0.85C21.17,16.12,20.93,15.02,20.15,14.42z M13.56,18.75 C13.19,18.29,12.63,18,12,18s-1.2,0.29-1.57,0.75c-0.4-0.09-0.79-0.21-1.16-0.37l1.43-3.19c0.4,0.16,0.84,0.25,1.3,0.25 c0.44,0,0.87-0.08,1.26-0.23l1.42,3.18C14.32,18.54,13.95,18.66,13.56,18.75z M10.48,12.02c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S10.48,12.85,10.48,12.02z M18.71,14.01c-0.61,0.07-1.18,0.41-1.52,0.99 c-0.32,0.56-0.34,1.2-0.12,1.75c-0.28,0.29-0.58,0.55-0.9,0.79l-1.5-3.35c0.49-0.59,0.78-1.34,0.78-2.16 c0-1.89-1.55-3.41-3.46-3.41s-3.46,1.53-3.46,3.41c0,0.8,0.28,1.54,0.75,2.13l0,0l-1.52,3.39c-0.31-0.23-0.6-0.48-0.87-0.76 C7.15,16.23,7.13,15.57,6.8,15c-0.34-0.59-0.93-0.94-1.56-0.99c-0.22-0.68-0.33-1.4-0.33-2.15c0-0.64,0.09-1.26,0.25-1.85 c0.66-0.03,1.3-0.38,1.65-1c0.37-0.63,0.35-1.38,0.01-1.98C7.74,6.05,8.93,5.34,10.27,5c0.34,0.59,0.99,1,1.73,1s1.39-0.4,1.73-1 c1.34,0.34,2.53,1.07,3.44,2.05C16.85,7.64,16.84,8.38,17.2,9c0.35,0.6,0.96,0.95,1.6,1c0.16,0.59,0.25,1.21,0.25,1.86 C19.05,12.61,18.93,13.33,18.71,14.01z\"></path></g></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><g><path d=\"M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z M7.6,17.02 c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M16.5,3H20c0.55,0,1,0.45,1,1c0,9.39-7.61,17-17,17 c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05c0.26,0,0.51,0.1,0.71,0.29 l2.2,2.2c2.83-1.45,5.15-3.76,6.59-6.59l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02C15.3,6.45,15.5,5.25,15.5,4 C15.5,3.45,15.95,3,16.5,3z\"></path></g></g>" } } }, - "badge": { - "name": "badge", + "app_registration": { + "name": "app_registration", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><g><path d=\"M16.5,6H12V3.5C12,2.67,11.33,2,10.5,2h-1C8.67,2,8,2.67,8,3.5V6H3.5C2.67,6,2,6.67,2,7.5v9C2,17.33,2.67,18,3.5,18h13 c0.83,0,1.5-0.67,1.5-1.5v-9C18,6.67,17.33,6,16.5,6z M9.5,3.5h1v4h-1V3.5z M16.5,16.5h-13v-9H8C8,8.33,8.67,9,9.5,9h1 C11.33,9,12,8.33,12,7.5h4.5V16.5z\"></path></g><g><rect height=\"1.5\" width=\"3\" x=\"12\" y=\"10\"></rect></g><g><rect height=\"1.5\" width=\"3\" x=\"12\" y=\"12.5\"></rect></g><g><circle cx=\"7.5\" cy=\"11.25\" r=\"1.25\"></circle></g><g><path d=\"M9.24,13.36C8.7,13.13,8.12,13,7.5,13c-0.62,0-1.2,0.13-1.74,0.36C5.3,13.56,5,14.01,5,14.52V15h5v-0.48 C10,14.01,9.7,13.56,9.24,13.36z\"></path></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><g><rect height=\"3\" width=\"3\" x=\"8.5\" y=\"4\"></rect></g><g><rect height=\"3\" width=\"3\" x=\"4\" y=\"13\"></rect></g><g><rect height=\"3\" width=\"3\" x=\"4\" y=\"8.5\"></rect></g><g><rect height=\"3\" width=\"3\" x=\"4\" y=\"4\"></rect></g><g><rect height=\"3\" width=\"3\" x=\"13\" y=\"4\"></rect></g><g><polygon points=\"9,14.49 9,16 10.51,16 15.4,11.1 13.9,9.6\"></polygon></g><g><polygon points=\"11.5,9.88 11.5,8.5 8.5,8.5 8.5,11.5 9.87,11.5\"></polygon></g><g><path d=\"M16.85,8.94l-0.79-0.79c-0.2-0.2-0.51-0.2-0.71,0L14.6,8.9l1.5,1.5l0.75-0.75C17.05,9.45,17.05,9.13,16.85,8.94z\"></path></g></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"4\" x=\"14\" y=\"12\"></rect><rect height=\"1.5\" width=\"4\" x=\"14\" y=\"15\"></rect><path d=\"M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M11,7V4h2v3v2h-2V7z M20,20H4V9h5c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2h5V20z\"></path><circle cx=\"9\" cy=\"13.5\" r=\"1.5\"></circle><path d=\"M11.08,16.18C10.44,15.9,9.74,15.75,9,15.75s-1.44,0.15-2.08,0.43C6.36,16.42,6,16.96,6,17.57V18h6v-0.43 C12,16.96,11.64,16.42,11.08,16.18z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"4\" width=\"4\" x=\"10\" y=\"4\"></rect><rect height=\"4\" width=\"4\" x=\"4\" y=\"16\"></rect><rect height=\"4\" width=\"4\" x=\"4\" y=\"10\"></rect><rect height=\"4\" width=\"4\" x=\"4\" y=\"4\"></rect><rect height=\"4\" width=\"4\" x=\"16\" y=\"4\"></rect><polygon points=\"11,17.86 11,20 13.1,20 19.08,14.03 16.96,11.91\"></polygon><polygon points=\"14,12.03 14,10 10,10 10,14 12.03,14\"></polygon><path d=\"M20.85,11.56l-1.41-1.41c-0.2-0.2-0.51-0.2-0.71,0l-1.06,1.06l2.12,2.12l1.06-1.06C21.05,12.07,21.05,11.76,20.85,11.56z\"></path></g></g>" } } }, - "bakery_dining": { - "name": "bakery_dining", + "present_to_all": { + "name": "present_to_all", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M16.93,9.12c0.12-0.3,0.09-0.23,0.13-0.35c0.24-0.96-0.27-1.97-1.19-2.34l-1.66-0.67c-0.39-0.16-0.8-0.18-1.2-0.08 c-0.09-0.29-0.23-0.56-0.44-0.78c-0.38-0.41-0.91-0.64-1.46-0.64H8.88c-0.55,0-1.09,0.23-1.46,0.64c-0.21,0.23-0.35,0.5-0.44,0.79 C6.59,5.58,6.17,5.6,5.78,5.76L4.12,6.43C3.21,6.8,2.7,7.81,2.94,8.77l0.14,0.35C1.06,13.03,1,13,1,13.66 c0,1.58,1.65,2.56,3.01,1.87l1.22-0.61h9.54l1.22,0.61c1.38,0.7,3.01-0.31,3.01-1.87C19,12.99,18.93,13.01,16.93,9.12z M3.34,14.19c-0.49,0.25-0.84-0.22-0.84-0.53c0-0.2-0.05-0.05,1.31-2.69l0.98,2.48L3.34,14.19z M6.38,13.41l-2-5.04 c-0.04-0.23,0.09-0.46,0.3-0.55l1.66-0.67c0.31-0.12,0.64,0.09,0.66,0.42l0.52,5.84H6.38z M10.96,13.41H9.04L8.39,6.29 C8.37,5.98,8.61,5.75,8.88,5.75h2.24c0.27,0,0.51,0.23,0.49,0.54L10.96,13.41z M13.62,13.41h-1.15l0.52-5.84 c0.03-0.33,0.36-0.54,0.66-0.42l1.66,0.67c0.22,0.09,0.34,0.32,0.3,0.55L13.62,13.41z M16.66,14.19l-1.45-0.73l0.98-2.48l1.24,2.4 C17.7,13.89,17.17,14.44,16.66,14.19z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M20.5,10.94c0.13-0.32,0.1-0.23,0.15-0.39c0.3-1.21-0.34-2.47-1.5-2.93l-2.01-0.8c-0.46-0.18-0.95-0.21-1.41-0.12 c-0.11-0.33-0.29-0.63-0.52-0.89C14.73,5.29,14.06,5,13.36,5h-2.71C9.94,5,9.27,5.29,8.8,5.81C8.56,6.07,8.38,6.37,8.27,6.69 C7.81,6.6,7.32,6.63,6.86,6.81l-2.01,0.8c-1.16,0.46-1.8,1.72-1.5,2.93l0.15,0.38C1.1,15.55,1,15.55,1,16.38 c0,0.91,0.46,1.74,1.24,2.22c1.42,0.88,2.49,0.14,4-0.61h11.53c1.52,0.76,1.86,1.01,2.63,1.01c1,0,2.61-0.77,2.61-2.61 C23,15.54,22.88,15.51,20.5,10.94z M20.12,16.93l-1.68-0.84l1.08-2.7l1.41,2.71C21.21,16.63,20.64,17.19,20.12,16.93z M15.09,15.99l0.62-6.9c0.03-0.33,0.37-0.54,0.68-0.42l2.01,0.8c0.22,0.09,0.34,0.31,0.31,0.54l-2.4,5.98H15.09z M7.68,15.99 l-2.4-5.98C5.25,9.78,5.37,9.56,5.59,9.47l2.01-0.8c0.31-0.12,0.65,0.08,0.68,0.42l0.62,6.9H7.68z M3.07,16.1l1.41-2.72l1.08,2.71 l-1.68,0.84C3.36,17.19,2.79,16.63,3.07,16.1z M10.15,7.54c-0.03-0.31,0.23-0.54,0.5-0.54h2.71c0.27,0,0.53,0.23,0.5,0.54 l-0.77,8.45h-2.17L10.15,7.54z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z\"></path>" } } }, - "beenhere": { - "name": "beenhere", + "comment": { + "name": "comment", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-7 19.6l-7-4.66V3h14v12.93l-7 4.67zm-2.01-7.42l-2.58-2.59L6 12l4 4 8-8-1.42-1.42z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM20 4v13.17L18.83 16H4V4h16zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z\"></path>" } } }, - "bike_scooter": { - "name": "bike_scooter", + "cancel_presentation": { + "name": "cancel_presentation", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M9,13c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S10.1,13,9,13z M9,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,16,9,16z\"></path><path d=\"M9.24,12L7.82,5.78C7.72,5.32,7.31,5,6.84,5H4.01v1h2.84l1.17,5.14c-1.57,0.4-2.75,1.72-2.96,3.36H1v1h5.01v-0.51 C6.01,13.34,7.35,12,9,12L9.24,12z\"></path><path d=\"M15.5,8h-0.68l-1.58-4.34C13.1,3.26,12.72,3,12.3,3H10v1h2.3l1.46,4h-4.4l0.23,1h3.45c-0.53,0.52-0.88,1.22-0.98,2h-2.01 l0.23,1h1.79c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,9.75,17.59,8,15.5,8z M15.5,14 c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,9.02,15.4,9,15.5,9c1.4,0,2.5,1.1,2.5,2.5 S16.9,14,15.5,14z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z\"></path><path d=\"M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z\"></path><path d=\"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9.41 15.95L12 13.36l2.59 2.59L16 14.54l-2.59-2.59L16 9.36l-1.41-1.41L12 10.54 9.41 7.95 8 9.36l2.59 2.59L8 14.54z\"></path>" } } }, - "breakfast_dining": { - "name": "breakfast_dining", + "sip": { + "name": "sip", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M18,6c0-1.66-1.34-3-3-3H5C3.34,3,2,4.34,2,6c0,1.3,0.84,2.4,2,2.82v6.68C4,16.33,4.67,17,5.5,17h9 c0.83,0,1.5-0.67,1.5-1.5l0-6.68C17.16,8.4,18,7.3,18,6z M15.5,7.4l-1,0.35l0,7.74h-9V7.76l-1-0.35c-0.6-0.21-1-0.78-1-1.4 c0-0.83,0.67-1.5,1.5-1.5h10c0.83,0,1.5,0.67,1.5,1.5C16.5,6.63,16.1,7.19,15.5,7.4z\"></path><path d=\"M10.71,8.29C10.51,8.1,10.26,8,10,8S9.49,8.1,9.29,8.29l-2,2c-0.39,0.39-0.39,1.02,0,1.41l2,2C9.49,13.9,9.74,14,10,14 c0.26,0,0.51-0.1,0.71-0.29l2-2c0.39-0.39,0.39-1.02,0-1.41L10.71,8.29z M10,12.29L8.71,11L10,9.71L11.29,11L10,12.29z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M18,3H6C3.79,3,2,4.79,2,7c0,1.48,0.81,2.75,2,3.45V19c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-8.55c1.19-0.69,2-1.97,2-3.45 C22,4.79,20.21,3,18,3z M19,8.72L18,9.3V19H6V9.31L5.01,8.73C4.38,8.35,4,7.71,4,7c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2 C20,7.71,19.62,8.36,19,8.72z\"></path><path d=\"M12.71,9.29C12.51,9.1,12.26,9,12,9s-0.51,0.1-0.71,0.29l-3,3c-0.39,0.39-0.39,1.02,0,1.41l3,3C11.49,16.9,11.74,17,12,17 s0.51-0.1,0.71-0.29l3-3c0.39-0.39,0.39-1.02,0-1.41L12.71,9.29z M12,14.58L10.41,13L12,11.41L13.59,13L12,14.58z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M4,4h16c1.1,0,2,0.9,2,2v12c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6C2,4.9,2.9,4,4,4z M4,6v12h16V6H4z M11,9h2v6h-2V9z M14,9 h4c0.55,0,1,0.45,1,1v2c0,0.55-0.45,1-1,1h-2.5v2H14V9z M17.5,10.5h-2v1h2V10.5z M6.5,11.25H9c0.55,0,1,0.45,1,1V14 c0,0.55-0.45,1-1,1H5v-1.5h3.5v-0.75H6c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h4v1.5H6.5V11.25z\"></path></g>" } } }, - "brunch_dining": { - "name": "brunch_dining", + "location_off": { + "name": "location_off", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"11\" x=\"2\" y=\"16.5\"></rect><path d=\"M12.5,13.5H9V12H6v1.5H2.5C2.22,13.5,2,13.72,2,14v1h11v-1C13,13.72,12.78,13.5,12.5,13.5z\"></path><path d=\"M18,9.76V2h-5v7.76c0,1.27,0.67,2.44,1.75,3.09V18H18v-1.5h-1.75v-3.65C17.33,12.2,18,11.04,18,9.76z M14.5,3.5h2V7h-2 V3.5z M15.5,11.55c-0.63-0.39-1-1.06-1-1.79V8.5h2v1.26C16.5,10.49,16.13,11.16,15.5,11.55z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M2,21.5C2,21.78,2.22,22,2.49,22h13.02c0.27,0,0.49-0.22,0.49-0.5V20H2V21.5z\"></path><path d=\"M15.5,16H11v-2H7v2H2.5C2.22,16,2,16.22,2,16.5V18h14v-1.5C16,16.22,15.78,16,15.5,16z\"></path><path d=\"M20.47,15.45c0.99-1.07,1.53-2.48,1.53-3.94V2h-6v9.47c0,1.48,0.58,2.92,1.6,4l0.4,0.42V22h4v-2h-2v-4.03L20.47,15.45z M18,4h2v4h-2V4z M19.03,14.07c-0.65-0.71-1.03-1.65-1.03-2.6V10h2v1.51C20,12.46,19.66,13.36,19.03,14.07z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4c2.76 0 5 2.24 5 5 0 1.06-.39 2.32-1 3.62l1.49 1.49C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7-1.84 0-3.5.71-4.75 1.86l1.43 1.43C9.56 4.5 10.72 4 12 4zm0 2.5c-.59 0-1.13.21-1.56.56l3.5 3.5c.35-.43.56-.97.56-1.56 0-1.38-1.12-2.5-2.5-2.5zM3.41 2.86L2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 18.88c-2.01-2.58-4.8-6.74-4.98-9.59l6.92 6.92c-.65.98-1.33 1.89-1.94 2.67z\"></path>" } } }, - "bus_alert": { - "name": "bus_alert", + "invert_colors_off": { + "name": "invert_colors_off", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M7.08,4.96L10,2l4.53,4.6l0,0c1.07,1.1,1.72,2.6,1.72,4.24c0,0.96-0.23,1.86-0.62,2.67L10,7.88V4.14L8.14,6.02L7.08,4.96z M16.01,18.13l-2.33-2.33C12.65,16.55,11.38,17,10,17c-3.45,0-6.25-2.76-6.25-6.16c0-1.39,0.47-2.67,1.26-3.7L1.87,3.99l1.06-1.06 l14.14,14.14L16.01,18.13z M10,12.12L6.09,8.21c-0.54,0.77-0.84,1.68-0.84,2.63c0,2.57,2.13,4.66,4.75,4.66V12.12z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><circle cx=\"6.5\" cy=\"15.5\" r=\"1.5\"></circle></g><g><circle cx=\"13.5\" cy=\"15.5\" r=\"1.5\"></circle></g><g><path d=\"M4,11V8h7.29C11.1,7.37,11,6.7,11,6H4.43c0.83-0.71,2.98-1.09,6.65-0.98c0.1-0.7,0.3-1.37,0.59-1.99 C2.97,2.67,2,5.02,2,7v9.5c0,0.95,0.38,1.81,1,2.44V21c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h8v1c0,0.55,0.45,1,1,1h1 c0.55,0,1-0.45,1-1v-2.06c0.62-0.63,1-1.49,1-2.44V13c-1.91,0-3.63-0.76-4.89-2H4z M16,16c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-3 h12V16z\"></path></g><g><path d=\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\"></path></g></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.19,21.19L2.81,2.81L1.39,4.22l4.2,4.2c-1,1.31-1.6,2.94-1.6,4.7C4,17.48,7.58,21,12,21c1.75,0,3.36-0.56,4.67-1.5 l3.1,3.1L21.19,21.19z M12,19c-3.31,0-6-2.63-6-5.87c0-1.19,0.36-2.32,1.02-3.28L12,14.83V19z M8.38,5.56L12,2l5.65,5.56l0,0 C19.1,8.99,20,10.96,20,13.13c0,1.18-0.27,2.29-0.74,3.3L12,9.17V4.81L9.8,6.97L8.38,5.56z\"></path>" } } }, - "car_rental": { - "name": "car_rental", + "cell_wifi": { + "name": "cell_wifi", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M12.84,8H7.19C6.78,8,6.4,8.26,6.26,8.65L5,12v4.5C5,16.78,5.22,17,5.5,17H6c0.28,0,0.5-0.22,0.5-0.5V16h7v0.5 c0,0.28,0.22,0.5,0.5,0.5h0.5c0.28,0,0.5-0.22,0.5-0.5V12l-1.22-3.34C13.64,8.26,13.26,8,12.84,8z M7.54,9.5h4.95l0.55,1.5H6.98 L7.54,9.5z M13.5,14.5h-7v-2h7V14.5z\"></path><circle cx=\"7.75\" cy=\"13.5\" r=\".75\"></circle><circle cx=\"12.25\" cy=\"13.5\" r=\".75\"></circle><path d=\"M9.37,2.75C9.05,1.74,8.11,1,7,1C5.62,1,4.5,2.12,4.5,3.5S5.62,6,7,6c1.11,0,2.05-0.74,2.37-1.75h3.13V6H14V4.25h1v-1.5 H9.37z M7,4.5c-0.54,0-1-0.46-1-1s0.46-1,1-1s1,0.46,1,1S7.54,4.5,7,4.5z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><circle cx=\"9\" cy=\"16.5\" r=\"1\"></circle><circle cx=\"15\" cy=\"16.5\" r=\"1\"></circle><path d=\"M17.25,9.6c-0.02-0.02-0.03-0.04-0.05-0.07C16.82,9.01,16.28,9,16.28,9H7.72c0,0-0.54,0.01-0.92,0.54 C6.78,9.56,6.77,9.58,6.75,9.6C6.68,9.71,6.61,9.84,6.56,10C6.34,10.66,5.82,12.22,5,14.69v6.5C5,21.64,5.35,22,5.78,22h0.44 C6.65,22,7,21.64,7,21.19V20h10v1.19c0,0.45,0.34,0.81,0.78,0.81h0.44c0.43,0,0.78-0.36,0.78-0.81v-6.5 c-0.82-2.46-1.34-4.03-1.56-4.69C17.39,9.84,17.32,9.71,17.25,9.6z M8.33,11h7.34l0.23,0.69L16.33,13H7.67L8.33,11z M17,18H7 v-2.99V15h10v0.01V18z\"></path><path d=\"M10.83,3C10.41,1.83,9.3,1,8,1C6.34,1,5,2.34,5,4c0,1.65,1.34,3,3,3c1.3,0,2.41-0.84,2.83-2H16v2h2V5h1V3H10.83z M8,5 C7.45,5,7,4.55,7,4s0.45-1,1-1s1,0.45,1,1S8.55,5,8,5z\"></path></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6,22h16V5.97L6,22z M20,20h-2v-7.22l2-2V20z M5.22,7.22L3.93,5.93c3.9-3.91,10.24-3.91,14.15,0l-1.29,1.29 C13.6,4.03,8.41,4.03,5.22,7.22z M12.93,11.07L11,13l-1.93-1.93C10.14,10.01,11.86,10.01,12.93,11.07z M14.22,9.79 c-1.78-1.77-4.66-1.77-6.43,0L6.5,8.5c2.48-2.48,6.52-2.48,9,0L14.22,9.79z\"></path></g>" } } }, - "car_repair": { - "name": "car_repair", + "message": { + "name": "message", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><polygon points=\"4,13 4,14.5 9.25,14.5 9.25,17 10.75,17 10.75,14.5 16,14.5 16,13\"></polygon><path d=\"M5.5,12H6c0.28,0,0.5-0.22,0.5-0.5V11h7v0.5c0,0.28,0.22,0.5,0.5,0.5h0.5c0.28,0,0.5-0.22,0.5-0.5V7l-1.22-3.34 C13.64,3.26,13.26,3,12.84,3H7.19C6.78,3,6.4,3.26,6.26,3.65L5,7v4.5C5,11.78,5.22,12,5.5,12z M7.54,4.5h4.95L13.04,6H6.98 L7.54,4.5z M6.5,7.5h7v2h-7V7.5z\"></path><circle cx=\"7.75\" cy=\"8.5\" r=\".75\"></circle><circle cx=\"12.25\" cy=\"8.5\" r=\".75\"></circle></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><circle cx=\"9\" cy=\"10.5\" r=\"1\"></circle><circle cx=\"15\" cy=\"10.5\" r=\"1\"></circle><path d=\"M5.78,16h0.44C6.65,16,7,15.64,7,15.19V14h10v1.19c0,0.45,0.34,0.81,0.78,0.81h0.44c0.43,0,0.78-0.36,0.78-0.81v-6.5 c0,0-1.34-4.03-1.56-4.69c-0.05-0.16-0.12-0.29-0.19-0.4c-0.02-0.02-0.03-0.04-0.05-0.07C16.82,3.01,16.28,3,16.28,3H7.72 c0,0-0.54,0.01-0.92,0.54C6.78,3.56,6.77,3.58,6.75,3.6C6.68,3.71,6.61,3.84,6.56,4C6.34,4.66,5,8.69,5,8.69v6.5 C5,15.64,5.35,16,5.78,16z M8.33,5h7.34l0.23,0.69L16.33,7H7.67L8.33,5z M7,9.01V9h10v0.01V12H7V9.01z\"></path><polygon points=\"4,17.01 4,19 11,19 11,22 13,22 13,19 20,19 20,17.01\"></polygon></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h12v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z\"></path>" } } }, - "category": { - "name": "category", + "chat": { + "name": "chat", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2l-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM3 21.5h8v-8H3v8zm2-6h4v4H5v-4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h8v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z\"></path>" } } }, - "celebration": { - "name": "celebration", + "qr_code": { + "name": "qr_code", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M2,18l11.49-4.07L6.07,6.51L2,18z M10.75,13.31l-6.29,2.22l2.22-6.29L10.75,13.31z\"></path><path d=\"M12.25,5.63L9.78,8.1l0.71,0.71l2.47-2.47c0.78-0.78,0.78-2.05,0-2.83l-1.41-1.41L10.84,2.8l1.41,1.41 C12.64,4.6,12.64,5.24,12.25,5.63z\"></path><path d=\"M8.36,6.69l0.71,0.71l0.71-0.71c0.78-0.78,0.78-2.05,0-2.83L9.07,3.15L8.36,3.86l0.71,0.71c0.39,0.39,0.39,1.02,0,1.41 L8.36,6.69z\"></path><path d=\"M15.79,8.58c-0.51,0-1.02,0.2-1.41,0.59l-1.77,1.77l0.71,0.71l1.77-1.77c0.2-0.2,0.45-0.29,0.71-0.29s0.51,0.1,0.71,0.29 l1.41,1.41l0.71-0.71L17.2,9.16C16.81,8.77,16.3,8.58,15.79,8.58z\"></path><path d=\"M18.62,4.92c-0.39-0.39-0.9-0.59-1.41-0.59s-1.02,0.2-1.41,0.59l-4.6,4.6l0.71,0.71l4.6-4.6c0.2-0.2,0.45-0.29,0.71-0.29 s0.51,0.1,0.71,0.29l0.71,0.71l0.71-0.71L18.62,4.92z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M4,9h5V4H4V9z M4.94,4.94h3.12v3.12H4.94V4.94z\"></path><path d=\"M4,16h5v-5H4V16z M4.94,11.94h3.12v3.12H4.94V11.94z\"></path><path d=\"M11,4v5h5V4H11z M15.06,8.06h-3.12V4.94h3.12V8.06z\"></path><rect height=\"1\" width=\"1\" x=\"15\" y=\"15\"></rect><rect height=\"1\" width=\"1\" x=\"15\" y=\"13\"></rect><rect height=\"1\" width=\"1\" x=\"15\" y=\"11\"></rect><rect height=\"1\" width=\"1\" x=\"12\" y=\"12\"></rect><rect height=\"1\" width=\"1\" x=\"11\" y=\"11\"></rect><rect height=\"1\" width=\"1\" x=\"13\" y=\"13\"></rect><rect height=\"1\" width=\"1\" x=\"14\" y=\"14\"></rect><rect height=\"1\" width=\"1\" x=\"13\" y=\"11\"></rect><rect height=\"1\" width=\"1\" x=\"14\" y=\"12\"></rect><rect height=\"1\" width=\"1\" x=\"11\" y=\"13\"></rect><rect height=\"1\" width=\"1\" x=\"12\" y=\"14\"></rect><rect height=\"1\" width=\"1\" x=\"11\" y=\"15\"></rect><rect height=\"1\" width=\"1\" x=\"13\" y=\"15\"></rect></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><path d=\"M2,22l14-5L7,8L2,22z M12.35,16.18L5.3,18.7l2.52-7.05L12.35,16.18z\"></path><path d=\"M14.53,12.53l5.59-5.59c0.49-0.49,1.28-0.49,1.77,0l0.59,0.59l1.06-1.06l-0.59-0.59c-1.07-1.07-2.82-1.07-3.89,0 l-5.59,5.59L14.53,12.53z\"></path><path d=\"M10.06,6.88L9.47,7.47l1.06,1.06l0.59-0.59c1.07-1.07,1.07-2.82,0-3.89l-0.59-0.59L9.47,4.53l0.59,0.59 C10.54,5.6,10.54,6.4,10.06,6.88z\"></path><path d=\"M17.06,11.88l-1.59,1.59l1.06,1.06l1.59-1.59c0.49-0.49,1.28-0.49,1.77,0l1.61,1.61l1.06-1.06l-1.61-1.61 C19.87,10.81,18.13,10.81,17.06,11.88z\"></path><path d=\"M15.06,5.88l-3.59,3.59l1.06,1.06l3.59-3.59c1.07-1.07,1.07-2.82,0-3.89l-1.59-1.59l-1.06,1.06l1.59,1.59 C15.54,4.6,15.54,5.4,15.06,5.88z\"></path></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,11h8V3H3V11z M5,5h4v4H5V5z\"></path><path d=\"M3,21h8v-8H3V21z M5,15h4v4H5V15z\"></path><path d=\"M13,3v8h8V3H13z M19,9h-4V5h4V9z\"></path><rect height=\"2\" width=\"2\" x=\"19\" y=\"19\"></rect><rect height=\"2\" width=\"2\" x=\"13\" y=\"13\"></rect><rect height=\"2\" width=\"2\" x=\"15\" y=\"15\"></rect><rect height=\"2\" width=\"2\" x=\"13\" y=\"17\"></rect><rect height=\"2\" width=\"2\" x=\"15\" y=\"19\"></rect><rect height=\"2\" width=\"2\" x=\"17\" y=\"17\"></rect><rect height=\"2\" width=\"2\" x=\"17\" y=\"13\"></rect><rect height=\"2\" width=\"2\" x=\"19\" y=\"15\"></rect></g></g>" } } }, - "cleaning_services": { - "name": "cleaning_services", + "no_sim": { + "name": "no_sim", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M13,9h-1V4c0-0.55-0.45-1-1-1H9C8.45,3,8,3.45,8,4v5H7c-1.66,0-3,1.34-3,3v5c6.51,0,12,0,12,0v-5C16,10.34,14.66,9,13,9z M9,4h2v5H9V4z M15,16h-2v-1.5c0-0.28-0.22-0.5-0.5-0.5S12,14.22,12,14.5V16h-1.5v-1.5c0-0.28-0.22-0.5-0.5-0.5s-0.5,0.22-0.5,0.5 V16H8v-1.5C8,14.22,7.78,14,7.5,14S7,14.22,7,14.5V16H5v-4c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2V16z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M11,3h2v8h-2V3 z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5 v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21.26 21.21L3.79 3.74 2.38 5.15l2.74 2.74-.12.12V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.88 1.88 1.41-1.41zM7 19V9.77L16.23 19H7zm3.84-14H17v9.11l2 2V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06l1.41 1.41L10.84 5z\"></path>" } } }, - "compass_calibration": { - "name": "compass_calibration", + "dialer_sip": { + "name": "dialer_sip", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-17C8.1 3 4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3zm4.84 6.47c-1.44-.91-3.1-1.4-4.84-1.4-1.74 0-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5c2.56 0 5 .79 7.05 2.26l-2.21 2.21z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 3h1v5h-1zm-1 2h-2V4h2V3h-3v3h2v1h-2v1h3zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.7.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.2-1.2c.85.24 1.71.39 2.59.45v1.5z\"></path>" } } }, - "delivery_dining": { - "name": "delivery_dining", + "phone": { + "name": "phone", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"4\" x=\"4\" y=\"5.5\"></rect><path d=\"M15.5,6.5C15.5,5.67,14.83,5,14,5h-2.5v1.5H14v1.41l-3,3.59H8V8H5c-1.66,0-3,1.34-3,3v2h1.5c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5h3.2l3.8-4.54V6.5z M3.5,11.5V11c0-0.83,0.67-1.5,1.5-1.5h1.5v2H3.5z M6,14c-0.55,0-1-0.45-1-1h2 C7,13.55,6.55,14,6,14z\"></path><path d=\"M15.5,10.5c-1.38,0-2.5,1.12-2.5,2.5s1.12,2.5,2.5,2.5S18,14.38,18,13S16.88,10.5,15.5,10.5z M15.5,14c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S16.05,14,15.5,14z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><path d=\"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35 V7z M4,14v-1c0-1.1,0.9-2,2-2h2v3H4z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z\"></path><rect height=\"2\" width=\"5\" x=\"5\" y=\"6\"></rect><path d=\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 C20,16.55,19.55,17,19,17z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z\"></path>" } } }, - "departure_board": { - "name": "departure_board", + "speaker_phone": { + "name": "speaker_phone", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"5.5\" cy=\"16.5\" r=\"1.5\"></circle><circle cx=\"12.5\" cy=\"16.5\" r=\"1.5\"></circle><path d=\"M16 1c-2.39 0-4.49 1.2-5.75 3.02C9.84 4.01 9.43 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM9 6h.29c-.09.32-.16.66-.21.99H3.34C3.89 6.46 5.31 6 9 6zM3 8.99h6.08c.16 1.11.57 2.13 1.18 3.01H3V8.99zM15 18c0 .37-.21.62-.34.73l-.29.27H3.63l-.29-.27C3.21 18.62 3 18.37 3 18v-4h9.41c.78.47 1.65.79 2.59.92V18zm1-5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z\"></path>" } } }, - "design_services": { - "name": "design_services", + "document_scanner": { + "name": "document_scanner", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M15.71,13.21l-3.46-3.46l1.33-1.33l-2-2l-1.33,1.33L6.79,4.29C6.4,3.9,5.76,3.9,5.37,4.29L4.29,5.37 C3.9,5.76,3.9,6.4,4.29,6.79l3.46,3.46L4,14v2h2l3.75-3.75l3.46,3.46c0.39,0.39,1.02,0.39,1.41,0l1.08-1.08 C16.1,14.24,16.1,13.6,15.71,13.21z M5,6.08L6.08,5c0,0,0,0,0,0l0.69,0.69L6.23,6.23L6.89,6.9l0.54-0.54l1.06,1.06L7.95,7.96 l0.67,0.67l0.54-0.54l0.38,0.38L8.46,9.54L5,6.08z M5.59,15H5v-0.59l6.58-6.58l0.59,0.59L5.59,15z M13.92,15l-3.46-3.46l1.08-1.08 l0.4,0.4L11.4,11.4l0.67,0.67l0.54-0.54l1.06,1.06l-0.54,0.54l0.67,0.67l0.54-0.54L15,13.92L13.92,15z\"></path><path d=\"M15.62,6.38c0.2-0.2,0.2-0.51,0-0.71l-1.29-1.29c-0.2-0.2-0.51-0.2-0.71,0l-1.34,1.34l2,2L15.62,6.38z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M6,2.5H3.5V5H2V1h4V2.5z M16.5,5l0-2.5l-2.5,0L14,1l4,0l0,4L16.5,5z M14,17.5h2.5V15H18v4h-4V17.5z M3.5,15l0,2.5l2.5,0 L6,19l-4,0l0-4L3.5,15z M13.49,14.5H6.5l0.01-9h6.99L13.49,14.5z M6.43,4C5.64,4,5,4.67,5,5.5v9C5,15.33,5.64,16,6.43,16h7.14 c0.79,0,1.43-0.67,1.43-1.5v-9C15,4.67,14.36,4,13.57,4H6.43z M12,7H8v1.5h4V7z M12,9.25H8v1.5h4V9.25z M12,11.5H8V13h4V11.5z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M20.97,7.27c0.39-0.39,0.39-1.02,0-1.41l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0l-4.49,4.49L8.35,3.63 c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9c-0.78,0.78-0.78,2.05,0,2.83l3.89,3.89L3,16.76V21h4.24l4.52-4.52l3.89,3.89 c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9c0.78-0.78,0.78-2.05,0-2.83l-3.89-3.89L20.97,7.27z M5.04,6.94l1.89-1.9c0,0,0,0,0,0 l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19l1.2,1.2l-1.9,1.9L5.04,6.94z M16.27,14.38l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27 l-1.9,1.9l-3.89-3.89l1.9-1.9L16.27,14.38z M6.41,19H5v-1.41l9.61-9.61l1.3,1.3l0.11,0.11L6.41,19z M16.02,6.56l1.41-1.41 l1.41,1.41l-1.41,1.41L16.02,6.56z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7,3H4v3H2V1h5V3z M22,6V1h-5v2h3v3H22z M7,21H4v-3H2v5h5V21z M20,18v3h-3v2h5v-5H20z M17,6H7v12h10V6z M19,18 c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2V18z M15,8H9v2h6V8z M15,11H9v2h6V11z M15,14H9v2h6V14z\"></path>" } } }, - "dinner_dining": { - "name": "dinner_dining", + "cell_tower": { + "name": "cell_tower", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M3,14.5h14c0-2.49-2.01-4.5-4.5-4.5c-2.03,0-3.72,1.35-4.28,3.19C7.86,12.92,7.45,12.73,7,12.61V8h1c1.1,0,2-0.9,2-2h7V5 h-7c0-1.1-0.9-2-2-2H3v1h1v1H3v1h1v1H3v1h1v5.26C3.58,13.59,3.23,14.01,3,14.5z M12.5,11.5c1.11,0,2.08,0.6,2.6,1.5H9.92 C10.45,12.08,11.42,11.5,12.5,11.5z M7,4h1.5v1H7V4z M7,6h1.5v1H7V6z M5,4h1v1H5V4z M5,6h1v1H5V6z M5,8h1v4.51 c-0.35,0.02-0.68,0.08-1,0.19V8z\"></path><polygon points=\"2,15.5 3.5,17 16.5,17 18,15.5\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M6.5,11.5l1.06-1.06C6.94,9.81,6.55,8.95,6.55,8s0.39-1.81,1.01-2.44L6.5,4.5C5.6,5.4,5.05,6.63,5.05,8S5.6,10.6,6.5,11.5 z\"></path><path d=\"M5.41,3.41L4.34,2.34C2.9,3.79,2,5.79,2,8s0.9,4.21,2.34,5.66l1.06-1.06C4.23,11.42,3.5,9.79,3.5,8S4.23,4.58,5.41,3.41z\"></path><path d=\"M13.5,4.5l-1.06,1.06c0.62,0.62,1.01,1.49,1.01,2.44s-0.39,1.81-1.01,2.44l1.06,1.06c0.9-0.9,1.45-2.13,1.45-3.5 S14.4,5.4,13.5,4.5z\"></path><path d=\"M15.66,2.34l-1.06,1.06C15.77,4.58,16.5,6.21,16.5,8s-0.73,3.42-1.91,4.59l1.06,1.06C17.1,12.21,18,10.21,18,8 S17.1,3.79,15.66,2.34z\"></path><path d=\"M12,8c0-1.1-0.9-2-2-2S8,6.9,8,8c0,0.63,0.29,1.18,0.75,1.55L6,18h1.5l0.49-1.5h3.6L12,18h1.5l-2.31-8.4 C11.68,9.23,12,8.66,12,8z M8.47,15l1.46-4.5l1.24,4.5H8.47z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><polygon points=\"2,19 4,21 20,21 22,19\"></polygon><path d=\"M3,18h16.97c0,0,0,0,0,0c0.29-3.26-2.28-6-5.48-6c-2.35,0-4.35,1.48-5.14,3.55C8.94,15.32,8.48,15.17,8,15.08V9h1.75 C10.99,9,12,7.99,12,6.75h9v-1.5h-9C12,4.01,10.99,3,9.75,3H3v1.5h1v0.75H3v1.5h1V7.5H3V9h1v7.39C3.56,16.85,3.22,17.39,3,18z M14.5,14c0.99,0,1.91,0.4,2.58,1.14c0.24,0.26,0.44,0.55,0.58,0.86h-6.32C11.92,14.79,13.15,14,14.5,14z M8,4.5h2v0.75H8V4.5z M8,6.75h2V7.5H8V6.75z M5.5,4.5h1v0.75h-1V4.5z M5.5,6.75h1V7.5h-1V6.75z M5.5,9h1v6.06c-0.35,0.06-0.68,0.17-1,0.3V9z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.3,14.7l1.2-1.2c-1-1-1.5-2.3-1.5-3.5c0-1.3,0.5-2.6,1.5-3.5L7.3,5.3c-1.3,1.3-2,3-2,4.7S6,13.4,7.3,14.7z\"></path><path d=\"M19.1,2.9l-1.2,1.2c1.6,1.6,2.4,3.8,2.4,5.9c0,2.1-0.8,4.3-2.4,5.9l1.2,1.2c2-2,2.9-4.5,2.9-7.1C22,7.4,21,4.9,19.1,2.9z\"></path><path d=\"M6.1,4.1L4.9,2.9C3,4.9,2,7.4,2,10c0,2.6,1,5.1,2.9,7.1l1.2-1.2c-1.6-1.6-2.4-3.8-2.4-5.9C3.7,7.9,4.5,5.7,6.1,4.1z\"></path><path d=\"M16.7,14.7c1.3-1.3,2-3,2-4.7c-0.1-1.7-0.7-3.4-2-4.7l-1.2,1.2c1,1,1.5,2.3,1.5,3.5c0,1.3-0.5,2.6-1.5,3.5L16.7,14.7z\"></path><path d=\"M14.5,10c0-1.38-1.12-2.5-2.5-2.5S9.5,8.62,9.5,10c0,0.76,0.34,1.42,0.87,1.88L7,22h2l0.67-2h4.67L15,22h2l-3.37-10.12 C14.16,11.42,14.5,10.76,14.5,10z M10.33,18L12,13l1.67,5H10.33z\"></path></g></g>" } } }, - "directions": { - "name": "directions", + "ring_volume": { + "name": "ring_volume", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22.43 10.59l-9.01-9.01c-.75-.75-2.07-.76-2.83 0l-9 9c-.78.78-.78 2.04 0 2.82l9 9c.39.39.9.58 1.41.58.51 0 1.02-.19 1.41-.58l8.99-8.99c.79-.76.8-2.02.03-2.82zm-10.42 10.4l-9-9 9-9 9 9-9 9zM8 11v4h2v-3h4v2.5l3.5-3.5L14 7.5V10H9c-.55 0-1 .45-1 1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23.71 16.67C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9l-1.07 1.07zm.69-12.23l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 2h2v5h-2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z\"></path>" } } }, - "directions_bike": { - "name": "directions_bike", + "more_time": { + "name": "more_time", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"8.5,8.05 8.5,12.05 11.67,13.95 12.17,13.13 9.5,11.55 9.5,8.05\"></polygon><path d=\"M13.9,10c0.07,0.32,0.1,0.66,0.1,1c0,2.76-2.24,5-5,5s-5-2.24-5-5s2.24-5,5-5c0.71,0,1.39,0.15,2,0.42V5.35 C10.37,5.13,9.7,5,9,5c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6c0-0.34-0.04-0.67-0.09-1H13.9z\"></path><polygon points=\"15,6 15,4 14,4 14,6 14,6 12,6 12,7 14,7 14,9 15,9 15,7 15,7 17,7 17,6\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8\"></polygon><path d=\"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z\"></path><polygon points=\"20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5\"></polygon></g></g>" } } }, - "directions_boat": { - "name": "directions_boat", + "send_time_extension": { + "name": "send_time_extension", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.5,4.5v6.07l1.5,0.75V4.5C17,3.67,16.33,3,15.5,3H12c0-1.1-0.9-2-2-2S8,1.9,8,3H4.5C3.67,3,3,3.67,3,4.5V8 c1.1,0,2,0.9,2,2s-0.9,2-2,2v3.5C3,16.33,3.67,17,4.5,17H8c0-0.93,0.64-1.71,1.5-1.93v-1.53c-1.18,0.17-2.17,0.93-2.66,1.96H4.5 v-2.34c1.18-0.56,2-1.77,2-3.16s-0.82-2.6-2-3.16V4.5h5V3c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5v1.5H15.5z\"></path><polygon points=\"11,10 11,13 14,14 11,15 11,18 19,14\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 3v1h-2V3h2m-1 7.11l5.38 1.77 2.39.78-1.12 3.97c-.54-.3-.94-.71-1.14-.94L16 13.96l-1.51 1.72c-.34.4-1.28 1.32-2.49 1.32s-2.15-.92-2.49-1.32L8 13.96l-1.51 1.72c-.2.23-.6.63-1.14.93l-1.13-3.96 2.4-.79L12 10.11M15 1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1zM6 9.97V6h12v3.97L12 8 6 9.97zm10 9.71c-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18,6v6.26l2,1V6c0-1.1-0.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S9,2.62,9,4H5.01c-1.1,0-2,0.9-2,2v3.8 C5.7,9.8,6,11.96,6,12.5c0,0.54-0.29,2.7-3,2.7V19c0,1.1,0.9,2,2,2h3.8c0-2.16,1.37-2.78,2.2-2.94v-2.03 C9.57,16.2,7.85,17.07,7.13,19H5v-2.13c2.17-0.8,3-2.87,3-4.37c0-1.49-0.83-3.56-2.99-4.37V6H11V4c0-0.28,0.22-0.5,0.5-0.5 S12,3.72,12,4v2H18z\"></path><polygon points=\"13,12 13,16 17,17 13,18 13,22 23,17\"></polygon></g></g>" } } }, - "directions_boat_filled": { - "name": "directions_boat_filled", + "mail_outline": { + "name": "mail_outline", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.77,12.66l-1.12,3.97c-0.78-0.43-1.07-0.86-2.65-2.67C14.4,15.78,13.57,17,12,17c-1.53,0-2.34-1.15-4-3.04 c-1.6,1.82-1.87,2.21-2.65,2.65l-1.13-3.96L12,10.11L19.77,12.66z M15,1H9v3H6C4.9,4,4,4.9,4,6v4.62l-1.29,0.42 c-0.63,0.19-0.81,0.84-0.66,1.28L3.95,19H4c1.6,0,3.02-0.88,4-2c0.98,1.12,2.4,2,4,2s3.02-0.88,4-2c0.98,1.12,2.4,2,4,2h0.05 l1.91-6.68c0.11-0.37,0.04-1.06-0.66-1.28L20,10.62V6c0-1.1-0.9-2-2-2h-3V1L15,1z M6,9.97V6h12v3.97L12,8L6,9.97L6,9.97z M16,19.68 c-1.22,0.85-2.61,1.28-4,1.28s-2.78-0.43-4-1.28C6.78,20.53,5.39,21,4,21H2v2h2c1.38,0,2.74-0.35,4-0.99c1.26,0.64,2.63,0.97,4,0.97 s2.74-0.32,4-0.97c1.26,0.65,2.62,0.99,4,0.99h2v-2h-2C18.61,21,17.22,20.53,16,19.68L16,19.68z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z\"></path>" } } }, - "directions_bus": { - "name": "directions_bus", + "qr_code_2": { + "name": "qr_code_2", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4zm5.66 2.99H6.34C6.89 4.46 8.31 4 12 4s5.11.46 5.66.99zm.34 2V10H6V6.99h12zm-.34 9.74l-.29.27H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h12v4c0 .37-.21.62-.34.73z\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><path d=\"M15,21h-2v-2h2V21z M13,14h-2v5h2V14z M21,12h-2v4h2V12z M19,10h-2v2h2V10z M7,12H5v2h2V12z M5,10H3v2h2V10z M12,5h2V3h-2V5 z M4.5,4.5v3h3v-3H4.5z M9,9H3V3h6V9z M4.5,16.5v3h3v-3H4.5z M9,21H3v-6h6V21z M16.5,4.5v3h3v-3H16.5z M21,9h-6V3h6V9z M19,19v-3 l-4,0v2h2v3h4v-2H19z M17,12l-4,0v2h4V12z M13,10H7v2h2v2h2v-2h2V10z M14,9V7h-2V5h-2v4L14,9z M6.75,5.25h-1.5v1.5h1.5V5.25z M6.75,17.25h-1.5v1.5h1.5V17.25z M18.75,5.25h-1.5v1.5h1.5V5.25z\"></path>" } } }, - "directions_bus_filled": { - "name": "directions_bus_filled", + "call": { + "name": "call", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g enable-background=\"new\"><path d=\"M12,2C8,2,4,2.5,4,6v9.5c0,0.95,0.38,1.81,1,2.44V20c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h8v1c0,0.55,0.45,1,1,1h1 c0.55,0,1-0.45,1-1v-2.06c0.62-0.63,1-1.49,1-2.44V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H6.43 C7.03,4.48,8.48,4,12,4z M18,15c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2v-3h12V15z M18,10H6V7h12V10z\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z\"></path>" } } }, - "directions_car": { - "name": "directions_car", + "live_help": { + "name": "live_help", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z\"></path><circle cx=\"7.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"14.5\" r=\"1.5\"></circle>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-8-3h2v2h-2zm1-8c1.1 0 2 .9 2 2 0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2z\"></path>" } } }, - "directions_car_filled": { - "name": "directions_car_filled", + "stay_current_portrait": { + "name": "stay_current_portrait", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M18.92,6.01C18.72,5.42,18.16,5,17.5,5h-11C5.84,5,5.29,5.42,5.08,6.01L3,12v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8L18.92,6.01z M6.85,7h10.29l1.04,3H5.81L6.85,7z M19,17H5v-5h14V17z\"></path><circle cx=\"7.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"14.5\" r=\"1.5\"></circle></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\"></path>" } } }, - "directions_railway": { - "name": "directions_railway", + "clear_all": { + "name": "clear_all", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 1c-4.42 0-8 .5-8 4v10.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4zm0 2c6 0 6 1.2 6 2H6c0-.8 0-2 6-2zm6 4v3H6V7h12zm-1.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5zM12 12.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z\"></path>" } } }, - "directions_railway_filled": { - "name": "directions_railway_filled", + "stay_primary_landscape": { + "name": "stay_primary_landscape", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g enable-background=\"new\"><path d=\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H6.43C7.03,4.48,8.48,4,12,4z M18,15.5c0,0.83-0.67,1.5-1.5,1.5h-9C6.67,17,6,16.33,6,15.5V12h12 V15.5z M18,10H6V7h12V10z\"></path><circle cx=\"12\" cy=\"14.5\" r=\"1.5\"></circle></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z\"></path>" } } }, - "directions_run": { - "name": "directions_run", + "domain_verification": { + "name": "domain_verification", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V7h10V15z\"></path><polygon points=\"13.18,9.23 12.47,8.53 8.94,12.06 7.53,10.65 6.82,11.35 8.94,13.47\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9l1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54\"></polygon><path d=\"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z\"></path></g></g>" } } }, - "directions_subway": { - "name": "directions_subway", + "3p": { + "name": "3p", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,2H4.01c-1.1,0-2,0.9-2,2L2,22l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z M12,10 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,10,12,10z M16,13.43c0-0.81-0.48-1.53-1.22-1.85C13.93,11.21,12.99,11,12,11 c-0.99,0-1.93,0.21-2.78,0.58C8.48,11.9,8,12.62,8,13.43V14h8V13.43z\"></path></g>" } } }, - "directions_subway_filled": { - "name": "directions_subway_filled", + "import_export": { + "name": "import_export", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H13h-2H6.43C7.03,4.48,8.48,4,12,4z M6,7h5v3H6V7z M18,15.5c0,0.83-0.67,1.5-1.5,1.5h-9 C6.67,17,6,16.33,6,15.5V12h12V15.5z M18,10h-5V7h5V10z\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z\"></path>" } } }, - "directions_transit": { - "name": "directions_transit", + "stop_screen_share": { + "name": "stop_screen_share", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21.79 18l2 2H24v-2h-2.21zM1.11 2.98l1.55 1.56c-.41.37-.66.89-.66 1.48V16c0 1.1.9 2 2.01 2H0v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zM4 6.02h.13l4.95 4.93C7.94 12.07 7.31 13.52 7 15c.96-1.29 2.13-2.08 3.67-2.46l3.46 3.48H4v-10zm16 0v10.19l1.3 1.3c.42-.37.7-.89.7-1.49v-10c0-1.11-.9-2-2-2H7.8l2 2H20zm-7.07 3.13l2.79 2.78 1.28-1.2L13 7v2.13l-.07.02z\"></path>" } } }, - "directions_transit_filled": { - "name": "directions_transit_filled", + "comments_disabled": { + "name": "comments_disabled", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,15.88V3.5C18,2.67,17.33,2,16.5,2H4.12l1.5,1.5H16.5v10.88L18,15.88z M8.62,6.5H15V5H7.12L8.62,6.5z M14.12,12H15v-1.5 h-2.38L14.12,12z M11.37,9.25H15v-1.5H9.87L11.37,9.25z M2.22,2.22L1.16,3.28L2,4.12v9.38C2,14.33,2.67,15,3.5,15h9.38l3.84,3.84 l1.06-1.06L2.22,2.22z M3.5,13.5V5.62l2.13,2.13H5v1.5h2.13l1.25,1.25H8V12h1.88l1.5,1.5H3.5z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H13h-2H6.43C7.03,4.48,8.48,4,12,4z M6,7h5v3H6V7z M18,15.5c0,0.83-0.67,1.5-1.5,1.5h-9 C6.67,17,6,16.33,6,15.5V12h12V15.5z M18,10h-5V7h5V10z\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18.83,16H20V4H6.83l-2-2H20c1.1,0,2,0.9,2,2l0,15.17L18.83,16z M18,6H8.83l2,2H18V6z M18,9h-6.17l2,2H18V9z M18,14v-2 h-3.17l2,2H18z M21.9,21.9l-1.41,1.41L15.17,18H4c-1.1,0-2-0.9-2-2V4.83L0.69,3.51L2.1,2.1L21.9,21.9z M13.17,16l-2-2H6v-2h3.17 l-1-1H6V9h0.17L4,6.83V16H13.17z\"></path>" } } }, - "directions_walk": { - "name": "directions_walk", + "phonelink_setup": { + "name": "phonelink_setup", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 3v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z\"></path>" } } }, - "dry_cleaning": { - "name": "dry_cleaning", + "contacts": { + "name": "contacts", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><path d=\"M16.97,10.87c-0.11-0.62-0.55-1.12-1.13-1.37l-5.09-2.18V6.25c0-0.41-0.34-0.75-0.75-0.75c-0.62,0-1-0.56-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1h1.5C12.5,3.12,11.38,2,10,2C9.82,2,9.64,2.02,9.45,2.06C8.5,2.26,7.73,3.05,7.55,4.01 c-0.25,1.33,0.55,2.5,1.7,2.86v0.45L4.16,9.5c-0.57,0.25-1.02,0.75-1.13,1.37C2.83,12.01,3.7,13,4.81,13H6v5h8v-5h1.19 C16.3,13,17.17,12.01,16.97,10.87z M12.5,16.5h-5v-4h5V16.5z M15.19,11.5H14V11H6v0.5H4.81c-0.17,0-0.31-0.14-0.31-0.31 c0-0.12,0.07-0.23,0.19-0.28L10,8.63l5.31,2.28c0.11,0.05,0.19,0.16,0.19,0.28C15.5,11.36,15.36,11.5,15.19,11.5z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M19.56,11.36L13,8.44V7c0-0.55-0.45-1-1-1l0,0c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1h2c0-1.84-1.66-3.3-3.56-2.95 C10.26,2.27,9.29,3.22,9.06,4.4C8.76,5.96,9.66,7.34,11,7.82v0.63l-6.56,2.92C3.56,11.75,3,12.62,3,13.57v0.01 C3,14.92,4.08,16,5.42,16H7v6h10v-6h1.58c1.34,0,2.42-1.08,2.42-2.42v-0.01C21,12.62,20.44,11.75,19.56,11.36z M15,20H9v-5h6V20z M18.58,14H17v-1H7v1H5.42c-0.46,0-0.58-0.65-0.17-0.81l6.75-3l6.75,3C19.17,13.38,19.03,14,18.58,14z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM4 0h16v2H4zm0 22h16v2H4zm8-10c1.38 0 2.5-1.12 2.5-2.5S13.38 7 12 7 9.5 8.12 9.5 9.5 10.62 12 12 12zm0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 7.49C17 13.9 13.69 13 12 13s-5 .9-5 2.99V17h10v-1.01zm-8.19-.49c.61-.52 2.03-1 3.19-1 1.17 0 2.59.48 3.2 1H8.81z\"></path>" } } }, - "edit_attributes": { - "name": "edit_attributes", + "import_contacts": { + "name": "import_contacts", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm0 8H6.37C5.09 15 4 13.63 4 12s1.09-3 2.37-3h11.26C18.91 9 20 10.37 20 12s-1.09 3-2.37 3zM7.24 13.06l-1.87-1.87-.7.7 2.57 2.57 4.22-4.22-.7-.7z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z\"></path>" } } }, - "edit_location": { - "name": "edit_location", + "call_made": { + "name": "call_made", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M18.17 4.91L17.1 3.84l-5.55 5.55v1.08h1.08l5.54-5.56zM16 2.74l1.29-1.29a1.49 1.49 0 0 1 2.12 0l1.15 1.15c.59.59.59 1.54 0 2.12l-.68.68-.02.02-.58.58-6 6H10V8.74l6-6zm-2.28-.55l-.55.55-1.27 1.27c-3.3.05-5.9 2.6-5.9 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14v-.1l1.8-1.8c.13.6.2 1.24.2 1.9 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2.58 0 1.16.06 1.72.18z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z\"></path>" } } }, - "edit_location_alt": { - "name": "edit_location_alt", + "hourglass_bottom": { + "name": "hourglass_bottom", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><g><polygon points=\"9,10 10.41,10 15.44,4.97 14.03,3.56 9,8.59\"></polygon></g><g><path d=\"M14.91,7.62C14.96,7.91,15,8.2,15,8.5c0,2.47-3.1,5.8-5,7.53C8.1,14.3,5,10.97,5,8.5c0-2.76,2.24-5,5-5 c0.58,0,1.14,0.12,1.66,0.3l1.16-1.16C11.96,2.24,11.01,2,10,2C6.41,2,3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18s6.5-5.16,6.5-9.5 c0-0.74-0.13-1.45-0.36-2.11L14.91,7.62z\"></path></g><g><path d=\"M16.85,2.85l-0.71-0.71c-0.2-0.2-0.51-0.2-0.71,0l-0.71,0.71l1.41,1.41l0.71-0.71C17.05,3.37,17.05,3.05,16.85,2.85z\"></path></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M6,17h8v-4l-3-3l3-3V3H6v4l3,3l-3,3V17z M7,6.59V4h6v2.59l-3,3L7,6.59z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><path d=\"M11,11h2.12l6.16-6.16l-2.12-2.12L11,8.88V11z M20.71,2L20,1.29c-0.39-0.39-1.02-0.39-1.41,0l-0.72,0.72l2.12,2.12 l0.72-0.72C21.1,3.02,21.1,2.39,20.71,2z M17.9,9.05C17.96,9.41,18,9.79,18,10.2c0,1.71-1.08,4.64-6,9.14c-4.92-4.49-6-7.43-6-9.14 C6,6.17,9.09,4,12,4c0.32,0,0.65,0.03,0.97,0.08l1.65-1.65C13.78,2.16,12.9,2,12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8 c5.33-4.55,8-8.48,8-11.8c0-1.01-0.16-1.94-0.45-2.8L17.9,9.05z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z\"></path></g>" } } }, - "edit_road": { - "name": "edit_road", + "phonelink_ring": { + "name": "phonelink_ring", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"12\" width=\"1\" x=\"4\" y=\"4\"></rect><rect height=\"2\" width=\"1\" x=\"8.5\" y=\"4\"></rect><rect height=\"2\" width=\"1\" x=\"8.5\" y=\"14\"></rect><rect height=\"2\" width=\"1\" x=\"8.5\" y=\"9\"></rect><path d=\"M18.07,9.64l-0.71-0.71c-0.39-0.39-1.02-0.39-1.41,0L11,13.88V16h2.12l4.95-4.95C18.46,10.66,18.46,10.03,18.07,9.64z M12.71,15H12v-0.71l3.24-3.24l0.71,0.71L12.71,15z\"></path><polygon points=\"14,4 13,4 13,10.46 14,9.46\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"18,4 16,4 16,11.9 18,9.9\"></polygon><rect height=\"16\" width=\"2\" x=\"4\" y=\"4\"></rect><rect height=\"4\" width=\"2\" x=\"10\" y=\"4\"></rect><rect height=\"4\" width=\"2\" x=\"10\" y=\"10\"></rect><rect height=\"4\" width=\"2\" x=\"10\" y=\"16\"></rect><path d=\"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.1 7.7l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z\"></path>" } } }, - "electrical_services": { - "name": "electrical_services", + "call_missed_outgoing": { + "name": "call_missed_outgoing", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16,11.5c0-0.28-0.22-0.5-0.5-0.5H14v1h1.5C15.78,12,16,11.78,16,11.5z\"></path><path d=\"M15.5,14H14v1h1.5c0.28,0,0.5-0.22,0.5-0.5C16,14.22,15.78,14,15.5,14z\"></path><path d=\"M9,11v1H8v2h1l0,1c0,0.55,0.45,1,1,1h3v-6h-3C9.45,10,9,10.45,9,11z\"></path><path d=\"M6.75,9H7.5C8.88,9,10,7.88,10,6.5C10,5.12,8.88,4,7.5,4h-2C5.22,4,5,4.22,5,4.5C5,4.78,5.22,5,5.5,5h2 C8.33,5,9,5.67,9,6.5S8.33,8,7.5,8H6.75C5.23,8,4,9.23,4,10.75s1.23,2.75,2.75,2.75H7v-1H6.75C5.78,12.5,5,11.72,5,10.75 S5.78,9,6.75,9z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z\"></path><path d=\"M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z\"></path><path d=\"M12,14h-2v4h2c0,1.1,0.9,2,2,2h3v-8h-3C12.9,12,12,12.9,12,14z\"></path><path d=\"M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 8.41l9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z\"></path>" } } }, - "electric_bike": { - "name": "electric_bike", + "textsms": { + "name": "textsms", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.5,7h-0.68l-1.58-4.34C13.1,2.26,12.72,2,12.3,2H10v1h2.3l1.46,4H8.75L8.38,6H10V5H6v1h1.32l1.46,4H7.95 C7.7,8.19,6.13,6.86,4.2,7.01c-1.64,0.13-3.01,1.46-3.18,3.1C0.8,12.25,2.41,14,4.5,14c1.79,0,3.21-1.29,3.45-3h4.1 c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,8.75,17.59,7,15.5,7z M6.95,11c-0.23,1.15-1.22,2-2.45,2 C3.1,13,2,11.9,2,10.5S3.1,8,4.5,8c1.23,0,2.23,0.85,2.45,2H4v1H6.95z M12.05,10H9.84L9.11,8h3.92C12.5,8.52,12.16,9.22,12.05,10z M15.5,13c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,8.02,15.4,8,15.5,8 c1.4,0,2.5,1.1,2.5,2.5S16.9,13,15.5,13z\"></path><polygon points=\"9.5,16 7,16 10.5,18 10.5,17 13,17 9.5,15\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z\"></path><polygon points=\"11,20 7,20 13,23 13,21 17,21 11,18\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z\"></path>" } } }, - "electric_car": { - "name": "electric_car", + "mark_email_read": { + "name": "mark_email_read", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"13\" cy=\"9.5\" r=\"1\"></circle><circle cx=\"7\" cy=\"9.5\" r=\"1\"></circle><path d=\"M14.28,3.55C14.11,3.21,13.76,3,13.38,3H6.62C6.24,3,5.89,3.21,5.72,3.55L4,7v5.5C4,12.78,4.22,13,4.5,13h1 C5.78,13,6,12.78,6,12.5V12h8v0.5c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5V7L14.28,3.55z M6.62,4h6.76l1.5,3H5.12 L6.62,4z M15,11H5V8h10V11z\"></path></g><polygon points=\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\"></polygon></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,15H4V6.18L10,10l6-3.82V10h1V5c0-0.55-0.45-1-1-1H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1h6L10,15z M16,5l-6,3.82 L4,5H16z M13.76,17l-2.12-2.12l0.71-0.71l1.41,1.41l3.54-3.54L18,12.76L13.76,17z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.85,3h10.29l1.08,3.11H5.77L6.85,3z M19,13H5V8h14V13z\"></path><circle cx=\"7.5\" cy=\"10.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"10.5\" r=\"1.5\"></circle></g><polygon points=\"7,20 11,20 11,18 17,21 13,21 13,23\"></polygon></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h8l0-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z\"></path></g>" } } }, - "electric_moped": { - "name": "electric_moped", + "nat": { + "name": "nat", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,5.5C15,4.67,14.33,4,13.5,4H12v1h1.5C13.78,5,14,5.22,14,5.5v1.29L10.79,10H9V6H6C4.34,6,3,7.34,3,9v2h2 c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,7.21V5.5z M4,10V9c0-1.1,0.9-2,2-2h2v3H4z M7,12c-0.55,0-1-0.45-1-1h2C8,11.55,7.55,12,7,12z\"></path><rect height=\"1\" width=\"4\" x=\"5\" y=\"4\"></rect><path d=\"M15,9c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,9.9,16.1,9,15,9z M15,12c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,11.55,15.55,12,15,12z\"></path></g><polygon points=\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\"></polygon></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M5.93,10.5H10v-1H5.93C5.71,8.64,4.93,8,4,8c-1.1,0-2,0.9-2,2s0.9,2,2,2C4.93,12,5.71,11.36,5.93,10.5z M4,11 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S4.55,11,4,11z\"></path><path d=\"M18,10l-3-2v1.5h-3.03C11.72,5.87,8.7,3,5,3v1c3.31,0,6,2.69,6,6s-2.69,6-6,6v1c3.7,0,6.72-2.87,6.97-6.5H15V12L18,10z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M4,12v-1c0-1.1,0.9-2,2-2h2v3H4z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z\"></path><rect height=\"2\" width=\"5\" x=\"5\" y=\"4\"></rect><path d=\"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z\"></path></g><polygon points=\"7,20 11,20 11,18 17,21 13,21 13,23\"></polygon></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z\"></path><path d=\"M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z\"></path></g></g>" } } }, - "electric_rickshaw": { - "name": "electric_rickshaw", + "voicemail": { + "name": "voicemail", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><polygon points=\"9,17 6,17 11,19.5 11,17.5 14,17.5 9,15\"></polygon><path d=\"M17,10.05V8.53c0-0.34-0.12-0.67-0.33-0.94l-3.22-4.03C13.17,3.21,12.73,3,12.28,3H2.5C1.67,3,1,3.67,1,4.5V11 c0,0.83,0.67,1.5,1.5,1.5H3C3,13.88,4.12,15,5.5,15S8,13.88,8,12.5h6c0,1.38,1.12,2.5,2.5,2.5c1.5,0,2.2-1.12,2.39-1.73 C19.34,11.74,18.38,10.33,17,10.05z M2.5,4.5h3.75V8H2.5V4.5z M3.5,11h-1V9.5h3.75v0.61C6.01,10.04,5.76,10,5.5,10 C4.68,10,3.96,10.39,3.5,11z M5.5,13.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.05,13.5,5.5,13.5z M11.5,11H7.75V9.5H10V8 H7.75V4.5h3.75V11z M13,5.4L15.08,8H13V5.4z M14.5,11H13V9.5h2.5v0.71C15.1,10.38,14.76,10.66,14.5,11z M16.5,13.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.05,13.5,16.5,13.5z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M6,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M7,11.17C6.69,11.06,6.35,11,6,11c-1.3,0-2.42,0.84-2.83,2H3v-3 h4V11.17z M7,8H3V5h4V8z M14,13H9v-3h3V8H9V5h5V13z M16,6.12L18.4,9H16V6.12z M17.17,13H16v-2h3v0.17 C18.15,11.47,17.47,12.15,17.17,13z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z\"></path></g><polygon points=\"7,20 11,20 11,18 17,21 13,21 13,23\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z\"></path>" } } }, - "electric_scooter": { - "name": "electric_scooter", + "stay_primary_portrait": { + "name": "stay_primary_portrait", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,10,15,10z M15,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S15.55,13,15,13z\"></path><path d=\"M12,11.99C12,10.34,13.34,9,14.99,9l0.24,0l-1.2-5.22C13.93,3.32,13.52,3,13.05,3H10v1h3.05l0.95,4.14 c-1.57,0.4-2.75,1.72-2.96,3.36H6.93c-0.26-1.01-1.29-1.72-2.44-1.44c-0.71,0.18-1.29,0.78-1.44,1.5C2.77,12.86,3.75,14,5,14 c0.93,0,1.71-0.64,1.93-1.5H12V11.99z M5,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,13,5,13z\"></path><polygon points=\"9.5,15 7,15 10.5,17 10.5,16 13,16 9.5,14\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z\"></path><path d=\"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z\"></path><polygon points=\"11,20 7,20 13,23 13,21 17,21 11,18\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\"></path>" } } }, - "emergency": { - "name": "emergency", + "add_ic_call": { + "name": "add_ic_call", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11.25,17.75h-2.5c-0.55,0-1-0.45-1-1V13.9l-2.47,1.43c-0.48,0.28-1.09,0.11-1.37-0.37L2.66,12.8 c-0.28-0.48-0.11-1.09,0.37-1.37L5.5,10L3.03,8.57C2.55,8.3,2.39,7.69,2.66,7.21l1.25-2.16C4.19,4.56,4.8,4.4,5.28,4.68L7.75,6.1 V3.25c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1V6.1l2.47-1.43c0.48-0.28,1.09-0.11,1.37,0.37l1.25,2.16 c0.28,0.48,0.11,1.09-0.37,1.37L14.5,10l2.47,1.43c0.48,0.28,0.64,0.89,0.37,1.37l-1.25,2.16c-0.28,0.48-0.89,0.64-1.37,0.37 l-2.47-1.43v2.85C12.25,17.3,11.8,17.75,11.25,17.75z M9.25,16.25h1.5v-4.08c0-0.38,0.42-0.63,0.75-0.43l3.54,2.04l0.75-1.3 l-3.54-2.04c-0.33-0.19-0.33-0.67,0-0.87l3.54-2.04l-0.75-1.3L11.5,8.27c-0.33,0.19-0.75-0.05-0.75-0.43V3.75h-1.5v4.08 c0,0.38-0.42,0.63-0.75,0.43L4.96,6.23l-0.75,1.3l3.54,2.04c0.33,0.19,0.33,0.67,0,0.87l-3.54,2.04l0.75,1.3l3.54-2.04 c0.33-0.19,0.75,0.05,0.75,0.43V16.25z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.29,13.9L18,12l3.29-1.9c0.48-0.28,0.64-0.89,0.37-1.37l-2-3.46c-0.28-0.48-0.89-0.64-1.37-0.37L15,6.8V3 c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3.8L5.71,4.9C5.23,4.63,4.62,4.79,4.34,5.27l-2,3.46C2.06,9.21,2.23,9.82,2.71,10.1L6,12 l-3.29,1.9c-0.48,0.28-0.64,0.89-0.37,1.37l2,3.46c0.28,0.48,0.89,0.64,1.37,0.37L9,17.2V21c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1 v-3.8l3.29,1.9c0.48,0.28,1.09,0.11,1.37-0.37l2-3.46C21.94,14.79,21.77,14.18,21.29,13.9z M18.43,16.87l-4.68-2.7 C13.42,13.97,13,14.21,13,14.6V20h-2v-5.4c0-0.38-0.42-0.63-0.75-0.43l-4.68,2.7l-1-1.73l4.68-2.7c0.33-0.19,0.33-0.67,0-0.87 l-4.68-2.7l1-1.73l4.68,2.7C10.58,10.03,11,9.79,11,9.4V4h2v5.4c0,0.38,0.42,0.63,0.75,0.43l4.68-2.7l1,1.73l-4.68,2.7 c-0.33,0.19-0.33,0.67,0,0.87l4.68,2.7L18.43,16.87z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 15.45c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.92c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 5.95v-3h-2v3h-3v2h3v3h2v-3h3v-2z\"></path>" } } }, - "ev_station": { - "name": "ev_station", + "pause_presentation": { + "name": "pause_presentation", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 11v8H6V5h6v6zm6-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4l-4 7.5h2V18l4-7h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .85-2 1.95v14c0 1.1.9 2.05 2 2.05h18c1.1 0 2-.95 2-2.05v-14C23 3.85 22.1 3 21 3zm0 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z\"></path>" } } }, - "fastfood": { - "name": "fastfood", + "vpn_key_off": { + "name": "vpn_key_off", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M2.93,2.93L1.87,3.99l1.66,1.66C2.02,6.51,1,8.14,1,10c0,2.76,2.24,5,5,5c1.86,0,3.49-1.02,4.35-2.53l5.66,5.66l1.06-1.06 L2.93,2.93z M6,13.5c-1.93,0-3.5-1.57-3.5-3.5c0-1.45,0.89-2.7,2.15-3.23L5.88,8C4.83,8.06,4,8.93,4,10c0,1.1,0.9,2,2,2 c1.07,0,1.94-0.83,2-1.88l1.24,1.24C8.78,12.27,7.87,13.5,6,13.5z M14.5,12.38V10.5h-1.88L14.5,12.38z M17,14.88V12h2V8h-8.88 l1.5,1.5h5.88v1h-2v2.88L17,14.88z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98zM8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M2.81,2.81L1.39,4.22l2.59,2.59C2.2,7.85,1,9.79,1,12c0,3.31,2.69,6,6,6c2.22,0,4.15-1.21,5.19-3l7.59,7.61l1.41-1.41 L2.81,2.81z M7,16c-2.21,0-4-1.79-4-4c0-1.67,1.02-3.1,2.47-3.7l1.71,1.71C7.12,10,7.06,10,7,10c-1.1,0-2,0.9-2,2s0.9,2,2,2 s2-0.9,2-2c0-0.06,0-0.12-0.01-0.18l1.74,1.74C10.22,14.48,9.14,16,7,16z M17,14.17V13h-1.17L17,14.17z M13.83,11H21v2h-2v3l2,2 v-3h2V9H11.83L13.83,11z\"></path></g></g>" } } }, - "festival": { - "name": "festival", + "co_present": { + "name": "co_present", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><path d=\"M10,2c0,0-5,5-9,5.5V9c0,1.23,0.79,2.26,1.89,2.64C2.77,14.11,2.53,16.95,2,18h16c-0.06-0.12-0.68-1.27-0.91-6.35 C18.2,11.27,19,10.24,19,9V7.5C15,7,10,2,10,2z M9.25,9c0,0.72-0.59,1.31-1.31,1.31S6.63,9.72,6.63,9H9.25z M8.23,11.78 c0.7-0.08,1.32-0.39,1.77-0.88c0.45,0.49,1.07,0.81,1.77,0.88c0.03,0.95,0.13,2.67,0.4,4.72H7.83C8.11,14.45,8.2,12.73,8.23,11.78z M12.06,10.31c-0.72,0-1.31-0.59-1.31-1.31h2.62C13.37,9.72,12.79,10.31,12.06,10.31z M10,4.05c1.07,0.95,2.79,2.37,4.72,3.45H5.28 C7.21,6.42,8.93,5.01,10,4.05z M2.5,9h2.62c0,0.72-0.59,1.31-1.31,1.31S2.5,9.72,2.5,9z M4.39,11.75c0.58-0.12,1.09-0.43,1.48-0.85 c0.24,0.27,0.54,0.48,0.87,0.64c-0.03,0.88-0.11,2.76-0.43,4.97H3.95C4.18,15.17,4.31,13.37,4.39,11.75z M13.69,16.5 c-0.31-2.21-0.4-4.09-0.43-4.97c0.33-0.16,0.62-0.37,0.87-0.64c0.39,0.42,0.9,0.73,1.48,0.85c0.08,1.62,0.21,3.42,0.44,4.75H13.69z M16.19,10.31c-0.72,0-1.31-0.59-1.31-1.31h2.62C17.5,9.72,16.91,10.31,16.19,10.31z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M17.5,3h-15C1.67,3,1,3.67,1,4.5V12h1.5V4.5h15V17c0.83,0,1.5-0.67,1.5-1.5v-11C19,3.67,18.33,3,17.5,3z\"></path><path d=\"M10,9c0-1.66-1.34-3-3-3S4,7.34,4,9s1.34,3,3,3S10,10.66,10,9z M5.5,9c0-0.83,0.67-1.5,1.5-1.5S8.5,8.17,8.5,9 S7.83,10.5,7,10.5S5.5,9.83,5.5,9z\"></path><path d=\"M12.03,14.37C10.56,13.5,8.84,13,7,13s-3.56,0.5-5.03,1.37C1.36,14.72,1,15.39,1,16.09V18h12v-1.91 C13,15.39,12.64,14.72,12.03,14.37z M11.5,16.5h-9c0-0.33-0.05-0.67,0.22-0.84C4.02,14.9,5.5,14.5,7,14.5s2.98,0.4,4.28,1.16 C11.56,15.83,11.5,16.17,11.5,16.5z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><path d=\"M23,11V9c-6-2-11-7-11-7S7,7,1,9v2c0,1.49,0.93,2.75,2.24,3.26C3.2,16.76,2.92,19.69,2,22h20 c-0.92-2.31-1.2-5.24-1.24-7.74C22.07,13.75,23,12.49,23,11z M12,4.71c1.33,1.14,3.49,2.84,6.11,4.29H5.89 C8.51,7.55,10.67,5.85,12,4.71z M13,11h3c0,0.83-0.67,1.5-1.5,1.5S13,11.83,13,11z M9.5,12.5C8.67,12.5,8,11.83,8,11h3 C11,11.83,10.33,12.5,9.5,12.5z M6,11c0,0.83-0.67,1.5-1.5,1.5S3,11.83,3,11H6z M4.66,20c0.39-1.86,0.54-3.82,0.57-5.58 c0.68-0.15,1.29-0.49,1.76-0.98c0.25,0.25,0.54,0.45,0.85,0.62c-0.1,1.87-0.26,4-0.52,5.93H4.66z M9.35,20 c0.24-1.83,0.39-3.78,0.48-5.53c0.84-0.08,1.61-0.45,2.17-1.02c0.56,0.57,1.32,0.94,2.17,1.02c0.1,1.75,0.24,3.7,0.48,5.53H9.35z M16.67,20c-0.27-1.94-0.43-4.07-0.52-5.93c0.31-0.17,0.61-0.37,0.85-0.62c0.47,0.48,1.08,0.83,1.76,0.98 c0.03,1.76,0.18,3.72,0.57,5.58H16.67z M19.5,12.5c-0.83,0-1.5-0.67-1.5-1.5h3C21,11.83,20.33,12.5,19.5,12.5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M21,3H3C1.9,3,1,3.9,1,5v8h2V5h18v16c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z\"></path></g><g><path d=\"M13,10c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4S13,12.21,13,10z M7,10c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,1.1-0.9,2-2,2S7,11.1,7,10z\"></path></g><g><path d=\"M15.39,16.56C13.71,15.7,11.53,15,9,15c-2.53,0-4.71,0.7-6.39,1.56C1.61,17.07,1,18.1,1,19.22V22h16v-2.78 C17,18.1,16.39,17.07,15.39,16.56z M15,20H3c0-0.72-0.1-1.34,0.52-1.66C4.71,17.73,6.63,17,9,17c2.37,0,4.29,0.73,5.48,1.34 C15.11,18.66,15,19.29,15,20z\"></path></g></g></g>" } } }, - "flight": { - "name": "flight", + "person_add_disabled": { + "name": "person_add_disabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 6c1.1 0 2 .9 2 2 0 .99-.73 1.82-1.67 1.97l-2.31-2.31C13.19 6.72 14.01 6 15 6m0-2c-2.21 0-4 1.79-4 4 0 .18.03.35.05.52l3.43 3.43c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4zm1.69 10.16L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zm-3.68 1.97L14.88 18H9c.08-.24.88-1.01 2.91-1.57l1.1-.3M1.41 1.71L0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71zM6 10v-.88l.88.88H6z\"></path>" } } }, - "hail": { - "name": "hail", + "business": { + "name": "business", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><path d=\"M12,6c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,6,12,6z M17,2h2c0,2.7-0.93,4.41-2.3,5.5c-0.5,0.4-1.1,0.7-1.7,0.9V22h-2 v-6h-2v6H9V10.1c-0.3,0.1-0.5,0.2-0.6,0.3C7.87,10.81,7,11.43,7,14H5c0-2.06,0.35-3.78,2.11-5.29C8.21,7.81,10,7,12,7 s2.68-0.46,3.48-1.06C15.96,5.55,17,4.76,17,2z M4,16h3v6H4V16z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z\"></path>" } } }, - "handyman": { - "name": "handyman", + "duo": { + "name": "duo", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16.71,14.59l-3.54-3.54h-1.41l-0.34-0.34l-0.71,0.71l0.34,0.34v1.41l3.54,3.54c0.39,0.39,1.02,0.39,1.41,0L16.71,16 C17.1,15.61,17.1,14.98,16.71,14.59z M15.29,16l-3.18-3.18l0.71-0.71L16,15.29L15.29,16z\"></path><path d=\"M12.57,8.14L12.57,8.14l0.88,0.88l1.06-1.06l1.41,1.41c0.78-0.78,0.78-2.05,0-2.83l-2.47-2.47l-0.74,0.74l0-1.49 l-0.49-0.49L9.74,5.31l0.49,0.49l1.49,0l-0.74,0.74l0.88,0.88L10,9.29L7.51,6.81l0.15-1.26L5.36,3.23L3.23,5.36l2.31,2.31 l1.26-0.15L9.29,10l-1.05,1.05H6.83l-3.54,3.54c-0.39,0.39-0.39,1.02,0,1.41L4,16.71c0.39,0.39,1.02,0.39,1.41,0l3.54-3.54v-1.41 L12.57,8.14z M4.71,16L4,15.29l3.18-3.18l0.71,0.71L4.71,16z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z M18.84,19.59l-4.24-4.24l0.71-0.71l4.24,4.24L18.84,19.59z\"></path></g><g><path d=\"M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z M9.36,15.34 l-4.24,4.24l-0.71-0.71l4.24-4.24l0,0L9.36,15.34L9.36,15.34z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z\"></path>" } } }, - "hardware": { - "name": "hardware", + "call_merge": { + "name": "call_merge", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><path d=\"M14.5,3L12,5.5V3H8C5.79,3,4,4.79,4,7h3.5v9c0,0.55,0.45,1,1,1H11c0.55,0,1-0.45,1-1V6.5L14.5,9H16V3H14.5z M10.5,15.5H9 v-4.75h1.5V15.5z M10.5,9.25H9V5.5H6c0.46-0.61,1.18-1,2-1h2.5V9.25z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M18,3l-3,3V3H9C6.24,3,4,5.24,4,8h5v12c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8l3,3h2V3H18z M13,19h-2v-6h2V19z M11,11V6 H6.77C7.32,5.39,8.11,5,9,5h4v6H11z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z\"></path>" } } }, - "home_repair_service": { - "name": "home_repair_service", - "keywords": [ - "maps" + "qr_code_scanner": { + "name": "qr_code_scanner", + "keywords": [ + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M16,7h-3V5c0-0.55-0.45-1-1-1H8C7.45,4,7,4.45,7,5v2H4C3.45,7,3,7.45,3,8v8h14V8C17,7.45,16.55,7,16,7z M8,5h4v2H8V5z M16,15H4v-3h2v1h1v-1h6v1h1v-1h2V15z M14,11v-1h-1v1H7v-1H6v1H4V8h3h6h3v3H14z\"></path></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v10h20V10C22,8.9,21.1,8,20,8z M9,6h6v2H9V6z M20,18H4 v-3h2v1h2v-1h8v1h2v-1h2V18z M18,13v-1h-2v1H8v-1H6v1H4v-3h3h10h3v3H18z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M22,7h-2V4h-3V2h5V7z M22,22v-5h-2v3h-3v2 H22z M2,22h5v-2H4v-3H2V22z M2,2v5h2V4h3V2H2z\"></path>" } } }, - "hotel": { - "name": "hotel", + "call_split": { + "name": "call_split", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4h-6zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z\"></path>" } } }, - "hvac": { - "name": "hvac", + "mark_unread_chat_alt": { + "name": "mark_unread_chat_alt", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V5h10V15z\"></path><path d=\"M10,14c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4s-4,1.79-4,4C6,12.21,7.79,14,10,14z M12.97,9.74H7.03 c0.04-0.46,0.18-0.88,0.4-1.26h5.15C12.8,8.86,12.93,9.29,12.97,9.74z M12.98,10.24c-0.04,0.46-0.17,0.88-0.39,1.26H7.42 c-0.22-0.38-0.36-0.8-0.39-1.26H12.98z M10,13c-0.88,0-1.67-0.39-2.22-1h4.44C11.67,12.61,10.88,13,10,13z M10,7 c0.88,0,1.66,0.39,2.21,0.99H7.79C8.34,7.39,9.12,7,10,7z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16.5,13.5h-13v-10h8.07c-0.06-0.29-0.13-0.84,0-1.5L3.5,2C2.67,2,2,2.67,2,3.5V18l3-3h11.5c0.83,0,1.5-0.67,1.5-1.5V5.87 c-0.43,0.35-0.94,0.61-1.5,0.75L16.5,13.5z\"></path><rect height=\"1.5\" width=\"7\" x=\"5\" y=\"10.5\"></rect><rect height=\"1.5\" width=\"10\" x=\"5\" y=\"7.75\"></rect><circle cx=\"15.5\" cy=\"2.75\" r=\"2.5\"></circle><path d=\"M5,6.5h9.15c-0.8-0.29-1.49-0.81-1.96-1.5H5V6.5z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M15.44,10c0.26,0.45,0.44,0.96,0.51,1.5h-7.9 c0.07-0.54,0.24-1.05,0.51-1.5H15.44z M15.95,12.5c-0.07,0.54-0.24,1.05-0.51,1.5H8.56c-0.26-0.45-0.44-0.96-0.51-1.5H15.95z M9.38,15h5.24c-0.7,0.61-1.61,1-2.62,1S10.09,15.61,9.38,15z M14.62,9H9.38c0.7-0.61,1.61-1,2.62-1S13.91,8.39,14.62,9z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,16H4V4h10.1c-0.08-0.39-0.18-1.11,0-2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V6.98c-0.58,0.44-1.26,0.77-2,0.92 V16z\"></path><circle cx=\"19\" cy=\"3\" r=\"3\"></circle><rect height=\"2\" width=\"8\" x=\"6\" y=\"12\"></rect><rect height=\"2\" width=\"12\" x=\"6\" y=\"9\"></rect><path d=\"M6,8h12V7.9c-1.21-0.25-2.25-0.95-2.97-1.9H6V8z\"></path></g></g>" } } }, - "icecream": { - "name": "icecream", + "vpn_key": { + "name": "vpn_key", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M14.92,5.16C14.51,2.8,12.47,1,10,1S5.49,2.8,5.08,5.16C3.88,5.55,3,6.66,3,8c0,1.66,1.34,3,3,3c0.02,0,0.03,0,0.04,0 L10,19l3.96-8c0.01,0,0.03,0,0.04,0c1.66,0,3-1.34,3-3C17,6.66,16.12,5.55,14.92,5.16z M10,15.61l-2.49-5.04 c0.16-0.1,0.07-0.08,0.37-0.08C8.53,10.81,9.24,11,10,11s1.47-0.19,2.12-0.5c0.3,0,0.21-0.02,0.37,0.08L10,15.61z M14,9.5 c-0.39,0-0.69-0.15-0.87-0.28l-0.74-0.53C11.45,9.17,10.92,9.5,10,9.5c-0.92,0-1.49-0.35-2.39-0.81L6.87,9.22 C6.69,9.35,6.39,9.5,6,9.5C5.17,9.5,4.5,8.83,4.5,8c0-0.64,0.42-1.21,1.05-1.42l0.87-0.28l0.15-0.9C6.85,3.72,8.3,2.5,10,2.5 s3.15,1.22,3.44,2.91l0.15,0.9l0.87,0.28C15.08,6.79,15.5,7.36,15.5,8C15.5,8.83,14.83,9.5,14,9.5z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M18.38,6.24C17.79,3.24,15.14,1,12,1S6.21,3.24,5.62,6.24C4.08,6.81,3,8.29,3,10c0,2.21,1.79,4,4,4 c0.12,0,0.23-0.02,0.34-0.02L12.07,23l4.61-9.03C16.79,13.98,16.89,14,17,14c2.21,0,4-1.79,4-4C21,8.29,19.92,6.81,18.38,6.24z M12.05,18.63l-2.73-5.21C10.15,13.79,11.06,14,12,14c0.95,0,1.88-0.21,2.72-0.6L12.05,18.63z M17,12c-0.52,0-1.01-0.2-1.39-0.56 l-0.56-0.54l-0.66,0.42C13.68,11.76,12.86,12,12,12s-1.68-0.24-2.39-0.69L8.95,10.9l-0.56,0.54C8.01,11.79,7.52,12,7,12 c-1.1,0-2-0.89-2-2c0-0.98,0.72-1.82,1.68-1.97L7.45,7.9l0.06-0.78C7.71,4.8,9.66,3,12,3s4.29,1.8,4.48,4.12l0.06,0.78l0.77,0.12 C18.28,8.18,19,9.01,19,10C19,11.1,18.1,12,17,12z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 19h-6v-4h-2.68c-1.14 2.42-3.6 4-6.32 4-3.86 0-7-3.14-7-7s3.14-7 7-7c2.72 0 5.17 1.58 6.32 4H24v6h-2v4zm-4-2h2v-4h2v-2H11.94l-.23-.67C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\"></path>" } } }, - "layers": { - "name": "layers", + "phone_disabled": { + "name": "phone_disabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16zm0-11.47L17.74 9 12 13.47 6.26 9 12 4.53z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><g><path d=\"M17.34,14.54l-1.43-1.43c0.56-0.73,1.05-1.5,1.47-2.32l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02 C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20c0.55,0,1,0.45,1,1C21,7.98,19.63,11.64,17.34,14.54z M14.52,17.35 C11.63,19.64,7.97,21,4,21c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05 c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c0.81-0.42,1.58-0.9,2.3-1.46L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M7.6,17.02c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M17.46,5 c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z\"></path></g></g>" } } }, - "layers_clear": { - "name": "layers_clear", + "forward_to_inbox": { + "name": "forward_to_inbox", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15,12.5l3,3l-3,3V16h-3v-1h3V12.5z M11,15H4V6.18L10,10l6-3.82V12h1V5c0-0.55-0.45-1-1-1H4C3.45,4,3,4.45,3,5v10 c0,0.55,0.45,1,1,1h7L11,15z M16,5l-6,3.82L4,5H16z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4.53L17.74 9l-1.89 1.47 1.43 1.42L21 9l-9-7-2.59 2.02 1.42 1.42zm9 9.54l-1.63-1.27-.67.52 1.43 1.43zM3.41.86L2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41L3.41.86zM12 13.47L6.26 9l1.39-1.08 5.02 5.02-.67.53z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z\"></path></g>" } } }, - "liquor": { - "name": "liquor", + "print_disabled": { + "name": "print_disabled", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M6.5,10.5v1c0,0.43-0.28,0.81-0.7,0.94l-0.3,0.09l-0.3-0.09c-0.42-0.13-0.7-0.51-0.7-0.94v-1H6.5 M8,5H3v6.5 c0,1.12,0.74,2.05,1.75,2.37v2.63H3V18h5v-1.5H6.25v-2.63C7.26,13.55,8,12.62,8,11.5V5L8,5z M4.5,9V6.5h2V9H4.5L4.5,9z\"></path><path d=\"M16.5,11.5v2h-6l0-2H16.5 M14.5,2h-2c-0.55,0-1,0.45-1,1v2.98c0,0.61-0.37,1.17-0.94,1.39L9.94,7.62 C9.37,7.85,9,8.4,9,9.02v7.48c0,0.83,0.67,1.5,1.5,1.5h6c0.83,0,1.5-0.67,1.5-1.5V9.02c0-0.61-0.37-1.17-0.94-1.39l-0.61-0.25 C15.87,7.15,15.5,6.6,15.5,5.98V3C15.5,2.45,15.05,2,14.5,2L14.5,2z M13,4.5v-1h1v1H13L13,4.5z M10.5,10V9.02l0.61-0.25 C12.25,8.31,12.99,7.23,13,6h1c0.01,1.23,0.74,2.31,1.88,2.77l0.61,0.25V10H10.5L10.5,10z M10.5,16.5V15h6v1.5H10.5L10.5,16.5z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M3,14c0,1.3,0.84,2.4,2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4,9,15.3,9,14V6H3V14z M5,8h2v3H5V8z M5,13h2v1 c0,0.55-0.45,1-1,1s-1-0.45-1-1V13z\"></path><path d=\"M20.64,8.54l-0.96-0.32C19.27,8.08,19,7.7,19,7.27V3c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4.28 c0,0.43-0.27,0.81-0.68,0.95l-0.96,0.32C11.55,8.83,11,9.59,11,10.45V20c0,1.1,0.9,2,2,2h7c1.1,0,2-0.9,2-2v-9.56 C22,9.58,21.45,8.82,20.64,8.54z M16,4h1v1h-1V4z M20,20h-7v-2h7V20z M20,16h-7v-2h7V16z M20,12h-7v-1.56l0.95-0.32 C15.18,9.72,16,8.57,16,7.28V7h1v0.28c0,1.29,0.82,2.44,2.05,2.85L20,10.44V12z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M1.41 1.6L0 3.01 5 8c-1.66 0-3 1.34-3 3v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM6 15H4v-4c0-.55.45-1 1-1h2l3 3H6v2zm2 4v-4h4l4 4H8zM8 5h8v3h-5.34l2 2H19c.55 0 1 .45 1 1v4l-2 .01V13h-2.34l4 4H22v-6c0-1.66-1.34-3-3-3h-1V3H6v.36l2 2V5z\"></path><circle cx=\"18\" cy=\"11.51\" r=\"1\"></circle>" } } }, - "local_activity": { - "name": "local_activity", + "spoke": { + "name": "spoke", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,3C8.34,3,7,4.34,7,6c0,1.66,1.34,3,3,3s3-1.34,3-3C13,4.34,11.66,3,10,3z M10,7.5C9.17,7.5,8.5,6.83,8.5,6 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C11.5,6.83,10.83,7.5,10,7.5z M14,11c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C17,12.34,15.66,11,14,11z M14,15.5c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C15.5,14.83,14.83,15.5,14,15.5z M6,11c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3C9,12.34,7.66,11,6,11z M6,15.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C7.5,14.83,6.83,15.5,6,15.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16,7c0-2.21-1.79-4-4-4S8,4.79,8,7c0,2.21,1.79,4,4,4S16,9.21,16,7z M12,9c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C14,8.1,13.1,9,12,9z M7,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C11,14.79,9.21,13,7,13z M7,19c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C9,18.1,8.1,19,7,19z M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,19c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C19,18.1,18.1,19,17,19z\"></path>" } } }, - "local_airport": { - "name": "local_airport", + "screen_share": { + "name": "screen_share", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect><path d=\"M17,13v-1l-6-4V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-6,4v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-4L17,13z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><path d=\"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm9-6.87c-3.89.54-5.44 3.2-6 5.87 1.39-1.87 3.22-2.72 6-2.72v2.19l4-3.74L13 7v2.13z\"></path>" } } }, - "local_atm": { - "name": "local_atm", + "mark_chat_unread": { + "name": "mark_chat_unread", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect><path d=\"M17,6.22V13c0,0.55-0.45,1-1,1H6l-3,3V4c0-0.55,0.45-1,1-1h8.18C12.07,3.31,12,3.65,12,4H4v9h12V6.82 C16.37,6.68,16.71,6.48,17,6.22z M13,4c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S13,2.9,13,4z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect><path d=\"M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3s0.04,0.68,0.1,1H4v12h16V7.9 C20.74,7.75,21.42,7.42,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z\"></path></g>" } } }, - "local_bar": { - "name": "local_bar", + "phonelink_erase": { + "name": "phonelink_erase", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.77 9L12 12.11 9.23 9h5.54M21 3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9V3zM7.43 7L5.66 5h12.69l-1.78 2H7.43z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z\"></path>" } } }, - "local_cafe": { - "name": "local_cafe", + "call_end": { + "name": "call_end", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 5v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10m4-2H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm-2 5V5h2v3h-2zm2 11H2v2h18v-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.59 10.52c1.05.51 2.04 1.15 2.96 1.91l-1.07 1.07c-.58-.47-1.21-.89-1.88-1.27v-1.71m-13.2 0v1.7c-.65.37-1.28.79-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.38 2.94-1.9M12 7C7.46 7 3.34 8.78.29 11.67c-.18.18-.29.43-.29.71s.11.53.29.7l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.1.7-.28.79-.73 1.68-1.36 2.66-1.85.33-.16.56-.51.56-.9v-3.1C8.85 9.25 10.4 9 12 9s3.15.25 4.59.73v3.1c0 .4.23.74.56.9.98.49 1.88 1.11 2.67 1.85.18.17.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.11-.53-.29-.71C20.66 8.78 16.54 7 12 7z\"></path>" } } }, - "local_car_wash": { - "name": "local_car_wash", + "contact_mail": { + "name": "contact_mail", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 9h10.29l1.04 3H5.81l1.04-3zM19 19H5v-4.66l.12-.34h13.77l.11.34V19z\"></path><circle cx=\"7.5\" cy=\"16.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"16.5\" r=\"1.5\"></circle>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zM21 6h-7v5h7V6zm-1 2l-2.5 1.75L15 8V7l2.5 1.75L20 7v1zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z\"></path>" } } }, - "local_convenience_store": { - "name": "local_convenience_store", + "electrical_services": { + "name": "electrical_services", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16,11.5c0-0.28-0.22-0.5-0.5-0.5H14v1h1.5C15.78,12,16,11.78,16,11.5z\"></path><path d=\"M15.5,14H14v1h1.5c0.28,0,0.5-0.22,0.5-0.5C16,14.22,15.78,14,15.5,14z\"></path><path d=\"M9,11v1H8v2h1l0,1c0,0.55,0.45,1,1,1h3v-6h-3C9.45,10,9,10.45,9,11z\"></path><path d=\"M6.75,9H7.5C8.88,9,10,7.88,10,6.5C10,5.12,8.88,4,7.5,4h-2C5.22,4,5,4.22,5,4.5C5,4.78,5.22,5,5.5,5h2 C8.33,5,9,5.67,9,6.5S8.33,8,7.5,8H6.75C5.23,8,4,9.23,4,10.75s1.23,2.75,2.75,2.75H7v-1H6.75C5.78,12.5,5,11.72,5,10.75 S5.78,9,6.75,9z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm1 11h-4v-4H8v4H4V9h3V6h10v3h3v9zM8 8h2v1H8v3h3v-1H9v-1h2V7H8zm7 1h-1V7h-1v3h2v2h1V7h-1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z\"></path><path d=\"M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z\"></path><path d=\"M12,14h-2v4h2c0,1.1,0.9,2,2,2h3v-8h-3C12.9,12,12,12.9,12,14z\"></path><path d=\"M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z\"></path></g></g>" } } }, - "local_dining": { - "name": "local_dining", + "taxi_alert": { + "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><circle cx=\"6.5\" cy=\"15.5\" r=\"1.5\"></circle></g><g><circle cx=\"15.5\" cy=\"15.5\" r=\"1.5\"></circle></g><g><path d=\"M18,13v5H4v-5H18c-1.91,0-3.63-0.76-4.89-2H4.81l1.04-3h5.44C11.1,7.37,11,6.7,11,6s0.1-1.37,0.29-2H8v2H5.5 C4.84,6,4.29,6.42,4.08,7.01L2,13v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8 l-0.09-0.27C19.3,12.9,18.66,13,18,13z\"></path></g><g><path d=\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\"></path></g></g></g>" } } }, - "local_drink": { - "name": "local_drink", + "zoom_out_map": { + "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 2l2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm14 18l-10 .01L5.89 10H18.1L17 20zm1.33-12H5.67l-.44-4h13.53l-.43 4zM12 19c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S9 14 9 16c0 1.66 1.34 3 3 3zm0-5.09c.59.91 1 1.73 1 2.09 0 .55-.45 1-1 1s-1-.45-1-1c0-.37.41-1.19 1-2.09z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 3l2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12l-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6l-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z\"></path>" } } }, - "local_fire_department": { - "name": "local_fire_department", + "edit_attributes": { + "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><path d=\"M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm0 8H6.37C5.09 15 4 13.63 4 12s1.09-3 2.37-3h11.26C18.91 9 20 10.37 20 12s-1.09 3-2.37 3zM7.24 13.06l-1.87-1.87-.7.7 2.57 2.57 4.22-4.22-.7-.7z\"></path>" } } }, @@ -16947,891 +17499,931 @@ } } }, - "local_gas_station": { - "name": "local_gas_station", + "home_repair_service": { + "name": "home_repair_service", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M16,7h-3V5c0-0.55-0.45-1-1-1H8C7.45,4,7,4.45,7,5v2H4C3.45,7,3,7.45,3,8v8h14V8C17,7.45,16.55,7,16,7z M8,5h4v2H8V5z M16,15H4v-3h2v1h1v-1h6v1h1v-1h2V15z M14,11v-1h-1v1H7v-1H6v1H4V8h3h6h3v3H14z\"></path></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 13.5V19H6v-7h6v1.5zm0-3.5H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v10h20V10C22,8.9,21.1,8,20,8z M9,6h6v2H9V6z M20,18H4 v-3h2v1h2v-1h8v1h2v-1h2V18z M18,13v-1h-2v1H8v-1H6v1H4v-3h3h10h3v3H18z\"></path></g></g>" } } }, - "local_grocery_store": { - "name": "local_grocery_store", + "pest_control": { + "name": "pest_control", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16,12v-1h-2.04c-0.04-0.38-0.11-0.74-0.22-1.08l1.71-0.99l-0.5-0.87L13.33,9c-0.24-0.4-0.54-0.74-0.87-1.03 c0.07-0.39,0.13-1.19-0.48-1.99l1.24-1.24l-0.71-0.71l-1.29,1.29c-0.41-0.23-1.35-0.61-2.43,0L7.49,4.04L6.78,4.74l1.24,1.24 C7.41,6.78,7.47,7.58,7.55,7.97C7.21,8.26,6.91,8.6,6.67,9L5.05,8.07l-0.5,0.87l1.71,0.99c-0.11,0.34-0.18,0.7-0.22,1.08H4v1h2.04 c0.04,0.38,0.11,0.74,0.22,1.08l-1.71,0.99l0.5,0.87L6.67,14c0.72,1.21,1.94,2,3.33,2s2.61-0.8,3.33-2l1.62,0.94l0.5-0.87 l-1.71-0.99c0.11-0.34,0.18-0.7,0.22-1.08H16z M10,6c0.77,0,1.4,0.58,1.48,1.33C11.02,7.12,10.52,7,10,7S8.98,7.12,8.52,7.33 C8.6,6.58,9.23,6,10,6z M10,15c-1.65,0-3-1.57-3-3.5C7,9.57,8.35,8,10,8s3,1.57,3,3.5C13,13.43,11.65,15,10,15z\"></path><g><rect height=\"4\" width=\"1\" x=\"9.5\" y=\"9.5\"></rect></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-1.45-5c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 c0.1-0.56,0.2-1.69-0.58-2.89L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17l1.65,1.65 c-0.78,1.2-0.68,2.34-0.58,2.89C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07 c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49 c0.1-0.37,0.17-0.75,0.22-1.14H21z M12,6c0.88,0,1.62,0.57,1.88,1.36C13.29,7.13,12.66,7,12,7s-1.29,0.13-1.88,0.36 C10.38,6.57,11.12,6,12,6z M12,19c-2.21,0-4-2.24-4-5s1.79-5,4-5s4,2.24,4,5S14.21,19,12,19z\"></path><rect height=\"6\" width=\"2\" x=\"11\" y=\"11\"></rect></g></g>" } } }, - "local_hospital": { - "name": "local_hospital", + "person_pin": { + "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8.5-2h3v-3.5H17v-3h-3.5V7h-3v3.5H7v3h3.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V17h12v-1.42zM8.48 15c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48z\"></path>" } } }, - "local_hotel": { - "name": "local_hotel", + "temple_buddhist": { + "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M17.5,7.01C17.5,8.11,16.61,9,15.52,9H15V7.16c1.18-0.56,2-1.75,2-3.14V4l-1.5,0.01c0,0.99-0.73,1.8-1.68,1.95L10,1 L6.18,5.97C5.23,5.82,4.5,5.01,4.5,4.02H3C3,5.41,3.82,6.6,5,7.16V9H4.48C3.39,9,2.5,8.11,2.5,7.01H1c0,1.76,1.31,3.2,3,3.44V18h5 v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h5v-7.55c1.69-0.24,3-1.68,3-3.44V7L17.5,7.01z M10,3.46L11.95,6H8.05L10,3.46z M6.5,7.5h7V9h-7 V7.5z M14.5,16.5h-2V15c0-1.38-1.12-2.5-2.5-2.5S7.5,13.62,7.5,15v1.5h-2v-6h9V16.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,9.02c0,1.09-0.89,1.98-1.98,1.98H18V8.86c1.72-0.44,3-1.99,3-3.84V5l-2,0.02C19,6.11,18.11,7,17.02,7H16.5L12,1L7.5,7 H6.98C5.89,7,5,6.11,5,5.02H3c0,1.86,1.28,3.4,3,3.84V11H4.98C3.89,11,3,10.11,3,9.02H1c0,1.86,1.28,3.4,3,3.84V22h7v-4 c0-0.55,0.45-1,1-1s1,0.45,1,1v4h7v-9.14c1.72-0.44,3-1.99,3-3.84V9L21,9.02z M12,4.33L14,7h-4L12,4.33z M8,9h8v2H8V9z M18,20h-3 v-2c0-1.65-1.35-3-3-3c-1.65,0-3,1.35-3,3v2H6v-7h12V20z\"></path></g>" } } }, - "local_laundry_service": { - "name": "local_laundry_service", + "money": { + "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2.01L6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM18 20H6L5.99 4H18v16z\"></path><circle cx=\"8\" cy=\"6\" r=\"1\"></circle><circle cx=\"11\" cy=\"6\" r=\"1\"></circle><path d=\"M12 19c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2.36-7.36c1.3 1.3 1.3 3.42 0 4.72-1.3 1.3-3.42 1.3-4.72 0l4.72-4.72z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z\"></path>" } } }, - "local_library": { - "name": "local_library", + "directions_railway_filled": { + "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 9c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zm7 5.58c-2.53.34-4.93 1.3-7 2.82-2.06-1.52-4.47-2.49-7-2.83v-6.95c2.1.38 4.05 1.35 5.64 2.83L12 14.28l1.36-1.27c1.59-1.48 3.54-2.45 5.64-2.83v6.95z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g enable-background=\"new\"><path d=\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H6.43C7.03,4.48,8.48,4,12,4z M18,15.5c0,0.83-0.67,1.5-1.5,1.5h-9C6.67,17,6,16.33,6,15.5V12h12 V15.5z M18,10H6V7h12V10z\"></path><circle cx=\"12\" cy=\"14.5\" r=\"1.5\"></circle></g></g>" } } }, - "local_mall": { - "name": "local_mall", + "electric_bike": { + "name": "electric_bike", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.5,7h-0.68l-1.58-4.34C13.1,2.26,12.72,2,12.3,2H10v1h2.3l1.46,4H8.75L8.38,6H10V5H6v1h1.32l1.46,4H7.95 C7.7,8.19,6.13,6.86,4.2,7.01c-1.64,0.13-3.01,1.46-3.18,3.1C0.8,12.25,2.41,14,4.5,14c1.79,0,3.21-1.29,3.45-3h4.1 c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,8.75,17.59,7,15.5,7z M6.95,11c-0.23,1.15-1.22,2-2.45,2 C3.1,13,2,11.9,2,10.5S3.1,8,4.5,8c1.23,0,2.23,0.85,2.45,2H4v1H6.95z M12.05,10H9.84L9.11,8h3.92C12.5,8.52,12.16,9.22,12.05,10z M15.5,13c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,8.02,15.4,8,15.5,8 c1.4,0,2.5,1.1,2.5,2.5S16.9,13,15.5,13z\"></path><polygon points=\"9.5,16 7,16 10.5,18 10.5,17 13,17 9.5,15\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm7 17H5V8h14v12zm-7-8c-1.66 0-3-1.34-3-3H7c0 2.76 2.24 5 5 5s5-2.24 5-5h-2c0 1.66-1.34 3-3 3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z\"></path><polygon points=\"11,20 7,20 13,23 13,21 17,21 11,18\"></polygon></g></g>" } } }, - "local_movies": { - "name": "local_movies", + "alt_route": { + "name": "alt_route", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M8.38,9.41l-0.71,0.71c-0.47-0.5-0.93-1.1-1.25-1.96L7.4,7.91C7.66,8.54,8,9.01,8.38,9.41z M9.5,6l-3-3l-3,3h2.53 c0.02,0.43,0.07,0.83,0.14,1.19l0.97-0.24C7.08,6.66,7.04,6.34,7.02,6H9.5z M16.5,6l-3-3l-3,3h2.48c-0.12,2.22-1.02,3.11-1.9,3.96 c-0.39,0.37-0.78,0.75-1.08,1.23c-0.26-0.41-0.58-0.75-0.91-1.07l-0.71,0.71C9.03,11.47,9.5,11.99,9.5,13v4h1v-4c0,0,0,0,0,0h0 c0-1.1,0.53-1.61,1.27-2.32c0.94-0.9,2.07-2.03,2.21-4.68H16.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 5v14h-4V5h4m6-2h-2v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3zm-4 6V7h2v2h-2zM6 9V7h2v2H6zm10 4v-2h2v2h-2zM6 13v-2h2v2H6zm10 4v-2h2v2h-2zM6 17v-2h2v2H6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z\"></path></g>" } } }, - "local_offer": { - "name": "local_offer", + "local_post_office": { + "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z\"></path><circle cx=\"6.5\" cy=\"6.5\" r=\"1.5\"></circle>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z\"></path>" } } }, - "local_parking": { - "name": "local_parking", + "two_wheeler": { + "name": "two_wheeler", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><path d=\"M14.5,9c-0.16,0-0.31,0.02-0.45,0.05L13,8h1.5V6.5l-2,1L11,6H9.01v1h1.58l1,1H9.5L7,9L6,8H3v1h2.5C4.12,9,3,10.12,3,11.5 C3,12.88,4.12,14,5.5,14c1.23,0,2.24-0.88,2.45-2.05L9,13h1.5l2.03-4.06l0.52,0.52C12.42,9.92,12,10.66,12,11.5 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C17,10.12,15.88,9,14.5,9z M5.5,13C4.67,13,4,12.33,4,11.5S4.67,10,5.5,10 S7,10.67,7,11.5S6.33,13,5.5,13z M14.5,13c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S15.33,13,14.5,13z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z\"></path>" + "path": "<g><rect fill=\"none\" fill-rule=\"evenodd\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect><path d=\"M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z\"></path></g>" } } }, - "local_pharmacy": { - "name": "local_pharmacy", + "icecream": { + "name": "icecream", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M14.92,5.16C14.51,2.8,12.47,1,10,1S5.49,2.8,5.08,5.16C3.88,5.55,3,6.66,3,8c0,1.66,1.34,3,3,3c0.02,0,0.03,0,0.04,0 L10,19l3.96-8c0.01,0,0.03,0,0.04,0c1.66,0,3-1.34,3-3C17,6.66,16.12,5.55,14.92,5.16z M10,15.61l-2.49-5.04 c0.16-0.1,0.07-0.08,0.37-0.08C8.53,10.81,9.24,11,10,11s1.47-0.19,2.12-0.5c0.3,0,0.21-0.02,0.37,0.08L10,15.61z M14,9.5 c-0.39,0-0.69-0.15-0.87-0.28l-0.74-0.53C11.45,9.17,10.92,9.5,10,9.5c-0.92,0-1.49-0.35-2.39-0.81L6.87,9.22 C6.69,9.35,6.39,9.5,6,9.5C5.17,9.5,4.5,8.83,4.5,8c0-0.64,0.42-1.21,1.05-1.42l0.87-0.28l0.15-0.9C6.85,3.72,8.3,2.5,10,2.5 s3.15,1.22,3.44,2.91l0.15,0.9l0.87,0.28C15.08,6.79,15.5,7.36,15.5,8C15.5,8.83,14.83,9.5,14,9.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-3.9 8.63L18.89 19H5.11l1.79-5.37.21-.63-.21-.63L5.11 7h13.78l-1.79 5.37-.21.63.21.63zM13 9h-2v3H8v2h3v3h2v-3h3v-2h-3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M18.38,6.24C17.79,3.24,15.14,1,12,1S6.21,3.24,5.62,6.24C4.08,6.81,3,8.29,3,10c0,2.21,1.79,4,4,4 c0.12,0,0.23-0.02,0.34-0.02L12.07,23l4.61-9.03C16.79,13.98,16.89,14,17,14c2.21,0,4-1.79,4-4C21,8.29,19.92,6.81,18.38,6.24z M12.05,18.63l-2.73-5.21C10.15,13.79,11.06,14,12,14c0.95,0,1.88-0.21,2.72-0.6L12.05,18.63z M17,12c-0.52,0-1.01-0.2-1.39-0.56 l-0.56-0.54l-0.66,0.42C13.68,11.76,12.86,12,12,12s-1.68-0.24-2.39-0.69L8.95,10.9l-0.56,0.54C8.01,11.79,7.52,12,7,12 c-1.1,0-2-0.89-2-2c0-0.98,0.72-1.82,1.68-1.97L7.45,7.9l0.06-0.78C7.71,4.8,9.66,3,12,3s4.29,1.8,4.48,4.12l0.06,0.78l0.77,0.12 C18.28,8.18,19,9.01,19,10C19,11.1,18.1,12,17,12z\"></path></g></g>" } } }, - "local_phone": { - "name": "local_phone", + "add_location_alt": { + "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm1-9.94v2.02A6.53 6.53 0 0 0 12 5c-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14V11h2v.2c0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.34 0 .67.02 1 .06z\"></path>" } } }, - "local_pizza": { - "name": "local_pizza", + "directions_boat": { + "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zm0 15.92L5.51 6.36C7.32 4.85 9.62 4 12 4s4.68.85 6.49 2.36L12 17.92zM9 5.5c-.83 0-1.5.67-1.5 1.5S8.17 8.5 9 8.5s1.5-.67 1.5-1.5S9.82 5.5 9 5.5zm1.5 7.5c0 .83.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5s-.68-1.5-1.5-1.5-1.5.67-1.5 1.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 3v1h-2V3h2m-1 7.11l5.38 1.77 2.39.78-1.12 3.97c-.54-.3-.94-.71-1.14-.94L16 13.96l-1.51 1.72c-.34.4-1.28 1.32-2.49 1.32s-2.15-.92-2.49-1.32L8 13.96l-1.51 1.72c-.2.23-.6.63-1.14.93l-1.13-3.96 2.4-.79L12 10.11M15 1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1zM6 9.97V6h12v3.97L12 8 6 9.97zm10 9.71c-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32z\"></path>" } } }, - "local_play": { - "name": "local_play", + "menu_book": { + "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z\"></path><g><path d=\"M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z\"></path><path d=\"M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z\"></path><path d=\"M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z\"></path></g></g></g>" } } }, - "local_police": { - "name": "local_police", + "360": { + "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9-3.87l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z M12,3.19 l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12 V5L12,1L12,1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z\"></path>" } } }, - "local_post_office": { - "name": "local_post_office", + "moving": { + "name": "moving", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.5,7.56l-3.7,3.7c-0.98,0.98-2.56,0.98-3.54,0l-0.7-0.7c-0.39-0.39-1.02-0.39-1.41,0l-4.09,4.09L2,13.59L6.08,9.5 c0.98-0.98,2.56-0.98,3.54,0l0.71,0.71c0.39,0.39,1.02,0.39,1.41,0l3.7-3.7H13V5h5v5h-1.5V7.56z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,9.42V12h2V6h-6v2h2.58l-4.46,4.46c-0.39,0.39-1.02,0.39-1.41,0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24,0L2,16.59L3.41,18 l5.29-5.29c0.39-0.39,1.02-0.39,1.41,0l1.17,1.17c1.17,1.17,3.07,1.17,4.24,0L20,9.42z\"></path>" } } }, - "local_printshop": { - "name": "local_printshop", + "turn_right": { + "name": "turn_right", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M8,16H6.5l0-7c0-0.83,0.67-1.5,1.5-1.5l6.13,0l-1.19-1.19L14,5.25l3,3l-3,3l-1.06-1.06L14.13,9L8,9V16z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm2-4v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z\"></path><circle cx=\"18\" cy=\"11.5\" r=\"1\"></circle>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M17.17,11l-1.59,1.59L17,14l4-4l-4-4l-1.41,1.41L17.17,9L9,9c-1.1,0-2,0.9-2,2v9h2v-9L17.17,11z\"></path></g>" } } }, - "local_see": { - "name": "local_see", + "satellite": { + "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.2c-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM8.57 6H6v2.58c1.42 0 2.57-1.16 2.57-2.58zM12 6h-1.71c0 2.36-1.92 4.29-4.29 4.29V12c3.32 0 6-2.69 6-6zm2.14 5.86l-3 3.87L9 13.15 6 17h12z\"></path>" } } }, - "local_shipping": { - "name": "local_shipping", + "train": { + "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zm-.5 1.5l1.96 2.5H17V9.5h2.5zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.22-3c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3V6h12v9H8.22zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle><path d=\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zm0 2c3.51 0 4.96.48 5.57 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z\"></path>" } } }, - "local_taxi": { - "name": "local_taxi", + "local_cafe": { + "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z\"></path><circle cx=\"7.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"14.5\" r=\"1.5\"></circle>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 5v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10m4-2H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm-2 5V5h2v3h-2zm2 11H2v2h18v-2z\"></path>" } } }, - "lunch_dining": { - "name": "lunch_dining", + "roundabout_left": { + "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M17.99,8c0.26-2.73-3.42-5-7.99-5C5.44,3,1.76,5.27,2.01,8H17.99z M10,4.5c2.5,0,4.83,0.78,5.94,2H4.07 C5.18,5.29,7.51,4.5,10,4.5z\"></path><path d=\"M2,15.5C2,16.33,2.67,17,3.5,17h13c0.83,0,1.5-0.67,1.5-1.5V13H2V15.5z M3.5,14.5h13v1h-13V14.5z\"></path><path d=\"M18,11.75c-1.58,0-1.72-1-2.66-1c-0.95,0-1.08,1-2.67,1c-1.58,0-1.72-1-2.67-1c-0.95,0-1.08,1-2.67,1 c-1.58,0-1.72-1-2.67-1c-0.95,0-1.09,1-2.67,1v-1.5c0.95,0,1.09-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1 c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.66,1V11.75z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M13.25,3c-2.37,0-4.33,1.73-4.69,4L4.87,7l1.19-1.19L5,4.75l-3,3l3,3l1.06-1.06L4.87,8.5l3.69,0 c0.74,0,1.36-0.54,1.48-1.25c0.24-1.56,1.59-2.75,3.21-2.75l0,0c1.79,0,3.25,1.46,3.25,3.25c0,1.62-1.18,2.96-2.73,3.21 c-0.72,0.11-1.27,0.67-1.27,1.4l0,4.64H14v-4.56l0,0c2.27-0.36,4-2.32,4-4.69C18,5.13,15.87,3,13.25,3\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M2,19c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-3H2V19z M4,18h16v1H4V18z\"></path><path d=\"M18.66,11.5c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1 c-1.95,0-2.09,1-3.33,1v2c1.9,0,2.17-1,3.35-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1 c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.32,1l-0.01-1.98C20.38,12.19,20.37,11.5,18.66,11.5z\"></path><path d=\"M22,9c0.02-4-4.28-6-10-6C6.29,3,2,5,2,9v1h20L22,9L22,9z M4.18,8C5.01,5.81,8.61,5,12,5c3.31,0,5.93,0.73,7.19,1.99 C19.49,7.3,19.71,7.63,19.84,8H4.18z\"></path></g></g>" - } - } - }, - "map": { - "name": "map", - "keywords": [ - "maps" - ], - "heights": { - "24": { - "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM10 5.47l4 1.4v11.66l-4-1.4V5.47zm-5 .99l3-1.01v11.7l-3 1.16V6.46zm14 11.08l-3 1.01V6.86l3-1.16v11.84z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M10.08,8c0.48-2.84,2.94-5,5.92-5c3.31,0,6,2.69,6,6c0,2.97-2.16,5.44-5,5.92L17,21h-2l0-6.09c0-0.98,0.71-1.8,1.67-1.97 C18.56,12.63,20,10.98,20,9c0-2.21-1.79-4-4-4c-1.98,0-3.63,1.44-3.94,3.33C11.89,9.29,11.07,10,10.09,10l-4.26,0l1.59,1.59L6,13 L2,9l4-4l1.41,1.41L5.83,8L10.08,8z\"></path></g>" } } }, - "maps_ugc": { - "name": "maps_ugc", + "agriculture": { + "name": "agriculture", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M3.5,8H8c0-0.55-0.45-1-1-1H3.5C3.22,7,3,7.22,3,7.5C3,7.78,3.22,8,3.5,8z\"></path><path d=\"M17,11.51V7c0-0.55-0.45-1-1-1h-4.47l-0.8-0.8l1.06-1.06l-0.53-0.53L8.61,6.27L9.14,6.8l1.06-1.06l0.8,0.8V9 c0,0.55-0.45,1-1,1H7.93C7.66,9.74,7.36,9.52,7.02,9.36L6.83,9.8L6.48,9.66l0.19-0.44C6.3,9.08,5.91,9,5.5,9 C5.1,9,4.71,9.08,4.35,9.21l0.18,0.44L4.19,9.8L4,9.35c-0.72,0.34-1.3,0.92-1.65,1.64l0.45,0.19l-0.14,0.35l-0.44-0.19 C2.08,11.7,2,12.09,2,12.5c0,0.4,0.08,0.79,0.21,1.15l0.44-0.18l0.14,0.35L2.35,14c0.34,0.72,0.92,1.3,1.64,1.65l0.19-0.45 l0.35,0.14l-0.19,0.44C4.7,15.92,5.09,16,5.5,16c0.4,0,0.79-0.08,1.15-0.21l-0.18-0.44l0.35-0.14L7,15.65 c0.72-0.34,1.3-0.92,1.65-1.64L8.2,13.83l0.14-0.35l0.44,0.19c0.08-0.22,0.13-0.44,0.17-0.67h4.1C13.02,13.16,13,13.33,13,13.5 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C18,12.68,17.6,11.97,17,11.51z M5.5,15C4.12,15,3,13.88,3,12.5C3,11.12,4.12,10,5.5,10 S8,11.12,8,12.5C8,13.88,6.88,15,5.5,15z M13.51,12H8.95c-0.04-0.22-0.09-0.44-0.16-0.65l-0.44,0.18L8.2,11.19 c0,0,0.45-0.19,0.45-0.19H10c1.1,0,2-0.9,2-2V7h4v4.05C15.84,11.02,15.67,11,15.5,11C14.68,11,13.97,11.4,13.51,12z M15.5,15 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,15,15.5,15z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" fill-rule=\"evenodd\" height=\"24\" width=\"24\"></rect><g><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z\"></path></g><polygon fill-rule=\"evenodd\" points=\"13,8 11,8 11,11 8,11 8,13 11,13 11,16 13,16 13,13 16,13 16,11 13,11\"></polygon>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z\"></path><path d=\"M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z\"></path></g></g>" } } }, - "medical_services": { - "name": "medical_services", + "attractions": { + "name": "attractions", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16,6h-3V4c0-0.55-0.45-1-1-1H8C7.45,3,7,3.45,7,4v2H4C3.45,6,3,6.45,3,7v9c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V7 C17,6.45,16.55,6,16,6z M8,4h4v2H8V4z M16,16H4V7h12V16z\"></path><polygon points=\"10.5,9 9.5,9 9.5,11 7.5,11 7.5,12 9.5,12 9.5,14 10.5,14 10.5,12 12.5,12 12.5,11 10.5,11\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><path d=\"M17,10c0-0.68-0.1-1.34-0.29-1.97c0.49-0.55,0.6-1.36,0.21-2.03c-0.39-0.67-1.15-0.98-1.87-0.83 c-0.91-0.95-2.08-1.64-3.4-1.96C11.42,2.51,10.77,2,10,2S8.58,2.51,8.35,3.21c-1.32,0.32-2.49,1.01-3.4,1.96 C4.22,5.02,3.46,5.33,3.07,6C2.68,6.67,2.8,7.48,3.29,8.03C3.1,8.66,3,9.32,3,10s0.1,1.34,0.29,1.97C2.8,12.52,2.68,13.33,3.07,14 c0.39,0.67,1.15,0.98,1.87,0.83c0.33,0.35,0.69,0.66,1.09,0.93L4.99,18h1.66l0.71-1.52c0.32,0.13,0.65,0.23,0.99,0.32 C8.58,17.49,9.23,18,10,18s1.42-0.51,1.65-1.21c0.34-0.08,0.67-0.19,0.99-0.32L13.36,18h1.66l-1.04-2.24 c0.4-0.27,0.76-0.59,1.09-0.93c0.72,0.15,1.48-0.16,1.87-0.83c0.39-0.67,0.27-1.48-0.21-2.03C16.9,11.34,17,10.68,17,10z M11.46,15.3c-0.31-0.48-0.85-0.8-1.46-0.8s-1.15,0.32-1.46,0.8c-0.19-0.05-0.37-0.11-0.55-0.18l1.06-2.28 C9.35,12.93,9.67,13,10,13s0.65-0.07,0.95-0.17l1.06,2.28C11.83,15.18,11.65,15.24,11.46,15.3z M8.5,10c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S8.5,10.83,8.5,10z M15.32,11.38c-0.57,0.03-1.11,0.34-1.42,0.87 c-0.31,0.53-0.3,1.16-0.04,1.67c-0.17,0.16-0.35,0.32-0.53,0.46l-1.1-2.37C12.7,11.47,13,10.78,13,10c0-1.66-1.34-3-3-3 s-3,1.34-3,3c0,0.78,0.3,1.47,0.78,2.01l-1.1,2.37c-0.19-0.14-0.37-0.29-0.53-0.46c0.26-0.51,0.26-1.14-0.04-1.67 c-0.31-0.53-0.85-0.84-1.42-0.87C4.57,10.94,4.5,10.48,4.5,10s0.07-0.94,0.18-1.38C5.25,8.59,5.8,8.28,6.1,7.75 c0.31-0.53,0.3-1.16,0.04-1.67C6.8,5.44,7.62,4.96,8.54,4.7C8.85,5.18,9.39,5.5,10,5.5s1.15-0.32,1.46-0.8 c0.91,0.25,1.73,0.73,2.39,1.38c-0.26,0.51-0.26,1.14,0.04,1.67c0.31,0.53,0.85,0.84,1.42,0.87c0.11,0.44,0.18,0.9,0.18,1.38 S15.43,10.94,15.32,11.38z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M20,20H4V8h16V20z\"></path><polygon points=\"13,10 11,10 11,13 8,13 8,15 11,15 11,18 13,18 13,15 16,15 16,13 13,13\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><path d=\"M20.15,14.42c0.23-0.77,0.35-1.58,0.35-2.42s-0.12-1.65-0.35-2.42c0.78-0.6,1.02-1.7,0.51-2.58s-1.58-1.23-2.49-0.85 c-1.11-1.17-2.56-2.03-4.18-2.42C13.85,2.75,13.01,2,12,2s-1.85,0.75-1.98,1.73C8.39,4.12,6.95,4.98,5.83,6.15 C4.92,5.77,3.85,6.12,3.34,7S3.07,8.98,3.85,9.58C3.62,10.35,3.5,11.16,3.5,12s0.12,1.65,0.35,2.42c-0.78,0.6-1.02,1.7-0.51,2.58 s1.58,1.23,2.49,0.85c0.4,0.42,0.83,0.79,1.3,1.12L5.78,22h1.88l0.98-2.19c0.44,0.19,0.9,0.34,1.38,0.46 C10.15,21.25,10.99,22,12,22s1.85-0.75,1.98-1.73c0.46-0.11,0.91-0.26,1.34-0.44L16.3,22h1.88l-1.34-3 c0.48-0.34,0.93-0.72,1.34-1.15c0.91,0.38,1.99,0.03,2.49-0.85C21.17,16.12,20.93,15.02,20.15,14.42z M13.56,18.75 C13.19,18.29,12.63,18,12,18s-1.2,0.29-1.57,0.75c-0.4-0.09-0.79-0.21-1.16-0.37l1.43-3.19c0.4,0.16,0.84,0.25,1.3,0.25 c0.44,0,0.87-0.08,1.26-0.23l1.42,3.18C14.32,18.54,13.95,18.66,13.56,18.75z M10.48,12.02c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S10.48,12.85,10.48,12.02z M18.71,14.01c-0.61,0.07-1.18,0.41-1.52,0.99 c-0.32,0.56-0.34,1.2-0.12,1.75c-0.28,0.29-0.58,0.55-0.9,0.79l-1.5-3.35c0.49-0.59,0.78-1.34,0.78-2.16 c0-1.89-1.55-3.41-3.46-3.41s-3.46,1.53-3.46,3.41c0,0.8,0.28,1.54,0.75,2.13l0,0l-1.52,3.39c-0.31-0.23-0.6-0.48-0.87-0.76 C7.15,16.23,7.13,15.57,6.8,15c-0.34-0.59-0.93-0.94-1.56-0.99c-0.22-0.68-0.33-1.4-0.33-2.15c0-0.64,0.09-1.26,0.25-1.85 c0.66-0.03,1.3-0.38,1.65-1c0.37-0.63,0.35-1.38,0.01-1.98C7.74,6.05,8.93,5.34,10.27,5c0.34,0.59,0.99,1,1.73,1s1.39-0.4,1.73-1 c1.34,0.34,2.53,1.07,3.44,2.05C16.85,7.64,16.84,8.38,17.2,9c0.35,0.6,0.96,0.95,1.6,1c0.16,0.59,0.25,1.21,0.25,1.86 C19.05,12.61,18.93,13.33,18.71,14.01z\"></path></g></g></g>" } } }, - "menu_book": { - "name": "menu_book", + "my_location": { + "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z\"></path><g><path d=\"M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z\"></path><path d=\"M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z\"></path><path d=\"M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\"></path>" } } }, - "miscellaneous_services": { - "name": "miscellaneous_services", + "local_police": { + "name": "local_police", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M11.69,11.36l1-1.73c0.06-0.11,0.04-0.24-0.06-0.32l-1.06-0.83C11.6,8.33,11.61,8.16,11.61,8c0-0.16-0.01-0.33-0.04-0.49 l1.06-0.83c0.09-0.08,0.12-0.21,0.06-0.32l-1-1.73c-0.06-0.11-0.19-0.15-0.31-0.11l-1.24,0.5C9.88,4.82,9.6,4.66,9.3,4.53 L9.11,3.21C9.09,3.09,8.98,3,8.86,3h-2C6.74,3,6.63,3.09,6.61,3.21L6.42,4.54c-0.3,0.13-0.59,0.29-0.84,0.49l-1.24-0.5 c-0.11-0.04-0.24,0-0.31,0.11l-1,1.73C2.97,6.47,3,6.61,3.09,6.69l1.06,0.83C4.12,7.67,4.11,7.84,4.11,8 c0,0.16,0.01,0.33,0.04,0.49L3.09,9.32C3,9.4,2.97,9.54,3.03,9.64l1,1.73c0.06,0.11,0.19,0.15,0.31,0.11l1.24-0.5 c0.26,0.2,0.54,0.36,0.84,0.49l0.19,1.32C6.63,12.91,6.74,13,6.86,13h2c0.12,0,0.23-0.09,0.25-0.21l0.19-1.32 c0.3-0.13,0.59-0.29,0.84-0.49l1.24,0.5C11.5,11.51,11.62,11.47,11.69,11.36z M7.86,9.5c-0.83,0-1.5-0.68-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5c0.82,0,1.5,0.67,1.5,1.5C9.36,8.82,8.68,9.5,7.86,9.5z\"></path><path d=\"M16.81,14.79l-0.64-0.5c0.01-0.1,0.02-0.19,0.02-0.29c0-0.1-0.01-0.2-0.02-0.29l0.64-0.5c0.05-0.05,0.07-0.13,0.04-0.19 l-0.6-1.04c-0.04-0.07-0.11-0.09-0.19-0.07l-0.74,0.3c-0.16-0.12-0.32-0.22-0.51-0.29l-0.11-0.79C14.68,11.05,14.61,11,14.54,11 h-1.2c-0.07,0-0.14,0.05-0.15,0.13l-0.11,0.79c-0.18,0.08-0.35,0.17-0.51,0.29l-0.74-0.3c-0.07-0.02-0.14,0-0.19,0.07l-0.6,1.04 c-0.04,0.07-0.02,0.14,0.04,0.19l0.64,0.5c-0.01,0.1-0.02,0.19-0.02,0.29c0,0.1,0.01,0.2,0.02,0.29l-0.64,0.5 c-0.05,0.05-0.07,0.13-0.04,0.19l0.6,1.04c0.04,0.07,0.11,0.09,0.19,0.07l0.74-0.3c0.16,0.12,0.32,0.22,0.51,0.29l0.11,0.79 C13.2,16.95,13.26,17,13.34,17h1.2c0.07,0,0.14-0.05,0.15-0.13l0.11-0.79c0.18-0.08,0.35-0.17,0.5-0.29l0.75,0.3 c0.07,0.02,0.14,0,0.19-0.07l0.6-1.04C16.88,14.92,16.86,14.84,16.81,14.79z M14,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 c0.55,0,1,0.45,1,1C15,14.55,14.55,15,14,15z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z\"></path><path d=\"M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9-3.87l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z M12,3.19 l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12 V5L12,1L12,1z\"></path>" } } }, - "money": { - "name": "money", + "local_convenience_store": { + "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm1 11h-4v-4H8v4H4V9h3V6h10v3h3v9zM8 8h2v1H8v3h3v-1H9v-1h2V7H8zm7 1h-1V7h-1v3h2v2h1V7h-1z\"></path>" } } }, - "moped": { - "name": "moped", + "restaurant": { + "name": "restaurant", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,7.5C15,6.67,14.33,6,13.5,6H12v1h1.5C13.78,7,14,7.22,14,7.5v1.29L10.79,12H9V8H6c-1.66,0-3,1.34-3,3v2h2 c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,9.21V7.5z M4,12v-1c0-1.1,0.9-2,2-2h2v3H4z M7,14c-0.55,0-1-0.45-1-1h2C8,13.55,7.55,14,7,14z\"></path><rect height=\"1\" width=\"4\" x=\"5\" y=\"6\"></rect><path d=\"M15,11c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,11.9,16.1,11,15,11z M15,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,13.55,15.55,14,15,14z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M4,14v-1c0-1.1,0.9-2,2-2h2v3H4z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z\"></path><rect height=\"2\" width=\"5\" x=\"5\" y=\"6\"></rect><path d=\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z\"></path>" } } }, - "moving": { - "name": "moving", + "synagogue": { + "name": "synagogue", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.5,7.56l-3.7,3.7c-0.98,0.98-2.56,0.98-3.54,0l-0.7-0.7c-0.39-0.39-1.02-0.39-1.41,0l-4.09,4.09L2,13.59L6.08,9.5 c0.98-0.98,2.56-0.98,3.54,0l0.71,0.71c0.39,0.39,1.02,0.39,1.41,0l3.7-3.7H13V5h5v5h-1.5V7.56z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"10\" cy=\"8.25\" r=\"1.25\"></circle><path d=\"M16.5,4c-1.38,0-2.5,1.12-2.5,2.5v0.13L10,3L6.01,6.63V6.5C6.01,5.12,4.89,4,3.5,4C2.12,4,1,5.12,1,6.5V17h8v-3 c0-0.55,0.45-1,1-1s1,0.45,1,1v3h8V6.5C19,5.12,17.88,4,16.5,4z M16.5,5.5c0.55,0,1,0.45,1,1v1h-2.01v-1 C15.49,5.95,15.94,5.5,16.5,5.5z M3.5,5.5c0.55,0,1,0.45,1,1v1H2.5v-1C2.5,5.95,2.95,5.5,3.5,5.5z M2.5,15.5V9h2v6.5H2.5z M12.5,15.5V14c0-1.38-1.12-2.5-2.5-2.5S7.5,12.62,7.5,14v1.5H6.01V8.66L10,5.03l3.99,3.63v6.84H12.5z M15.5,15.5V9h2v6.5H15.5z\"></path></g></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,9.42V12h2V6h-6v2h2.58l-4.46,4.46c-0.39,0.39-1.02,0.39-1.41,0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24,0L2,16.59L3.41,18 l5.29-5.29c0.39-0.39,1.02-0.39,1.41,0l1.17,1.17c1.17,1.17,3.07,1.17,4.24,0L20,9.42z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,4c-1.66,0-3,1.34-3,3v0.29L12,3L7,7.29V7c0-1.66-1.34-3-3-3S1,5.34,1,7v14h10v-5c0-0.55,0.45-1,1-1s1,0.45,1,1v5h10V7 C23,5.34,21.66,4,20,4z M20,6c0.55,0,1,0.45,1,1v1h-2V7C19,6.45,19.45,6,20,6z M4,6c0.55,0,1,0.45,1,1v1H3V7C3,6.45,3.45,6,4,6z M3,19v-9h2v9H3z M17,19h-2v-3c0-1.65-1.35-3-3-3c-1.65,0-3,1.35-3,3v3H7V9.92l5-4.29l5,4.29V19z M19,19v-9h2v9H19z\"></path><circle cx=\"12\" cy=\"10\" r=\"1.5\"></circle></g></g>" } } }, - "multiple_stop": { - "name": "multiple_stop", + "railway_alert": { + "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><circle cx=\"10\" cy=\"15.5\" r=\"1.5\"></circle></g><g><path d=\"M4,11V8h7.29C11.1,7.37,11,6.7,11,6H4.43c0.9-0.77,3.28-1.08,6.65-0.98c0.1-0.7,0.3-1.37,0.59-1.99C2.97,2.67,2,5.02,2,7 v9.5C2,18.43,3.57,20,5.5,20L4,21v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V13c-1.91,0-3.63-0.76-4.89-2H4z M16,16.5 c0,0.83-0.67,1.5-1.5,1.5h-9C4.67,18,4,17.33,4,16.5V13h12V16.5z\"></path></g><g><path d=\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\"></path></g></g></g>" } } }, - "museum": { - "name": "museum", + "wrong_location": { + "name": "wrong_location", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3.03L3,8h0.02v1H5v7H3.02v1h13.97v-1H15V9h1.98V8H17L10,3.03z M14,16H6V8h8V16z\"></path><polygon points=\"8,11.33 10,14 12,11.33 12,15 13,15 13,9 12,9 10,12 8,9 7,9 7,15 8,15\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14.53,9c0.03,0.24,0.07,0.48,0.07,0.74c0,1.88-1.55,4.21-4.6,6.94c-3.05-2.73-4.6-5.06-4.6-6.94C5.4,6.66,7.77,5,10,5 c0.33,0,0.67,0.05,1,0.12V4.09C10.67,4.03,10.34,4,10,4C7.06,4,4.4,6.25,4.4,9.74c0,2.32,1.87,5.08,5.6,8.26 c3.73-3.18,5.6-5.94,5.6-8.26c0-0.25-0.02-0.5-0.05-0.74H14.53z\"></path><circle cx=\"10\" cy=\"9.5\" r=\"1.5\"></circle><polygon points=\"17.47,3.23 16.77,2.53 15,4.29 13.23,2.53 12.53,3.23 14.29,5 12.53,6.77 13.23,7.47 15,5.71 16.77,7.47 17.47,6.77 15.71,5\"></polygon></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M18,20H6V9h12V20z\"></path><polygon points=\"10,14 12,17 14,14 14,18 16,18 16,11 14,11 12,14 10,11 8,11 8,18 10,18\"></polygon></g></g>" - } - } - }, - "my_location": { - "name": "my_location", - "keywords": [ - "maps" - ], - "heights": { - "24": { - "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18,11c0,0.07,0,0.13,0,0.2c0,2.34-1.95,5.44-6,9.14c-4.05-3.7-6-6.79-6-9.14C6,7.57,8.65,5,12,5c0.34,0,0.68,0.03,1,0.08 V3.06C12.67,3.02,12.34,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8c0-0.07,0-0.13,0-0.2H18z\"></path><circle cx=\"12\" cy=\"11\" r=\"2\"></circle><polygon points=\"22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5\"></polygon></g></g>" } } }, - "navigation": { - "name": "navigation", + "turn_slight_right": { + "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M7.5,10.56V16H9v-5.44l4-4l0,1.69h1.5l0-4.25l-4.25,0v1.5l1.69,0l-4,4C7.66,9.78,7.5,10.16,7.5,10.56z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7.27l4.28 10.43-3.47-1.53-.81-.36-.81.36-3.47 1.53L12 7.27M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12.34,6V4H18v5.66h-2V7.41l-5,5V20H9v-7.58c0-0.53,0.21-1.04,0.59-1.41l5-5H12.34z\"></path></g>" } } }, - "near_me": { - "name": "near_me", + "pin_drop": { + "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.27 6.73l-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23M21 3L3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 4c1.93 0 5 1.4 5 5.15 0 2.16-1.72 4.67-5 7.32-3.28-2.65-5-5.17-5-7.32C7 5.4 10.07 4 12 4m0-2C8.73 2 5 4.46 5 9.15c0 3.12 2.33 6.41 7 9.85 4.67-3.44 7-6.73 7-9.85C19 4.46 15.27 2 12 2z\"></path><path d=\"M12 7c-1.1 0-2 .9-2 2s.9 2 2 2a2 2 0 1 0 0-4zM5 20h14v2H5v-2z\"></path>" } } }, - "near_me_disabled": { - "name": "near_me_disabled", + "medical_services": { + "name": "medical_services", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16,6h-3V4c0-0.55-0.45-1-1-1H8C7.45,3,7,3.45,7,4v2H4C3.45,6,3,6.45,3,7v9c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V7 C17,6.45,16.55,6,16,6z M8,4h4v2H8V4z M16,16H4V7h12V16z\"></path><polygon points=\"10.5,9 9.5,9 9.5,11 7.5,11 7.5,12 9.5,12 9.5,14 10.5,14 10.5,12 12.5,12 12.5,11 10.5,11\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,6.34L21,3l-3.34,9l-1.56-1.56l1.5-4.05l-4.05,1.5L12,6.34z M21.19,21.19l-5.07-5.07L14.31,21H12.9l-2.83-7.07L3,11.1 V9.69l4.88-1.81L2.81,2.81l1.41-1.41l18.38,18.38L21.19,21.19z M14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89L14.57,14.57z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M20,20H4V8h16V20z\"></path><polygon points=\"13,10 11,10 11,13 8,13 8,15 11,15 11,18 13,18 13,15 16,15 16,13 13,13\"></polygon></g></g>" } } }, - "nightlife": { - "name": "nightlife", + "signpost": { + "name": "signpost", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M7.74,10.96L12,5H2l4.24,5.94v3.56H5V16h4v-1.5H7.74V10.96z M5.99,8L4.91,6.5h4.17L8.01,8H5.99z\"></path><path d=\"M13.5,5v6.21c-0.31-0.13-0.64-0.21-1-0.21c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V7h2V5H13.5 z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10.75,8H15l2-2.25L15,3.5h-4.25V2h-1.5v1.5H4V8h5.25v1.5H5l-2,2.25L5,14h4.25v4h1.5v-4H16V9.5h-5.25V8z M5.5,6.5V5h8.83 l0.67,0.75L14.33,6.5H5.5z M14.5,11v1.5H5.67l-0.67-0.75L5.67,11H14.5z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5z M10.1,9l1.4-2H4.49l1.4,2H10.1z M17,5h5v3h-3v9l0,0c0,1.66-1.34,3-3,3s-3-1.34-3-3 s1.34-3,3-3c0.35,0,0.69,0.06,1,0.17V5z\"></path></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13,10h5l3-3l-3-3h-5V2h-2v2H4v6h7v2H6l-3,3l3,3h5v4h2v-4h7v-6h-7V10z M6,6h11.17l1,1l-1,1H6V6z M18,16H6.83l-1-1l1-1H18 V16z\"></path></g>" } } }, - "not_listed_location": { - "name": "not_listed_location", + "park": { + "name": "park", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><path d=\"M13.82,10H15l-5-8l-5,8h1.18L3,15h5.5v3h3v-3H17L13.82,10z M5.73,13.5l3.18-5H7.71L10,4.83l2.29,3.67h-1.21l3.18,5H5.73z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.01,16c-0.27,0-0.52-0.1-0.71-0.29c-0.2-0.2-0.29-0.43-0.29-0.71c-0.01-0.55,0.43-0.99,0.98-1c0.01,0,0.01,0,0.02,0 c0.28,0,0.51,0.1,0.71,0.29c0.18,0.19,0.28,0.43,0.28,0.7s-0.1,0.51-0.29,0.71S12.28,16,12.01,16z M11.13,12.34 c0-0.45,0.1-0.84,0.29-1.16c0.19-0.33,0.53-0.7,1-1.12c0.28-0.25,0.48-0.47,0.61-0.66s0.19-0.4,0.19-0.64 c0-0.29-0.11-0.53-0.32-0.74c-0.21-0.2-0.5-0.3-0.85-0.3c-0.37,0-0.74,0.1-0.96,0.3c-0.21,0.2-0.4,0.45-0.4,0.98H9 c0-1.01,0.46-1.73,0.97-2.21C10.53,6.28,11.25,6,12,6c0.59,0,1.11,0.12,1.57,0.35s0.79,0.55,1.05,0.96S15,8.17,15,8.66 s-0.1,0.9-0.31,1.25S14.21,10.62,13.8,11c-0.32,0.3-0.53,0.56-0.65,0.77s-0.18,0.49-0.18,0.81V13h-1.85v-0.66H11.13z M18,10.2 C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2 c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M17,12h2L12,2L5.05,12H7l-3.9,6h6.92v4h3.95v-4H21L17,12z M6.79,16l3.9-6H8.88l3.13-4.5l3.15,4.5h-1.9l4,6H6.79z\"></path></g></g></g>" } } }, - "no_meals": { - "name": "no_meals", + "ev_station": { + "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 11v8H6V5h6v6zm6-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4l-4 7.5h2V18l4-7h-2z\"></path>" } } }, - "no_transfer": { - "name": "no_transfer", + "breakfast_dining": { + "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M18,6c0-1.66-1.34-3-3-3H5C3.34,3,2,4.34,2,6c0,1.3,0.84,2.4,2,2.82v6.68C4,16.33,4.67,17,5.5,17h9 c0.83,0,1.5-0.67,1.5-1.5l0-6.68C17.16,8.4,18,7.3,18,6z M15.5,7.4l-1,0.35l0,7.74h-9V7.76l-1-0.35c-0.6-0.21-1-0.78-1-1.4 c0-0.83,0.67-1.5,1.5-1.5h10c0.83,0,1.5,0.67,1.5,1.5C16.5,6.63,16.1,7.19,15.5,7.4z\"></path><path d=\"M10.71,8.29C10.51,8.1,10.26,8,10,8S9.49,8.1,9.29,8.29l-2,2c-0.39,0.39-0.39,1.02,0,1.41l2,2C9.49,13.9,9.74,14,10,14 c0.26,0,0.51-0.1,0.71-0.29l2-2c0.39-0.39,0.39-1.02,0-1.41L10.71,8.29z M10,12.29L8.71,11L10,9.71L11.29,11L10,12.29z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M8.5,13c0.83,0,1.5,0.67,1.5,1.5S9.33,16,8.5,16S7,15.33,7,14.5S7.67,13,8.5,13z M19.78,22.61l-1.64-1.64 C18.09,20.98,18.05,21,18,21h-1c-0.55,0-1-0.45-1-1v-1H8v1c0,0.55-0.45,1-1,1H6c-0.55,0-1-0.45-1-1v-1.78C4.39,17.67,4,16.88,4,16 V6.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M6,8.83V10h1.17L6,8.83z M14.17,17l-5-5H6v4c0,0.37,0.21,0.62,0.34,0.73 L6.63,17H14.17z M12,4c3.69,0,5.11,0.46,5.66,0.99H7.82l2,2H18V10h-5.17l2,2H18v3.17l1.81,1.81C19.92,16.67,20,16.35,20,16V6 c0-3.5-3.58-4-8-4C9.48,2,7.24,2.16,5.78,2.95l1.53,1.53C8.17,4.2,9.6,4,12,4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M18,3H6C3.79,3,2,4.79,2,7c0,1.48,0.81,2.75,2,3.45V19c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-8.55c1.19-0.69,2-1.97,2-3.45 C22,4.79,20.21,3,18,3z M19,8.72L18,9.3V19H6V9.31L5.01,8.73C4.38,8.35,4,7.71,4,7c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2 C20,7.71,19.62,8.36,19,8.72z\"></path><path d=\"M12.71,9.29C12.51,9.1,12.26,9,12,9s-0.51,0.1-0.71,0.29l-3,3c-0.39,0.39-0.39,1.02,0,1.41l3,3C11.49,16.9,11.74,17,12,17 s0.51-0.1,0.71-0.29l3-3c0.39-0.39,0.39-1.02,0-1.41L12.71,9.29z M12,14.58L10.41,13L12,11.41L13.59,13L12,14.58z\"></path></g></g>" } } }, - "park": { - "name": "park", + "handyman": { + "name": "handyman", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><path d=\"M13.82,10H15l-5-8l-5,8h1.18L3,15h5.5v3h3v-3H17L13.82,10z M5.73,13.5l3.18-5H7.71L10,4.83l2.29,3.67h-1.21l3.18,5H5.73z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16.71,14.59l-3.54-3.54h-1.41l-0.34-0.34l-0.71,0.71l0.34,0.34v1.41l3.54,3.54c0.39,0.39,1.02,0.39,1.41,0L16.71,16 C17.1,15.61,17.1,14.98,16.71,14.59z M15.29,16l-3.18-3.18l0.71-0.71L16,15.29L15.29,16z\"></path><path d=\"M12.57,8.14L12.57,8.14l0.88,0.88l1.06-1.06l1.41,1.41c0.78-0.78,0.78-2.05,0-2.83l-2.47-2.47l-0.74,0.74l0-1.49 l-0.49-0.49L9.74,5.31l0.49,0.49l1.49,0l-0.74,0.74l0.88,0.88L10,9.29L7.51,6.81l0.15-1.26L5.36,3.23L3.23,5.36l2.31,2.31 l1.26-0.15L9.29,10l-1.05,1.05H6.83l-3.54,3.54c-0.39,0.39-0.39,1.02,0,1.41L4,16.71c0.39,0.39,1.02,0.39,1.41,0l3.54-3.54v-1.41 L12.57,8.14z M4.71,16L4,15.29l3.18-3.18l0.71,0.71L4.71,16z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M17,12h2L12,2L5.05,12H7l-3.9,6h6.92v4h3.95v-4H21L17,12z M6.79,16l3.9-6H8.88l3.13-4.5l3.15,4.5h-1.9l4,6H6.79z\"></path></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z M18.84,19.59l-4.24-4.24l0.71-0.71l4.24,4.24L18.84,19.59z\"></path></g><g><path d=\"M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z M9.36,15.34 l-4.24,4.24l-0.71-0.71l4.24-4.24l0,0L9.36,15.34L9.36,15.34z\"></path></g></g></g>" } } }, - "pedal_bike": { - "name": "pedal_bike", + "forest": { + "name": "forest", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M14.82,9l-1.58-4.34C13.1,4.26,12.72,4,12.3,4H10v1h2.3l1.46,4H8.75L8.38,8H10V7H6v1h1.32l1.46,4H7.95 C7.7,10.19,6.13,8.86,4.2,9.01c-1.64,0.13-3.01,1.46-3.18,3.1C0.8,14.25,2.41,16,4.5,16c1.79,0,3.21-1.29,3.45-3h4.1 c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,10.75,17.59,9,15.5,9H14.82z M9.11,10h3.92 c-0.53,0.52-0.88,1.22-0.98,2H9.84L9.11,10z M4.5,15C3.1,15,2,13.9,2,12.5S3.1,10,4.5,10c1.23,0,2.23,0.85,2.45,2H4v1h2.95 C6.73,14.15,5.73,15,4.5,15z M15.5,15c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8 C15.3,10.02,15.4,10,15.5,10c1.4,0,2.5,1.1,2.5,2.5S16.9,15,15.5,15z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.82,10H17l-5-8l-2,3.2L8,2l-5,8h1.18L1,15h5.5v3h3v-3h1v3h3v-3H19L15.82,10z M3.73,13.5l3.18-5H5.71L8,4.83l2.29,3.67 H9.09l3.18,5H3.73z M14.05,13.5L11.82,10H13l-2.12-3.38L12,4.83l2.29,3.67h-1.21l3.18,5H14.05z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M24,18l-3.86-6H22L15,2l-3,4.29L9,2L2,12h1.86L0,18h7v4h4v-4h2v4h4v-4H24z M15,5.49L18.16,10h-1.68l3.86,6h-3.62l-2.57-4 H16l-2.78-3.97L15,5.49z M3.66,16l3.86-6H5.84L9,5.49L12.16,10h-1.68l3.86,6H3.66z\"></path></g></g>" } } }, - "person_pin": { - "name": "person_pin", + "place": { + "name": "place", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V17h12v-1.42zM8.48 15c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-1.8C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z\"></path>" } } }, - "person_pin_circle": { - "name": "person_pin_circle", + "subway": { + "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 11c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V13c0-1.33 2.67-2 4-2zm0-1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 .2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zM9.17 20l1.5-1.5h2.66l1.5 1.5H9.17zm-2.16-6V9h10v5h-10zm9.49 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-8-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM20 20h-3.5v-.38l-1.15-1.16c1.49-.17 2.65-1.42 2.65-2.96V9c0-2.63-3-3-6-3s-6 .37-6 3v6.5c0 1.54 1.16 2.79 2.65 2.96L7.5 19.62V20H4V8.86c0-2 1.01-3.45 2.93-4.2C8.41 4.08 10.32 4 12 4s3.59.08 5.07.66c1.92.75 2.93 2.2 2.93 4.2V20z\"></path>" } } }, - "pest_control": { - "name": "pest_control", + "local_play": { + "name": "local_play", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16,12v-1h-2.04c-0.04-0.38-0.11-0.74-0.22-1.08l1.71-0.99l-0.5-0.87L13.33,9c-0.24-0.4-0.54-0.74-0.87-1.03 c0.07-0.39,0.13-1.19-0.48-1.99l1.24-1.24l-0.71-0.71l-1.29,1.29c-0.41-0.23-1.35-0.61-2.43,0L7.49,4.04L6.78,4.74l1.24,1.24 C7.41,6.78,7.47,7.58,7.55,7.97C7.21,8.26,6.91,8.6,6.67,9L5.05,8.07l-0.5,0.87l1.71,0.99c-0.11,0.34-0.18,0.7-0.22,1.08H4v1h2.04 c0.04,0.38,0.11,0.74,0.22,1.08l-1.71,0.99l0.5,0.87L6.67,14c0.72,1.21,1.94,2,3.33,2s2.61-0.8,3.33-2l1.62,0.94l0.5-0.87 l-1.71-0.99c0.11-0.34,0.18-0.7,0.22-1.08H16z M10,6c0.77,0,1.4,0.58,1.48,1.33C11.02,7.12,10.52,7,10,7S8.98,7.12,8.52,7.33 C8.6,6.58,9.23,6,10,6z M10,15c-1.65,0-3-1.57-3-3.5C7,9.57,8.35,8,10,8s3,1.57,3,3.5C13,13.43,11.65,15,10,15z\"></path><g><rect height=\"4\" width=\"1\" x=\"9.5\" y=\"9.5\"></rect></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 c0.1-0.56,0.2-1.69-0.58-2.89L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17l1.65,1.65 c-0.78,1.2-0.68,2.34-0.58,2.89C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07 c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49 c0.1-0.37,0.17-0.75,0.22-1.14H21z M12,6c0.88,0,1.62,0.57,1.88,1.36C13.29,7.13,12.66,7,12,7s-1.29,0.13-1.88,0.36 C10.38,6.57,11.12,6,12,6z M12,19c-2.21,0-4-2.24-4-5s1.79-5,4-5s4,2.24,4,5S14.21,19,12,19z\"></path><rect height=\"6\" width=\"2\" x=\"11\" y=\"11\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z\"></path>" } } }, - "pest_control_rodent": { - "name": "pest_control_rodent", + "person_pin_circle": { + "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16.32,12.38l-1.34-1.21c0.13-2.27-2.05-3.63-3.93-3C10.7,8.07,10.34,8,9.97,8c-2.02,0-3.67,1.52-3.92,3.48 C4.9,11.38,4,10.42,4,9.25C4,8.01,5.01,7,6.25,7H8.5C9.33,7,10,6.33,10,5.5S9.33,4,8.5,4h-1C7.22,4,7,4.22,7,4.5 C7,4.78,7.22,5,7.5,5h1C8.78,5,9,5.22,9,5.5C9,5.78,8.78,6,8.5,6H6.25C4.46,6,3,7.46,3,9.25c0,1.72,1.35,3.12,3.04,3.23 C6.27,14.46,7.93,16,9.97,16h4.95C16.83,16,17.71,13.65,16.32,12.38z M14.92,15H9.97C8.33,15,7,13.67,7,12.03 c0-2.47,2.24-2.98,2.76-3.01c-1.04,1.18-1.01,2.97,0.12,4.1h0l0.71-0.71C9.31,11.14,10.24,9,12,9l0,0c0,0,0,0,0,0 c0.47,0,2.09,0.2,1.96,2.59l1.69,1.53C16.38,13.79,15.9,15,14.92,15z\"></path><circle cx=\"13.55\" cy=\"13.45\" r=\".75\"></circle></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"17\" cy=\"17\" r=\"1\"></circle><path d=\"M20.86,14.97l-0.93-0.84c0.48-3.45-2.87-6.04-6.05-4.82C13.3,9.11,12.66,9,12,9c-4.26,0-5.65,3.58-5.89,4.85 C4.89,13.47,4,12.35,4,11c0-1.66,1.34-3,3-3h2.5C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6H7c-2.76,0-5,2.24-5,5c0,2.44,1.76,4.47,4.07,4.91 C6.51,18.79,8.99,21,12,21h6.53C21.64,21,23.23,17.11,20.86,14.97z M18.53,19H12c-1.21,0-2.34-0.54-3.11-1.48 c-0.78-0.95-1.06-2.16-0.8-3.41c0.31-1.48,1.51-2.69,2.99-3.01c0.22-0.05,0.45-0.06,0.67-0.07C11.28,11.74,11,12.58,11,13.5 c0,1.24,0.5,2.37,1.32,3.18l1.41-1.41C13.28,14.82,13,14.19,13,13.5c0-1.42,1.2-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5 c0,0.46-0.13,0.88-0.35,1.25l1.87,1.7c0.31,0.28,0.48,0.67,0.48,1.09C20,18.34,19.34,19,18.53,19z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 11c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V13c0-1.33 2.67-2 4-2zm0-1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 .2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z\"></path>" } } }, - "pin_drop": { - "name": "pin_drop", + "wine_bar": { + "name": "wine_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 4c1.93 0 5 1.4 5 5.15 0 2.16-1.72 4.67-5 7.32-3.28-2.65-5-5.17-5-7.32C7 5.4 10.07 4 12 4m0-2C8.73 2 5 4.46 5 9.15c0 3.12 2.33 6.41 7 9.85 4.67-3.44 7-6.73 7-9.85C19 4.46 15.27 2 12 2z\"></path><path d=\"M12 7c-1.1 0-2 .9-2 2s.9 2 2 2a2 2 0 1 0 0-4zM5 20h14v2H5v-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M6,3l0,6c0,2.97,2.16,5.43,5,5.91V19H8v2h8v-2h-3v-4.09c2.84-0.48,5-2.94,5-5.91V3H6z M12,13c-1.86,0-3.41-1.28-3.86-3h7.72 C15.41,11.72,13.86,13,12,13z M16,8H8l0-3h8L16,8z\"></path>" } } }, - "place": { - "name": "place", + "bakery_dining": { + "name": "bakery_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M16.93,9.12c0.12-0.3,0.09-0.23,0.13-0.35c0.24-0.96-0.27-1.97-1.19-2.34l-1.66-0.67c-0.39-0.16-0.8-0.18-1.2-0.08 c-0.09-0.29-0.23-0.56-0.44-0.78c-0.38-0.41-0.91-0.64-1.46-0.64H8.88c-0.55,0-1.09,0.23-1.46,0.64c-0.21,0.23-0.35,0.5-0.44,0.79 C6.59,5.58,6.17,5.6,5.78,5.76L4.12,6.43C3.21,6.8,2.7,7.81,2.94,8.77l0.14,0.35C1.06,13.03,1,13,1,13.66 c0,1.58,1.65,2.56,3.01,1.87l1.22-0.61h9.54l1.22,0.61c1.38,0.7,3.01-0.31,3.01-1.87C19,12.99,18.93,13.01,16.93,9.12z M3.34,14.19c-0.49,0.25-0.84-0.22-0.84-0.53c0-0.2-0.05-0.05,1.31-2.69l0.98,2.48L3.34,14.19z M6.38,13.41l-2-5.04 c-0.04-0.23,0.09-0.46,0.3-0.55l1.66-0.67c0.31-0.12,0.64,0.09,0.66,0.42l0.52,5.84H6.38z M10.96,13.41H9.04L8.39,6.29 C8.37,5.98,8.61,5.75,8.88,5.75h2.24c0.27,0,0.51,0.23,0.49,0.54L10.96,13.41z M13.62,13.41h-1.15l0.52-5.84 c0.03-0.33,0.36-0.54,0.66-0.42l1.66,0.67c0.22,0.09,0.34,0.32,0.3,0.55L13.62,13.41z M16.66,14.19l-1.45-0.73l0.98-2.48l1.24,2.4 C17.7,13.89,17.17,14.44,16.66,14.19z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-1.8C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M20.5,10.94c0.13-0.32,0.1-0.23,0.15-0.39c0.3-1.21-0.34-2.47-1.5-2.93l-2.01-0.8c-0.46-0.18-0.95-0.21-1.41-0.12 c-0.11-0.33-0.29-0.63-0.52-0.89C14.73,5.29,14.06,5,13.36,5h-2.71C9.94,5,9.27,5.29,8.8,5.81C8.56,6.07,8.38,6.37,8.27,6.69 C7.81,6.6,7.32,6.63,6.86,6.81l-2.01,0.8c-1.16,0.46-1.8,1.72-1.5,2.93l0.15,0.38C1.1,15.55,1,15.55,1,16.38 c0,0.91,0.46,1.74,1.24,2.22c1.42,0.88,2.49,0.14,4-0.61h11.53c1.52,0.76,1.86,1.01,2.63,1.01c1,0,2.61-0.77,2.61-2.61 C23,15.54,22.88,15.51,20.5,10.94z M20.12,16.93l-1.68-0.84l1.08-2.7l1.41,2.71C21.21,16.63,20.64,17.19,20.12,16.93z M15.09,15.99l0.62-6.9c0.03-0.33,0.37-0.54,0.68-0.42l2.01,0.8c0.22,0.09,0.34,0.31,0.31,0.54l-2.4,5.98H15.09z M7.68,15.99 l-2.4-5.98C5.25,9.78,5.37,9.56,5.59,9.47l2.01-0.8c0.31-0.12,0.65,0.08,0.68,0.42l0.62,6.9H7.68z M3.07,16.1l1.41-2.72l1.08,2.71 l-1.68,0.84C3.36,17.19,2.79,16.63,3.07,16.1z M10.15,7.54c-0.03-0.31,0.23-0.54,0.5-0.54h2.71c0.27,0,0.53,0.23,0.5,0.54 l-0.77,8.45h-2.17L10.15,7.54z\"></path></g></g>" } } }, - "plumbing": { - "name": "plumbing", + "u_turn_left": { + "name": "u_turn_left", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M13.29,4.45l2.83,2.83l0,0c0.78-0.78,0.78-2.05,0-2.83l-2.12-2.12c-0.39-0.39-1.02-0.39-1.41,0L9.75,5.15l1.41,1.41 L13.29,4.45z\"></path><path d=\"M4.8,11.52L4.8,11.52c0.39,0.39,1.02,0.39,1.41,0L8.34,9.4L6.92,7.98L4.8,10.1C4.41,10.49,4.41,11.13,4.8,11.52z\"></path><path d=\"M12.58,6.57l-1.41,1.41L8.34,5.15c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L9.75,9.4L9.04,10.1 l-5.3,5.3c-0.59,0.59-0.59,1.54,0,2.12l0,0c0.59,0.59,1.54,0.59,2.12,0l7.42-7.42l0,0c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L12.58,6.57z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M5.5,7.5C5.5,5.01,7.51,3,10,3s4.5,2.01,4.5,4.5V16H13V7.5c0-1.66-1.34-3-3-3s-3,1.34-3,3l0,2.63l1.19-1.19L9.25,10l-3,3 l-3-3l1.06-1.06l1.19,1.19L5.5,7.5z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z\"></path><path d=\"M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z\"></path><path d=\"M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18,9v12h-2V9c0-2.21-1.79-4-4-4S8,6.79,8,9v4.17l1.59-1.59L11,13l-4,4l-4-4l1.41-1.41L6,13.17V9c0-3.31,2.69-6,6-6 S18,5.69,18,9z\"></path></g>" } } }, - "railway_alert": { - "name": "railway_alert", + "miscellaneous_services": { + "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M11.69,11.36l1-1.73c0.06-0.11,0.04-0.24-0.06-0.32l-1.06-0.83C11.6,8.33,11.61,8.16,11.61,8c0-0.16-0.01-0.33-0.04-0.49 l1.06-0.83c0.09-0.08,0.12-0.21,0.06-0.32l-1-1.73c-0.06-0.11-0.19-0.15-0.31-0.11l-1.24,0.5C9.88,4.82,9.6,4.66,9.3,4.53 L9.11,3.21C9.09,3.09,8.98,3,8.86,3h-2C6.74,3,6.63,3.09,6.61,3.21L6.42,4.54c-0.3,0.13-0.59,0.29-0.84,0.49l-1.24-0.5 c-0.11-0.04-0.24,0-0.31,0.11l-1,1.73C2.97,6.47,3,6.61,3.09,6.69l1.06,0.83C4.12,7.67,4.11,7.84,4.11,8 c0,0.16,0.01,0.33,0.04,0.49L3.09,9.32C3,9.4,2.97,9.54,3.03,9.64l1,1.73c0.06,0.11,0.19,0.15,0.31,0.11l1.24-0.5 c0.26,0.2,0.54,0.36,0.84,0.49l0.19,1.32C6.63,12.91,6.74,13,6.86,13h2c0.12,0,0.23-0.09,0.25-0.21l0.19-1.32 c0.3-0.13,0.59-0.29,0.84-0.49l1.24,0.5C11.5,11.51,11.62,11.47,11.69,11.36z M7.86,9.5c-0.83,0-1.5-0.68-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5c0.82,0,1.5,0.67,1.5,1.5C9.36,8.82,8.68,9.5,7.86,9.5z\"></path><path d=\"M16.81,14.79l-0.64-0.5c0.01-0.1,0.02-0.19,0.02-0.29c0-0.1-0.01-0.2-0.02-0.29l0.64-0.5c0.05-0.05,0.07-0.13,0.04-0.19 l-0.6-1.04c-0.04-0.07-0.11-0.09-0.19-0.07l-0.74,0.3c-0.16-0.12-0.32-0.22-0.51-0.29l-0.11-0.79C14.68,11.05,14.61,11,14.54,11 h-1.2c-0.07,0-0.14,0.05-0.15,0.13l-0.11,0.79c-0.18,0.08-0.35,0.17-0.51,0.29l-0.74-0.3c-0.07-0.02-0.14,0-0.19,0.07l-0.6,1.04 c-0.04,0.07-0.02,0.14,0.04,0.19l0.64,0.5c-0.01,0.1-0.02,0.19-0.02,0.29c0,0.1,0.01,0.2,0.02,0.29l-0.64,0.5 c-0.05,0.05-0.07,0.13-0.04,0.19l0.6,1.04c0.04,0.07,0.11,0.09,0.19,0.07l0.74-0.3c0.16,0.12,0.32,0.22,0.51,0.29l0.11,0.79 C13.2,16.95,13.26,17,13.34,17h1.2c0.07,0,0.14-0.05,0.15-0.13l0.11-0.79c0.18-0.08,0.35-0.17,0.5-0.29l0.75,0.3 c0.07,0.02,0.14,0,0.19-0.07l0.6-1.04C16.88,14.92,16.86,14.84,16.81,14.79z M14,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 c0.55,0,1,0.45,1,1C15,14.55,14.55,15,14,15z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><circle cx=\"10\" cy=\"15.5\" r=\"1.5\"></circle></g><g><path d=\"M4,11V8h7.29C11.1,7.37,11,6.7,11,6H4.43c0.9-0.77,3.28-1.08,6.65-0.98c0.1-0.7,0.3-1.37,0.59-1.99C2.97,2.67,2,5.02,2,7 v9.5C2,18.43,3.57,20,5.5,20L4,21v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V13c-1.91,0-3.63-0.76-4.89-2H4z M16,16.5 c0,0.83-0.67,1.5-1.5,1.5h-9C4.67,18,4,17.33,4,16.5V13h12V16.5z\"></path></g><g><path d=\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\"></path></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z\"></path><path d=\"M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z\"></path></g></g>" } } }, - "ramen_dining": { - "name": "ramen_dining", + "local_phone": { + "name": "local_phone", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><path d=\"M18,3.01V2L4,3.54V9H2c0,3.36,2.07,6.23,5,7.41V18h6v-1.59c2.93-1.19,5-4.06,5-7.41H9V7h9V6H9V3.99L18,3.01z M7,4.21L8,4.1 V6H7V4.21z M7,7h1v2H7V7z M5,4.43l1-0.11V6H5V4.43z M5,7h1v2H5V7z M16.33,10.5c-0.48,2.02-1.9,3.72-3.89,4.52L11.5,15.4v1.01v0.09 h-3v-0.09V15.4l-0.94-0.38c-1.99-0.81-3.41-2.5-3.89-4.52H16.33z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.89V20h-4v-1.11l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39H19.66 M22,2 L4,3.99V12H2c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25H10.5V8H22V6.5H10.5V4.78L22,3.51V2L22,2z M8,6.5V5.06 l1-0.11V6.5H8L8,6.5z M5.5,6.5V5.34l1-0.11V6.5H5.5L5.5,6.5z M8,12V8h1v4H8L8,12z M5.5,12V8h1v4H5.5L5.5,12z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z\"></path>" } } }, - "rate_review": { - "name": "rate_review", + "layers_clear": { + "name": "layers_clear", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9.5-2H18v-2h-5.5zm3.86-5.87c.2-.2.2-.51 0-.71l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l5.89-5.87z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4.53L17.74 9l-1.89 1.47 1.43 1.42L21 9l-9-7-2.59 2.02 1.42 1.42zm9 9.54l-1.63-1.27-.67.52 1.43 1.43zM3.41.86L2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41L3.41.86zM12 13.47L6.26 9l1.39-1.08 5.02 5.02-.67.53z\"></path>" } } }, - "restaurant": { - "name": "restaurant", + "local_movies": { + "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 5v14h-4V5h4m6-2h-2v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3zm-4 6V7h2v2h-2zM6 9V7h2v2H6zm10 4v-2h2v2h-2zM6 13v-2h2v2H6zm10 4v-2h2v2h-2zM6 17v-2h2v2H6z\"></path>" } } }, - "restaurant_menu": { - "name": "restaurant_menu", + "local_grocery_store": { + "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-1.45-5c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6z\"></path>" } } }, - "run_circle": { - "name": "run_circle", + "mosque": { + "name": "mosque", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S13.31,16,10,16z\"></path><path d=\"M11.39,8.15c-0.23-0.43-0.76-0.6-1.22-0.44L7.5,8.67v1.95h1V9.37l0.92-0.33L8.8,12.16l-2.19-0.45l-0.2,0.98l3.17,0.65 L10,11.21l1,0.99V15h1v-3.21l-1.39-1.38l0.21-1.19c0.81,1.03,2.08,1.4,2.67,1.4v-1C13.16,9.62,12.09,9.46,11.39,8.15z\"></path><circle cx=\"11\" cy=\"6\" r=\"1\"></circle></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M18.25,3c0,0-1.5,1.67-1.5,2.5c0,0.55,0.3,1.03,0.75,1.29V11H16V9.5C16,8.67,15.33,8,14.5,8h-0.14 C14.76,7.43,15,6.74,15,5.99c0-1.23-0.65-2.38-1.71-3.01L10,1L6.71,2.98C5.65,3.61,5,4.76,5,5.99C5,6.74,5.24,7.43,5.64,8H5.5 C4.67,8,4,8.67,4,9.5V11H2.5V6.79C2.95,6.53,3.25,6.05,3.25,5.5c0-0.83-1.5-2.5-1.5-2.5s-1.5,1.67-1.5,2.5 c0,0.55,0.3,1.03,0.75,1.29V17h8v-3.5c0-0.55,0.45-1,1-1s1,0.45,1,1V17h8V6.79c0.45-0.26,0.75-0.74,0.75-1.29 C19.75,4.67,18.25,3,18.25,3z M7.48,4.26L10,2.75l2.52,1.51c0.6,0.36,0.98,1.02,0.98,1.73c0,1.1-0.88,1.99-1.97,2.01H8.48 C7.38,7.98,6.5,7.09,6.5,5.99C6.5,5.29,6.87,4.62,7.48,4.26z M17.5,15.5h-5v-2c0-1.38-1.12-2.5-2.5-2.5s-2.5,1.12-2.5,2.5v2h-5v-3 h3v-3h9v3h3V15.5z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\"></path><path d=\"M13.54,8.97c-0.23-0.47-0.76-0.71-1.26-0.53L9,9.65V12h1v-1.65l1.54-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77 l0.52-2.64L13,14.42V18h1v-3.97l-1.32-1.44l0.41-2.35C13.99,11.46,15.3,12,16,12v-1C15.59,11,14.37,10.67,13.54,8.97z\"></path><circle cx=\"13.5\" cy=\"7\" r=\"1\"></circle></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M24,7c0-1.1-2-3-2-3s-2,1.9-2,3c0,0.74,0.4,1.38,1,1.72V13h-2v-2c0-0.95-0.66-1.74-1.55-1.94C17.79,8.48,18,7.81,18,7.09 c0-1.31-0.65-2.53-1.74-3.25L12,1L7.74,3.84C6.65,4.56,6,5.78,6,7.09c0,0.72,0.21,1.39,0.55,1.96C5.66,9.26,5,10.05,5,11v2H3V8.72 C3.6,8.38,4,7.74,4,7c0-1.1-2-3-2-3S0,5.9,0,7c0,0.74,0.4,1.38,1,1.72V21h10v-4c0-0.55,0.45-1,1-1s1,0.45,1,1v4h10V8.72 C23.6,8.38,24,7.74,24,7z M8.85,5.5L12,3.4l3.15,2.1C15.68,5.86,16,6.45,16,7.09C16,8.14,15.14,9,14.09,9H9.91 C8.86,9,8,8.14,8,7.09C8,6.45,8.32,5.86,8.85,5.5z M21,19h-6v-2c0-1.65-1.35-3-3-3c-1.65,0-3,1.35-3,3v2H3v-4h4v-4h10v4h4V19z\"></path></g>" } } }, - "sailing": { - "name": "sailing", + "add_road": { + "name": "add_road", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.5,11.5V2L3,11.5H9.5z M8,10H5.84L8,6.85V10z M17,11.5C17,5.5,12.03,1,10.5,1c0,0,0.8,2.5,0.8,5.5s-0.8,5-0.8,5H17z M12.68,4.35c1.15,1.34,2.33,3.32,2.7,5.65h-2.92c0.18-0.92,0.34-2.12,0.34-3.5C12.8,5.74,12.75,5.02,12.68,4.35z M17.5,17.5H18 l0,1.5h-0.5c-0.86,0-1.71-0.2-2.5-0.6c-1.58,0.8-3.43,0.8-5,0c-1.58,0.8-3.42,0.8-5,0C4.21,18.8,3.36,19,2.5,19H2v-1.5h0.5 c0.87,0,1.74-0.33,2.5-1c1.53,1.33,3.47,1.33,5,0c1.53,1.33,3.48,1.33,5,0C15.76,17.17,16.63,17.5,17.5,17.5z M16.08,15.55 c-0.41-0.27-0.78-0.64-1.08-1.05c-0.61,0.84-1.5,1.5-2.5,1.5s-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16S5.61,15.34,5,14.5 c-0.3,0.41-0.67,0.78-1.08,1.05C2.94,14.83,2.24,13.76,2,12.5h16C17.76,13.76,17.06,14.83,16.08,15.55z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"12\" width=\"1\" x=\"4\" y=\"4\"></rect><rect height=\"7\" width=\"1\" x=\"15\" y=\"4\"></rect><rect height=\"2\" width=\"1\" x=\"9.5\" y=\"4\"></rect><rect height=\"2\" width=\"1\" x=\"9.5\" y=\"14\"></rect><polygon points=\"18,15 16,15 16,13 15,13 15,15 13,15 13,16 15,16 15,18 16,18 16,16 18,16\"></polygon><rect height=\"2\" width=\"1\" x=\"9.5\" y=\"9\"></rect></g></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,13.5V2L3,13.5H11z M9,11.5H6.83L9,8.38V11.5z M21,13.5C21,6.5,14.5,1,12.5,1c0,0,1,3,1,6.5s-1,6-1,6H21z M15.38,5.24 c1.42,1.52,2.88,3.72,3.41,6.26h-3.68c0.21-1.1,0.39-2.46,0.39-4C15.5,6.71,15.45,5.95,15.38,5.24z M22,15H2 c0.31,1.53,1.16,2.84,2.33,3.73C4.98,18.46,5.55,18.01,6,17.5C6.73,18.34,7.8,19,9,19s2.27-0.66,3-1.5c0.73,0.84,1.8,1.5,3,1.5 s2.26-0.66,3-1.5c0.45,0.51,1.02,0.96,1.67,1.23C20.84,17.84,21.69,16.53,22,15z M22,23v-2h-1c-1.04,0-2.08-0.35-3-1 c-1.83,1.3-4.17,1.3-6,0c-1.83,1.3-4.17,1.3-6,0c-0.91,0.65-1.96,1-3,1H2l0,2h1c1.03,0,2.05-0.25,3-0.75c1.89,1,4.11,1,6,0 c1.89,1,4.11,1,6,0h0c0.95,0.5,1.97,0.75,3,0.75H22z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18\"></polygon><rect height=\"9\" width=\"2\" x=\"18\" y=\"4\"></rect><rect height=\"16\" width=\"2\" x=\"4\" y=\"4\"></rect><rect height=\"4\" width=\"2\" x=\"11\" y=\"4\"></rect><rect height=\"4\" width=\"2\" x=\"11\" y=\"10\"></rect><rect height=\"4\" width=\"2\" x=\"11\" y=\"16\"></rect></g></g>" } } }, - "satellite": { - "name": "satellite", + "set_meal": { + "name": "set_meal", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM8.57 6H6v2.58c1.42 0 2.57-1.16 2.57-2.58zM12 6h-1.71c0 2.36-1.92 4.29-4.29 4.29V12c3.32 0 6-2.69 6-6zm2.14 5.86l-3 3.87L9 13.15 6 17h12z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M23,13V4c0-1.1-0.9-2-2-2H3 C1.9,2,1,2.9,1,4v9c0,1.1,0.9,2,2,2h18C22.1,15,23,14.1,23,13z M21,13H3V4h18V13z M20,6c-1.68,0-3.04,0.98-3.21,2.23 C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z\"></path>" } } }, - "set_meal": { - "name": "set_meal", + "add_location": { + "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M23,13V4c0-1.1-0.9-2-2-2H3 C1.9,2,1,2.9,1,4v9c0,1.1,0.9,2,2,2h18C22.1,15,23,14.1,23,13z M21,13H3V4h18V13z M20,6c-1.68,0-3.04,0.98-3.21,2.23 C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><g><path d=\"M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2 c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z\"></path></g></g></g></g>" } } }, - "snowmobile": { - "name": "snowmobile", + "stadium": { + "name": "stadium", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18.5,14.5c0,0.55-0.45,1-1,1l-2.22-2.19C16.87,12.96,18,12.17,18,11c0-0.5-6.5-6.5-6.5-6.5H9V6h1.91l0.84,0.78L9,8.5L1.5,8 L0,11l4.32,1.27l-3.53,1.91C-0.58,14.92-0.06,17,1.5,17h5c1.93,0,3.5-1.57,3.5-3.5h3.33l2.05,2H12.5V17h5c1.38,0,2.5-1.12,2.5-2.5 H18.5z M6.5,15.5h-5l4.87-2.63L8.5,13.5C8.5,14.6,7.6,15.5,6.5,15.5z M13,12H8.7l-6.56-1.93L2.4,9.56L9.35,10l3.52-2.16 c0,0,3.38,3.22,3.38,3.32C16.25,11.16,16.07,12,13,12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M6,4.5L3,6V3L6,4.5z M15,3v3l3-1.5L15,3z M9,2v3l3-1.5L9,2z M18,8.25c0,0,0,5.87,0,7.25c0,1.27-3.05,2.35-7,2.5v-3.5H9V18 c-3.95-0.15-7-1.23-7-2.5c0-0.99,0-7.25,0-7.25C2,7.01,5.58,6,10,6S18,7.01,18,8.25z M4.4,8.3C5.51,8.65,7.42,9,10,9 s4.49-0.35,5.6-0.7c0-0.21-2.38-0.8-5.6-0.8S4.4,8.09,4.4,8.3z M16.5,9.56c-1.45,0.57-3.82,0.94-6.5,0.94 c-2.68,0-5.05-0.37-6.5-0.94v5.7c0.43,0.35,1.82,0.88,4,1.13V13h5v3.39c2.18-0.24,3.57-0.78,4-1.13V9.56z\"></path></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,17c0,0.55-0.45,1-1,1h-0.17l-2.2-2.2C20.58,15.37,22,14.4,22,13c0-1-8-8-8-8h-3v2h2.25l0.8,0.72L11,10L2,9l-2,4 l4.54,1.36l-3.49,1.88C-0.77,17.22-0.07,20,2,20h6c2.21,0,4-1.79,4-4h4l2,2h-3v2h6c1.66,0,3-1.34,3-3H22z M8,18H2l5.25-2.83L10,16 C10,17.1,9.11,18,8,18z M17,14h-6.7l-7.45-2.23l0.31-0.62L11.6,12l3.93-2.94c0,0,3.77,3.44,4.27,4.14C19.8,13.2,18.7,14,17,14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M7,5L3,7V3L7,5z M18,3v4l4-2L18,3z M11,2v4l4-2L11,2z M13,18h-2l0,4c-5.05-0.15-9-1.44-9-3v-9c0-1.66,4.48-3,10-3 s10,1.34,10,3v9c0,1.56-3.95,2.85-9,3L13,18z M5,10.04C6.38,10.53,8.77,11,12,11s5.62-0.47,7-0.96C19,9.86,16.22,9,12,9 S5,9.86,5,10.04z M20,11.8c-1.82,0.73-4.73,1.2-8,1.2s-6.18-0.47-8-1.2v6.78c0.61,0.41,2.36,1.01,5,1.28V16h6v3.86 c2.64-0.27,4.39-0.87,5-1.28V11.8z\"></path></g>" } } }, - "store_mall_directory": { - "name": "store_mall_directory", + "zoom_in_map": { + "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M5.44,6.5L3,4.06L4.06,3L6.5,5.44V4H8v4H4V6.5H5.44z M16,8V6.5h-1.44L17,4.06L15.94,3L13.5,5.44V4H12v4H16z M4.06,17 l2.44-2.44V16H8v-4H4v1.5h1.44L3,15.94L4.06,17z M13.5,14.56L15.94,17L17,15.94l-2.44-2.44H16V12h-4v4h1.5V14.56z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.36 9l.6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M9,9l0-6L7,3l0,2.59L3.91,2.5L2.5,3.91L5.59,7L3,7l0,2L9,9z M21,9V7l-2.59,0l3.09-3.09L20.09,2.5L17,5.59V3l-2,0l0,6L21,9z M3,15l0,2h2.59L2.5,20.09l1.41,1.41L7,18.41L7,21h2l0-6L3,15z M15,15l0,6h2v-2.59l3.09,3.09l1.41-1.41L18.41,17H21v-2L15,15z\"></path></g>" } } }, - "streetview": { - "name": "streetview", + "map": { + "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z\"></path><circle cx=\"18\" cy=\"6\" r=\"5\"></circle><path d=\"M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM10 5.47l4 1.4v11.66l-4-1.4V5.47zm-5 .99l3-1.01v11.7l-3 1.16V6.46zm14 11.08l-3 1.01V6.86l3-1.16v11.84z\"></path>" } } }, - "subway": { - "name": "subway", + "directions_bus_filled": { + "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zM9.17 20l1.5-1.5h2.66l1.5 1.5H9.17zm-2.16-6V9h10v5h-10zm9.49 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-8-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM20 20h-3.5v-.38l-1.15-1.16c1.49-.17 2.65-1.42 2.65-2.96V9c0-2.63-3-3-6-3s-6 .37-6 3v6.5c0 1.54 1.16 2.79 2.65 2.96L7.5 19.62V20H4V8.86c0-2 1.01-3.45 2.93-4.2C8.41 4.08 10.32 4 12 4s3.59.08 5.07.66c1.92.75 2.93 2.2 2.93 4.2V20z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g enable-background=\"new\"><path d=\"M12,2C8,2,4,2.5,4,6v9.5c0,0.95,0.38,1.81,1,2.44V20c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h8v1c0,0.55,0.45,1,1,1h1 c0.55,0,1-0.45,1-1v-2.06c0.62-0.63,1-1.49,1-2.44V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H6.43 C7.03,4.48,8.48,4,12,4z M18,15c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2v-3h12V15z M18,10H6V7h12V10z\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle></g></g>" } } }, - "takeout_dining": { - "name": "takeout_dining", + "local_see": { + "name": "local_see", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><path d=\"M17.5,6.56L16.44,5.5l-1.49,1.49L15,6l-3-3H8L5,6l0.05,0.99L3.56,5.5L2.5,6.56l2.66,2.66L5.5,16h9l0.34-6.78L17.5,6.56z M8.62,4.5h2.76l2.09,2.09L13.42,7.5H6.58L6.53,6.59L8.62,4.5z M6.93,14.5L6.65,9h6.7l-0.28,5.5H6.93z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M7.79,18l-0.51-7h9.46l-0.51,7H7.79z M9.83,5h4.33l2.8,2.73L16.87,9H7.12L7.03,7.73L9.83,5z M22,7.46l-1.41-1.41L19,7.63 l0.03-0.56L14.98,3H9.02L4.97,7.07L5,7.57L3.41,6.01L2,7.44l3.23,3.11L5.93,20h12.14l0.7-9.44L22,7.46z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.2c-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2z\"></path>" } } }, - "taxi_alert": { - "name": "taxi_alert", + "local_activity": { + "name": "local_activity", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><circle cx=\"6.5\" cy=\"15.5\" r=\"1.5\"></circle></g><g><circle cx=\"15.5\" cy=\"15.5\" r=\"1.5\"></circle></g><g><path d=\"M18,13v5H4v-5H18c-1.91,0-3.63-0.76-4.89-2H4.81l1.04-3h5.44C11.1,7.37,11,6.7,11,6s0.1-1.37,0.29-2H8v2H5.5 C4.84,6,4.29,6.42,4.08,7.01L2,13v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8 l-0.09-0.27C19.3,12.9,18.66,13,18,13z\"></path></g><g><path d=\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z\"></path>" } } }, - "terrain": { - "name": "terrain", + "local_atm": { + "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z\"></path>" } } }, - "theater_comedy": { - "name": "theater_comedy", + "brunch_dining": { + "name": "brunch_dining", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><circle cx=\"12.5\" cy=\"5.5\" r=\".75\"></circle><path d=\"M9,2v4h1.5V3.5h7V8c0,1.93-1.57,3.5-3.5,3.5c-0.74,0-1.43-0.24-2-0.64v1.71c0.61,0.27,1.29,0.42,2,0.42c2.76,0,5-2.24,5-5 V2H9z\"></path><circle cx=\"15.5\" cy=\"5.5\" r=\".75\"></circle><path d=\"M1,13c0,0.69,0.14,1.35,0.39,1.95c0.51,1.2,1.46,2.15,2.66,2.66C4.65,17.86,5.31,18,6,18s1.35-0.14,1.95-0.39 c1.2-0.51,2.15-1.46,2.66-2.66C10.86,14.35,11,13.69,11,13V7H1V13z M2.5,8.5h7V13c0,1.93-1.57,3.5-3.5,3.5 c-1.93,0-3.5-1.57-3.5-3.5V8.5z\"></path><circle cx=\"4.5\" cy=\"10.5\" r=\".75\"></circle><circle cx=\"7.5\" cy=\"10.5\" r=\".75\"></circle><path d=\"M6,14.51c1.11,0,2-0.67,2-1.51H4C4,13.83,4.89,14.51,6,14.51z\"></path><path d=\"M14,8c-1.11,0-2,0.67-2,1.51h4C16,8.67,15.11,8,14,8z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"11\" x=\"2\" y=\"16.5\"></rect><path d=\"M12.5,13.5H9V12H6v1.5H2.5C2.22,13.5,2,13.72,2,14v1h11v-1C13,13.72,12.78,13.5,12.5,13.5z\"></path><path d=\"M18,9.76V2h-5v7.76c0,1.27,0.67,2.44,1.75,3.09V18H18v-1.5h-1.75v-3.65C17.33,12.2,18,11.04,18,9.76z M14.5,3.5h2V7h-2 V3.5z M15.5,11.55c-0.63-0.39-1-1.06-1-1.79V8.5h2v1.26C16.5,10.49,16.13,11.16,15.5,11.55z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"19\" cy=\"6.5\" r=\"1\"></circle><circle cx=\"15\" cy=\"6.5\" r=\"1\"></circle><path d=\"M16.99,9c-1.38,0-2.5,0.84-2.5,1.88h5C19.49,9.84,18.37,9,16.99,9z\"></path><path d=\"M1,16c0,3.31,2.69,6,6,6s6-2.69,6-6V9H1V16z M3,11h8v5c0,2.21-1.79,4-4,4s-4-1.79-4-4V11z\"></path><path d=\"M11,2v5.5h2V4h8v5c0,2.21-1.79,4-4,4c-0.95,0-1.81-0.35-2.5-0.9v2.35C15.26,14.8,16.11,15,17,15c3.31,0,6-2.69,6-6V2H11z\"></path><circle cx=\"5\" cy=\"13.5\" r=\"1\"></circle><circle cx=\"9\" cy=\"13.5\" r=\"1\"></circle><path d=\"M7,17.88c1.38,0,2.5-0.84,2.5-1.88h-5C4.5,17.04,5.62,17.88,7,17.88z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M2,21.5C2,21.78,2.22,22,2.49,22h13.02c0.27,0,0.49-0.22,0.49-0.5V20H2V21.5z\"></path><path d=\"M15.5,16H11v-2H7v2H2.5C2.22,16,2,16.22,2,16.5V18h14v-1.5C16,16.22,15.78,16,15.5,16z\"></path><path d=\"M20.47,15.45c0.99-1.07,1.53-2.48,1.53-3.94V2h-6v9.47c0,1.48,0.58,2.92,1.6,4l0.4,0.42V22h4v-2h-2v-4.03L20.47,15.45z M18,4h2v4h-2V4z M19.03,14.07c-0.65-0.71-1.03-1.65-1.03-2.6V10h2v1.51C20,12.46,19.66,13.36,19.03,14.07z\"></path></g></g>" } } }, - "traffic": { - "name": "traffic", + "pest_control_rodent": { + "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16.32,12.38l-1.34-1.21c0.13-2.27-2.05-3.63-3.93-3C10.7,8.07,10.34,8,9.97,8c-2.02,0-3.67,1.52-3.92,3.48 C4.9,11.38,4,10.42,4,9.25C4,8.01,5.01,7,6.25,7H8.5C9.33,7,10,6.33,10,5.5S9.33,4,8.5,4h-1C7.22,4,7,4.22,7,4.5 C7,4.78,7.22,5,7.5,5h1C8.78,5,9,5.22,9,5.5C9,5.78,8.78,6,8.5,6H6.25C4.46,6,3,7.46,3,9.25c0,1.72,1.35,3.12,3.04,3.23 C6.27,14.46,7.93,16,9.97,16h4.95C16.83,16,17.71,13.65,16.32,12.38z M14.92,15H9.97C8.33,15,7,13.67,7,12.03 c0-2.47,2.24-2.98,2.76-3.01c-1.04,1.18-1.01,2.97,0.12,4.1h0l0.71-0.71C9.31,11.14,10.24,9,12,9l0,0c0,0,0,0,0,0 c0.47,0,2.09,0.2,1.96,2.59l1.69,1.53C16.38,13.79,15.9,15,14.92,15z\"></path><circle cx=\"13.55\" cy=\"13.45\" r=\".75\"></circle></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-5 9H9V5h6v14zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"17\" cy=\"17\" r=\"1\"></circle><path d=\"M20.86,14.97l-0.93-0.84c0.48-3.45-2.87-6.04-6.05-4.82C13.3,9.11,12.66,9,12,9c-4.26,0-5.65,3.58-5.89,4.85 C4.89,13.47,4,12.35,4,11c0-1.66,1.34-3,3-3h2.5C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6H7c-2.76,0-5,2.24-5,5c0,2.44,1.76,4.47,4.07,4.91 C6.51,18.79,8.99,21,12,21h6.53C21.64,21,23.23,17.11,20.86,14.97z M18.53,19H12c-1.21,0-2.34-0.54-3.11-1.48 c-0.78-0.95-1.06-2.16-0.8-3.41c0.31-1.48,1.51-2.69,2.99-3.01c0.22-0.05,0.45-0.06,0.67-0.07C11.28,11.74,11,12.58,11,13.5 c0,1.24,0.5,2.37,1.32,3.18l1.41-1.41C13.28,14.82,13,14.19,13,13.5c0-1.42,1.2-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5 c0,0.46-0.13,0.88-0.35,1.25l1.87,1.7c0.31,0.28,0.48,0.67,0.48,1.09C20,18.34,19.34,19,18.53,19z\"></path></g></g>" } } }, - "train": { - "name": "train", + "moped": { + "name": "moped", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,7.5C15,6.67,14.33,6,13.5,6H12v1h1.5C13.78,7,14,7.22,14,7.5v1.29L10.79,12H9V8H6c-1.66,0-3,1.34-3,3v2h2 c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,9.21V7.5z M4,12v-1c0-1.1,0.9-2,2-2h2v3H4z M7,14c-0.55,0-1-0.45-1-1h2C8,13.55,7.55,14,7,14z\"></path><rect height=\"1\" width=\"4\" x=\"5\" y=\"6\"></rect><path d=\"M15,11c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,11.9,16.1,11,15,11z M15,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,13.55,15.55,14,15,14z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle><path d=\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zm0 2c3.51 0 4.96.48 5.57 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M4,14v-1c0-1.1,0.9-2,2-2h2v3H4z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z\"></path><rect height=\"2\" width=\"5\" x=\"5\" y=\"6\"></rect><path d=\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z\"></path></g></g>" } } }, - "tram": { - "name": "tram", + "layers": { + "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55h-.01.01C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1.97 2h1.94c2.75.08 3.62.58 3.9 1H7.13c.28-.42 1.15-.92 3.9-1zm-.18 10.95H7.74C7.3 17.84 7 17.45 7 17v-1h3.89c-.24.27-.39.61-.39 1 0 .36.13.69.35.95zM17 17c0 .45-.3.84-.74.95h-3.11c.22-.26.35-.59.35-.95 0-.39-.15-.73-.39-1H17v1zm0-3H7v-4h10v4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16zm0-11.47L17.74 9 12 13.47 6.26 9 12 4.53z\"></path>" + } + } + }, + "directions_run": { + "name": "directions_run", + "keywords": [ + "maps" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9l1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z\"></path>" } } }, @@ -17847,4948 +18439,7628 @@ } } }, - "transit_enterexit": { - "name": "transit_enterexit", + "local_mall": { + "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm7 17H5V8h14v12zm-7-8c-1.66 0-3-1.34-3-3H7c0 2.76 2.24 5 5 5s5-2.24 5-5h-2c0 1.66-1.34 3-3 3z\"></path>" } } }, - "trip_origin": { - "name": "trip_origin", + "local_shipping": { + "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zm-.5 1.5l1.96 2.5H17V9.5h2.5zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.22-3c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3V6h12v9H8.22zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" } } }, - "two_wheeler": { - "name": "two_wheeler", + "local_drink": { + "name": "local_drink", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><path d=\"M14.5,9c-0.16,0-0.31,0.02-0.45,0.05L13,8h1.5V6.5l-2,1L11,6H9.01v1h1.58l1,1H9.5L7,9L6,8H3v1h2.5C4.12,9,3,10.12,3,11.5 C3,12.88,4.12,14,5.5,14c1.23,0,2.24-0.88,2.45-2.05L9,13h1.5l2.03-4.06l0.52,0.52C12.42,9.92,12,10.66,12,11.5 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C17,10.12,15.88,9,14.5,9z M5.5,13C4.67,13,4,12.33,4,11.5S4.67,10,5.5,10 S7,10.67,7,11.5S6.33,13,5.5,13z M14.5,13c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S15.33,13,14.5,13z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" fill-rule=\"evenodd\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect><path d=\"M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 2l2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm14 18l-10 .01L5.89 10H18.1L17 20zm1.33-12H5.67l-.44-4h13.53l-.43 4zM12 19c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S9 14 9 16c0 1.66 1.34 3 3 3zm0-5.09c.59.91 1 1.73 1 2.09 0 .55-.45 1-1 1s-1-.45-1-1c0-.37.41-1.19 1-2.09z\"></path>" } } }, - "volunteer_activism": { - "name": "volunteer_activism", + "ramp_left": { + "name": "ramp_left", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M13.25,10.5C15.7,8.28,18,6.41,18,4.61C18,3.15,16.85,2,15.39,2c-0.82,0-1.62,0.39-2.14,0.99C12.74,2.39,11.94,2,11.11,2 C9.65,2,8.5,3.15,8.5,4.61C8.5,6.4,10.8,8.28,13.25,10.5z M11.11,3.5c0.36,0,0.76,0.18,1,0.46l1.14,1.33l1.14-1.33 c0.24-0.28,0.63-0.46,1-0.46c0.63,0,1.11,0.48,1.11,1.11c0,0.9-1.67,2.45-3.25,3.87C11.67,7.06,10,5.5,10,4.61 C10,3.98,10.48,3.5,11.11,3.5z\"></path><path d=\"M15,13h-1c0-0.9-0.57-1.7-1.41-2L7,9H1v9h5v-1.18l5.5,1.68l6.5-2V16C18,14.34,16.66,13,15,13z M4.5,16.36v0.14h-2v-6h2 V16.36z M11.5,16.93L6,15.25V10.5h0.74l5.34,1.91c0.25,0.09,0.42,0.33,0.42,0.59h-2.36l-1.87-0.7l-0.53,1.4l2,0.8H15 c0.62,0,1.16,0.38,1.39,0.93L11.5,16.93z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10.75,5.87l1.19,1.19L13,6l-3-3L7,6l1.06,1.06l1.19-1.19l0,11.13h1.5l0-4.99l0-0.01c1.02,1.39,2.35,2.43,3.39,3.09 L15.23,14c-1.6-0.96-4.48-3.18-4.48-6.3L10.75,5.87z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><g><path d=\"M16,13c3.09-2.81,6-5.44,6-7.7C22,3.45,20.55,2,18.7,2c-1.04,0-2.05,0.49-2.7,1.25C15.34,2.49,14.34,2,13.3,2 C11.45,2,10,3.45,10,5.3C10,7.56,12.91,10.19,16,13z M13.3,4c0.44,0,0.89,0.21,1.18,0.55L16,6.34l1.52-1.79 C17.81,4.21,18.26,4,18.7,4C19.44,4,20,4.56,20,5.3c0,1.12-2.04,3.17-4,4.99c-1.96-1.82-4-3.88-4-4.99C12,4.56,12.56,4,13.3,4z\"></path><path d=\"M19,16h-2c0-1.2-0.75-2.28-1.87-2.7L8.97,11H1v11h6v-1.44l7,1.94l8-2.5v-1C22,17.34,20.66,16,19,16z M3,20v-7h2v7H3z M13.97,20.41L7,18.48V13h1.61l5.82,2.17C14.77,15.3,15,15.63,15,16c0,0-1.99-0.05-2.3-0.15l-2.38-0.79l-0.63,1.9l2.38,0.79 c0.51,0.17,1.04,0.26,1.58,0.26H19c0.39,0,0.74,0.23,0.9,0.56L13.97,20.41z\"></path></g></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13,21h-2V6.83L9.41,8.41L8,7l4-4l4,4l-1.41,1.41L13,6.83V9c0,4.27,4.03,7.13,6,8.27l-1.46,1.46 c-1.91-1.16-3.44-2.53-4.54-4.02L13,21z\"></path></g>" } } }, - "wine_bar": { - "name": "wine_bar", + "not_listed_location": { + "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M6,3l0,6c0,2.97,2.16,5.43,5,5.91V19H8v2h8v-2h-3v-4.09c2.84-0.48,5-2.94,5-5.91V3H6z M12,13c-1.86,0-3.41-1.28-3.86-3h7.72 C15.41,11.72,13.86,13,12,13z M16,8H8l0-3h8L16,8z\"></path>" + "path": "<path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.01,16c-0.27,0-0.52-0.1-0.71-0.29c-0.2-0.2-0.29-0.43-0.29-0.71c-0.01-0.55,0.43-0.99,0.98-1c0.01,0,0.01,0,0.02,0 c0.28,0,0.51,0.1,0.71,0.29c0.18,0.19,0.28,0.43,0.28,0.7s-0.1,0.51-0.29,0.71S12.28,16,12.01,16z M11.13,12.34 c0-0.45,0.1-0.84,0.29-1.16c0.19-0.33,0.53-0.7,1-1.12c0.28-0.25,0.48-0.47,0.61-0.66s0.19-0.4,0.19-0.64 c0-0.29-0.11-0.53-0.32-0.74c-0.21-0.2-0.5-0.3-0.85-0.3c-0.37,0-0.74,0.1-0.96,0.3c-0.21,0.2-0.4,0.45-0.4,0.98H9 c0-1.01,0.46-1.73,0.97-2.21C10.53,6.28,11.25,6,12,6c0.59,0,1.11,0.12,1.57,0.35s0.79,0.55,1.05,0.96S15,8.17,15,8.66 s-0.1,0.9-0.31,1.25S14.21,10.62,13.8,11c-0.32,0.3-0.53,0.56-0.65,0.77s-0.18,0.49-0.18,0.81V13h-1.85v-0.66H11.13z M18,10.2 C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2 c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z\"></path>" } } }, - "wrong_location": { - "name": "wrong_location", + "near_me": { + "name": "near_me", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14.53,9c0.03,0.24,0.07,0.48,0.07,0.74c0,1.88-1.55,4.21-4.6,6.94c-3.05-2.73-4.6-5.06-4.6-6.94C5.4,6.66,7.77,5,10,5 c0.33,0,0.67,0.05,1,0.12V4.09C10.67,4.03,10.34,4,10,4C7.06,4,4.4,6.25,4.4,9.74c0,2.32,1.87,5.08,5.6,8.26 c3.73-3.18,5.6-5.94,5.6-8.26c0-0.25-0.02-0.5-0.05-0.74H14.53z\"></path><circle cx=\"10\" cy=\"9.5\" r=\"1.5\"></circle><polygon points=\"17.47,3.23 16.77,2.53 15,4.29 13.23,2.53 12.53,3.23 14.29,5 12.53,6.77 13.23,7.47 15,5.71 16.77,7.47 17.47,6.77 15.71,5\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18,11c0,0.07,0,0.13,0,0.2c0,2.34-1.95,5.44-6,9.14c-4.05-3.7-6-6.79-6-9.14C6,7.57,8.65,5,12,5c0.34,0,0.68,0.03,1,0.08 V3.06C12.67,3.02,12.34,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8c0-0.07,0-0.13,0-0.2H18z\"></path><circle cx=\"12\" cy=\"11\" r=\"2\"></circle><polygon points=\"22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.27 6.73l-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23M21 3L3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z\"></path>" } } }, - "zoom_out_map": { - "name": "zoom_out_map", + "directions_subway": { + "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 3l2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12l-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6l-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle>" } } }, - "apps": { - "name": "apps", + "flight_class": { + "name": "flight_class", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13,4h-1.5C10.67,4,10,4.67,10,5.5v3.75c0,0.83,0.67,1.5,1.5,1.5H13c0.83,0,1.5-0.67,1.5-1.5V5.5C14.5,4.67,13.83,4,13,4z M13,9.25h-1.5V5.5H13V9.25z M8.4,13H15v1.5H8.4c-0.66,0-1.24-0.43-1.43-1.06L5,7V4h1.5v3L8.4,13z M7.5,15.5H15V17H7.5V15.5z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect><path d=\"M16,4h-2c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2V6C18,4.9,17.1,4,16,4z M16,11h-2V6h2V11z M9.5,16H18v2H9.49 c-0.88,0-1.66-0.58-1.92-1.43L5,8V4h2v4L9.5,16z M8,19h10v2H8V19z\"></path>" } } }, - "app_settings_alt": { - "name": "app_settings_alt", + "atm": { + "name": "atm", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"1\" width=\"10\" x=\"7\" y=\"20\"></rect><rect fill=\"none\" height=\"1\" width=\"10\" x=\"7\" y=\"3\"></rect><path d=\"M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05c0.03-0.02,0.06-0.04,0.09-0.06 l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3 c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 9v1.5h2.25V15h1.5v-4.5H14V9H8zM6 9H3c-.55 0-1 .45-1 1v5h1.5v-1.5h2V15H7v-5c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v5H17v-4.5h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1z\"></path>" } } }, - "arrow_back": { - "name": "arrow_back", + "snowmobile": { + "name": "snowmobile", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18.5,14.5c0,0.55-0.45,1-1,1l-2.22-2.19C16.87,12.96,18,12.17,18,11c0-0.5-6.5-6.5-6.5-6.5H9V6h1.91l0.84,0.78L9,8.5L1.5,8 L0,11l4.32,1.27l-3.53,1.91C-0.58,14.92-0.06,17,1.5,17h5c1.93,0,3.5-1.57,3.5-3.5h3.33l2.05,2H12.5V17h5c1.38,0,2.5-1.12,2.5-2.5 H18.5z M6.5,15.5h-5l4.87-2.63L8.5,13.5C8.5,14.6,7.6,15.5,6.5,15.5z M13,12H8.7l-6.56-1.93L2.4,9.56L9.35,10l3.52-2.16 c0,0,3.38,3.22,3.38,3.32C16.25,11.16,16.07,12,13,12z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,17c0,0.55-0.45,1-1,1h-0.17l-2.2-2.2C20.58,15.37,22,14.4,22,13c0-1-8-8-8-8h-3v2h2.25l0.8,0.72L11,10L2,9l-2,4 l4.54,1.36l-3.49,1.88C-0.77,17.22-0.07,20,2,20h6c2.21,0,4-1.79,4-4h4l2,2h-3v2h6c1.66,0,3-1.34,3-3H22z M8,18H2l5.25-2.83L10,16 C10,17.1,9.11,18,8,18z M17,14h-6.7l-7.45-2.23l0.31-0.62L11.6,12l3.93-2.94c0,0,3.77,3.44,4.27,4.14C19.8,13.2,18.7,14,17,14z\"></path>" } } }, - "arrow_back_ios": { - "name": "arrow_back_ios", + "emergency": { + "name": "emergency", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11.25,17.75h-2.5c-0.55,0-1-0.45-1-1V13.9l-2.47,1.43c-0.48,0.28-1.09,0.11-1.37-0.37L2.66,12.8 c-0.28-0.48-0.11-1.09,0.37-1.37L5.5,10L3.03,8.57C2.55,8.3,2.39,7.69,2.66,7.21l1.25-2.16C4.19,4.56,4.8,4.4,5.28,4.68L7.75,6.1 V3.25c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1V6.1l2.47-1.43c0.48-0.28,1.09-0.11,1.37,0.37l1.25,2.16 c0.28,0.48,0.11,1.09-0.37,1.37L14.5,10l2.47,1.43c0.48,0.28,0.64,0.89,0.37,1.37l-1.25,2.16c-0.28,0.48-0.89,0.64-1.37,0.37 l-2.47-1.43v2.85C12.25,17.3,11.8,17.75,11.25,17.75z M9.25,16.25h1.5v-4.08c0-0.38,0.42-0.63,0.75-0.43l3.54,2.04l0.75-1.3 l-3.54-2.04c-0.33-0.19-0.33-0.67,0-0.87l3.54-2.04l-0.75-1.3L11.5,8.27c-0.33,0.19-0.75-0.05-0.75-0.43V3.75h-1.5v4.08 c0,0.38-0.42,0.63-0.75,0.43L4.96,6.23l-0.75,1.3l3.54,2.04c0.33,0.19,0.33,0.67,0,0.87l-3.54,2.04l0.75,1.3l3.54-2.04 c0.33-0.19,0.75,0.05,0.75,0.43V16.25z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\" opacity=\".87\"></path><path d=\"M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.29,13.9L18,12l3.29-1.9c0.48-0.28,0.64-0.89,0.37-1.37l-2-3.46c-0.28-0.48-0.89-0.64-1.37-0.37L15,6.8V3 c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3.8L5.71,4.9C5.23,4.63,4.62,4.79,4.34,5.27l-2,3.46C2.06,9.21,2.23,9.82,2.71,10.1L6,12 l-3.29,1.9c-0.48,0.28-0.64,0.89-0.37,1.37l2,3.46c0.28,0.48,0.89,0.64,1.37,0.37L9,17.2V21c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1 v-3.8l3.29,1.9c0.48,0.28,1.09,0.11,1.37-0.37l2-3.46C21.94,14.79,21.77,14.18,21.29,13.9z M18.43,16.87l-4.68-2.7 C13.42,13.97,13,14.21,13,14.6V20h-2v-5.4c0-0.38-0.42-0.63-0.75-0.43l-4.68,2.7l-1-1.73l4.68-2.7c0.33-0.19,0.33-0.67,0-0.87 l-4.68-2.7l1-1.73l4.68,2.7C10.58,10.03,11,9.79,11,9.4V4h2v5.4c0,0.38,0.42,0.63,0.75,0.43l4.68-2.7l1,1.73l-4.68,2.7 c-0.33,0.19-0.33,0.67,0,0.87l4.68,2.7L18.43,16.87z\"></path>" } } }, - "arrow_back_ios_new": { - "name": "arrow_back_ios_new", + "cleaning_services": { + "name": "cleaning_services", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><polygon points=\"14.41,3.41 13,2 5,10 13,18 14.41,16.59 7.83,10\"></polygon>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M13,9h-1V4c0-0.55-0.45-1-1-1H9C8.45,3,8,3.45,8,4v5H7c-1.66,0-3,1.34-3,3v5c6.51,0,12,0,12,0v-5C16,10.34,14.66,9,13,9z M9,4h2v5H9V4z M15,16h-2v-1.5c0-0.28-0.22-0.5-0.5-0.5S12,14.22,12,14.5V16h-1.5v-1.5c0-0.28-0.22-0.5-0.5-0.5s-0.5,0.22-0.5,0.5 V16H8v-1.5C8,14.22,7.78,14,7.5,14S7,14.22,7,14.5V16H5v-4c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2V16z\"></path></g></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><polygon points=\"17.77,3.77 16,2 6,12 16,22 17.77,20.23 9.54,12\"></polygon></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M11,3h2v8h-2V3 z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5 v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z\"></path></g></g>" } } }, - "arrow_downward": { - "name": "arrow_downward", + "store_mall_directory": { + "name": "store_mall_directory", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.36 9l.6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z\"></path>" } } }, - "arrow_drop_down": { - "name": "arrow_drop_down", + "turn_sharp_left": { + "name": "turn_sharp_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M5.5,10.5C5.5,11.33,6.17,12,7,12l6,0v5h1.5v-5c0-0.83-0.67-1.5-1.5-1.5l-6,0l0-4.63l1.19,1.19L9.25,6l-3-3l-3,3l1.06,1.06 L5.5,5.87L5.5,10.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 10l5 5 5-5H7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6,6.83L4.41,8.41L3,7l4-4l4,4L9.59,8.41L8,6.83V13h8c1.1,0,2,0.9,2,2v6h-2v-6H8c-1.1,0-2-0.9-2-2V6.83z\"></path></g>" } } }, - "arrow_drop_down_circle": { - "name": "arrow_drop_down_circle", + "turn_slight_left": { + "name": "turn_slight_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M12.5,10.56V16H11v-5.44l-4-4l0,1.69H5.5L5.5,4l4.25,0v1.5l-1.69,0l4,4C12.34,9.78,12.5,10.16,12.5,10.56z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13l-4-4h8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M11.66,6V4H6v5.66h2V7.41l5,5V20h2v-7.58c0-0.53-0.21-1.04-0.59-1.41l-5-5H11.66z\"></path></g>" } } }, - "arrow_drop_up": { - "name": "arrow_drop_up", + "directions_boat_filled": { + "name": "directions_boat_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 14l5-5 5 5H7z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.77,12.66l-1.12,3.97c-0.78-0.43-1.07-0.86-2.65-2.67C14.4,15.78,13.57,17,12,17c-1.53,0-2.34-1.15-4-3.04 c-1.6,1.82-1.87,2.21-2.65,2.65l-1.13-3.96L12,10.11L19.77,12.66z M15,1H9v3H6C4.9,4,4,4.9,4,6v4.62l-1.29,0.42 c-0.63,0.19-0.81,0.84-0.66,1.28L3.95,19H4c1.6,0,3.02-0.88,4-2c0.98,1.12,2.4,2,4,2s3.02-0.88,4-2c0.98,1.12,2.4,2,4,2h0.05 l1.91-6.68c0.11-0.37,0.04-1.06-0.66-1.28L20,10.62V6c0-1.1-0.9-2-2-2h-3V1L15,1z M6,9.97V6h12v3.97L12,8L6,9.97L6,9.97z M16,19.68 c-1.22,0.85-2.61,1.28-4,1.28s-2.78-0.43-4-1.28C6.78,20.53,5.39,21,4,21H2v2h2c1.38,0,2.74-0.35,4-0.99c1.26,0.64,2.63,0.97,4,0.97 s2.74-0.32,4-0.97c1.26,0.65,2.62,0.99,4,0.99h2v-2h-2C18.61,21,17.22,20.53,16,19.68L16,19.68z\"></path>" } } }, - "arrow_forward": { - "name": "arrow_forward", + "festival": { + "name": "festival", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><path d=\"M10,2c0,0-5,5-9,5.5V9c0,1.23,0.79,2.26,1.89,2.64C2.77,14.11,2.53,16.95,2,18h16c-0.06-0.12-0.68-1.27-0.91-6.35 C18.2,11.27,19,10.24,19,9V7.5C15,7,10,2,10,2z M9.25,9c0,0.72-0.59,1.31-1.31,1.31S6.63,9.72,6.63,9H9.25z M8.23,11.78 c0.7-0.08,1.32-0.39,1.77-0.88c0.45,0.49,1.07,0.81,1.77,0.88c0.03,0.95,0.13,2.67,0.4,4.72H7.83C8.11,14.45,8.2,12.73,8.23,11.78z M12.06,10.31c-0.72,0-1.31-0.59-1.31-1.31h2.62C13.37,9.72,12.79,10.31,12.06,10.31z M10,4.05c1.07,0.95,2.79,2.37,4.72,3.45H5.28 C7.21,6.42,8.93,5.01,10,4.05z M2.5,9h2.62c0,0.72-0.59,1.31-1.31,1.31S2.5,9.72,2.5,9z M4.39,11.75c0.58-0.12,1.09-0.43,1.48-0.85 c0.24,0.27,0.54,0.48,0.87,0.64c-0.03,0.88-0.11,2.76-0.43,4.97H3.95C4.18,15.17,4.31,13.37,4.39,11.75z M13.69,16.5 c-0.31-2.21-0.4-4.09-0.43-4.97c0.33-0.16,0.62-0.37,0.87-0.64c0.39,0.42,0.9,0.73,1.48,0.85c0.08,1.62,0.21,3.42,0.44,4.75H13.69z M16.19,10.31c-0.72,0-1.31-0.59-1.31-1.31h2.62C17.5,9.72,16.91,10.31,16.19,10.31z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><path d=\"M23,11V9c-6-2-11-7-11-7S7,7,1,9v2c0,1.49,0.93,2.75,2.24,3.26C3.2,16.76,2.92,19.69,2,22h20 c-0.92-2.31-1.2-5.24-1.24-7.74C22.07,13.75,23,12.49,23,11z M12,4.71c1.33,1.14,3.49,2.84,6.11,4.29H5.89 C8.51,7.55,10.67,5.85,12,4.71z M13,11h3c0,0.83-0.67,1.5-1.5,1.5S13,11.83,13,11z M9.5,12.5C8.67,12.5,8,11.83,8,11h3 C11,11.83,10.33,12.5,9.5,12.5z M6,11c0,0.83-0.67,1.5-1.5,1.5S3,11.83,3,11H6z M4.66,20c0.39-1.86,0.54-3.82,0.57-5.58 c0.68-0.15,1.29-0.49,1.76-0.98c0.25,0.25,0.54,0.45,0.85,0.62c-0.1,1.87-0.26,4-0.52,5.93H4.66z M9.35,20 c0.24-1.83,0.39-3.78,0.48-5.53c0.84-0.08,1.61-0.45,2.17-1.02c0.56,0.57,1.32,0.94,2.17,1.02c0.1,1.75,0.24,3.7,0.48,5.53H9.35z M16.67,20c-0.27-1.94-0.43-4.07-0.52-5.93c0.31-0.17,0.61-0.37,0.85-0.62c0.47,0.48,1.08,0.83,1.76,0.98 c0.03,1.76,0.18,3.72,0.57,5.58H16.67z M19.5,12.5c-0.83,0-1.5-0.67-1.5-1.5h3C21,11.83,20.33,12.5,19.5,12.5z\"></path></g>" } } }, - "arrow_forward_ios": { - "name": "arrow_forward_ios", + "lunch_dining": { + "name": "lunch_dining", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "<g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g><g><polygon points=\"4.59,16.59 6,18 14,10 6,2 4.59,3.41 11.17,10\"></polygon></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M17.99,8c0.26-2.73-3.42-5-7.99-5C5.44,3,1.76,5.27,2.01,8H17.99z M10,4.5c2.5,0,4.83,0.78,5.94,2H4.07 C5.18,5.29,7.51,4.5,10,4.5z\"></path><path d=\"M2,15.5C2,16.33,2.67,17,3.5,17h13c0.83,0,1.5-0.67,1.5-1.5V13H2V15.5z M3.5,14.5h13v1h-13V14.5z\"></path><path d=\"M18,11.75c-1.58,0-1.72-1-2.66-1c-0.95,0-1.08,1-2.67,1c-1.58,0-1.72-1-2.67-1c-0.95,0-1.08,1-2.67,1 c-1.58,0-1.72-1-2.67-1c-0.95,0-1.09,1-2.67,1v-1.5c0.95,0,1.09-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1 c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.66,1V11.75z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><polygon points=\"6.23,20.23 8,22 18,12 8,2 6.23,3.77 14.46,12\"></polygon></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M2,19c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-3H2V19z M4,18h16v1H4V18z\"></path><path d=\"M18.66,11.5c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1 c-1.95,0-2.09,1-3.33,1v2c1.9,0,2.17-1,3.35-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1 c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.32,1l-0.01-1.98C20.38,12.19,20.37,11.5,18.66,11.5z\"></path><path d=\"M22,9c0.02-4-4.28-6-10-6C6.29,3,2,5,2,9v1h20L22,9L22,9z M4.18,8C5.01,5.81,8.61,5,12,5c3.31,0,5.93,0.73,7.19,1.99 C19.49,7.3,19.71,7.63,19.84,8H4.18z\"></path></g></g>" } } }, - "arrow_left": { - "name": "arrow_left", + "directions_transit_filled": { + "name": "directions_transit_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M24 0v24H0V0h24z\" fill=\"none\" opacity=\".87\"></path><path d=\"M14 7l-5 5 5 5V7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H13h-2H6.43C7.03,4.48,8.48,4,12,4z M6,7h5v3H6V7z M18,15.5c0,0.83-0.67,1.5-1.5,1.5h-9 C6.67,17,6,16.33,6,15.5V12h12V15.5z M18,10h-5V7h5V10z\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle></g></g>" } } }, - "arrow_right": { - "name": "arrow_right", + "design_services": { + "name": "design_services", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M15.71,13.21l-3.46-3.46l1.33-1.33l-2-2l-1.33,1.33L6.79,4.29C6.4,3.9,5.76,3.9,5.37,4.29L4.29,5.37 C3.9,5.76,3.9,6.4,4.29,6.79l3.46,3.46L4,14v2h2l3.75-3.75l3.46,3.46c0.39,0.39,1.02,0.39,1.41,0l1.08-1.08 C16.1,14.24,16.1,13.6,15.71,13.21z M5,6.08L6.08,5c0,0,0,0,0,0l0.69,0.69L6.23,6.23L6.89,6.9l0.54-0.54l1.06,1.06L7.95,7.96 l0.67,0.67l0.54-0.54l0.38,0.38L8.46,9.54L5,6.08z M5.59,15H5v-0.59l6.58-6.58l0.59,0.59L5.59,15z M13.92,15l-3.46-3.46l1.08-1.08 l0.4,0.4L11.4,11.4l0.67,0.67l0.54-0.54l1.06,1.06l-0.54,0.54l0.67,0.67l0.54-0.54L15,13.92L13.92,15z\"></path><path d=\"M15.62,6.38c0.2-0.2,0.2-0.51,0-0.71l-1.29-1.29c-0.2-0.2-0.51-0.2-0.71,0l-1.34,1.34l2,2L15.62,6.38z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 17l5-5-5-5v10z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M20.97,7.27c0.39-0.39,0.39-1.02,0-1.41l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0l-4.49,4.49L8.35,3.63 c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9c-0.78,0.78-0.78,2.05,0,2.83l3.89,3.89L3,16.76V21h4.24l4.52-4.52l3.89,3.89 c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9c0.78-0.78,0.78-2.05,0-2.83l-3.89-3.89L20.97,7.27z M5.04,6.94l1.89-1.9c0,0,0,0,0,0 l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19l1.2,1.2l-1.9,1.9L5.04,6.94z M16.27,14.38l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27 l-1.9,1.9l-3.89-3.89l1.9-1.9L16.27,14.38z M6.41,19H5v-1.41l9.61-9.61l1.3,1.3l0.11,0.11L6.41,19z M16.02,6.56l1.41-1.41 l1.41,1.41l-1.41,1.41L16.02,6.56z\"></path></g></g>" } } }, - "arrow_upward": { - "name": "arrow_upward", + "bus_alert": { + "name": "bus_alert", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><circle cx=\"6.5\" cy=\"15.5\" r=\"1.5\"></circle></g><g><circle cx=\"13.5\" cy=\"15.5\" r=\"1.5\"></circle></g><g><path d=\"M4,11V8h7.29C11.1,7.37,11,6.7,11,6H4.43c0.83-0.71,2.98-1.09,6.65-0.98c0.1-0.7,0.3-1.37,0.59-1.99 C2.97,2.67,2,5.02,2,7v9.5c0,0.95,0.38,1.81,1,2.44V21c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h8v1c0,0.55,0.45,1,1,1h1 c0.55,0,1-0.45,1-1v-2.06c0.62-0.63,1-1.49,1-2.44V13c-1.91,0-3.63-0.76-4.89-2H4z M16,16c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-3 h12V16z\"></path></g><g><path d=\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\"></path></g></g></g>" } } }, - "assistant_direction": { - "name": "assistant_direction", + "warehouse": { + "name": "warehouse", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M13.5,17H18V6l-8-3L2,6v11h4.5v-6.5h7V17z M16.5,7.04v8.46H15V9H5v6.5H3.5V7.04L10,4.6L16.5,7.04z M9.25,17h-1.5v-1.5h1.5 V17z M10.75,14.5h-1.5V13h1.5V14.5z M12.25,17h-1.5v-1.5h1.5V17z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11S18.1,1,12,1z M12,21c-4.99,0-9-4.01-9-9s4.01-9,9-9s9,4.01,9,9 S16.99,21,12,21z\"></path><path d=\"M19.73,11.42L12.54,4.2c-0.36-0.27-0.8-0.27-1.15,0L4.2,11.42c-0.27,0.36-0.27,0.8,0,1.16l7.19,7.22 c0.36,0.27,0.8,0.27,1.15,0l7.19-7.22C20.09,12.22,20.09,11.69,19.73,11.42z M13.5,14.5l-1.41-1.41L13.17,12H10v3H8v-4 c0-0.6,0.4-1,1-1h4.17l-1.09-1.09L13.5,7.5L17,11L13.5,14.5z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,8.35V19h-2v-8H6v8H4V8.35l8-3.2L20,8.35z M22,21V7L12,3L2,7v14h6v-8h8v8H22z M11,19H9v2h2V19z M13,16h-2v2h2V16z M15,19h-2v2h2V19z\"></path></g>" } } }, - "campaign": { - "name": "campaign", + "turn_sharp_right": { + "name": "turn_sharp_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M14.5,10.5c0,0.83-0.67,1.5-1.5,1.5l-6,0v5H5.5v-5c0-0.83,0.67-1.5,1.5-1.5l6,0l0-4.63l-1.19,1.19L10.75,6l3-3l3,3 l-1.06,1.06L14.5,5.87L14.5,10.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><path d=\"M18,11c0,0.67,0,1.33,0,2c1.2,0,2.76,0,4,0c0-0.67,0-1.33,0-2C20.76,11,19.2,11,18,11z\"></path><path d=\"M16,17.61c0.96,0.71,2.21,1.65,3.2,2.39c0.4-0.53,0.8-1.07,1.2-1.6c-0.99-0.74-2.24-1.68-3.2-2.4 C16.8,16.54,16.4,17.08,16,17.61z\"></path><path d=\"M20.4,5.6C20,5.07,19.6,4.53,19.2,4c-0.99,0.74-2.24,1.68-3.2,2.4c0.4,0.53,0.8,1.07,1.2,1.6 C18.16,7.28,19.41,6.35,20.4,5.6z\"></path><path d=\"M4,9c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v4h2v-4h1l5,3V6L8,9H4z M9.03,10.71L11,9.53v4.94l-1.97-1.18L8.55,13H8H4v-2h4 h0.55L9.03,10.71z\"></path><path d=\"M15.5,12c0-1.33-0.58-2.53-1.5-3.35v6.69C14.92,14.53,15.5,13.33,15.5,12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18,6.83l1.59,1.59L21,7l-4-4l-4,4l1.41,1.41L16,6.83V13H8c-1.1,0-2,0.9-2,2v6h2v-6h8c1.1,0,2-0.9,2-2V6.83z\"></path></g>" } } }, - "cancel": { - "name": "cancel", + "liquor": { + "name": "liquor", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M6.5,10.5v1c0,0.43-0.28,0.81-0.7,0.94l-0.3,0.09l-0.3-0.09c-0.42-0.13-0.7-0.51-0.7-0.94v-1H6.5 M8,5H3v6.5 c0,1.12,0.74,2.05,1.75,2.37v2.63H3V18h5v-1.5H6.25v-2.63C7.26,13.55,8,12.62,8,11.5V5L8,5z M4.5,9V6.5h2V9H4.5L4.5,9z\"></path><path d=\"M16.5,11.5v2h-6l0-2H16.5 M14.5,2h-2c-0.55,0-1,0.45-1,1v2.98c0,0.61-0.37,1.17-0.94,1.39L9.94,7.62 C9.37,7.85,9,8.4,9,9.02v7.48c0,0.83,0.67,1.5,1.5,1.5h6c0.83,0,1.5-0.67,1.5-1.5V9.02c0-0.61-0.37-1.17-0.94-1.39l-0.61-0.25 C15.87,7.15,15.5,6.6,15.5,5.98V3C15.5,2.45,15.05,2,14.5,2L14.5,2z M13,4.5v-1h1v1H13L13,4.5z M10.5,10V9.02l0.61-0.25 C12.25,8.31,12.99,7.23,13,6h1c0.01,1.23,0.74,2.31,1.88,2.77l0.61,0.25V10H10.5L10.5,10z M10.5,16.5V15h6v1.5H10.5L10.5,16.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\" opacity=\".87\"></path><path d=\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M3,14c0,1.3,0.84,2.4,2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4,9,15.3,9,14V6H3V14z M5,8h2v3H5V8z M5,13h2v1 c0,0.55-0.45,1-1,1s-1-0.45-1-1V13z\"></path><path d=\"M20.64,8.54l-0.96-0.32C19.27,8.08,19,7.7,19,7.27V3c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4.28 c0,0.43-0.27,0.81-0.68,0.95l-0.96,0.32C11.55,8.83,11,9.59,11,10.45V20c0,1.1,0.9,2,2,2h7c1.1,0,2-0.9,2-2v-9.56 C22,9.58,21.45,8.82,20.64,8.54z M16,4h1v1h-1V4z M20,20h-7v-2h7V20z M20,16h-7v-2h7V16z M20,12h-7v-1.56l0.95-0.32 C15.18,9.72,16,8.57,16,7.28V7h1v0.28c0,1.29,0.82,2.44,2.05,2.85L20,10.44V12z\"></path></g></g>" } } }, - "check": { - "name": "check", + "electric_scooter": { + "name": "electric_scooter", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,10,15,10z M15,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S15.55,13,15,13z\"></path><path d=\"M12,11.99C12,10.34,13.34,9,14.99,9l0.24,0l-1.2-5.22C13.93,3.32,13.52,3,13.05,3H10v1h3.05l0.95,4.14 c-1.57,0.4-2.75,1.72-2.96,3.36H6.93c-0.26-1.01-1.29-1.72-2.44-1.44c-0.71,0.18-1.29,0.78-1.44,1.5C2.77,12.86,3.75,14,5,14 c0.93,0,1.71-0.64,1.93-1.5H12V11.99z M5,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,13,5,13z\"></path><polygon points=\"9.5,15 7,15 10.5,17 10.5,16 13,16 9.5,14\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z\"></path><path d=\"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z\"></path><polygon points=\"11,20 7,20 13,23 13,21 17,21 11,18\"></polygon></g></g>" } } }, - "chevron_left": { - "name": "chevron_left", + "pedal_bike": { + "name": "pedal_bike", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M14.82,9l-1.58-4.34C13.1,4.26,12.72,4,12.3,4H10v1h2.3l1.46,4H8.75L8.38,8H10V7H6v1h1.32l1.46,4H7.95 C7.7,10.19,6.13,8.86,4.2,9.01c-1.64,0.13-3.01,1.46-3.18,3.1C0.8,14.25,2.41,16,4.5,16c1.79,0,3.21-1.29,3.45-3h4.1 c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,10.75,17.59,9,15.5,9H14.82z M9.11,10h3.92 c-0.53,0.52-0.88,1.22-0.98,2H9.84L9.11,10z M4.5,15C3.1,15,2,13.9,2,12.5S3.1,10,4.5,10c1.23,0,2.23,0.85,2.45,2H4v1h2.95 C6.73,14.15,5.73,15,4.5,15z M15.5,15c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8 C15.3,10.02,15.4,10,15.5,10c1.4,0,2.5,1.1,2.5,2.5S16.9,15,15.5,15z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z\"></path></g>" } } }, - "chevron_right": { - "name": "chevron_right", + "local_taxi": { + "name": "local_taxi", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z\"></path><circle cx=\"7.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"14.5\" r=\"1.5\"></circle>" } } }, - "close": { - "name": "close", + "local_parking": { + "name": "local_parking", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z\"></path>" } } }, - "double_arrow": { - "name": "double_arrow", + "near_me_disabled": { + "name": "near_me_disabled", "keywords": [ - "navigation" + "maps" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><polygon points=\"9.21,15 12.43,15 16,10 12.43,5 9.21,5 12.79,10\"></polygon><polygon points=\"4.21,15 7.43,15 11,10 7.43,5 4.21,5 7.79,10\"></polygon></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"15.5,5 11,5 16,12 11,19 15.5,19 20.5,12\"></polygon><polygon points=\"8.5,5 4,5 9,12 4,19 8.5,19 13.5,12\"></polygon></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,6.34L21,3l-3.34,9l-1.56-1.56l1.5-4.05l-4.05,1.5L12,6.34z M21.19,21.19l-5.07-5.07L14.31,21H12.9l-2.83-7.07L3,11.1 V9.69l4.88-1.81L2.81,2.81l1.41-1.41l18.38,18.38L21.19,21.19z M14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89L14.57,14.57z\"></path>" } } }, - "east": { - "name": "east", + "category": { + "name": "category", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2l-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM3 21.5h8v-8H3v8zm2-6h4v4H5v-4z\"></path>" } } }, - "expand_less": { - "name": "expand_less", + "turn_left": { + "name": "turn_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M12,16h1.5V9c0-0.83-0.67-1.5-1.5-1.5l-6.13,0l1.19-1.19L6,5.25l-3,3l3,3l1.06-1.06L5.87,9L12,9V16z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6.83,11l1.59,1.59L7,14l-4-4l4-4l1.41,1.41L6.83,9L15,9c1.1,0,2,0.9,2,2v9h-2v-9L6.83,11z\"></path></g>" } } }, - "expand_more": { - "name": "expand_more", + "local_hotel": { + "name": "local_hotel", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\"></path><path d=\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z\"></path>" } } }, - "first_page": { - "name": "first_page", + "egg": { + "name": "egg", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-2.75,0-5.5,4.93-5.5,8.56C4.5,14.56,6.96,17,10,17c3.04,0,5.5-2.44,5.5-5.44C15.5,7.93,12.75,3,10,3z M10,15.5 c-2.21,0-4-1.77-4-3.94c0-3.2,2.46-7.06,4-7.06c1.54,0,4,3.85,4,7.06C14,13.73,12.21,15.5,10,15.5z\"></path><path d=\"M10.25,13c-1.21,0-1.75-1.13-1.75-2.25C8.5,10.34,8.16,10,7.75,10S7,10.34,7,10.75c0,2.17,1.37,3.75,3.25,3.75 c0.41,0,0.75-0.34,0.75-0.75S10.66,13,10.25,13z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M24 0v24H0V0h24z\" fill=\"none\" opacity=\".87\"></path><path d=\"M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,3C8.5,3,5,9.33,5,14c0,3.87,3.13,7,7,7c3.87,0,7-3.13,7-7C19,9.33,15.5,3,12,3z M12,19c-2.76,0-5-2.24-5-5 c0-4.09,3.07-9,5-9s5,4.91,5,9C17,16.76,14.76,19,12,19z\"></path><path d=\"M13,16c-0.58,0-3-0.08-3-3c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,3,1.99,5,5,5c0.55,0,1-0.45,1-1S13.55,16,13,16z\"></path></g></g>" } } }, - "fullscreen": { - "name": "fullscreen", + "local_airport": { + "name": "local_airport", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect><path d=\"M17,13v-1l-6-4V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-6,4v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-4L17,13z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z\"></path>" + "path": "<g><path d=\"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g>" } } }, - "fullscreen_exit": { - "name": "fullscreen_exit", + "ramp_right": { + "name": "ramp_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M9.25,5.87L8.06,7.06L7,6l3-3l3,3l-1.06,1.06l-1.19-1.19l0,11.13h-1.5l0-4.99l0-0.01c-1.02,1.39-2.35,2.43-3.39,3.09 L4.77,14c1.6-0.96,4.48-3.18,4.48-6.3L9.25,5.87z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M11,21h2V6.83l1.59,1.59L16,7l-4-4L8,7l1.41,1.41L11,6.83V9c0,4.27-4.03,7.13-6,8.27l1.46,1.46 C8.37,17.56,9.9,16.19,11,14.7L11,21z\"></path></g>" } } }, - "home_work": { - "name": "home_work", + "local_bar": { + "name": "local_bar", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M17 15h2v2h-2zM17 11h2v2h-2zM17 7h2v2h-2zM13.74 7l1.26.84V7z\"></path><path d=\"M10 3v1.51l2 1.33V5h9v14h-4v2h6V3z\"></path><path d=\"M8.17 5.7L15 10.25V21H1V10.48L8.17 5.7zM10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.77 9L12 12.11 9.23 9h5.54M21 3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9V3zM7.43 7L5.66 5h12.69l-1.78 2H7.43z\"></path>" } } }, - "last_page": { - "name": "last_page", + "castle": { + "name": "castle", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"3\" width=\"1.5\" x=\"7.5\" y=\"7\"></rect><rect height=\"3\" width=\"1.5\" x=\"11\" y=\"7\"></rect><path d=\"M17.5,7v2H16V2h-1.5v2h-2V2H11v2H9V2H7.5v2h-2V2H4v7H2.5V7H1v10h7v-2c0-1.1,0.9-2,2-2s2,0.9,2,2v2h7V7H17.5z M17.5,15.5 h-4V15c0-1.93-1.57-3.5-3.5-3.5S6.5,13.07,6.5,15v0.5h-4v-5h3v-5h9v5h3V15.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\" opacity=\".87\"></path><path d=\"M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M21,9v2h-2V3h-2v2h-2V3h-2v2h-2V3H9v2H7V3H5v8H3V9H1v12h9v-3c0-1.1,0.9-2,2-2s2,0.9,2,2v3h9V9H21z M21,19h-5v-1 c0-2.21-1.79-4-4-4s-4,1.79-4,4v1H3v-6h4V7h10v6h4V19z\"></path></g><g><rect height=\"3\" width=\"2\" x=\"9\" y=\"9\"></rect></g><g><rect height=\"3\" width=\"2\" x=\"13\" y=\"9\"></rect></g></g></g>" } } }, - "legend_toggle": { - "name": "legend_toggle", + "kebab_dining": { + "name": "kebab_dining", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16,15H4v-1h12V15z M16,11H4v1h12V11z M4,9l4-2.78L12,9l4-2.78V5l-4,2.78L8,5L4,7.78L4,9z\"></path></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M6.5,6H7c1.1,0,2-0.9,2-2S8.1,2,7,2H6.5V1h-1v1H5C3.9,2,3,2.9,3,4s0.9,2,2,2h0.5v1H3v4h2.5v1H5c-1.1,0-2,0.9-2,2s0.9,2,2,2 h0.5v3h1v-3H7c1.1,0,2-0.9,2-2s-0.9-2-2-2H6.5v-1H9V7H6.5V6z M5,4.5C4.72,4.5,4.5,4.28,4.5,4S4.72,3.5,5,3.5h2 c0.28,0,0.5,0.22,0.5,0.5S7.28,4.5,7,4.5H5z M7,13.5c0.28,0,0.5,0.22,0.5,0.5S7.28,14.5,7,14.5H5c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5H7z M7.5,8.5v1h-3v-1H7.5z M14.5,6H15c1.1,0,2-0.9,2-2s-0.9-2-2-2h-0.5V1h-1v1H13c-1.1,0-2,0.9-2,2s0.9,2,2,2h0.5 v1H11v4h2.5v1H13c-1.1,0-2,0.9-2,2s0.9,2,2,2h0.5v3h1v-3H15c1.1,0,2-0.9,2-2s-0.9-2-2-2h-0.5v-1H17V7h-2.5V6z M13,4.5 c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5h2c0.28,0,0.5,0.22,0.5,0.5S15.28,4.5,15,4.5H13z M15,13.5c0.28,0,0.5,0.22,0.5,0.5 s-0.22,0.5-0.5,0.5h-2c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5H15z M15.5,8.5v1h-3v-1H15.5z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17.75,7h0.75C19.88,7,21,5.88,21,4.5C21,3.12,19.88,2,18.5,2h-0.75V1h-1.5v1H15.5C14.12,2,13,3.12,13,4.5 C13,5.88,14.12,7,15.5,7h0.75v1H13v5h3.25v1H15.5c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5h0.75v4h1.5v-4h0.75 c1.38,0,2.5-1.12,2.5-2.5c0-1.38-1.12-2.5-2.5-2.5h-0.75v-1H21V8h-3.25V7z M15.5,5C15.22,5,15,4.78,15,4.5S15.22,4,15.5,4h3 C18.78,4,19,4.22,19,4.5S18.78,5,18.5,5H15.5z M18.5,16c0.28,0,0.5,0.22,0.5,0.5S18.78,17,18.5,17h-3c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5H18.5z M19,10v1h-4v-1H19z M7.75,7H8.5C9.88,7,11,5.88,11,4.5C11,3.12,9.88,2,8.5,2H7.75V1h-1.5v1H5.5 C4.12,2,3,3.12,3,4.5C3,5.88,4.12,7,5.5,7h0.75v1H3v5h3.25v1H5.5C4.12,14,3,15.12,3,16.5C3,17.88,4.12,19,5.5,19h0.75v4h1.5v-4H8.5 c1.38,0,2.5-1.12,2.5-2.5c0-1.38-1.12-2.5-2.5-2.5H7.75v-1H11V8H7.75V7z M5.5,5C5.22,5,5,4.78,5,4.5S5.22,4,5.5,4h3 C8.78,4,9,4.22,9,4.5S8.78,5,8.5,5H5.5z M8.5,16C8.78,16,9,16.22,9,16.5S8.78,17,8.5,17h-3C5.22,17,5,16.78,5,16.5S5.22,16,5.5,16 H8.5z M9,10v1H5v-1H9z\"></path>" } } }, - "maps_home_work": { - "name": "maps_home_work", + "no_transfer": { + "name": "no_transfer", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><rect height=\"2\" width=\"2\" x=\"17\" y=\"7\"></rect><rect height=\"2\" width=\"2\" x=\"17\" y=\"11\"></rect><rect height=\"2\" width=\"2\" x=\"17\" y=\"15\"></rect><path d=\"M1,11v10h6v-5h2v5h6V11L8,6L1,11z M13,19h-2v-5H5v5H3v-7l5-3.5l5,3.5V19z\"></path><polygon points=\"10,3 10,4.97 12,6.4 12,5 21,5 21,19 17,19 17,21 23,21 23,3\"></polygon></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M8.5,13c0.83,0,1.5,0.67,1.5,1.5S9.33,16,8.5,16S7,15.33,7,14.5S7.67,13,8.5,13z M19.78,22.61l-1.64-1.64 C18.09,20.98,18.05,21,18,21h-1c-0.55,0-1-0.45-1-1v-1H8v1c0,0.55-0.45,1-1,1H6c-0.55,0-1-0.45-1-1v-1.78C4.39,17.67,4,16.88,4,16 V6.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M6,8.83V10h1.17L6,8.83z M14.17,17l-5-5H6v4c0,0.37,0.21,0.62,0.34,0.73 L6.63,17H14.17z M12,4c3.69,0,5.11,0.46,5.66,0.99H7.82l2,2H18V10h-5.17l2,2H18v3.17l1.81,1.81C19.92,16.67,20,16.35,20,16V6 c0-3.5-3.58-4-8-4C9.48,2,7.24,2.16,5.78,2.95l1.53,1.53C8.17,4.2,9.6,4,12,4z\"></path>" } } }, - "menu": { - "name": "menu", + "roundabout_right": { + "name": "roundabout_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M6.75,3c2.37,0,4.33,1.73,4.69,4l3.69,0l-1.19-1.19L15,4.75l3,3l-3,3l-1.06-1.06l1.19-1.19l-3.69,0 c-0.74,0-1.36-0.54-1.48-1.25C9.72,5.69,8.37,4.5,6.75,4.5l0,0C4.96,4.5,3.5,5.96,3.5,7.75c0,1.62,1.18,2.96,2.73,3.21 c0.72,0.11,1.27,0.67,1.27,1.4l0,4.64H6v-4.56l0,0c-2.27-0.36-4-2.32-4-4.69C2,5.13,4.13,3,6.75,3\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13.92,8C13.44,5.16,10.97,3,8,3C4.69,3,2,5.69,2,9c0,2.97,2.16,5.44,5,5.92L7,21h2l0-6.09c0-0.98-0.71-1.8-1.67-1.97 C5.44,12.63,4,10.98,4,9c0-2.21,1.79-4,4-4c1.98,0,3.63,1.44,3.94,3.33C12.11,9.29,12.93,10,13.91,10l4.26,0l-1.59,1.59L18,13l4-4 l-4-4l-1.41,1.41L18.17,8L13.92,8z\"></path></g>" } } }, - "menu_open": { - "name": "menu_open", + "directions": { + "name": "directions", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3,18h13v-2H3V18z M3,13h10v-2H3V13z M3,6v2h13V6H3z M21,15.59L17.42,12L21,8.41L19.59,7l-5,5l5,5L21,15.59z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22.43 10.59l-9.01-9.01c-.75-.75-2.07-.76-2.83 0l-9 9c-.78.78-.78 2.04 0 2.82l9 9c.39.39.9.58 1.41.58.51 0 1.02-.19 1.41-.58l8.99-8.99c.79-.76.8-2.02.03-2.82zm-10.42 10.4l-9-9 9-9 9 9-9 9zM8 11v4h2v-3h4v2.5l3.5-3.5L14 7.5V10H9c-.55 0-1 .45-1 1z\"></path>" } } }, - "more_horiz": { - "name": "more_horiz", + "terrain": { + "name": "terrain", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z\"></path>" } } }, - "more_vert": { - "name": "more_vert", + "local_offer": { + "name": "local_offer", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z\"></path><circle cx=\"6.5\" cy=\"6.5\" r=\"1.5\"></circle>" } } }, - "north": { - "name": "north", + "merge": { + "name": "merge", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M9.25,10.45c0,0.8-0.32,1.56-0.88,2.12L5,15.94L6.06,17L10,13.06L13.94,17L15,15.94l-3.37-3.37 c-0.56-0.56-0.88-1.33-0.88-2.12l0-4.58l1.19,1.19L13,6l-3-3L7,6l1.06,1.06l1.19-1.19L9.25,10.45z\"></path></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6.41,21L5,19.59l4.83-4.83c0.75-0.75,1.17-1.77,1.17-2.83v-5.1L9.41,8.41L8,7l4-4l4,4l-1.41,1.41L13,6.83v5.1 c0,1.06,0.42,2.08,1.17,2.83L19,19.59L17.59,21L12,15.41L6.41,21z\"></path></g>" } } }, - "north_east": { - "name": "north_east", + "mode_of_travel": { + "name": "mode_of_travel", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.5,8.63c0-0.04,0-0.09,0-0.13C16.5,4.91,13.59,2,10,2S3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18s1.28-1.01,2.7-2.52 c0.1,0.01,0.2,0.02,0.3,0.02c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2c0,0.44,0.14,0.85,0.38,1.18c-0.49,0.51-0.97,0.97-1.38,1.35 C8.1,14.3,5,10.97,5,8.5c0-2.76,2.24-5,5-5s5,2.24,5,5c0,0.04,0,0.08,0,0.13l-1.69-1.69L12.25,8l3.5,3.5l3.5-3.5l-1.06-1.06 L16.5,8.63z\"></path>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15.31,18.9c-0.96,1-2.06,2.03-3.31,3.1c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2c4.19,0,7.99,3.21,8,8.17l2.09-2.09 L23.5,9.5L19,14l-4.5-4.5l1.41-1.41L18,10.17C17.99,6.55,15.34,4,12,4c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14 c0.64-0.59,1.23-1.16,1.77-1.71c-0.17-0.34-0.27-0.72-0.27-1.12c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S17.38,19,16,19 C15.76,19,15.53,18.97,15.31,18.9z\"></path>" } } }, - "north_west": { - "name": "north_west", + "multiple_stop": { + "name": "multiple_stop", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z\"></path></g>" } } }, - "offline_share": { - "name": "offline_share", + "diamond": { + "name": "diamond", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M16,3H4L2,8l8,9l8-9L16,3z M8.21,7.25L9.59,4.5h0.82l1.38,2.75H8.21z M9.25,8.75v5.15L4.67,8.75H9.25z M10.75,8.75h4.58 l-4.58,5.15V8.75z M16.08,7.25h-2.62L12.09,4.5h2.9L16.08,7.25z M5.02,4.5h2.9L6.54,7.25H3.92L5.02,4.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M6,5H4v16c0,1.1,0.9,2,2,2h10v-2H6V5z\"></path><path d=\"M18,1h-8C8.9,1,8,1.9,8,3v14c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V3C20,1.9,19.1,1,18,1z M18,17h-8v-1h8V17z M18,14h-8V6h8 V14z M18,4h-8V3h8V4z\"></path><path d=\"M12.5,10.25h1.63l-0.69,0.69L14.5,12L17,9.5L14.5,7l-1.06,1.06l0.69,0.69H12c-0.55,0-1,0.45-1,1V12h1.5V10.25z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M19,3H5L2,9l10,12L22,9L19,3z M9.62,8l1.5-3h1.76l1.5,3H9.62z M11,10v6.68L5.44,10H11z M13,10h5.56L13,16.68V10z M19.26,8 h-2.65l-1.5-3h2.65L19.26,8z M6.24,5h2.65l-1.5,3H4.74L6.24,5z\"></path></g>" } } }, - "payments": { - "name": "payments", + "local_hospital": { + "name": "local_hospital", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,14V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v8c0,1.1,0.9,2,2,2h14C18.1,16,19,15.1,19,14z M17,14H3V6h14V14z M10,7 c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,7,10,7z M23,7v11c0,1.1-0.9,2-2,2H4c0-1,0-0.9,0-2h17V7C22.1,7,22,7,23,7z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8.5-2h3v-3.5H17v-3h-3.5V7h-3v3.5H7v3h3.5z\"></path>" } } }, - "pivot_table_chart": { - "name": "pivot_table_chart", + "edit_location": { + "name": "edit_location", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M21,5c0-1.1-0.9-2-2-2h-9v5h11V5z M3,19c0,1.1,0.9,2,2,2h3V10H3V19z M3,5v3h5V3H5C3.9,3,3,3.9,3,5z M18,8.99L14,13 l1.41,1.41l1.59-1.6V15c0,1.1-0.9,2-2,2h-2.17l1.59-1.59L13,14l-4,4l4,4l1.41-1.41L12.83,19H15c2.21,0,4-1.79,4-4v-2.18l1.59,1.6 L22,13L18,8.99z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M18.17 4.91L17.1 3.84l-5.55 5.55v1.08h1.08l5.54-5.56zM16 2.74l1.29-1.29a1.49 1.49 0 0 1 2.12 0l1.15 1.15c.59.59.59 1.54 0 2.12l-.68.68-.02.02-.58.58-6 6H10V8.74l6-6zm-2.28-.55l-.55.55-1.27 1.27c-3.3.05-5.9 2.6-5.9 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14v-.1l1.8-1.8c.13.6.2 1.24.2 1.9 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2.58 0 1.16.06 1.72.18z\"></path>" } } }, - "refresh": { - "name": "refresh", + "sailing": { + "name": "sailing", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.5,11.5V2L3,11.5H9.5z M8,10H5.84L8,6.85V10z M17,11.5C17,5.5,12.03,1,10.5,1c0,0,0.8,2.5,0.8,5.5s-0.8,5-0.8,5H17z M12.68,4.35c1.15,1.34,2.33,3.32,2.7,5.65h-2.92c0.18-0.92,0.34-2.12,0.34-3.5C12.8,5.74,12.75,5.02,12.68,4.35z M17.5,17.5H18 l0,1.5h-0.5c-0.86,0-1.71-0.2-2.5-0.6c-1.58,0.8-3.43,0.8-5,0c-1.58,0.8-3.42,0.8-5,0C4.21,18.8,3.36,19,2.5,19H2v-1.5h0.5 c0.87,0,1.74-0.33,2.5-1c1.53,1.33,3.47,1.33,5,0c1.53,1.33,3.48,1.33,5,0C15.76,17.17,16.63,17.5,17.5,17.5z M16.08,15.55 c-0.41-0.27-0.78-0.64-1.08-1.05c-0.61,0.84-1.5,1.5-2.5,1.5s-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16S5.61,15.34,5,14.5 c-0.3,0.41-0.67,0.78-1.08,1.05C2.94,14.83,2.24,13.76,2,12.5h16C17.76,13.76,17.06,14.83,16.08,15.55z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,13.5V2L3,13.5H11z M9,11.5H6.83L9,8.38V11.5z M21,13.5C21,6.5,14.5,1,12.5,1c0,0,1,3,1,6.5s-1,6-1,6H21z M15.38,5.24 c1.42,1.52,2.88,3.72,3.41,6.26h-3.68c0.21-1.1,0.39-2.46,0.39-4C15.5,6.71,15.45,5.95,15.38,5.24z M22,15H2 c0.31,1.53,1.16,2.84,2.33,3.73C4.98,18.46,5.55,18.01,6,17.5C6.73,18.34,7.8,19,9,19s2.27-0.66,3-1.5c0.73,0.84,1.8,1.5,3,1.5 s2.26-0.66,3-1.5c0.45,0.51,1.02,0.96,1.67,1.23C20.84,17.84,21.69,16.53,22,15z M22,23v-2h-1c-1.04,0-2.08-0.35-3-1 c-1.83,1.3-4.17,1.3-6,0c-1.83,1.3-4.17,1.3-6,0c-0.91,0.65-1.96,1-3,1H2l0,2h1c1.03,0,2.05-0.25,3-0.75c1.89,1,4.11,1,6,0 c1.89,1,4.11,1,6,0h0c0.95,0.5,1.97,0.75,3,0.75H22z\"></path>" } } }, - "south": { - "name": "south", + "airlines": { + "name": "airlines", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14.01,14.5H5.35l6.19-9h4.15L14.01,14.5z M10.75,4L2.5,16h12.75L17.5,4H10.75z M11.88,8C10.84,8,10,8.84,10,9.88 s0.84,1.88,1.88,1.88s1.88-0.84,1.88-1.88S12.91,8,11.88,8z\"></path>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect><path d=\"M17.34,18H5.8l8.25-12h5.54L17.34,18z M13,4L2,20h17l3-16H13z M14.5,9c-1.38,0-2.5,1.12-2.5,2.5s1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5S15.88,9,14.5,9z\"></path>" } } }, - "south_east": { - "name": "south_east", + "car_rental": { + "name": "car_rental", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M12.84,8H7.19C6.78,8,6.4,8.26,6.26,8.65L5,12v4.5C5,16.78,5.22,17,5.5,17H6c0.28,0,0.5-0.22,0.5-0.5V16h7v0.5 c0,0.28,0.22,0.5,0.5,0.5h0.5c0.28,0,0.5-0.22,0.5-0.5V12l-1.22-3.34C13.64,8.26,13.26,8,12.84,8z M7.54,9.5h4.95l0.55,1.5H6.98 L7.54,9.5z M13.5,14.5h-7v-2h7V14.5z\"></path><circle cx=\"7.75\" cy=\"13.5\" r=\".75\"></circle><circle cx=\"12.25\" cy=\"13.5\" r=\".75\"></circle><path d=\"M9.37,2.75C9.05,1.74,8.11,1,7,1C5.62,1,4.5,2.12,4.5,3.5S5.62,6,7,6c1.11,0,2.05-0.74,2.37-1.75h3.13V6H14V4.25h1v-1.5 H9.37z M7,4.5c-0.54,0-1-0.46-1-1s0.46-1,1-1s1,0.46,1,1S7.54,4.5,7,4.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><circle cx=\"9\" cy=\"16.5\" r=\"1\"></circle><circle cx=\"15\" cy=\"16.5\" r=\"1\"></circle><path d=\"M17.25,9.6c-0.02-0.02-0.03-0.04-0.05-0.07C16.82,9.01,16.28,9,16.28,9H7.72c0,0-0.54,0.01-0.92,0.54 C6.78,9.56,6.77,9.58,6.75,9.6C6.68,9.71,6.61,9.84,6.56,10C6.34,10.66,5.82,12.22,5,14.69v6.5C5,21.64,5.35,22,5.78,22h0.44 C6.65,22,7,21.64,7,21.19V20h10v1.19c0,0.45,0.34,0.81,0.78,0.81h0.44c0.43,0,0.78-0.36,0.78-0.81v-6.5 c-0.82-2.46-1.34-4.03-1.56-4.69C17.39,9.84,17.32,9.71,17.25,9.6z M8.33,11h7.34l0.23,0.69L16.33,13H7.67L8.33,11z M17,18H7 v-2.99V15h10v0.01V18z\"></path><path d=\"M10.83,3C10.41,1.83,9.3,1,8,1C6.34,1,5,2.34,5,4c0,1.65,1.34,3,3,3c1.3,0,2.41-0.84,2.83-2H16v2h2V5h1V3H10.83z M8,5 C7.45,5,7,4.55,7,4s0.45-1,1-1s1,0.45,1,1S8.55,5,8,5z\"></path></g></g></g>" } } }, - "south_west": { - "name": "south_west", + "directions_bike": { + "name": "directions_bike", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z\"></path>" } } }, - "subdirectory_arrow_left": { - "name": "subdirectory_arrow_left", + "hvac": { + "name": "hvac", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V5h10V15z\"></path><path d=\"M10,14c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4s-4,1.79-4,4C6,12.21,7.79,14,10,14z M12.97,9.74H7.03 c0.04-0.46,0.18-0.88,0.4-1.26h5.15C12.8,8.86,12.93,9.29,12.97,9.74z M12.98,10.24c-0.04,0.46-0.17,0.88-0.39,1.26H7.42 c-0.22-0.38-0.36-0.8-0.39-1.26H12.98z M10,13c-0.88,0-1.67-0.39-2.22-1h4.44C11.67,12.61,10.88,13,10,13z M10,7 c0.88,0,1.66,0.39,2.21,0.99H7.79C8.34,7.39,9.12,7,10,7z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><path d=\"M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M15.44,10c0.26,0.45,0.44,0.96,0.51,1.5h-7.9 c0.07-0.54,0.24-1.05,0.51-1.5H15.44z M15.95,12.5c-0.07,0.54-0.24,1.05-0.51,1.5H8.56c-0.26-0.45-0.44-0.96-0.51-1.5H15.95z M9.38,15h5.24c-0.7,0.61-1.61,1-2.62,1S10.09,15.61,9.38,15z M14.62,9H9.38c0.7-0.61,1.61-1,2.62-1S13.91,8.39,14.62,9z\"></path></g></g>" } } }, - "subdirectory_arrow_right": { - "name": "subdirectory_arrow_right", + "badge": { + "name": "badge", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><g><path d=\"M16.5,6H12V3.5C12,2.67,11.33,2,10.5,2h-1C8.67,2,8,2.67,8,3.5V6H3.5C2.67,6,2,6.67,2,7.5v9C2,17.33,2.67,18,3.5,18h13 c0.83,0,1.5-0.67,1.5-1.5v-9C18,6.67,17.33,6,16.5,6z M9.5,3.5h1v4h-1V3.5z M16.5,16.5h-13v-9H8C8,8.33,8.67,9,9.5,9h1 C11.33,9,12,8.33,12,7.5h4.5V16.5z\"></path></g><g><rect height=\"1.5\" width=\"3\" x=\"12\" y=\"10\"></rect></g><g><rect height=\"1.5\" width=\"3\" x=\"12\" y=\"12.5\"></rect></g><g><circle cx=\"7.5\" cy=\"11.25\" r=\"1.25\"></circle></g><g><path d=\"M9.24,13.36C8.7,13.13,8.12,13,7.5,13c-0.62,0-1.2,0.13-1.74,0.36C5.3,13.56,5,14.01,5,14.52V15h5v-0.48 C10,14.01,9.7,13.56,9.24,13.36z\"></path></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\"></path><path d=\"M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"4\" x=\"14\" y=\"12\"></rect><rect height=\"1.5\" width=\"4\" x=\"14\" y=\"15\"></rect><path d=\"M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M11,7V4h2v3v2h-2V7z M20,20H4V9h5c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2h5V20z\"></path><circle cx=\"9\" cy=\"13.5\" r=\"1.5\"></circle><path d=\"M11.08,16.18C10.44,15.9,9.74,15.75,9,15.75s-1.44,0.15-2.08,0.43C6.36,16.42,6,16.96,6,17.57V18h6v-0.43 C12,16.96,11.64,16.42,11.08,16.18z\"></path></g></g>" } } }, - "switch_left": { - "name": "switch_left", + "directions_car_filled": { + "name": "directions_car_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M18.92,6.01C18.72,5.42,18.16,5,17.5,5h-11C5.84,5,5.29,5.42,5.08,6.01L3,12v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8L18.92,6.01z M6.85,7h10.29l1.04,3H5.81L6.85,7z M19,17H5v-5h14V17z\"></path><circle cx=\"7.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"14.5\" r=\"1.5\"></circle></g></g>" } } }, - "switch_right": { - "name": "switch_right", + "directions_railway": { + "name": "directions_railway", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)\" width=\"24\"></rect><path d=\"M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 1c-4.42 0-8 .5-8 4v10.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4zm0 2c6 0 6 1.2 6 2H6c0-.8 0-2 6-2zm6 4v3H6V7h12zm-1.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5zM12 12.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" } } }, - "unfold_less": { - "name": "unfold_less", + "u_turn_right": { + "name": "u_turn_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M14.5,7.5C14.5,5.01,12.49,3,10,3S5.5,5.01,5.5,7.5V16H7l0-8.5c0-1.66,1.34-3,3-3s3,1.34,3,3l0,2.63l-1.19-1.19L10.75,10 l3,3l3-3l-1.06-1.06l-1.19,1.19L14.5,7.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M24 0v24H0V0h24z\" fill=\"none\" opacity=\".87\"></path><path d=\"M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6,9v12h2V9c0-2.21,1.79-4,4-4s4,1.79,4,4v4.17l-1.59-1.59L13,13l4,4l4-4l-1.41-1.41L18,13.17V9c0-3.31-2.69-6-6-6 S6,5.69,6,9z\"></path></g>" } } }, - "unfold_more": { - "name": "unfold_more", + "electric_rickshaw": { + "name": "electric_rickshaw", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><polygon points=\"9,17 6,17 11,19.5 11,17.5 14,17.5 9,15\"></polygon><path d=\"M17,10.05V8.53c0-0.34-0.12-0.67-0.33-0.94l-3.22-4.03C13.17,3.21,12.73,3,12.28,3H2.5C1.67,3,1,3.67,1,4.5V11 c0,0.83,0.67,1.5,1.5,1.5H3C3,13.88,4.12,15,5.5,15S8,13.88,8,12.5h6c0,1.38,1.12,2.5,2.5,2.5c1.5,0,2.2-1.12,2.39-1.73 C19.34,11.74,18.38,10.33,17,10.05z M2.5,4.5h3.75V8H2.5V4.5z M3.5,11h-1V9.5h3.75v0.61C6.01,10.04,5.76,10,5.5,10 C4.68,10,3.96,10.39,3.5,11z M5.5,13.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.05,13.5,5.5,13.5z M11.5,11H7.75V9.5H10V8 H7.75V4.5h3.75V11z M13,5.4L15.08,8H13V5.4z M14.5,11H13V9.5h2.5v0.71C15.1,10.38,14.76,10.66,14.5,11z M16.5,13.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.05,13.5,16.5,13.5z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M6,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M7,11.17C6.69,11.06,6.35,11,6,11c-1.3,0-2.42,0.84-2.83,2H3v-3 h4V11.17z M7,8H3V5h4V8z M14,13H9v-3h3V8H9V5h5V13z M16,6.12L18.4,9H16V6.12z M17.17,13H16v-2h3v0.17 C18.15,11.47,17.47,12.15,17.17,13z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z\"></path></g><polygon points=\"7,20 11,20 11,18 17,21 13,21 13,23\"></polygon></g></g>" } } }, - "waterfall_chart": { - "name": "waterfall_chart", + "hardware": { + "name": "hardware", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><path d=\"M14.5,3L12,5.5V3H8C5.79,3,4,4.79,4,7h3.5v9c0,0.55,0.45,1,1,1H11c0.55,0,1-0.45,1-1V6.5L14.5,9H16V3H14.5z M10.5,15.5H9 v-4.75h1.5V15.5z M10.5,9.25H9V5.5H6c0.46-0.61,1.18-1,2-1h2.5V9.25z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,4h3v16h-3V4z M3,13h3v7H3V13z M14,4h3v3h-3V4z M10,5h3v4h-3V5z M7,10h3v4H7V10z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M18,3l-3,3V3H9C6.24,3,4,5.24,4,8h5v12c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8l3,3h2V3H18z M13,19h-2v-6h2V19z M11,11V6 H6.77C7.32,5.39,8.11,5,9,5h4v6H11z\"></path></g></g>" } } }, - "west": { - "name": "west", + "local_gas_station": { + "name": "local_gas_station", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9,19l1.41-1.41L5.83,13H22V11H5.83l4.59-4.59L9,5l-7,7L9,19z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 13.5V19H6v-7h6v1.5zm0-3.5H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" } } }, - "account_tree": { - "name": "account_tree", + "fork_right": { + "name": "fork_right", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M9,11.36c1.2-1.05,2.74-1.4,4.13-1.11l-1.19-1.19L13,8l3,3l-3,3l-1.06-1.06l1.19-1.19C11.26,11.32,9.56,12.28,9,14v3H7.5 l0-11.13L6.31,7.06L5.25,6l3-3l3,3l-1.06,1.06L9,5.87L9,11.36z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14.59,15.59L16,17l4-4l-4-4l-1.41,1.41L16.17,12c-1.51-0.33-3.73,0.08-5.17,1.36l0-6.53l1.59,1.59L14,7l-4-4L6,7 l1.41,1.41L9,6.83V21l2,0v-4c0.73-2.58,3.07-3.47,5.17-3L14.59,15.59z\"></path></g>" } } }, - "adb": { - "name": "adb", + "departure_board": { + "name": "departure_board", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"5.5\" cy=\"16.5\" r=\"1.5\"></circle><circle cx=\"12.5\" cy=\"16.5\" r=\"1.5\"></circle><path d=\"M16 1c-2.39 0-4.49 1.2-5.75 3.02C9.84 4.01 9.43 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM9 6h.29c-.09.32-.16.66-.21.99H3.34C3.89 6.46 5.31 6 9 6zM3 8.99h6.08c.16 1.11.57 2.13 1.18 3.01H3V8.99zM15 18c0 .37-.21.62-.34.73l-.29.27H3.63l-.29-.27C3.21 18.62 3 18.37 3 18v-4h9.41c.78.47 1.65.79 2.59.92V18zm1-5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z\"></path>" } } }, - "airline_seat_flat": { - "name": "airline_seat_flat", + "restaurant_menu": { + "name": "restaurant_menu", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z\"></path>" } } }, - "airline_seat_flat_angled": { - "name": "airline_seat_flat_angled", + "soup_kitchen": { + "name": "soup_kitchen", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M4.96,11c0,0,0.31-0.42,0.31-1.15c0-0.77-0.77-2.19-0.77-2.79C4.5,6.74,4.54,6.42,4.81,6h0.98 C5.53,6.42,5.48,6.74,5.48,7.06c0,0.59,0.77,2.02,0.77,2.79c0,0.73-0.31,1.15-0.31,1.15H4.96z M8.32,11c0,0,0.31-0.42,0.31-1.15 c0-0.77-0.77-2.19-0.77-2.79C7.86,6.74,7.9,6.42,8.16,6H7.18C6.92,6.42,6.88,6.74,6.88,7.06c0,0.59,0.77,2.02,0.77,2.79 c0,0.73-0.31,1.15-0.31,1.15H8.32z M10.69,11c0,0,0.31-0.42,0.31-1.15c0-0.77-0.77-2.19-0.77-2.79c0-0.31,0.04-0.64,0.31-1.06H9.56 C9.29,6.42,9.25,6.74,9.25,7.06c0,0.59,0.77,2.02,0.77,2.79c0,0.73-0.31,1.15-0.31,1.15H10.69z M15.5,2c-1.16,0-2.11,0.88-2.24,2 l-0.94,8.4H3.5c-0.28,0-0.53,0.24-0.5,0.52C3.25,15.77,5.59,18,8.4,18c2.78,0,5.07-2.18,5.36-4.99l0.99-8.84 c0.04-0.38,0.36-0.67,0.75-0.67c0.41,0,0.75,0.34,0.75,0.75S16.2,5.3,16.2,5.3l1.48,0.19c0,0,0.07-0.47,0.07-1.24 C17.75,3.01,16.74,2,15.5,2z M8.4,16.5c-1.63,0-3.07-1.08-3.65-2.6h7.28C11.46,15.44,10.04,16.5,8.4,16.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 6.5c.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1m6.47 2.11l6.69 2.41c.52.19.93.56 1.15 1.05.22.48.25 1.03.06 1.53l-.01.02-8.59-3.11.7-1.9M10 15.19l4 1.44V17h-4v-1.81M6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5zm5.28 1.55L9.2 11.71l12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15l-8.56-3.09zm-9.09 4.2l-.69 1.89L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M6.4,7C6.06,7.55,6,7.97,6,8.38C6,9.15,7,11,7,12c0,0.95-0.4,1.5-0.4,1.5H5.1c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62 C4.5,7.97,4.56,7.55,4.9,7H6.4z M11.4,7C11.06,7.55,11,7.97,11,8.38C11,9.15,12,11,12,12c0,0.95-0.4,1.5-0.4,1.5h1.5 c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62c0-0.41,0.06-0.83,0.4-1.38H11.4z M8.15,7c-0.34,0.55-0.4,0.97-0.4,1.38 c0,0.77,1,2.63,1,3.62c0,0.95-0.4,1.5-0.4,1.5h1.5c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62c0-0.41,0.06-0.83,0.4-1.38H8.15z M18.6,2 c-1.54,0-2.81,1.16-2.98,2.65L14.53,15H4.01c-0.6,0-1.09,0.53-1,1.13C3.53,19.46,6.39,22,9.75,22c3.48,0,6.34-2.73,6.71-6.23 l1.15-10.87C17.66,4.39,18.08,4,18.6,4c0.55,0,1,0.45,1,1c0,0.3-0.1,1.25-0.1,1.25l1.97,0.25c0,0,0.13-1.06,0.13-1.5 C21.6,3.35,20.25,2,18.6,2z M9.75,20c-1.94,0-3.67-1.23-4.43-3h8.78h0.01C13.39,18.78,11.69,20,9.75,20z\"></path>" } } }, - "airline_seat_individual_suite": { - "name": "airline_seat_individual_suite", + "navigation": { + "name": "navigation", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7.27l4.28 10.43-3.47-1.53-.81-.36-.81.36-3.47 1.53L12 7.27M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z\"></path>" } } }, - "airline_seat_legroom_extra": { - "name": "airline_seat_legroom_extra", + "temple_hindu": { + "name": "temple_hindu", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M16.5,9v2H15l-3-8V1h-1.5v2h-1V1H8v2l-3,8H3.5V9H2v9h7v-4h2v4h7V9H16.5z M12.09,7.5l0.75,2H7.16l0.75-2H12.09z M8.48,6 l0.56-1.5h1.92L11.52,6H8.48z M16.5,16.5h-4v-4h-5v4h-4v-4h2.54L6.6,11h6.8l0.56,1.5h2.54V16.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,11v2h-2L15,3V1h-2v2h-2.03V1h-2v2.12L6,13H4v-2H2v11h9v-5h2v5h9V11H20z M15.31,11H8.69l0.6-2h5.42L15.31,11z M14.11,7 H9.89l0.6-2h3.02L14.11,7z M20,20h-5v-5H9v5H4v-5h3.49l0.6-2h7.82l0.6,2H20V20z\"></path></g>" } } }, - "airline_seat_legroom_normal": { - "name": "airline_seat_legroom_normal", + "flight": { + "name": "flight", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z\"></path>" } } }, - "airline_seat_legroom_reduced": { - "name": "airline_seat_legroom_reduced", + "egg_alt": { + "name": "egg_alt", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M15.6,7.6C14,6,13.19,2,8.38,2C4.36,2,1.95,5.2,2,9.62S5.97,16,8.38,16c1.61,0,1.61,2,4.82,2C15.6,18,18,15.6,18,12.42 C18,10,17.21,9.2,15.6,7.6z M13.19,16c-1.13,0-1.45-0.28-1.98-0.76C10.65,14.75,9.8,14,8.38,14C7.22,14,4.04,12.96,4,9.6 c-0.02-1.9,0.51-3.49,1.48-4.47C6.22,4.38,7.19,4,8.38,4c2.33,0,3.17,1.15,4.35,3.03c0.43,0.69,0.88,1.41,1.46,1.99 c1.5,1.49,1.81,1.8,1.81,3.4C16,14.47,14.52,16,13.19,16z\"></path></g><g><circle cx=\"10\" cy=\"10\" r=\"2.5\"></circle></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M19,9C17,7,15.99,2,9.97,2C4.95,2,1.94,6,2,11.52C2.06,17.04,6.96,19,9.97,19c2.01,0,2.01,3,6.02,3C19,22,22,19,22,15.02 C22,12,21.01,11,19,9z M15.99,20c-1.49,0-1.96-0.5-2.68-1.26C12.66,18.05,11.66,17,9.97,17C8.33,17,4.05,16.01,4,11.5 C3.97,8.99,4.68,6.88,5.99,5.55C7.01,4.52,8.35,4,9.97,4c3.34,0,4.51,1.86,5.86,4.02c0.55,0.88,1.07,1.71,1.76,2.39 c1.9,1.89,2.41,2.4,2.41,4.61C20,17.87,17.88,20,15.99,20z\"></path></g><g><circle cx=\"12\" cy=\"12\" r=\"3.5\"></circle></g></g></g>" } } }, - "airline_seat_recline_extra": { - "name": "airline_seat_recline_extra", + "edit_location_alt": { + "name": "edit_location_alt", "keywords": [ - "notification" + "maps" ], "heights": { - "24": { - "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z\"></path>" + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><g><polygon points=\"9,10 10.41,10 15.44,4.97 14.03,3.56 9,8.59\"></polygon></g><g><path d=\"M14.91,7.62C14.96,7.91,15,8.2,15,8.5c0,2.47-3.1,5.8-5,7.53C8.1,14.3,5,10.97,5,8.5c0-2.76,2.24-5,5-5 c0.58,0,1.14,0.12,1.66,0.3l1.16-1.16C11.96,2.24,11.01,2,10,2C6.41,2,3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18s6.5-5.16,6.5-9.5 c0-0.74-0.13-1.45-0.36-2.11L14.91,7.62z\"></path></g><g><path d=\"M16.85,2.85l-0.71-0.71c-0.2-0.2-0.51-0.2-0.71,0l-0.71,0.71l1.41,1.41l0.71-0.71C17.05,3.37,17.05,3.05,16.85,2.85z\"></path></g></g></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><path d=\"M11,11h2.12l6.16-6.16l-2.12-2.12L11,8.88V11z M20.71,2L20,1.29c-0.39-0.39-1.02-0.39-1.41,0l-0.72,0.72l2.12,2.12 l0.72-0.72C21.1,3.02,21.1,2.39,20.71,2z M17.9,9.05C17.96,9.41,18,9.79,18,10.2c0,1.71-1.08,4.64-6,9.14c-4.92-4.49-6-7.43-6-9.14 C6,6.17,9.09,4,12,4c0.32,0,0.65,0.03,0.97,0.08l1.65-1.65C13.78,2.16,12.9,2,12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8 c5.33-4.55,8-8.48,8-11.8c0-1.01-0.16-1.94-0.45-2.8L17.9,9.05z\"></path></g>" } } }, - "airline_seat_recline_normal": { - "name": "airline_seat_recline_normal", + "ramen_dining": { + "name": "ramen_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><path d=\"M18,3.01V2L4,3.54V9H2c0,3.36,2.07,6.23,5,7.41V18h6v-1.59c2.93-1.19,5-4.06,5-7.41H9V7h9V6H9V3.99L18,3.01z M7,4.21L8,4.1 V6H7V4.21z M7,7h1v2H7V7z M5,4.43l1-0.11V6H5V4.43z M5,7h1v2H5V7z M16.33,10.5c-0.48,2.02-1.9,3.72-3.89,4.52L11.5,15.4v1.01v0.09 h-3v-0.09V15.4l-0.94-0.38c-1.99-0.81-3.41-2.5-3.89-4.52H16.33z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.89V20h-4v-1.11l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39H19.66 M22,2 L4,3.99V12H2c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25H10.5V8H22V6.5H10.5V4.78L22,3.51V2L22,2z M8,6.5V5.06 l1-0.11V6.5H8L8,6.5z M5.5,6.5V5.34l1-0.11V6.5H5.5L5.5,6.5z M8,12V8h1v4H8L8,12z M5.5,12V8h1v4H5.5L5.5,12z\"></path></g>" } } }, - "bluetooth_audio": { - "name": "bluetooth_audio", + "car_repair": { + "name": "car_repair", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><polygon points=\"4,13 4,14.5 9.25,14.5 9.25,17 10.75,17 10.75,14.5 16,14.5 16,13\"></polygon><path d=\"M5.5,12H6c0.28,0,0.5-0.22,0.5-0.5V11h7v0.5c0,0.28,0.22,0.5,0.5,0.5h0.5c0.28,0,0.5-0.22,0.5-0.5V7l-1.22-3.34 C13.64,3.26,13.26,3,12.84,3H7.19C6.78,3,6.4,3.26,6.26,3.65L5,7v4.5C5,11.78,5.22,12,5.5,12z M7.54,4.5h4.95L13.04,6H6.98 L7.54,4.5z M6.5,7.5h7v2h-7V7.5z\"></path><circle cx=\"7.75\" cy=\"8.5\" r=\".75\"></circle><circle cx=\"12.25\" cy=\"8.5\" r=\".75\"></circle></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><circle cx=\"9\" cy=\"10.5\" r=\"1\"></circle><circle cx=\"15\" cy=\"10.5\" r=\"1\"></circle><path d=\"M5.78,16h0.44C6.65,16,7,15.64,7,15.19V14h10v1.19c0,0.45,0.34,0.81,0.78,0.81h0.44c0.43,0,0.78-0.36,0.78-0.81v-6.5 c0,0-1.34-4.03-1.56-4.69c-0.05-0.16-0.12-0.29-0.19-0.4c-0.02-0.02-0.03-0.04-0.05-0.07C16.82,3.01,16.28,3,16.28,3H7.72 c0,0-0.54,0.01-0.92,0.54C6.78,3.56,6.77,3.58,6.75,3.6C6.68,3.71,6.61,3.84,6.56,4C6.34,4.66,5,8.69,5,8.69v6.5 C5,15.64,5.35,16,5.78,16z M8.33,5h7.34l0.23,0.69L16.33,7H7.67L8.33,5z M7,9.01V9h10v0.01V12H7V9.01z\"></path><polygon points=\"4,17.01 4,19 11,19 11,22 13,22 13,19 20,19 20,17.01\"></polygon></g></g></g>" } } }, - "confirmation_number": { - "name": "confirmation_number", + "run_circle": { + "name": "run_circle", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S13.31,16,10,16z\"></path><path d=\"M11.39,8.15c-0.23-0.43-0.76-0.6-1.22-0.44L7.5,8.67v1.95h1V9.37l0.92-0.33L8.8,12.16l-2.19-0.45l-0.2,0.98l3.17,0.65 L10,11.21l1,0.99V15h1v-3.21l-1.39-1.38l0.21-1.19c0.81,1.03,2.08,1.4,2.67,1.4v-1C13.16,9.62,12.09,9.46,11.39,8.15z\"></path><circle cx=\"11\" cy=\"6\" r=\"1\"></circle></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM11 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\"></path><path d=\"M13.54,8.97c-0.23-0.47-0.76-0.71-1.26-0.53L9,9.65V12h1v-1.65l1.54-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77 l0.52-2.64L13,14.42V18h1v-3.97l-1.32-1.44l0.41-2.35C13.99,11.46,15.3,12,16,12v-1C15.59,11,14.37,10.67,13.54,8.97z\"></path><circle cx=\"13.5\" cy=\"7\" r=\"1\"></circle></g></g>" } } }, - "directions_off": { - "name": "directions_off", + "takeout_dining": { + "name": "takeout_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><path d=\"M17.5,6.56L16.44,5.5l-1.49,1.49L15,6l-3-3H8L5,6l0.05,0.99L3.56,5.5L2.5,6.56l2.66,2.66L5.5,16h9l0.34-6.78L17.5,6.56z M8.62,4.5h2.76l2.09,2.09L13.42,7.5H6.58L6.53,6.59L8.62,4.5z M6.93,14.5L6.65,9h6.7l-0.28,5.5H6.93z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21.71,11.29l-9-9c-0.39-0.39-1.02-0.39-1.41,0L8.21,5.38l1.41,1.41L12,4.42L19.58,12l-2.38,2.38l1.41,1.41l3.09-3.09 C22.1,12.33,22.1,11.7,21.71,11.29z\"></path><polygon points=\"13,7.5 13,10.17 15.17,12.34 16.5,11\"></polygon><path d=\"M1.39,4.22l3.99,3.99l-3.09,3.09c-0.39,0.39-0.39,1.02,0,1.41l9,9c0.39,0.39,1.02,0.39,1.41,0l3.09-3.09l3.99,3.99 l1.41-1.41L2.81,2.81L1.39,4.22z M8.03,10.85C8.02,10.9,7.99,10.95,7.99,11v4h2v-2.18l4.38,4.38L12,19.58L4.42,12l2.38-2.38 L8.03,10.85z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M7.79,18l-0.51-7h9.46l-0.51,7H7.79z M9.83,5h4.33l2.8,2.73L16.87,9H7.12L7.03,7.73L9.83,5z M22,7.46l-1.41-1.41L19,7.63 l0.03-0.56L14.98,3H9.02L4.97,7.07L5,7.57L3.41,6.01L2,7.44l3.23,3.11L5.93,20h12.14l0.7-9.44L22,7.46z\"></path></g></g></g>" } } }, - "disc_full": { - "name": "disc_full", + "fastfood": { + "name": "fastfood", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 7h2v5h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm10-4h2v2h-2zm-10-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98zM8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z\"></path>" } } }, - "do_disturb": { - "name": "do_disturb", + "theater_comedy": { + "name": "theater_comedy", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><circle cx=\"12.5\" cy=\"5.5\" r=\".75\"></circle><path d=\"M9,2v4h1.5V3.5h7V8c0,1.93-1.57,3.5-3.5,3.5c-0.74,0-1.43-0.24-2-0.64v1.71c0.61,0.27,1.29,0.42,2,0.42c2.76,0,5-2.24,5-5 V2H9z\"></path><circle cx=\"15.5\" cy=\"5.5\" r=\".75\"></circle><path d=\"M1,13c0,0.69,0.14,1.35,0.39,1.95c0.51,1.2,1.46,2.15,2.66,2.66C4.65,17.86,5.31,18,6,18s1.35-0.14,1.95-0.39 c1.2-0.51,2.15-1.46,2.66-2.66C10.86,14.35,11,13.69,11,13V7H1V13z M2.5,8.5h7V13c0,1.93-1.57,3.5-3.5,3.5 c-1.93,0-3.5-1.57-3.5-3.5V8.5z\"></path><circle cx=\"4.5\" cy=\"10.5\" r=\".75\"></circle><circle cx=\"7.5\" cy=\"10.5\" r=\".75\"></circle><path d=\"M6,14.51c1.11,0,2-0.67,2-1.51H4C4,13.83,4.89,14.51,6,14.51z\"></path><path d=\"M14,8c-1.11,0-2,0.67-2,1.51h4C16,8.67,15.11,8,14,8z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"19\" cy=\"6.5\" r=\"1\"></circle><circle cx=\"15\" cy=\"6.5\" r=\"1\"></circle><path d=\"M16.99,9c-1.38,0-2.5,0.84-2.5,1.88h5C19.49,9.84,18.37,9,16.99,9z\"></path><path d=\"M1,16c0,3.31,2.69,6,6,6s6-2.69,6-6V9H1V16z M3,11h8v5c0,2.21-1.79,4-4,4s-4-1.79-4-4V11z\"></path><path d=\"M11,2v5.5h2V4h8v5c0,2.21-1.79,4-4,4c-0.95,0-1.81-0.35-2.5-0.9v2.35C15.26,14.8,16.11,15,17,15c3.31,0,6-2.69,6-6V2H11z\"></path><circle cx=\"5\" cy=\"13.5\" r=\"1\"></circle><circle cx=\"9\" cy=\"13.5\" r=\"1\"></circle><path d=\"M7,17.88c1.38,0,2.5-0.84,2.5-1.88h-5C4.5,17.04,5.62,17.88,7,17.88z\"></path></g></g>" } } }, - "do_disturb_alt": { - "name": "do_disturb_alt", + "connecting_airports": { + "name": "connecting_airports", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M4,8.5l0.5-1.75L4,5h0.7l0.75,1H7.7L6.6,2.5h0.9L9.6,6h2.15c0.41,0,0.75,0.34,0.75,0.75S12.16,7.5,11.75,7.5H9.6L7.5,11H6.6 l1.1-3.5H5.45l-0.75,1H4z M15.5,13.25L16,11.5h-0.7l-0.75,1H12.3L13.4,9h-0.9l-2.1,3.5H8.25c-0.41,0-0.75,0.34-0.75,0.75 S7.84,14,8.25,14h2.15l2.1,3.5h0.9L12.3,14h2.25l0.75,1H16L15.5,13.25z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15.4,17l1.3,4.4h-1.1L13,17h-3c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3l2.6-4.4h1.1L15.4,15h2.85L19,14h1l-0.6,2l0.6,2h-1 l-0.75-1H15.4z M5.75,7L5,6H4l0.6,2L4,10h1l0.75-1H8.6l-1.3,4.4h1.1L11,9h3c0.55,0,1-0.45,1-1s-0.45-1-1-1h-3L8.4,2.6H7.3L8.6,7 H5.75z\"></path>" } } }, - "do_disturb_off": { - "name": "do_disturb_off", + "fort": { + "name": "fort", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M17.5,3v1.5h-1.75V3h-1.5v1.5H12.5V3H11v3l2,2v1H7V8l2-2V3H7.5v1.5H5.75V3h-1.5v1.5H2.5V3H1v3l2,2v4l-2,2v3h7v-2 c0-1.1,0.9-2,2-2s2,0.9,2,2v2h7v-3l-2-2V8l2-2V3H17.5z M17.5,14.62v0.88h-4V15c0-1.93-1.57-3.5-3.5-3.5S6.5,13.07,6.5,15v0.5h-4 v-0.88l2-2V7.38L3.13,6h3.75L5.5,7.38v3.12h9V7.38L13.13,6h3.75L15.5,7.38v5.24L17.5,14.62z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4c4.41 0 8 3.59 8 8 0 1.41-.37 2.73-1.01 3.88l1.46 1.46C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55l1.46 1.46C9.27 4.37 10.59 4 12 4zm5 7h-2.88l2 2H17zM2.41 2.13L1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM12 20c-4.41 0-8-3.59-8-8 0-1.56.45-3 1.23-4.23L8.46 11H7v2h3.46l5.77 5.77C15 19.55 13.56 20 12 20z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,3v2h-2V3h-2v2h-2V3h-2v4l2,2v1H9V9l2-2V3H9v2H7V3H5v2H3V3H1v4l2,2v6l-2,2v4h9v-3c0-1.1,0.9-2,2-2s2,0.9,2,2v3h9v-4 l-2-2V9l2-2V3H21z M21,19h-5v-1c0-2.21-1.79-4-4-4s-4,1.79-4,4v1H3v-1.17l2-2V8.17L3.83,7h4.34L7,8.17V12h10V8.17L15.83,7h4.34 L19,8.17v7.66l2,2V19z\"></path></g>" } } }, - "do_disturb_on": { - "name": "do_disturb_on", + "church": { + "name": "church", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,11V8l-4.25-2.55v-1.2h1.75v-1.5h-1.75V1h-1.5v1.75H7.5v1.5h1.75v1.2L5,8v3l-3,1v6h7v-3c0-0.55,0.45-1,1-1s1,0.45,1,1 v3h7v-6L15,11z M16.5,16.5h-4V15c0-1.38-1.12-2.5-2.5-2.5S7.5,13.62,7.5,15v1.5h-4v-3.42l3-1V8.85l3.5-2.1l3.5,2.1v3.23l3,1V16.5z\"></path><circle cx=\"10\" cy=\"10\" r=\"1.25\"></circle></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18,12.22V9l-5-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6,9v3.22L2,14v8h9v-4c0-0.55,0.45-1,1-1s1,0.45,1,1v4h9v-8L18,12.22z M20,20h-5v-2.04c0-1.69-1.35-3.06-3-3.06c-1.65,0-3,1.37-3,3.06V20H4v-4.79l4-1.81v-3.35L12,8l4,2.04v3.35l4,1.81V20z\"></path><circle cx=\"12\" cy=\"12\" r=\"1.5\"></circle></g></g>" } } }, - "do_not_disturb": { - "name": "do_not_disturb", + "directions_car": { + "name": "directions_car", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-1.85,0.63-3.55,1.69-4.9L16.9,18.31C15.55,19.37,13.85,20,12,20z M18.31,16.9L7.1,5.69C8.45,4.63,10.15,4,12,4 c4.42,0,8,3.58,8,8C20,13.85,19.37,15.55,18.31,16.9z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z\"></path><circle cx=\"7.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"14.5\" r=\"1.5\"></circle>" } } }, - "do_not_disturb_alt": { - "name": "do_not_disturb_alt", + "rate_review": { + "name": "rate_review", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M4,12c0-4.4,3.6-8,8-8c1.8,0,3.5,0.6,4.9,1.7L5.7,16.9 C4.6,15.5,4,13.8,4,12z M12,20c-1.8,0-3.5-0.6-4.9-1.7L18.3,7.1C19.4,8.5,20,10.2,20,12C20,16.4,16.4,20,12,20z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9.5-2H18v-2h-5.5zm3.86-5.87c.2-.2.2-.51 0-.71l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l5.89-5.87z\"></path>" } } }, - "do_not_disturb_off": { - "name": "do_not_disturb_off", + "add_business": { + "name": "add_business", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"1\" width=\"10\" x=\"4\" y=\"4\"></rect><path d=\"M13,14h1v-3h1v-1l-1-4H4l-1,4v1h1v5h6v-5h3V14z M9,15H5v-4h4V15z M4.03,10l0.75-3h8.44l0.75,3H4.03z\"></path><polygon points=\"18,15 16,15 16,13 15,13 15,15 13,15 13,16 15,16 15,18 16,18 16,16 18,16\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.94,5.12C9.14,4.41,10.52,4,12,4c4.41,0,8,3.59,8,8c0,1.48-0.41,2.86-1.12,4.06l1.46,1.46C21.39,15.93,22,14.04,22,12 c0-5.52-4.48-10-10-10C9.96,2,8.07,2.61,6.49,3.66L7.94,5.12z\"></path><path d=\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.41L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06L8.17,11H7v2h3.17l5.88,5.88 C14.86,19.59,13.48,20,12,20z\"></path><polygon points=\"13.83,11 15.83,13 17,13 17,11\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"15\" x=\"2\" y=\"4\"></rect><path d=\"M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z\"></path><polygon points=\"23,18 20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20\"></polygon></g></g>" } } }, - "do_not_disturb_on": { - "name": "do_not_disturb_on", + "transit_enterexit": { + "name": "transit_enterexit", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7,11v2h10v-2H7z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z\"></path>" } } }, - "drive_eta": { - "name": "drive_eta", + "celebration": { + "name": "celebration", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M2,18l11.49-4.07L6.07,6.51L2,18z M10.75,13.31l-6.29,2.22l2.22-6.29L10.75,13.31z\"></path><path d=\"M12.25,5.63L9.78,8.1l0.71,0.71l2.47-2.47c0.78-0.78,0.78-2.05,0-2.83l-1.41-1.41L10.84,2.8l1.41,1.41 C12.64,4.6,12.64,5.24,12.25,5.63z\"></path><path d=\"M8.36,6.69l0.71,0.71l0.71-0.71c0.78-0.78,0.78-2.05,0-2.83L9.07,3.15L8.36,3.86l0.71,0.71c0.39,0.39,0.39,1.02,0,1.41 L8.36,6.69z\"></path><path d=\"M15.79,8.58c-0.51,0-1.02,0.2-1.41,0.59l-1.77,1.77l0.71,0.71l1.77-1.77c0.2-0.2,0.45-0.29,0.71-0.29s0.51,0.1,0.71,0.29 l1.41,1.41l0.71-0.71L17.2,9.16C16.81,8.77,16.3,8.58,15.79,8.58z\"></path><path d=\"M18.62,4.92c-0.39-0.39-0.9-0.59-1.41-0.59s-1.02,0.2-1.41,0.59l-4.6,4.6l0.71,0.71l4.6-4.6c0.2-0.2,0.45-0.29,0.71-0.29 s0.51,0.1,0.71,0.29l0.71,0.71l0.71-0.71L18.62,4.92z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z\"></path><circle cx=\"7.5\" cy=\"13.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"13.5\" r=\"1.5\"></circle>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><path d=\"M2,22l14-5L7,8L2,22z M12.35,16.18L5.3,18.7l2.52-7.05L12.35,16.18z\"></path><path d=\"M14.53,12.53l5.59-5.59c0.49-0.49,1.28-0.49,1.77,0l0.59,0.59l1.06-1.06l-0.59-0.59c-1.07-1.07-2.82-1.07-3.89,0 l-5.59,5.59L14.53,12.53z\"></path><path d=\"M10.06,6.88L9.47,7.47l1.06,1.06l0.59-0.59c1.07-1.07,1.07-2.82,0-3.89l-0.59-0.59L9.47,4.53l0.59,0.59 C10.54,5.6,10.54,6.4,10.06,6.88z\"></path><path d=\"M17.06,11.88l-1.59,1.59l1.06,1.06l1.59-1.59c0.49-0.49,1.28-0.49,1.77,0l1.61,1.61l1.06-1.06l-1.61-1.61 C19.87,10.81,18.13,10.81,17.06,11.88z\"></path><path d=\"M15.06,5.88l-3.59,3.59l1.06,1.06l3.59-3.59c1.07-1.07,1.07-2.82,0-3.89l-1.59-1.59l-1.06,1.06l1.59,1.59 C15.54,4.6,15.54,5.4,15.06,5.88z\"></path></g></g></g>" } } }, - "enhanced_encryption": { - "name": "enhanced_encryption", + "airline_stops": { + "name": "airline_stops", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.25,14C9.25,10.41,6,7.5,2,7.5V6c3.56,0,6.64,1.96,8,4.76c0.86-1.78,2.45-3.39,4.72-4.76L11.5,6V4.5H17V10h-1.5l0-2.72 c-1.82,1.09-4.75,3.32-4.75,6.72h1.5v1.5h-4.5V14H9.25z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10zm-5-9h-2v3H8v2h3v3h2v-3h3v-2h-3z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,8.7c-2.46,1.5-5.5,4.17-6,8.3h2v2H9v-2h2c-0.5-4.5-4.37-8-9-8V7c4.39,0,8.22,2.55,10,6.3c1.38-2.97,3.86-5.03,5.96-6.31 L14,7V5h7v7h-2V8.7z\"></path>" } } }, - "event_available": { - "name": "event_available", + "directions_bus": { + "name": "directions_bus", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm5.56 10.46l5.93-5.93-1.06-1.06-4.87 4.87-2.11-2.11-1.06 1.06z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4zm5.66 2.99H6.34C6.89 4.46 8.31 4 12 4s5.11.46 5.66.99zm.34 2V10H6V6.99h12zm-.34 9.74l-.29.27H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h12v4c0 .37-.21.62-.34.73z\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle>" } } }, - "event_busy": { - "name": "event_busy", + "streetview": { + "name": "streetview", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm3.23 9.41l1.06 1.06 2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z\"></path><circle cx=\"18\" cy=\"6\" r=\"5\"></circle><path d=\"M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z\"></path>" } } }, - "event_note": { - "name": "event_note", + "tram": { + "name": "tram", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm2 4h10v2H7zm0 4h7v2H7z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55h-.01.01C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1.97 2h1.94c2.75.08 3.62.58 3.9 1H7.13c.28-.42 1.15-.92 3.9-1zm-.18 10.95H7.74C7.3 17.84 7 17.45 7 17v-1h3.89c-.24.27-.39.61-.39 1 0 .36.13.69.35.95zM17 17c0 .45-.3.84-.74.95h-3.11c.22-.26.35-.59.35-.95 0-.39-.15-.73-.39-1H17v1zm0-3H7v-4h10v4z\"></path>" } } }, - "folder_special": { - "name": "folder_special", + "fork_left": { + "name": "fork_left", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M11,11.36c-1.2-1.05-2.74-1.4-4.13-1.11l1.19-1.19L7,8l-3,3l3,3l1.06-1.06l-1.19-1.19C8.74,11.32,10.44,12.28,11,14v3h1.5 l0-11.13l1.19,1.19L14.75,6l-3-3l-3,3l1.06,1.06L11,5.87L11,11.36z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-6.92-3.96L12.39 17 15 15.47 17.61 17l-.69-2.96 2.3-1.99-3.03-.26L15 9l-1.19 2.79-3.03.26z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M9.41,15.59L8,17l-4-4l4-4l1.41,1.41L7.83,12c1.51-0.33,3.73,0.08,5.17,1.36l0-6.53l-1.59,1.59L10,7l4-4l4,4l-1.41,1.41 L15,6.83V21l-2,0v-4c-0.73-2.58-3.07-3.47-5.17-3L9.41,15.59z\"></path></g>" } } }, - "imagesearch_roller": { - "name": "imagesearch_roller", + "hotel": { + "name": "hotel", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,7V3c0-0.55-0.45-1-1-1H7C6.45,2,6,2.45,6,3v1H4C2.9,4,2,4.9,2,6v4c0,1.1,0.9,2,2,2h8v3h-1c-0.55,0-1,0.45-1,1v6 c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-6c0-0.55-0.45-1-1-1h-1v-3c0-1.1-0.9-2-2-2H4V6h2v1c0,0.55,0.45,1,1,1h12 C19.55,8,20,7.55,20,7z M8,4h10v2H8V4z M14,21h-2v-4h2V21z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z\"></path>" } } }, - "live_tv": { - "name": "live_tv", + "compass_calibration": { + "name": "compass_calibration", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H3V8h18v12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-17C8.1 3 4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3zm4.84 6.47c-1.44-.91-3.1-1.4-4.84-1.4-1.74 0-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5c2.56 0 5 .79 7.05 2.26l-2.21 2.21z\"></path>" } } }, - "mms": { - "name": "mms", + "factory": { + "name": "factory", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M16.5,10v6.5h-13V9.47L6,8.33v1.71l4-1.75V10H16.5z M15,2l-1,6.5h-2.5V6l-4,1.75V6L2,8.5V18h16V8.5L17,2H15z M14,11.5h-1.5 V15H14V11.5z M7.5,11.5H6V15h1.5V11.5z M10.75,11.5h-1.5V15h1.5V11.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-5.5-8L11 12.51 8.5 9.5 5 14h14z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M22,22H2V10l7-3v2l5-2l0,3h3l1-8h3l1,8V22z M12,9.95l-5,2V10l-3,1.32V20h16v-8h-8L12,9.95z M11,18h2v-4h-2V18z M7,18h2v-4 H7V18z M17,14h-2v4h2V14z\"></path></g>" } } }, - "more": { - "name": "more", + "dinner_dining": { + "name": "dinner_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M3,14.5h14c0-2.49-2.01-4.5-4.5-4.5c-2.03,0-3.72,1.35-4.28,3.19C7.86,12.92,7.45,12.73,7,12.61V8h1c1.1,0,2-0.9,2-2h7V5 h-7c0-1.1-0.9-2-2-2H3v1h1v1H3v1h1v1H3v1h1v5.26C3.58,13.59,3.23,14.01,3,14.5z M12.5,11.5c1.11,0,2.08,0.6,2.6,1.5H9.92 C10.45,12.08,11.42,11.5,12.5,11.5z M7,4h1.5v1H7V4z M7,6h1.5v1H7V6z M5,4h1v1H5V4z M5,6h1v1H5V6z M5,8h1v4.51 c-0.35,0.02-0.68,0.08-1,0.19V8z\"></path><polygon points=\"2,15.5 3.5,17 16.5,17 18,15.5\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z\"></path><circle cx=\"9\" cy=\"12\" r=\"1.5\"></circle><circle cx=\"14\" cy=\"12\" r=\"1.5\"></circle><circle cx=\"19\" cy=\"12\" r=\"1.5\"></circle>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><polygon points=\"2,19 4,21 20,21 22,19\"></polygon><path d=\"M3,18h16.97c0,0,0,0,0,0c0.29-3.26-2.28-6-5.48-6c-2.35,0-4.35,1.48-5.14,3.55C8.94,15.32,8.48,15.17,8,15.08V9h1.75 C10.99,9,12,7.99,12,6.75h9v-1.5h-9C12,4.01,10.99,3,9.75,3H3v1.5h1v0.75H3v1.5h1V7.5H3V9h1v7.39C3.56,16.85,3.22,17.39,3,18z M14.5,14c0.99,0,1.91,0.4,2.58,1.14c0.24,0.26,0.44,0.55,0.58,0.86h-6.32C11.92,14.79,13.15,14,14.5,14z M8,4.5h2v0.75H8V4.5z M8,6.75h2V7.5H8V6.75z M5.5,4.5h1v0.75h-1V4.5z M5.5,6.75h1V7.5h-1V6.75z M5.5,9h1v6.06c-0.35,0.06-0.68,0.17-1,0.3V9z\"></path></g></g>" } } }, - "network_check": { - "name": "network_check", + "edit_road": { + "name": "edit_road", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"12\" width=\"1\" x=\"4\" y=\"4\"></rect><rect height=\"2\" width=\"1\" x=\"8.5\" y=\"4\"></rect><rect height=\"2\" width=\"1\" x=\"8.5\" y=\"14\"></rect><rect height=\"2\" width=\"1\" x=\"8.5\" y=\"9\"></rect><path d=\"M18.07,9.64l-0.71-0.71c-0.39-0.39-1.02-0.39-1.41,0L11,13.88V16h2.12l4.95-4.95C18.46,10.66,18.46,10.03,18.07,9.64z M12.71,15H12v-0.71l3.24-3.24l0.71,0.71L12.71,15z\"></path><polygon points=\"14,4 13,4 13,10.46 14,9.46\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"18,4 16,4 16,11.9 18,9.9\"></polygon><rect height=\"16\" width=\"2\" x=\"4\" y=\"4\"></rect><rect height=\"4\" width=\"2\" x=\"10\" y=\"4\"></rect><rect height=\"4\" width=\"2\" x=\"10\" y=\"10\"></rect><rect height=\"4\" width=\"2\" x=\"10\" y=\"16\"></rect><path d=\"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z\"></path></g></g>" } } }, - "network_locked": { - "name": "network_locked", + "local_library": { + "name": "local_library", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 16v-.5c0-1.38-1.12-2.5-2.5-2.5S17 14.12 17 15.5v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zM18 5.83v5.43c.47-.16.97-.26 1.5-.26.17 0 .33.03.5.05V1L1 20h13v-2H5.83L18 5.83z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 9c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zm7 5.58c-2.53.34-4.93 1.3-7 2.82-2.06-1.52-4.47-2.49-7-2.83v-6.95c2.1.38 4.05 1.35 5.64 2.83L12 14.28l1.36-1.27c1.59-1.48 3.54-2.45 5.64-2.83v6.95z\"></path>" } } }, - "no_encryption": { - "name": "no_encryption", + "plumbing": { + "name": "plumbing", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M13.29,4.45l2.83,2.83l0,0c0.78-0.78,0.78-2.05,0-2.83l-2.12-2.12c-0.39-0.39-1.02-0.39-1.41,0L9.75,5.15l1.41,1.41 L13.29,4.45z\"></path><path d=\"M4.8,11.52L4.8,11.52c0.39,0.39,1.02,0.39,1.41,0L8.34,9.4L6.92,7.98L4.8,10.1C4.41,10.49,4.41,11.13,4.8,11.52z\"></path><path d=\"M12.58,6.57l-1.41,1.41L8.34,5.15c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L9.75,9.4L9.04,10.1 l-5.3,5.3c-0.59,0.59-0.59,1.54,0,2.12l0,0c0.59,0.59,1.54,0.59,2.12,0l7.42-7.42l0,0c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L12.58,6.57z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z\"></path><path d=\"M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z\"></path><path d=\"M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z\"></path></g></g>" } } }, - "no_encryption_gmailerrorred": { - "name": "no_encryption_gmailerrorred", + "local_pizza": { + "name": "local_pizza", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zm0 15.92L5.51 6.36C7.32 4.85 9.62 4 12 4s4.68.85 6.49 2.36L12 17.92zM9 5.5c-.83 0-1.5.67-1.5 1.5S8.17 8.5 9 8.5s1.5-.67 1.5-1.5S9.82 5.5 9 5.5zm1.5 7.5c0 .83.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5s-.68-1.5-1.5-1.5-1.5.67-1.5 1.5z\"></path>" } } }, - "ondemand_video": { - "name": "ondemand_video", + "no_meals": { + "name": "no_meals", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 7v8l7-4zm12-4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z\"></path>" } } }, - "personal_video": { - "name": "personal_video", + "local_fire_department": { + "name": "local_fire_department", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><path d=\"M19.48,12.35c-1.57-4.08-7.16-4.3-5.81-10.23c0.1-0.44-0.37-0.78-0.75-0.55C9.29,3.71,6.68,8,8.87,13.62 c0.18,0.46-0.36,0.89-0.75,0.59c-1.81-1.37-2-3.34-1.84-4.75c0.06-0.52-0.62-0.77-0.91-0.34C4.69,10.16,4,11.84,4,14.37 c0.38,5.6,5.11,7.32,6.81,7.54c2.43,0.31,5.06-0.14,6.95-1.87C19.84,18.11,20.6,15.03,19.48,12.35z M10.2,17.38 c1.44-0.35,2.18-1.39,2.38-2.31c0.33-1.43-0.96-2.83-0.09-5.09c0.33,1.87,3.27,3.04,3.27,5.08C15.84,17.59,13.1,19.76,10.2,17.38z\"></path></g>" } } }, - "phone_bluetooth_speaker": { - "name": "phone_bluetooth_speaker", + "bike_scooter": { + "name": "bike_scooter", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M9,13c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S10.1,13,9,13z M9,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,16,9,16z\"></path><path d=\"M9.24,12L7.82,5.78C7.72,5.32,7.31,5,6.84,5H4.01v1h2.84l1.17,5.14c-1.57,0.4-2.75,1.72-2.96,3.36H1v1h5.01v-0.51 C6.01,13.34,7.35,12,9,12L9.24,12z\"></path><path d=\"M15.5,8h-0.68l-1.58-4.34C13.1,3.26,12.72,3,12.3,3H10v1h2.3l1.46,4h-4.4l0.23,1h3.45c-0.53,0.52-0.88,1.22-0.98,2h-2.01 l0.23,1h1.79c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,9.75,17.59,8,15.5,8z M15.5,14 c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,9.02,15.4,9,15.5,9c1.4,0,2.5,1.1,2.5,2.5 S16.9,14,15.5,14z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z\"></path><path d=\"M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z\"></path><path d=\"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z\"></path></g></g>" } } }, - "phone_callback": { - "name": "phone_callback", + "hail": { + "name": "hail", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><path d=\"M12,6c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,6,12,6z M17,2h2c0,2.7-0.93,4.41-2.3,5.5c-0.5,0.4-1.1,0.7-1.7,0.9V22h-2 v-6h-2v6H9V10.1c-0.3,0.1-0.5,0.2-0.6,0.3C7.87,10.81,7,11.43,7,14H5c0-2.06,0.35-3.78,2.11-5.29C8.21,7.81,10,7,12,7 s2.68-0.46,3.48-1.06C15.96,5.55,17,4.76,17,2z M4,16h3v6H4V16z\"></path></g>" } } }, - "phone_forwarded": { - "name": "phone_forwarded", + "local_pharmacy": { + "name": "local_pharmacy", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 11l5-5-5-5v3h-4v4h4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-3.9 8.63L18.89 19H5.11l1.79-5.37.21-.63-.21-.63L5.11 7h13.78l-1.79 5.37-.21.63.21.63zM13 9h-2v3H8v2h3v3h2v-3h3v-2h-3z\"></path>" } } }, - "phone_in_talk": { - "name": "phone_in_talk", + "traffic": { + "name": "traffic", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 12h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm4 0h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm1 3.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-5 9H9V5h6v14zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9z\"></path>" } } }, - "phone_locked": { - "name": "phone_locked", + "dry_cleaning": { + "name": "dry_cleaning", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><path d=\"M16.97,10.87c-0.11-0.62-0.55-1.12-1.13-1.37l-5.09-2.18V6.25c0-0.41-0.34-0.75-0.75-0.75c-0.62,0-1-0.56-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1h1.5C12.5,3.12,11.38,2,10,2C9.82,2,9.64,2.02,9.45,2.06C8.5,2.26,7.73,3.05,7.55,4.01 c-0.25,1.33,0.55,2.5,1.7,2.86v0.45L4.16,9.5c-0.57,0.25-1.02,0.75-1.13,1.37C2.83,12.01,3.7,13,4.81,13H6v5h8v-5h1.19 C16.3,13,17.17,12.01,16.97,10.87z M12.5,16.5h-5v-4h5V16.5z M15.19,11.5H14V11H6v0.5H4.81c-0.17,0-0.31-0.14-0.31-0.31 c0-0.12,0.07-0.23,0.19-0.28L10,8.63l5.31,2.28c0.11,0.05,0.19,0.16,0.19,0.28C15.5,11.36,15.36,11.5,15.19,11.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M19.56,11.36L13,8.44V7c0-0.55-0.45-1-1-1l0,0c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1h2c0-1.84-1.66-3.3-3.56-2.95 C10.26,2.27,9.29,3.22,9.06,4.4C8.76,5.96,9.66,7.34,11,7.82v0.63l-6.56,2.92C3.56,11.75,3,12.62,3,13.57v0.01 C3,14.92,4.08,16,5.42,16H7v6h10v-6h1.58c1.34,0,2.42-1.08,2.42-2.42v-0.01C21,12.62,20.44,11.75,19.56,11.36z M15,20H9v-5h6V20z M18.58,14H17v-1H7v1H5.42c-0.46,0-0.58-0.65-0.17-0.81l6.75-3l6.75,3C19.17,13.38,19.03,14,18.58,14z\"></path></g></g>" } } }, - "phone_missed": { - "name": "phone_missed", + "local_dining": { + "name": "local_dining", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.12-.52-.3-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.08 1.26c-.6-.48-1.22-.9-1.88-1.27v-1.7c1.05.51 2.03 1.15 2.95 1.9l-1.07 1.07zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z\"></path>" } } }, - "phone_paused": { - "name": "phone_paused", + "trip_origin": { + "name": "trip_origin", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.54 5c.06.88.21 1.75.44 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79h1.51m9.86 12.01c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1zM15 3h2v7h-2zm4 0h2v7h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z\"></path>" } } }, - "power": { - "name": "power", + "delivery_dining": { + "name": "delivery_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"4\" x=\"4\" y=\"5.5\"></rect><path d=\"M15.5,6.5C15.5,5.67,14.83,5,14,5h-2.5v1.5H14v1.41l-3,3.59H8V8H5c-1.66,0-3,1.34-3,3v2h1.5c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5h3.2l3.8-4.54V6.5z M3.5,11.5V11c0-0.83,0.67-1.5,1.5-1.5h1.5v2H3.5z M6,14c-0.55,0-1-0.45-1-1h2 C7,13.55,6.55,14,6,14z\"></path><path d=\"M15.5,10.5c-1.38,0-2.5,1.12-2.5,2.5s1.12,2.5,2.5,2.5S18,14.38,18,13S16.88,10.5,15.5,10.5z M15.5,14c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S16.05,14,15.5,14z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 9v4.66l-3.5 3.51V19h-1v-1.83L8 13.65V9h8m0-6h-2v4h-4V3H8v4h-.01C6.9 6.99 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.51V9c0-1.1-.9-2-2-2V3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><g><path d=\"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35 V7z M4,14v-1c0-1.1,0.9-2,2-2h2v3H4z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z\"></path><rect height=\"2\" width=\"5\" x=\"5\" y=\"6\"></rect><path d=\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 C20,16.55,19.55,17,19,17z\"></path></g></g></g>" } } }, - "power_off": { - "name": "power_off", + "directions_walk": { + "name": "directions_walk", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84L2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7\"></path>" } } }, - "priority_high": { - "name": "priority_high", + "electric_car": { + "name": "electric_car", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"13\" cy=\"9.5\" r=\"1\"></circle><circle cx=\"7\" cy=\"9.5\" r=\"1\"></circle><path d=\"M14.28,3.55C14.11,3.21,13.76,3,13.38,3H6.62C6.24,3,5.89,3.21,5.72,3.55L4,7v5.5C4,12.78,4.22,13,4.5,13h1 C5.78,13,6,12.78,6,12.5V12h8v0.5c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5V7L14.28,3.55z M6.62,4h6.76l1.5,3H5.12 L6.62,4z M15,11H5V8h10V11z\"></path></g><polygon points=\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\"></polygon></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"12\" cy=\"19\" r=\"2\"></circle><path d=\"M10 3h4v12h-4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.85,3h10.29l1.08,3.11H5.77L6.85,3z M19,13H5V8h14V13z\"></path><circle cx=\"7.5\" cy=\"10.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"10.5\" r=\"1.5\"></circle></g><polygon points=\"7,20 11,20 11,18 17,21 13,21 13,23\"></polygon></g>" } } }, - "running_with_errors": { - "name": "running_with_errors", + "route": { + "name": "route", "keywords": [ - "notification" + "maps" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,8v7h-1.5V8H18z M16.5,16.5V18H18v-1.5H16.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5 c2.01,0,3.81-0.92,5-2.35l0,2.1c-1.37,1.1-3.11,1.75-5,1.75c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0c2.46,0,4.67,1.11,6.13,2.87L10,11 V3.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.25,12.13V6c0-1.65-1.35-3-3-3s-3,1.35-3,3v8c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5V7.87C7.26,7.55,8,6.62,8,5.5 C8,4.12,6.88,3,5.5,3C5.33,3,5.16,3.02,5,3.05C4.67,3.12,4.37,3.25,4.1,3.43C3.44,3.88,3,4.64,3,5.5c0,0.86,0.44,1.62,1.1,2.07 C4.37,7.75,4.67,7.88,5,7.95C4.91,7.93,4.83,7.9,4.75,7.87V14c0,1.65,1.35,3,3,3s3-1.35,3-3V6c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5v6.13c0.08-0.03,0.16-0.06,0.25-0.08c-0.33,0.07-0.63,0.2-0.89,0.38c-0.67,0.45-1.1,1.21-1.1,2.07 c0,0.86,0.44,1.62,1.1,2.07c0.27,0.18,0.57,0.31,0.89,0.38c0.16,0.03,0.33,0.05,0.5,0.05c1.38,0,2.5-1.12,2.5-2.5 C17,13.38,16.26,12.45,15.25,12.13z M4.5,5.5c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1S4.5,6.05,4.5,5.5z M14.5,15.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.05,15.5,14.5,15.5z\"></path></g></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,10v8h-2v-8H22z M20,20v2h2v-2H20z M18,17.29C16.53,18.95,14.39,20,12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8v9 l7.55-7.55C17.72,3.34,15.02,2,12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10c2.25,0,4.33-0.74,6-2V17.29z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,15.18V7c0-2.21-1.79-4-4-4s-4,1.79-4,4v10c0,1.1-0.9,2-2,2s-2-0.9-2-2V8.82C8.16,8.4,9,7.3,9,6c0-1.66-1.34-3-3-3 S3,4.34,3,6c0,1.3,0.84,2.4,2,2.82V17c0,2.21,1.79,4,4,4s4-1.79,4-4V7c0-1.1,0.9-2,2-2s2,0.9,2,2v8.18c-1.16,0.41-2,1.51-2,2.82 c0,1.66,1.34,3,3,3s3-1.34,3-3C21,16.7,20.16,15.6,19,15.18z M6,7C5.45,7,5,6.55,5,6s0.45-1,1-1s1,0.45,1,1S6.55,7,6,7z M18,19 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S18.55,19,18,19z\"></path></g></g>" } } }, - "sd_card": { - "name": "sd_card", + "museum": { + "name": "museum", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3.03L3,8h0.02v1H5v7H3.02v1h13.97v-1H15V9h1.98V8H17L10,3.03z M14,16H6V8h8V16z\"></path><polygon points=\"8,11.33 10,14 12,11.33 12,15 13,15 13,9 12,9 10,12 8,9 7,9 7,15 8,15\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M18,20H6V9h12V20z\"></path><polygon points=\"10,14 12,17 14,14 14,18 16,18 16,11 14,11 12,14 10,11 8,11 8,18 10,18\"></polygon></g></g>" } } }, - "sd_card_alert": { - "name": "sd_card_alert", + "straight": { + "name": "straight", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><polygon points=\"9.25,17 10.75,17 10.75,5.87 11.94,7.06 13,6 10,3 7,6 8.06,7.06 9.25,5.87\"></polygon></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zm-7-5h2v2h-2zm0-7h2v5h-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><polygon points=\"11,6.83 9.41,8.41 8,7 12,3 16,7 14.59,8.41 13,6.83 13,21 11,21\"></polygon></g>" } } }, - "sim_card_alert": { - "name": "sim_card_alert", + "directions_subway_filled": { + "name": "directions_subway_filled", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><g><path d=\"M18,2h-8L4.02,8L4,20c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,20H6V8.83L10.83,4H18V20z\"></path><rect height=\"2\" width=\"2\" x=\"11\" y=\"15\"></rect><rect height=\"5\" width=\"2\" x=\"11\" y=\"8\"></rect></g></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H13h-2H6.43C7.03,4.48,8.48,4,12,4z M6,7h5v3H6V7z M18,15.5c0,0.83-0.67,1.5-1.5,1.5h-9 C6.67,17,6,16.33,6,15.5V12h12V15.5z M18,10h-5V7h5V10z\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle></g></g>" } } }, - "sms": { - "name": "sms", + "directions_transit": { + "name": "directions_transit", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM7 9h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z\"></path><circle cx=\"8.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"15.5\" cy=\"14.5\" r=\"1.5\"></circle>" } } }, - "sms_failed": { - "name": "sms_failed", + "nightlife": { + "name": "nightlife", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M7.74,10.96L12,5H2l4.24,5.94v3.56H5V16h4v-1.5H7.74V10.96z M5.99,8L4.91,6.5h4.17L8.01,8H5.99z\"></path><path d=\"M13.5,5v6.21c-0.31-0.13-0.64-0.21-1-0.21c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V7h2V5H13.5 z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5z M10.1,9l1.4-2H4.49l1.4,2H10.1z M17,5h5v3h-3v9l0,0c0,1.66-1.34,3-3,3s-3-1.34-3-3 s1.34-3,3-3c0.35,0,0.69,0.06,1,0.17V5z\"></path></g></g></g>" } } }, - "support_agent": { - "name": "support_agent", + "maps_ugc": { + "name": "maps_ugc", "keywords": [ - "notification" + "maps" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,6C9.32,6,6.12,6.51,6.01,9.88c1.72-0.4,3.06-1.77,3.4-3.51c0.53,1.15,1.96,2.8,4.43,2.6C13.39,7.26,11.85,6,10,6z\"></path><circle cx=\"7.5\" cy=\"10.75\" r=\".75\"></circle><circle cx=\"12.5\" cy=\"10.75\" r=\".75\"></circle><path d=\"M16,10c0-3.31-2.69-6-6-6s-6,2.69-6,6c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h1v-4c0-2.76,2.24-5,5-5s5,2.24,5,5v5H9v1h6 c0.55,0,1-0.45,1-1v-1c0.55,0,1-0.45,1-1v-2C17,10.45,16.55,10,16,10z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z\"></path><circle cx=\"9\" cy=\"13\" r=\"1\"></circle><circle cx=\"15\" cy=\"13\" r=\"1\"></circle><path d=\"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z\"></path></g></g>" + "path": "<rect fill=\"none\" fill-rule=\"evenodd\" height=\"24\" width=\"24\"></rect><g><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z\"></path></g><polygon fill-rule=\"evenodd\" points=\"13,8 11,8 11,11 8,11 8,13 11,13 11,16 13,16 13,13 16,13 16,11 13,11\"></polygon>" } } }, - "sync": { - "name": "sync", + "local_car_wash": { + "name": "local_car_wash", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M.01 0h24v24h-24V0z\" fill=\"none\"></path><path d=\"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 9h10.29l1.04 3H5.81l1.04-3zM19 19H5v-4.66l.12-.34h13.77l.11.34V19z\"></path><circle cx=\"7.5\" cy=\"16.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"16.5\" r=\"1.5\"></circle>" } } }, - "sync_disabled": { - "name": "sync_disabled", + "electric_moped": { + "name": "electric_moped", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,5.5C15,4.67,14.33,4,13.5,4H12v1h1.5C13.78,5,14,5.22,14,5.5v1.29L10.79,10H9V6H6C4.34,6,3,7.34,3,9v2h2 c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,7.21V5.5z M4,10V9c0-1.1,0.9-2,2-2h2v3H4z M7,12c-0.55,0-1-0.45-1-1h2C8,11.55,7.55,12,7,12z\"></path><rect height=\"1\" width=\"4\" x=\"5\" y=\"4\"></rect><path d=\"M15,9c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,9.9,16.1,9,15,9z M15,12c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,11.55,15.55,12,15,12z\"></path></g><polygon points=\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\"></polygon></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4L2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M4,12v-1c0-1.1,0.9-2,2-2h2v3H4z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z\"></path><rect height=\"2\" width=\"5\" x=\"5\" y=\"4\"></rect><path d=\"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z\"></path></g><polygon points=\"7,20 11,20 11,18 17,21 13,21 13,23\"></polygon></g>" } } }, - "sync_problem": { - "name": "sync_problem", + "local_laundry_service": { + "name": "local_laundry_service", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2.01L6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM18 20H6L5.99 4H18v16z\"></path><circle cx=\"8\" cy=\"6\" r=\"1\"></circle><circle cx=\"11\" cy=\"6\" r=\"1\"></circle><path d=\"M12 19c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2.36-7.36c1.3 1.3 1.3 3.42 0 4.72-1.3 1.3-3.42 1.3-4.72 0l4.72-4.72z\"></path>" } } }, - "system_update": { - "name": "system_update", + "local_printshop": { + "name": "local_printshop", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm2-4v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z\"></path><circle cx=\"18\" cy=\"11.5\" r=\"1\"></circle>" } } }, - "tap_and_play": { - "name": "tap_and_play", + "beenhere": { + "name": "beenhere", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-7 19.6l-7-4.66V3h14v12.93l-7 4.67zm-2.01-7.42l-2.58-2.59L6 12l4 4 8-8-1.42-1.42z\"></path>" } } }, - "time_to_leave": { - "name": "time_to_leave", + "volunteer_activism": { + "name": "volunteer_activism", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M13.25,10.5C15.7,8.28,18,6.41,18,4.61C18,3.15,16.85,2,15.39,2c-0.82,0-1.62,0.39-2.14,0.99C12.74,2.39,11.94,2,11.11,2 C9.65,2,8.5,3.15,8.5,4.61C8.5,6.4,10.8,8.28,13.25,10.5z M11.11,3.5c0.36,0,0.76,0.18,1,0.46l1.14,1.33l1.14-1.33 c0.24-0.28,0.63-0.46,1-0.46c0.63,0,1.11,0.48,1.11,1.11c0,0.9-1.67,2.45-3.25,3.87C11.67,7.06,10,5.5,10,4.61 C10,3.98,10.48,3.5,11.11,3.5z\"></path><path d=\"M15,13h-1c0-0.9-0.57-1.7-1.41-2L7,9H1v9h5v-1.18l5.5,1.68l6.5-2V16C18,14.34,16.66,13,15,13z M4.5,16.36v0.14h-2v-6h2 V16.36z M11.5,16.93L6,15.25V10.5h0.74l5.34,1.91c0.25,0.09,0.42,0.33,0.42,0.59h-2.36l-1.87-0.7l-0.53,1.4l2,0.8H15 c0.62,0,1.16,0.38,1.39,0.93L11.5,16.93z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z\"></path><circle cx=\"7.5\" cy=\"13.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"13.5\" r=\"1.5\"></circle>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><g><path d=\"M16,13c3.09-2.81,6-5.44,6-7.7C22,3.45,20.55,2,18.7,2c-1.04,0-2.05,0.49-2.7,1.25C15.34,2.49,14.34,2,13.3,2 C11.45,2,10,3.45,10,5.3C10,7.56,12.91,10.19,16,13z M13.3,4c0.44,0,0.89,0.21,1.18,0.55L16,6.34l1.52-1.79 C17.81,4.21,18.26,4,18.7,4C19.44,4,20,4.56,20,5.3c0,1.12-2.04,3.17-4,4.99c-1.96-1.82-4-3.88-4-4.99C12,4.56,12.56,4,13.3,4z\"></path><path d=\"M19,16h-2c0-1.2-0.75-2.28-1.87-2.7L8.97,11H1v11h6v-1.44l7,1.94l8-2.5v-1C22,17.34,20.66,16,19,16z M3,20v-7h2v7H3z M13.97,20.41L7,18.48V13h1.61l5.82,2.17C14.77,15.3,15,15.63,15,16c0,0-1.99-0.05-2.3-0.15l-2.38-0.79l-0.63,1.9l2.38,0.79 c0.51,0.17,1.04,0.26,1.58,0.26H19c0.39,0,0.74,0.23,0.9,0.56L13.97,20.41z\"></path></g></g></g></g>" } } }, - "tv_off": { - "name": "tv_off", + "sort": { + "name": "sort", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 7v10.88l1.85 1.85c.09-.23.15-.47.15-.73V7c0-1.11-.89-2-2-2h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2H21zm-.54 16l1.26-1.27-1.26 1.26zM2.41 2.13l-.14.14L1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z\"></path>" } } }, - "vibration": { - "name": "vibration", + "create": { + "name": "create", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z\"></path>" } } }, - "voice_chat": { - "name": "voice_chat", + "stacked_bar_chart": { + "name": "stacked_bar_chart", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-6-5.4l3 2.4V7l-3 2.4V7H7v6h7z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M6,10h3v10H6V10z M6,5h3v4H6V5z M16,16h3v4h-3V16z M16,13h3v2h-3V13z M11,13h3v7h-3V13z M11,9h3v3h-3V9z\"></path></g>" } } }, - "vpn_lock": { - "name": "vpn_lock", + "add_link": { + "name": "add_link", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.92 12c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93zM22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M8,11h8v2H8V11z M20.1,12H22c0-2.76-2.24-5-5-5h-4v1.9h4C18.71,8.9,20.1,10.29,20.1,12z M3.9,12c0-1.71,1.39-3.1,3.1-3.1h4 V7H7c-2.76,0-5,2.24-5,5s2.24,5,5,5h4v-1.9H7C5.29,15.1,3.9,13.71,3.9,12z M19,12h-2v3h-3v2h3v3h2v-3h3v-2h-3V12z\"></path></g>" } } }, - "wc": { - "name": "wc", + "redo": { + "name": "redo", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M.01 0h24v24h-24V0z\" fill=\"none\"></path><path d=\"M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z\"></path>" } } }, - "wifi": { - "name": "wifi", + "content_paste_go": { + "name": "content_paste_go", "keywords": [ - "notification" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M4.5,4.5H6V7h8V4.5h1.5V9H17V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5S8.29,2.14,8.07,3H4.5 C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17H9v-1.5H4.5V4.5z M10,3c0.41,0,0.75,0.33,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75 S9.25,4.16,9.25,3.75C9.25,3.33,9.59,3,10,3z\"></path><polygon points=\"15,11 13.94,12.06 15.13,13.25 11,13.25 11,14.75 15.13,14.75 13.94,15.94 15,17 18,14\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M5,5h2v3h10V5h2v6h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h5v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\"></path><polygon points=\"18.01,13 16.59,14.41 18.17,15.99 12,15.99 12,17.99 18.17,17.99 16.59,19.58 18.01,20.99 22,16.99\"></polygon></g></g>" } } }, - "wifi_off": { - "name": "wifi_off", + "clear": { + "name": "clear", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 11l2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zm-2 2c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zM3.41 1.64L2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z\"></path>" } } }, - "ac_unit": { - "name": "ac_unit", + "next_week": { + "name": "next_week", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 18.5l4-4-4-4-1 1 3 3-3 3zM20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 15H4V9h16v11z\"></path>" } } }, - "airport_shuttle": { - "name": "airport_shuttle", + "amp_stories": { + "name": "amp_stories", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M6,15h8V4H6V15z M7,5h6v9H7V5z\"></path><rect height=\"9\" width=\"1\" x=\"3\" y=\"5\"></rect><rect height=\"9\" width=\"1\" x=\"16\" y=\"5\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M7,19h10V4H7V19z M9,6h6v11H9V6z\"></path><rect height=\"11\" width=\"2\" x=\"3\" y=\"6\"></rect><rect height=\"11\" width=\"2\" x=\"19\" y=\"6\"></rect></g></g>" } } }, - "all_inclusive": { - "name": "all_inclusive", + "flag": { + "name": "flag", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.36 6l.4 2H18v6h-3.36l-.4-2H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z\"></path>" } } }, - "apartment": { - "name": "apartment", + "dynamic_feed": { + "name": "dynamic_feed", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M14,9V4H7v3H3v9h7v-3h1v3h6V9H14z M6,14H5v-1h1V14z M6,12H5v-1h1V12z M6,10H5V9h1V10z M10,11H9v-1h1V11z M10,9H9V8h1V9z M10,7H9V6h1V7z M12,11h-1v-1h1V11z M12,9h-1V8h1V9z M12,7h-1V6h1V7z M15,14h-1v-1h1V14z M15,12h-1v-1h1V12z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect></g><g><g></rect><g><g><path d=\"M4,8H3v7c0,0.55,0.45,1,1,1h9v-1H4V8z\"></path></g><g><path d=\"M6,6H5v7c0,0.55,0.45,1,1,1h9v-1H6V6z\"></path></g><g><path d=\"M16,4H8C7.45,4,7,4.45,7,5v6c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z M16,11H8V7h8V11z\"></path></g></g></g><g display=\"none\"><g display=\"inline\"></path><path d=\"M4,15V8H3v7c0,0.55,0.45,1,1,1h9v-1H4z\" display=\"inline\"></path><path d=\"M6,13V6H5v7c0,0.55,0.45,1,1,1h9v-1H6z\" display=\"inline\"></path><g display=\"inline\"><path d=\"M16,5v6H8V5H16 M16,4H8C7.45,4,7,4.45,7,5v6c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4L16,4z\"></path></g><g display=\"inline\"><rect height=\"2\" width=\"8\" x=\"8\" y=\"5\"></rect></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z\"></path><path d=\"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z\"></path><path d=\"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z\"></path></g></g><g display=\"none\"><g display=\"inline\"></path><g display=\"inline\"><path d=\"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z\"></path><path d=\"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z\"></path><path d=\"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z\"></path></g></g>" } } }, - "baby_changing_station": { - "name": "baby_changing_station", + "drafts": { + "name": "drafts", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zm-2 0v.01L12 13 4 8l8-4.68L19.99 8zM4 18v-7.66l8 5.02 7.99-4.99L20 18H4z\"></path>" } } }, - "backpack": { - "name": "backpack", + "select_all": { + "name": "select_all", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59,4,6.14,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.14,18.72,4.59,17,4.14z M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M16.5,12v4h-2v-2h-7v-2H16.5z\"></path><path d=\"M0,0v24h24V0H0z\" fill=\"none\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z\"></path>" } } }, - "balcony": { - "name": "balcony", + "deselect": { + "name": "deselect", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M8.5,8.5V10H7V8.5H8.5z M13,10V8.5h-1.5V10H13z M17,12v6H3v-6h1V8c0-3.31,2.69-6,6-6s6,2.69,6,6v4H17z M6.12,13.5H4.5v3 h1.62V13.5z M9.25,13.5H7.62v3h1.62V13.5z M9.25,12l0-8.44C7.12,3.92,5.5,5.77,5.5,8v4H9.25z M10.75,12h3.75V8 c0-2.23-1.62-4.08-3.75-4.44V12z M12.38,13.5h-1.62v3h1.62V13.5z M15.5,13.5h-1.62v3h1.62V13.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M14,11.88V6H8.12l1.5,1.5h2.88v2.88L14,11.88z M4.5,17v-1.5H3C3,16.33,3.67,17,4.5,17z M3,13.88h1.5v-1.5H3V13.88z M3,10.75h1.5v-1.5H3V10.75z M15.5,10.75H17v-1.5h-1.5V10.75z M15.5,7.62H17v-1.5h-1.5V7.62z M15.5,3v1.5H17 C17,3.67,16.33,3,15.5,3z M12.38,4.5h1.5V3h-1.5V4.5z M9.25,4.5h1.5V3h-1.5V4.5z M6.12,17h1.5v-1.5h-1.5V17z M9.25,17h1.5v-1.5 h-1.5V17z M17.07,17.07L2.93,2.93L1.87,3.99L4,6.12H3v1.5h1.5v-1L6,8.12V14h5.88l1.5,1.5h-1V17h1.5v-1l2.13,2.13L17.07,17.07z M7.62,4.5V3h-1.5v1l0.5,0.5H7.62z M17,13.88v-1.5h-1.5v1l0.5,0.5H17z M10.38,12.5H7.5V9.62L10.38,12.5z\"></path></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M10,10v2H8v-2H10z M16,12v-2h-2v2H16z M21,14v8H3v-8h1v-4c0-4.42,3.58-8,8-8s8,3.58,8,8v4H21z M7,16H5v4h2V16z M11,16H9v4h2 V16z M11,4.08C8.16,4.56,6,7.03,6,10v4h5V4.08z M13,14h5v-4c0-2.97-2.16-5.44-5-5.92V14z M15,16h-2v4h2V16z M19,16h-2v4h2V16z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M3,13h2v-2H3V13z M7,21h2v-2H7V21z M13,3h-2v2h2V3z M19,3v2h2C21,3.9,20.1,3,19,3z M5,21v-2H3C3,20.1,3.9,21,5,21z M3,17h2 v-2H3V17z M11,21h2v-2h-2V21z M19,13h2v-2h-2V13z M19,9h2V7h-2V9z M15,5h2V3h-2V5z M7.83,5L7,4.17V3h2v2H7.83z M19.83,17L19,16.17 V15h2v2H19.83z M21.19,21.19L2.81,2.81L1.39,4.22L4.17,7H3v2h2V7.83l2,2V17h7.17l2,2H15v2h2v-1.17l2.78,2.78L21.19,21.19z M9,15 v-3.17L12.17,15H9z M15,12.17V9h-3.17l-2-2H17v7.17L15,12.17z\"></path></g>" } } }, - "bathtub": { - "name": "bathtub", + "font_download": { + "name": "font_download", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><circle cx=\"6.5\" cy=\"6.5\" r=\"1.5\"></circle><path d=\"M16,11V5.12C16,3.95,15.05,3,13.88,3c-0.56,0-1.1,0.22-1.5,0.62l-0.83,0.83c-0.17-0.08-0.37-0.12-0.57-0.12 c-0.28,0-0.54,0.08-0.76,0.23l1.93,1.93c0.14-0.22,0.23-0.48,0.23-0.76c0-0.2-0.05-0.39-0.12-0.57l0.83-0.83 C13.3,4.12,13.58,4,13.88,4C14.5,4,15,4.5,15,5.12V11H9.1c-0.2-0.14-0.38-0.3-0.55-0.48L7.62,9.49C7.49,9.35,7.33,9.23,7.16,9.15 C6.95,9.05,6.72,9,6.49,9C5.67,9,5,9.67,5,10.5V11H3v4c0,0.55,0.45,1,1,1v0.5C4,16.78,4.22,17,4.5,17h11c0.28,0,0.5-0.22,0.5-0.5 V16c0.55,0,1-0.45,1-1v-4H16z M16,15H4v-3h12V15z\"></path></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"7\" cy=\"7\" r=\"2\"></circle><path d=\"M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1h14 c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z M20,19H4v-4h16V19z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.17 15.5h5.64l1.14 3h2.09l-5.11-13h-1.86l-5.11 13h2.09l1.12-3zM12 7.98l2.07 5.52H9.93L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z\"></path>" } } }, - "beach_access": { - "name": "beach_access", + "add_box": { + "name": "add_box", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 19.57l-1.427 1.428-6.442-6.442 1.43-1.428zM13.12 3c-2.58 0-5.16.98-7.14 2.95l-.01.01c-3.95 3.95-3.95 10.36 0 14.31l14.3-14.31C18.3 3.99 15.71 3 13.12 3zM6.14 17.27C5.4 16.03 5 14.61 5 13.12c0-.93.16-1.82.46-2.67.19 1.91.89 3.79 2.07 5.44l-1.39 1.38zm2.84-2.84C7.63 12.38 7.12 9.93 7.6 7.6c.58-.12 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.56l-5.45 5.45zm1.47-8.97c.85-.3 1.74-.46 2.67-.46 1.49 0 2.91.4 4.15 1.14l-1.39 1.39c-1.65-1.18-3.52-1.88-5.43-2.07z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z\"></path>" } } }, - "bento": { - "name": "bento", + "add": { + "name": "add", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M20,5H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,11h-6V7h6V11z M4,7h8v10H4V7z M14,17v-4h6v4H14z M9.5,12c0,0.83-0.67,1.5-1.5,1.5S6.5,12.83,6.5,12s0.67-1.5,1.5-1.5S9.5,11.17,9.5,12z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\"></path>" } } }, - "bungalow": { - "name": "bungalow", + "outlined_flag": { + "name": "outlined_flag", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10.75,11.5h-1.5V10h1.5V11.5z M16,12.6l-1.27,0.8L14,12.23V17H6v-4.77L5.27,13.4L4,12.6L10,3L16,12.6z M12.5,9.83l-2.5-4 l-2.5,4v5.67h1.75V13h1.5v2.5h1.75V9.83z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,14h-2v-2h2V14z M18.1,16.56L17,14.79V21H7v-6.2l-1.1,1.76L4.2,15.5L12,3l7.8,12.5L18.1,16.56z M15,11.59l-3-4.8l-3,4.8 V19h2v-3h2v3h2V11.59z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z\"></path>" } } }, - "business_center": { - "name": "business_center", + "calculate": { + "name": "calculate", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><g><rect height=\"1\" width=\"3\" x=\"11\" y=\"12.25\"></rect></g><g><rect height=\"1\" width=\"3\" x=\"11\" y=\"10.75\"></rect></g></g><g><rect height=\"1\" width=\"3\" x=\"6\" y=\"7.27\"></rect></g><g><path d=\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V5h10V15z\"></path></g><g><polygon points=\"7.5,14 8.5,14 8.5,12.5 10,12.5 10,11.5 8.5,11.5 8.5,10 7.5,10 7.5,11.5 6,11.5 6,12.5 7.5,12.5\"></polygon></g><g><polygon points=\"11.44,9.54 12.5,8.47 13.56,9.54 14.27,8.83 13.21,7.77 14.27,6.71 13.56,6 12.5,7.06 11.44,6 10.73,6.71 11.79,7.77 10.73,8.83\"></polygon></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zM4 9h16v5h-5v-3H9v3H4V9zm9 6h-2v-2h2v2zm6 4H5v-3h4v1h6v-1h4v3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\"></path><rect height=\"1.5\" width=\"5\" x=\"6.25\" y=\"7.72\"></rect><rect height=\"1.5\" width=\"5\" x=\"13\" y=\"15.75\"></rect><rect height=\"1.5\" width=\"5\" x=\"13\" y=\"13.25\"></rect><polygon points=\"8,18 9.5,18 9.5,16 11.5,16 11.5,14.5 9.5,14.5 9.5,12.5 8,12.5 8,14.5 6,14.5 6,16 8,16\"></polygon><polygon points=\"14.09,10.95 15.5,9.54 16.91,10.95 17.97,9.89 16.56,8.47 17.97,7.06 16.91,6 15.5,7.41 14.09,6 13.03,7.06 14.44,8.47 13.03,9.89\"></polygon></g></g>" } } }, - "cabin": { - "name": "cabin", + "push_pin": { + "name": "push_pin", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M5.5,4.5H4c0-0.9,0.6-2.25,2.25-2.25C6.59,2.24,7,2.1,7,1.5h1.5c0,0.9-0.6,2.25-2.25,2.25C5.91,3.76,5.5,3.9,5.5,4.5z M18.25,9.8l-0.91,1.19L16,9.97V17H4V9.97l-1.34,1.02L1.75,9.8L4,8.08V5.5h1.5v1.44L10,3.5L18.25,9.8z M10,5.39L8.54,6.5h2.91 L10,5.39z M5.5,8.82V9.5h9V8.82L13.42,8H6.58L5.5,8.82z M5.5,11v1.5h9V11H5.5z M14.5,15.5V14h-9v1.5H14.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M15,10c-1.1,0-2-0.9-2-2V4h0.5C13.78,4,14,3.78,14,3.5C14,3.22,13.78,3,13.5,3h-7C6.22,3,6,3.22,6,3.5C6,3.78,6.22,4,6.5,4 H7v4c0,1.1-0.9,2-2,2v1h4.5v5.5L10,17l0.5-0.5V11H15V10z M7.23,10C7.71,9.47,8,8.77,8,8V4h4v4c0,0.77,0.29,1.47,0.77,2H7.23z\"></path></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M10,1c0,1.66-1.34,3-3,3C6.45,4,6,4.45,6,5H4c0-1.66,1.34-3,3-3c0.55,0,1-0.45,1-1H10z M12,3L6,7.58V6H4v3.11L1,11.4 l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M13.94,7h-3.89L12,5.52L13.94,7z M7.44,9h9.12L18,10.1V11H6v-0.9L7.44,9z M18,13v2H6v-2H18z M6,19v-2h12v2H6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14,4v5c0,1.12,0.37,2.16,1,3H9c0.65-0.86,1-1.9,1-3V4H14 M17,2H7C6.45,2,6,2.45,6,3c0,0.55,0.45,1,1,1c0,0,0,0,0,0l1,0v5 c0,1.66-1.34,3-3,3v2h5.97v7l1,1l1-1v-7H19v-2c0,0,0,0,0,0c-1.66,0-3-1.34-3-3V4l1,0c0,0,0,0,0,0c0.55,0,1-0.45,1-1 C18,2.45,17.55,2,17,2L17,2z\"></path></g>" } } }, - "carpenter": { - "name": "carpenter", + "filter_list": { + "name": "filter_list", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78-0.78,2.05,0,2.83l1.41,1.41c0.78,0.78,2.05,0.78,2.83,0l4.24-4.24 C20.51,16.28,20.51,15.01,19.73,14.23z M5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62z M14.07,19.88l-1.41-1.41l4.24-4.24 l1.41,1.41L14.07,19.88z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z\"></path>" } } }, - "casino": { - "name": "casino", + "filter_list_off": { + "name": "filter_list_off", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M7.62,5.5H17V7H9.12L7.62,5.5z M12.87,10.75H15v-1.5h-3.63L12.87,10.75z M16.01,18.13l1.06-1.06L2.93,2.93L1.87,3.99 L3.38,5.5H3V7h1.88l2.25,2.25H5v1.5h3.63L10.88,13L8,13v1.5h4v-0.38L16.01,18.13z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\"></path><circle cx=\"7.5\" cy=\"16.5\" r=\"1.5\"></circle><circle cx=\"7.5\" cy=\"7.5\" r=\"1.5\"></circle><circle cx=\"12\" cy=\"12\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"16.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"7.5\" r=\"1.5\"></circle>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M10.83,8H21V6H8.83L10.83,8z M15.83,13H18v-2h-4.17L15.83,13z M14,16.83V18h-4v-2h3.17l-3-3H6v-2h2.17l-3-3H3V6h0.17 L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L14,16.83z\"></path></g>" } } }, - "chalet": { - "name": "chalet", + "link": { + "name": "link", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M8.27,6.5L2.5,12.27l1.06,1.06l0.88-0.88L4.5,16H12v-3.62l0.94,0.94L14,12.27L8.27,6.5z M10.5,14.5H9V12H7.5v2.5H5.94v-3.55 l2.32-2.32l2.23,2.25V14.5z M18,6.5h-1.39l0.9,0.9l-0.35,0.35L15.9,6.5H15v0.9l1.25,1.25L15.9,9L15,8.11V9.5h-0.5V8.11L13.6,9 l-0.35-0.35L14.5,7.4V6.5h-0.9l-1.25,1.25L12,7.4l0.9-0.9H11.5V6h1.39L12,5.1l0.35-0.35L13.6,6h0.9V5.1l-1.25-1.25L13.6,3.5l0.9,0.9 V3H15v1.39l0.9-0.9l0.35,0.35L15,5.1V6h0.9l1.25-1.25L17.5,5.1L16.61,6H18V6.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17.5,15L10,7.5L2.5,15l1.41,1.41L5,15.33V20h10v-4.67l1.09,1.09L17.5,15z M13,18h-2v-3H9v3H7v-4.67l3-3l3,3V18z M22,7.5 h-1.19l0.75,0.75l-0.71,0.71L19.39,7.5H18.5v0.89l1.45,1.45l-0.71,0.71L18.5,9.81V11h-1V9.81l-0.75,0.75l-0.71-0.71l1.45-1.45V7.5 h-0.89l-1.45,1.45l-0.71-0.71l0.75-0.75H14v-1h1.19l-0.75-0.75l0.71-0.71l1.45,1.45h0.89V5.61l-1.45-1.45l0.71-0.71l0.75,0.75V3h1 v1.19l0.75-0.75l0.71,0.71L18.5,5.61V6.5h0.89l1.45-1.45l0.71,0.71L20.81,6.5H22V7.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z\"></path>" } } }, - "charging_station": { - "name": "charging_station", + "how_to_vote": { + "name": "how_to_vote", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.5,11l-3,6v-4h-2l3-6v4H14.5z M17,3H7v1h10V3 M17,20H7v1h10V20 M17,1c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2H17L17,1z M7,18h10V6H7V18L7,18z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm1 7H5v-1h14v1zm-7.66-4.98c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41L14.16 2.3c-.38-.4-1.01-.4-1.4-.01L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95zm2.12-10.61L17 7.95l-4.95 4.95-3.54-3.54 4.95-4.95z\"></path>" } } }, - "checkroom": { - "name": "checkroom", + "add_circle_outline": { + "name": "add_circle_outline", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" } } }, - "child_care": { - "name": "child_care", + "markunread": { + "name": "markunread", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"14.5\" cy=\"10.5\" r=\"1.25\"></circle><circle cx=\"9.5\" cy=\"10.5\" r=\"1.25\"></circle><path d=\"M22.94 11.34c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zm-7 3c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z\"></path>" } } }, - "child_friendly": { - "name": "child_friendly", + "attribution": { + "name": "attribution", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 2v8h8c0-4.42-3.58-8-8-8zm2 6V4.34c1.7.6 3.05 1.95 3.66 3.66H15zm-8.56 3l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61C20.37 14.54 21 12.84 21 11H6.44zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20zm.74-5.34l-.29.37c-.14-.02-.3-.03-.45-.03-1.39 0-2.6.82-3.16 2h-2.68c-.5-1.04-1.5-1.8-2.68-1.97l-.44-.67c-.1-.17-.34-.69-.67-1.36h11.29c-.21.59-.52 1.15-.92 1.66z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 8.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path><circle cx=\"12\" cy=\"6.5\" r=\"1.5\"></circle>" } } }, - "corporate_fare": { - "name": "corporate_fare", + "shield": { + "name": "shield", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,7V3H2v18h20V7H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2 h4V11z M18,15h-4v2h4V15z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\"></path></g>" } } }, - "cottage": { - "name": "cottage", + "font_download_off": { + "name": "font_download_off", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,3.5L5.5,6.94V5.5H4v2.58L1.75,9.8l0.91,1.19L4,9.97V17h12V9.97l1.34,1.02l0.91-1.19L10,3.5z M14.5,15.5h-3.75v-3h-1.5v3 H5.5V8.82L10,5.39l4.5,3.44V15.5z M8.5,1.5c0,0.9-0.6,2.25-2.25,2.25C5.91,3.76,5.5,3.9,5.5,4.5H4c0-0.9,0.6-2.25,2.25-2.25 C6.59,2.24,7,2.1,7,1.5H8.5z\"></path>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.7,7.58L8.56,6.44L9.1,5h1.79l2.27,6.04l-2.55-2.55l-0.57-1.63H9.95L9.7,7.58z M16.72,18.84L15.88,18H3.5 C2.67,18,2,17.33,2,16.5V4.12L1.16,3.28l1.06-1.06l15.56,15.56L16.72,18.84z M14.38,16.5l-4.06-4.06H7.99L7.08,15H5.35L7.4,9.52 l-3.9-3.9V16.5H14.38z M16.5,3.5v10.88l1.5,1.5V3.5C18,2.67,17.33,2,16.5,2H4.12l1.5,1.5H16.5z\"></path>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M18,19h-5v-4h-2v4H6v-8.9l6-4.58 l6,4.58V19z M10,1c0,1.66-1.34,3-3,3C6.45,4,6,4.45,6,5H4c0-1.66,1.34-3,3-3c0.55,0,1-0.45,1-1H10z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M4.83,2H20c1.1,0,2,0.9,2,2v15.17l-2-2V4H6.83L4.83,2z M10.92,6l-0.57,1.52l1.36,1.36l0.23-0.66h0.1l0.54,1.52l3.04,3.04 L13.07,6H10.92z M20.49,23.31L19.17,22H4c-1.1,0-2-0.9-2-2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M17.17,20l-5.07-5.07 H9.58L8.49,18H6.41l2.39-6.37L4,6.83V20H17.17z\"></path>" } } }, - "countertops": { - "name": "countertops", + "content_copy": { + "name": "content_copy", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,10h-4V7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V4H4v4 c0,1.1,0.9,2,2,2H2v2h2v8h16v-8h2V10z M6,6h2v2H6V6z M6,18v-6h5v6H6z M18,18h-5v-6h5V18z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z\"></path>" } } }, - "crib": { - "name": "crib", + "low_priority": { + "name": "low_priority", "keywords": [ - "places" - ], - "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16,12V9.5C16,8.67,15.33,8,14.5,8H10V4H7C5.34,4,4,5.34,4,7v5c0,0.83,0.67,1.5,1.5,1.5H7v2.27 c-0.59-0.31-1.13-0.7-1.59-1.17l-1.06,1.06C5.79,17.1,7.79,18,10,18c2.21,0,4.21-0.9,5.66-2.34l-1.06-1.06 c-0.47,0.47-1,0.86-1.59,1.17l0-2.27h1.5C15.33,13.5,16,12.83,16,12z M11.5,16.33c-0.48,0.11-0.98,0.17-1.5,0.17 s-1.02-0.06-1.5-0.17V13.5h3V16.33z M5.5,12V7c0-0.83,0.67-1.5,1.5-1.5h1.5v4h6V12H5.5z\"></path>" - }, - "24": { - "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,9h-6V4H8C5.79,4,4,5.79,4,8v6c0,1.1,0.9,2,2,2h2v2.93c-0.61-0.35-1.16-0.78-1.65-1.27l-1.42,1.42 C6.74,20.88,9.24,22,12,22c2.76,0,5.26-1.12,7.07-2.93l-1.42-1.42c-0.49,0.49-1.05,0.92-1.65,1.27V16h2c1.1,0,2-0.9,2-2v-3 C20,9.9,19.1,9,18,9z M14,19.75C13.36,19.91,12.69,20,12,20c-0.69,0-1.36-0.09-2-0.25V16h4V19.75z M18,14H6V8c0-1.1,0.9-2,2-2h2v5h8 V14z\"></path>" - } - } - }, - "do_not_step": { - "name": "do_not_step", - "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07 L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15z M21.18,21.2l-1.41,1.41l-5.94-5.94L10.5,20H1v-2.63 c0-0.84,0.52-1.57,1.3-1.88c0.58-0.23,1.28-0.56,1.97-1.02l1.38,1.38C5.74,15.95,5.87,16,6,16s0.26-0.05,0.36-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.28-1.28c0.27-0.24,0.53-0.51,0.77-0.8l1.27,1.27c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.4-1.4c0.19-0.34,0.34-0.72,0.45-1.12l1.71,1.72c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.19-0.2,0.19-0.5,0.01-0.7l-7.9-7.9l1.42-1.41L21.18,21.2z M12.42,15.26l-1.67-1.68L7.42,16.9c-0.78,0.78-2.05,0.78-2.83-0.01 L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z\"></path>" } } }, - "do_not_touch": { - "name": "do_not_touch", + "unarchive": { + "name": "unarchive", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l6.8,7.18 c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.66-0.52l1.12,1.12l1.41-1.41L2.81,2.81z M17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9l0-4.17l8.14,8.14C17.09,19.98,17.05,20,17,20z M13.83,11H14V3.25C14,2.56,14.56,2,15.25,2 s1.25,0.56,1.25,1.25V11h1V5.25C17.5,4.56,18.06,4,18.75,4S20,4.56,20,5.25v11.92l-2-2V13h-2.17L13.83,11z M13,10.17V2.25 C13,1.56,12.44,1,11.75,1S10.5,1.56,10.5,2.25v5.42L13,10.17z M9.5,6.67V4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18v0 L9.5,6.67z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.83 1H5.42l.82-1zM5 19V8h14v11H5zm3-5h2.55v3h2.9v-3H16l-4-4z\"></path>" } } }, - "dry": { - "name": "dry", + "inventory_2": { + "name": "inventory_2", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M16.5,2h-13C2.67,2,2,2.67,2,3.5v3c0,0.65,0.42,1.2,1,1.41v8.59C3,17.33,3.67,18,4.5,18h11c0.83,0,1.5-0.67,1.5-1.5V7.91 c0.58-0.21,1-0.76,1-1.41v-3C18,2.67,17.33,2,16.5,2z M16.5,6.5h-13v-3h13V6.5z M4.5,16.5V8h11v8.5H4.5z\"></path><rect height=\"1.5\" width=\"4\" x=\"8\" y=\"10\"></rect></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,2H4C3,2,2,2.9,2,4v3.01C2,7.73,2.43,8.35,3,8.7V20c0,1.1,1.1,2,2,2h14c0.9,0,2-0.9,2-2V8.7c0.57-0.35,1-0.97,1-1.69V4 C22,2.9,21,2,20,2z M19,20H5V9h14V20z M20,7H4V4h16V7z\"></path><rect height=\"2\" width=\"6\" x=\"9\" y=\"12\"></rect></g></g>" } } }, - "elevator": { - "name": "elevator", + "move_to_inbox": { + "name": "move_to_inbox", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M10,18v-4h1 v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25 S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 9h-2.55V6h-2.9v3H8l4 4zm3-6H4.99C3.88 3 3 3.9 3 5v14c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5l-.01-9H19v9z\"></path>" } } }, - "escalator": { - "name": "escalator", + "undo": { + "name": "undo", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,5L19,5l0,14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3L19,3z M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z\"></path>" } } }, - "escalator_warning": { - "name": "escalator_warning", + "text_format": { + "name": "text_format", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z\"></path>" } } }, - "family_restroom": { - "name": "family_restroom", + "waves": { + "name": "waves", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z\"></path>" } } }, - "fence": { - "name": "fence", + "file_copy": { + "name": "file_copy", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z\"></path>" } } }, - "fire_extinguisher": { - "name": "fire_extinguisher", + "link_off": { + "name": "link_off", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.39 11L16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z\"></path>" } } }, - "fitness_center": { - "name": "fitness_center", + "content_paste": { + "name": "content_paste", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z\"></path>" } } }, - "food_bank": { - "name": "food_bank", + "reply_all": { + "name": "reply_all", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83,0.67,1.5,1.5,1.5v4h1 v-4c0.83,0,1.5-0.67,1.5-1.5v-3H11.5z M13,11.5v3h1V18h1V9.5C13.9,9.5,13,10.4,13,11.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\"></path>" } } }, - "foundation": { - "name": "foundation", + "copy_all": { + "name": "copy_all", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.5,2h-8C6.67,2,6,2.67,6,3.5v10C6,14.33,6.67,15,7.5,15h8c0.83,0,1.5-0.67,1.5-1.5v-10C17,2.67,16.33,2,15.5,2z M15.5,13.5h-8v-10h8V13.5z M3,12v-1.5h1.5V12H3z M3,15v-1.5h1.5V15H3z M9,16.5h1.5V18H9V16.5z M3,7.5h1.5V9H3V7.5z M7.5,18H6v-1.5 h1.5V18z M4.5,18C3.67,18,3,17.33,3,16.5h1.5V18z M4.5,6H3c0-0.83,0.67-1.5,1.5-1.5V6z M13.49,16.5c0,0.83-0.67,1.5-1.5,1.5h0v-1.5 L13.49,16.5L13.49,16.5z\"></path>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12z M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,2H9C7.9,2,7,2.9,7,4v12c0,1.1,0.9,2,2,2h9c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,16H9V4h9V16z M3,15v-2h2v2H3z M3,9.5h2v2H3V9.5z M10,20h2v2h-2V20z M3,18.5v-2h2v2H3z M5,22c-1.1,0-2-0.9-2-2h2V22z M8.5,22h-2v-2h2V22z M13.5,22L13.5,22l0-2h2 v0C15.5,21.1,14.6,22,13.5,22z M5,6L5,6l0,2H3v0C3,6.9,3.9,6,5,6z\"></path>" } } }, - "free_breakfast": { - "name": "free_breakfast", + "weekend": { + "name": "weekend", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 9V7c0-1.65-1.35-3-3-3H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM5 7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H6v-2c0-.88-.39-1.67-1-2.22V7zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1v5z\"></path>" } } }, - "gite": { - "name": "gite", + "save_as": { + "name": "save_as", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,8.5l-3-3c0,0,0,0,0,0H7.5V4H6v1.5H5l-3,3V15c0,0,0,0,0,0h9.5H13h5c0,0,0,0,0,0L18,8.5C18,8.5,18,8.5,18,8.5z M3.5,13.5 V10h8v3.5H3.5z M16.5,13.5H13V9.12l1.75-1.75l1.75,1.75V13.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M17,11.46V6l-3-3H4.5C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h6.97l1.5-1.5H4.5v-11h8.88l2.12,2.12v6.34L17,11.46z M12.5,8.5h-7v-3h7V8.5z M12.25,12.5c0,1.24-1.01,2.25-2.25,2.25s-2.25-1.01-2.25-2.25s1.01-2.25,2.25-2.25S12.25,11.26,12.25,12.5 z M16.82,13.77l1.41,1.41L14.41,19H13l0-1.41L16.82,13.77z M17.31,13.27l0.63-0.63c0.2-0.2,0.51-0.2,0.71,0l0.71,0.71 c0.2,0.2,0.2,0.51,0,0.71l-0.63,0.63L17.31,13.27z\"></path></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,6H9V4H7v2H6l-4,4v9h20v-9L18,6z M4,12h10v5H4V12z M20,17h-4v-6.17l2-2v0l2,2V17z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21,12.4V7l-4-4H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h7.4l2-2H5V5h11.17L19,7.83v6.57L21,12.4z M15,15 c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,13.34,15,15z M6,6h9v4H6V6z M19.99,16.25l1.77,1.77L16.77,23H15v-1.77L19.99,16.25z M23.25,16.51l-0.85,0.85l-1.77-1.77l0.85-0.85c0.2-0.2,0.51-0.2,0.71,0l1.06,1.06C23.45,16,23.45,16.32,23.25,16.51z\"></path></g>" } } }, - "golf_course": { - "name": "golf_course", + "remove_circle_outline": { + "name": "remove_circle_outline", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"19.5\" cy=\"19.5\" r=\"1.5\"></circle><path d=\"M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"></path>" } } }, - "grass": { - "name": "grass", + "content_paste_off": { + "name": "content_paste_off", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V15.5C3,16.33,3.67,17,4.5,17h10.38l1.13,1.13L17.07,17.07z M4.5,15.5V6.62 l8.88,8.88H4.5z M14,7V4.5h1.5v8.88l1.5,1.5V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5C9.07,1.5,8.29,2.14,8.07,3 H5.12l4,4H14z M10,3c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75C9.25,3.34,9.59,3,10,3z\"></path>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,20H2v-2h5.75l0,0C7.02,15.19,4.81,12.99,2,12.26C2.64,12.1,3.31,12,4,12C8.42,12,12,15.58,12,20z M22,12.26 C21.36,12.1,20.69,12,20,12c-2.93,0-5.48,1.58-6.88,3.93c0.29,0.66,0.53,1.35,0.67,2.07c0.13,0.65,0.2,1.32,0.2,2h2h6v-2h-5.75 C16.98,15.19,19.19,12.99,22,12.26z M15.64,11.02c0.78-2.09,2.23-3.84,4.09-5C15.44,6.16,12,9.67,12,14c0,0.01,0,0.02,0,0.02 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85C10.58,6.66,8.88,4.89,6.7,4C8.14,5.86,9,8.18,9,10.71c0,0.21-0.03,0.41-0.04,0.61 c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61L21.19,21.19z M5,19V7.83L16.17,19H5z M17,8V5 h2v11.17l2,2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5.83l5,5H17z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S11.45,3,12,3z\"></path>" } } }, - "holiday_village": { - "name": "holiday_village", + "report_off": { + "name": "report_off", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M7,4L2.5,8.5V16h9V8.5L7,4z M10,14.5H7.75v-2.25h-1.5v2.25H4V9.12l3-3l3,3V14.5z M7.75,10.75h-1.5v-1.5h1.5V10.75z M14.5,16 V7.26L11.24,4H9.12L13,7.88V16H14.5z M17.5,16V6.02L15.48,4h-2.12L16,6.64V16H17.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M8,4l-6,6v10h12V10L8,4z M12,18H9v-3H7v3H4v-7.17l4-4l4,4V18z M9,13H7v-2h2V13z M18,20V8.35L13.65,4h-2.83L16,9.18V20H18z M22,20V6.69L19.31,4h-2.83L20,7.52V20H22z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.1 5h5.8L19 9.1v5.8l-.22.22 1.42 1.41.8-.8V8.27L15.73 3H8.27l-.8.8 1.41 1.42z\"></path><circle cx=\"12\" cy=\"16\" r=\"1\"></circle><path d=\"M13 9.33V7h-2v.33zM2.41 1.58L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM14.9 19H9.1L5 14.9V9.1l1.05-1.05 9.9 9.9L14.9 19z\"></path>" } } }, - "hot_tub": { - "name": "hot_tub", + "report_gmailerrorred": { + "name": "report_gmailerrorred", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"7\" cy=\"6\" r=\"2\"></circle><path d=\"M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zM17.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06zm-4 0c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z\"></path><circle cx=\"12\" cy=\"16\" r=\"1\"></circle><path d=\"M11 7h2v7h-2z\"></path>" } } }, - "house": { - "name": "house", + "save": { + "name": "save", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,8.29V5h-2v1.57L10,4l-7,6h2v6h4v-4h2v4h4v-6h2L15,8.29z M14,15h-2v-4H8v4H6V8.75l4-3.43l4,3.43V15z\"></path><path d=\"M9,9h2c0-0.55-0.45-1-1-1C9.45,8,9,8.45,9,9z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3z M17,18h-2v-6H9v6H7v-7.81l5-4.5l5,4.5V18z\"></path><path d=\"M10,10h4c0-1.1-0.9-2-2-2S10,8.9,10,10z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z\"></path>" } } }, - "houseboat": { - "name": "houseboat", + "bolt": { + "name": "bolt", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.74,9.64l-1.07,1.07C15.49,10.89,15.23,11,14.97,11L14,11V8.09l1.11,0.82L16,7.7l-6-4.4L4,7.7l0.89,1.21L6,8.09V11 l-0.97,0c-0.27,0-0.52-0.11-0.71-0.29L3.26,9.64L2.2,10.7l1.07,1.07c0.47,0.47,1.1,0.73,1.77,0.73h9.93c0.66,0,1.3-0.26,1.77-0.73 l1.07-1.07L16.74,9.64z M10.75,11V9h-1.5v2H7.5l0.1-4.08L10,5.16l2.4,1.76V11H10.75z M18,14.5V16c-1.58,0-1.72-1-2.66-1 c-0.95,0-1.08,1-2.67,1c-1.58,0-1.72-1-2.67-1c-0.95,0-1.08,1-2.67,1c-1.59,0-1.72-1-2.67-1C3.72,15,3.58,16,2,16v-1.5 c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1 C16.92,13.5,17.05,14.5,18,14.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,16c-1.95,0-2.1,1-3.34,1c-1.19,0-1.42-1-3.33-1C3.38,16,3.24,17,2,17v2c1.9,0,2.17-1,3.35-1c1.19,0,1.42,1,3.33,1 c1.95,0,2.08-1,3.32-1s1.37,1,3.32,1c1.91,0,2.14-1,3.33-1c1.18,0,1.45,1,3.35,1v-2c-1.24,0-1.38-1-3.33-1c-1.91,0-2.14,1-3.33,1 C14.1,17,13.95,16,12,16z M20.34,11.34l-1.37,1.37C18.78,12.89,18.52,13,18.26,13H17V9.65l1.32,0.97L19.5,9L12,3.5L4.5,9l1.18,1.61 L7,9.65V13H5.74c-0.27,0-0.52-0.11-0.71-0.29l-1.37-1.37l-1.41,1.41l1.37,1.37C4.18,14.68,4.95,15,5.74,15h12.51 c0.8,0,1.56-0.32,2.12-0.88l1.37-1.37L20.34,11.34z M13,13v-2h-2v2H9V8.18l3-2.2l3,2.2V13H13z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M11,21h-1l1-7H7.5c-0.88,0-0.33-0.75-0.31-0.78C8.48,10.94,10.42,7.54,13.01,3h1l-1,7h3.51c0.4,0,0.62,0.19,0.4,0.66 C12.97,17.55,11,21,11,21z\"></path></g>" } } }, - "house_siding": { - "name": "house_siding", + "content_cut": { + "name": "content_cut", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12z M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16 v-2h10v2H7z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z\"></path>" } } }, - "iron": { - "name": "iron", + "flag_circle": { + "name": "flag_circle", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,5.5c-1.1,0-2,0.9-2,2V11c0,0.28-0.22,0.5-0.5,0.5H14V8c0-1.1-0.9-2-2-2H8C6.9,6,6,6.9,6,8h1.5c0-0.28,0.22-0.5,0.5-0.5 h4c0.28,0,0.5,0.22,0.5,0.5v1H5c-1.66,0-3,1.34-3,3v2.5h12V13h0.5c1.1,0,2-0.9,2-2V7.5C16.5,7.22,16.72,7,17,7h1V5.5H17z M12.4,13 H3.6v-0.8c0-0.88,0.72-1.6,1.6-1.6h7.2V13z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\"></path><path d=\"M12.5,7.5l-1-1.5H7v9h1v-4.5h2l1,1.5h4V7.5H12.5z M14,11h-2.46l-1-1.5H8V7h2.96l1,1.5H14V11z\"></path></g></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,6c-1.66,0-3,1.34-3,3v4c0,0.55-0.45,1-1,1v-4c0-1.66-1.34-3-3-3h-4c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1h4 c0.55,0,1,0.45,1,1v1H6c-2.21,0-4,1.79-4,4v3h15v-2c1.66,0,3-1.34,3-3V9c0-0.55,0.45-1,1-1h1V6H21z M15,16H4v-1c0-1.1,0.9-2,2-2h9 V16z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z\"></path><path d=\"M15,9l-1-2H8v11h1.5v-5H12l1,2h5V9H15z M16.5,13.5h-2.57l-1-2H9.5v-3h3.57l1,2h2.43V13.5z\"></path></g></g>" } } }, - "kitchen": { - "name": "kitchen", + "block": { + "name": "block", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 5h2v3H8zm0 7h2v5H8zm10-9.99L6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z\"></path>" } } }, - "meeting_room": { - "name": "meeting_room", + "remove_circle": { + "name": "remove_circle", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 19V4h-4V3H5v16H3v2h12V6h2v15h4v-2h-2zm-6 0H7V5h6v14zm-3-8h2v2h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z\"></path>" } } }, - "microwave": { - "name": "microwave", + "square_foot": { + "name": "square_foot", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14.24,14.24l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71 l-0.35-0.35l0.71-0.71L8.14,8.14L7.44,8.85L7.08,8.5l0.71-0.71L6.11,6.11L5.4,6.82L5.05,6.46l0.71-0.71L4,4v10.5 C4,15.33,4.67,16,5.5,16H16L14.24,14.24z M6,14V8.83L11.17,14H6z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h10v12H4V6z M20,18h-4V6h4V18z M19,9h-2V7h2V9z M18,13L18,13c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,12.55,18.55,13,18,13z M18,17 L18,17c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,16.55,18.55,17,18,17z M10.25,16 c-0.79,0-1.37-0.38-1.79-0.66C8.13,15.12,7.94,15,7.75,15c-0.37,0-0.8,0.41-0.95,0.61l-1.42-1.42C5.73,13.79,6.59,13,7.75,13 c0.8,0,1.39,0.39,1.81,0.67C9.87,13.88,10.07,14,10.25,14c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,15.21,11.41,16,10.25,16z M10.25,11c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10c-0.37,0-0.8,0.41-0.95,0.61L5.37,9.19C5.73,8.79,6.59,8,7.75,8 c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,10.21,11.41,11,10.25,11z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z\"></path></g></g>" } } }, - "night_shelter": { - "name": "night_shelter", + "archive": { + "name": "archive", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4 C17,12.9,16.1,12,15,12z M9.75,12.5c-0.69,0-1.25,0.56-1.25,1.25C8.5,14.44,9.06,15,9.75,15S11,14.44,11,13.75 C11,13.06,10.44,12.5,9.75,12.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.81.97H5.44l.8-.97zM5 19V8h14v11H5zm8.45-9h-2.9v3H8l4 4 4-4h-2.55z\"></path>" } } }, - "no_backpack": { - "name": "no_backpack", + "add_circle": { + "name": "add_circle", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect><path d=\"M6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V2h3v2h4V2h3v2.14c1.72,0.45,3,2,3,3.86v9.17l-2-2V8c0-1.1-0.9-2-2-2H8.83L6.98,4.15z M14.83,12l1.67,1.67V12H14.83z M19.78,22.61l-0.85-0.85C18.65,21.91,18.34,22,18,22H6c-1.1,0-2-0.9-2-2V8 c0-0.36,0.06-0.69,0.15-1.02L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M17.17,20l-6-6H7.5v-2h1.67L6,8.83V20H17.17z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z\"></path>" } } }, - "no_cell": { - "name": "no_cell", + "tag": { + "name": "tag", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,6v8.17l2,2V3c0-1.1-0.9-1.99-2-1.99L7,1C6.15,1,5.42,1.55,5.13,2.3L8.83,6H17z M7,3h10v1H7V3z M21.19,21.19L19,19l-2-2 L7,7L5,5L2.81,2.81L1.39,4.22L5,7.83V21c0,1.1,0.9,2,2,2h10c0.85,0,1.58-0.55,1.87-1.3l0.91,0.91L21.19,21.19z M17,21H7v-1h10V21z M7,18V9.83L15.17,18H7z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20z M14,14h-4v-4h4V14z\"></path></g>" } } }, - "no_drinks": { - "name": "no_drinks", + "remove": { + "name": "remove", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97l-1.42-1.42L14.77,9h-2.94l-2-2h6.74l1.78-2H7.83z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 13H5v-2h14v2z\"></path>" } } }, - "no_flash": { - "name": "no_flash", + "gesture": { + "name": "gesture", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z M16,11.4l0,1.77l2,2V11c0-0.88-0.72-1.6-1.6-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16z M2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8c0.75,0,1.38-0.52,1.55-1.22 l2.54,2.54l1.41-1.41L2.1,2.1z M11.5,15.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S9.17,14,10,14S11.5,14.67,11.5,15.5z M15.96,20H4v-8.6h2.14h0.88l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5c0,1.93,1.57,3.5,3.5,3.5 c1.68,0,3.07-1.18,3.42-2.76l2.55,2.55L15.96,20z\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z\"></path>" } } }, - "no_food": { - "name": "no_food", + "inventory": { + "name": "inventory", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M1,21h15.01v0.98c0,0.56-0.45,1.01-1.01,1.01H2.01C1.45,22.99,1,22.54,1,21.98V21z M20.49,23.31L16,18.83V19H1v-2h13.17 l-2-2H1c0-3.24,2.46-5.17,5.38-5.79l-5.7-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31z M10.17,13l-2-2c-1.42,0.06-3.52,0.56-4.55,2 H10.17z M23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M5,5h2v3h10V5h2v5h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h6v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\"></path><polygon points=\"21,11.5 15.51,17 12.5,14 11,15.5 15.51,20 22.5,13\"></polygon></g></g>" } } }, - "no_meeting_room": { - "name": "no_meeting_room", + "where_to_vote": { + "name": "where_to_vote", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5v3.88l2 2V6h3v7.88l2 2V4h-5V3H6.12l2 2zM2.41 2.13L1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41L2.41 2.13zM12 19H7V9.54l5 5V19z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.82.74-.82C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8zm0 19.47C9.82 17.86 6 12.54 6 9c0-3.31 2.69-6 6-6s6 2.69 6 6c0 3.83-4.25 9.36-6 11.47zm-1.53-9.3L8.71 9.4l-1.42 1.42L10.47 14l6.01-6.01-1.41-1.42z\"></path>" } } }, - "no_photography": { - "name": "no_photography", + "how_to_reg": { + "name": "how_to_reg", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L20,17.17V7h-4.05l-1.83-2H9.88 L8.9,6.07z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2L2.1,2.1l19.8,19.8L20.49,23.31z M9.19,12.02C9.08,12.33,9,12.65,9,13c0,1.66,1.34,3,3,3c0.35,0,0.67-0.08,0.98-0.19L9.19,12.02z M16.17,19l-1.68-1.68 C13.76,17.75,12.91,18,12,18c-2.76,0-5-2.24-5-5c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12H16.17z M14.81,11.98l2.07,2.07 C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5c-0.36,0-0.71,0.04-1.06,0.12l2.07,2.07C13.85,10.49,14.51,11.15,14.81,11.98z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM5 18c.2-.63 2.57-1.68 4.96-1.94l2.04-2c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-2-2H5zm15.6-5.5l-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z\"></path>" } } }, - "no_stroller": { - "name": "no_stroller", + "delete_sweep": { + "name": "delete_sweep", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M15,8.66v3.51l2,2v-7.9C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66z M19.78,22.61l-1.91-1.91C17.58,21.46,16.86,22,16,22c-1.1,0-2-0.9-2-2c0-0.86,0.54-1.58,1.3-1.87L14.17,17H7.43 c-0.85,0-1.31-1-0.76-1.65l2.69-3.16L1.39,4.22l1.41-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61z M12.17,15l-1.39-1.39 L9.6,15H12.17z M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.6,3.25,6.53,3.7 L8.1,5.27C8.71,5.1,9.35,5,10,5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zm2-8h6v8H5v-8zm5-6H6L5 5H2v2h12V5h-3z\"></path>" } } }, - "other_houses": { - "name": "other_houses", + "report": { + "name": "report", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,3.5L1.75,9.8l0.91,1.19L4,9.97V17h12V9.97l1.34,1.02l0.91-1.19L10,3.5z M14.5,15.5h-9V8.82L10,5.39l4.5,3.44V15.5z M7.75,11.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75S6.59,11,7,11S7.75,11.34,7.75,11.75z M10.75,11.75 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75S9.59,11,10,11S10.75,11.34,10.75,11.75z M13.75,11.75c0,0.41-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75S12.59,11,13,11S13.75,11.34,13.75,11.75z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,3L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M18,19H6v-8.9l6-4.58l6,4.58V19z M9,14 c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S9,13.45,9,14z M12,13c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1 C11,13.45,11.45,13,12,13z M15,14c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S15,14.55,15,14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z\"></path><circle cx=\"12\" cy=\"16\" r=\"1\"></circle><path d=\"M11 7h2v7h-2z\"></path>" } } }, - "pool": { - "name": "pool", + "inbox": { + "name": "inbox", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1zm12 8.5h-.02.02zm-16.65-1c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z\"></path><circle cx=\"16.5\" cy=\"5.5\" r=\"2.5\"></circle>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5V5h14v9z\"></path>" } } }, - "rice_bowl": { - "name": "rice_bowl", + "upcoming": { + "name": "upcoming", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.88V20h-4v-1.12l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39H19.66 M12,2 C6.48,2,2,6.48,2,12c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25h0C22,6.48,17.52,2,12,2L12,2z M10,12V4.26 C10.64,4.1,11.31,4,12,4s1.36,0.1,2,0.26V12H10L10,12z M16,12V5.08c2.39,1.39,4,3.96,4,6.92H16L16,12z M4,12 c0-2.95,1.61-5.53,4-6.92V12H4L4,12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M17.6,10.81L16.19,9.4l3.56-3.55l1.41,1.41C21.05,7.29,17.6,10.81,17.6,10.81z M13,3h-2v5h2V3z M6.4,10.81L7.81,9.4 L4.26,5.84L2.84,7.26C2.95,7.29,6.4,10.81,6.4,10.81z M20,14h-3.42c-0.77,1.76-2.54,3-4.58,3s-3.81-1.24-4.58-3H4v5h16V14 M20,12 c1.1,0,2,0.9,2,2v5c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2v-5c0-1.1,0.9-2,2-2h5c0,1.66,1.34,3,3,3s3-1.34,3-3H20z\"></path></g>" } } }, - "roofing": { - "name": "roofing", + "stream": { + "name": "stream", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,18h-2v-2h2V18z M15,14H9v6h6V14L15,14z M19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7-6.31L19,12h3L19,9.3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"20\" cy=\"12\" r=\"2\"></circle><circle cx=\"4\" cy=\"12\" r=\"2\"></circle><circle cx=\"12\" cy=\"20\" r=\"2\"></circle><rect height=\"2\" transform=\"matrix(0.7081 -0.7061 0.7061 0.7081 -0.1146 13.9802)\" width=\"6.22\" x=\"13.74\" y=\"6.13\"></rect><polygon points=\"8.32,9.68 8.63,10 10.05,8.59 6.03,4.55 6.02,4.55 5.71,4.23 4.29,5.64 8.31,9.69\"></polygon><polygon points=\"15.41,13.94 14,15.35 17.99,19.36 18.34,19.71 19.76,18.3 15.77,14.29\"></polygon><polygon points=\"8.59,13.95 4.56,17.96 4.24,18.29 5.65,19.7 9.68,15.68 10.01,15.36\"></polygon><circle cx=\"12\" cy=\"4\" r=\"2\"></circle></g></g>" } } }, - "room_preferences": { - "name": "room_preferences", + "save_alt": { + "name": "save_alt", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z M19,4v6h-2V6h-2v6h-2V5H7v14h5v2H3v-2h2V3h10v1H19z M12,13h-2v-2h2V13z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z\"></path>" } } }, - "room_service": { - "name": "room_service", + "insights": { + "name": "insights", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"12.5,8 13.29,6.28 15,5.5 13.29,4.72 12.5,3 11.74,4.72 10,5.5 11.74,6.28\"></polygon><polygon points=\"4,10 4.4,8.4 6,8 4.4,7.6 4,6 3.6,7.6 2,8 3.6,8.4\"></polygon><path d=\"M16.5,6c-1.07,0-1.84,1.12-1.35,2.14l-3.01,3.01c-0.52-0.25-0.99-0.14-1.29,0l-1.01-1.01C9.94,9.95,10,9.73,10,9.5 C10,8.67,9.33,8,8.5,8S7,8.67,7,9.5c0,0.23,0.06,0.45,0.15,0.64l-3.01,3.01C3.95,13.06,3.73,13,3.5,13C2.67,13,2,13.67,2,14.5 S2.67,16,3.5,16S5,15.33,5,14.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01c0.52,0.25,0.99,0.14,1.29,0l1.01,1.01 C10.06,12.05,10,12.27,10,12.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01 C16.89,9.35,18,8.56,18,7.5C18,6.67,17.33,6,16.5,6z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.98 17H2v2h20v-2zM21 16c-.27-4.07-3.25-7.4-7.16-8.21.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18zm-9-6.42c2.95 0 5.47 1.83 6.5 4.41h-13c1.03-2.58 3.55-4.41 6.5-4.41z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z\"></path><polygon points=\"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93\"></polygon><polygon points=\"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9\"></polygon></g></g>" } } }, - "rv_hookup": { - "name": "rv_hookup", + "backspace": { + "name": "backspace", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z\"></path>" } } }, - "smoke_free": { - "name": "smoke_free", + "reply": { + "name": "reply", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm-1 0h-2.34L17 15.34zm-2.5-4.35h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zm4.35-3.92c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM3.41 4.59L2 6l7 7H2v3h10l7 7 1.41-1.41z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\"></path>" } } }, - "smoking_rooms": { - "name": "smoking_rooms", + "mail": { + "name": "mail", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 16h1.5v3H18zM2 16h15v3H2zm14.03-5.8H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16zM20.5 16H22v3h-1.5zm-1.65-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 4.99L4 6h16zm0 12H4V8l8 5 8-5v10z\"></path>" } } }, - "soap": { - "name": "soap", + "change_circle": { + "name": "change_circle", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z M12,13.5l-2.12,2.12l-0.71-0.71L10.09,14c-0.03,0-0.06,0-0.09,0c-1.07,0-2.07-0.42-2.83-1.17 C6.42,12.07,6,11.07,6,10c0-0.7,0.18-1.38,0.52-1.98l0.74,0.74C7.09,9.15,7,9.57,7,10c0,0.8,0.31,1.55,0.88,2.12 c0.58,0.58,1.38,0.86,2.18,0.85l-0.88-0.88l0.71-0.71L12,13.5z M14,10c0,0.7-0.18,1.38-0.52,1.98l-0.74-0.74 C12.91,10.85,13,10.43,13,10c0-0.8-0.31-1.55-0.88-2.12C11.55,7.31,10.8,7,10,7C9.97,7,9.94,7,9.92,7l0.91,0.91l-0.71,0.71L8,6.5 l2.12-2.12l0.71,0.71L9.87,6.04c1.08-0.03,2.17,0.35,2.95,1.13C13.58,7.93,14,8.93,14,10z\"></path>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M16.5,1 C15.67,1,15,1.67,15,2.5S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z M20.75,16c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6 c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75 c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4 c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M16.17,14.76l-1.1-1.1c0.71-1.33,0.53-3.01-0.59-4.13C13.79,8.84,12.9,8.5,12,8.5c-0.03,0-0.06,0.01-0.09,0.01 L13,9.6l-1.06,1.06L9.11,7.83L11.94,5L13,6.06l-0.96,0.96c1.27,0.01,2.53,0.48,3.5,1.44C17.24,10.17,17.45,12.82,16.17,14.76z M14.89,16.17L12.06,19L11,17.94l0.95-0.95c-1.26-0.01-2.52-0.5-3.48-1.46c-1.71-1.71-1.92-4.35-0.64-6.29l1.1,1.1 c-0.71,1.33-0.53,3.01,0.59,4.13c0.7,0.7,1.63,1.04,2.56,1.01L11,14.4l1.06-1.06L14.89,16.17z\"></path>" } } }, - "spa": { - "name": "spa", + "send": { + "name": "send", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39zM12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm-4.33-7.32c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4.01 6.03l7.51 3.22-7.52-1 .01-2.22m7.5 8.72L4 17.97v-2.22l7.51-1M2.01 3L2 10l15 2-15 2 .01 7L23 12 2.01 3z\"></path>" } } }, - "sports_bar": { - "name": "sports_bar", + "ballot": { + "name": "ballot", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15,19H8l0-6.63c1.26-0.34,2.11-1.27,2.77-1.99C11.6,9.47,12.08,9,13,9l2,0V19z M10,2.02c-1.89,0-3.51,1.11-4.27,2.71 C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,21h11v-2h2c1.1,0,2-0.9,2-2v-6c0-1.1-0.9-2-2-2h-1.56C17.79,8.41,18,7.73,18,7 c0-2.21-1.79-4-4-4c-0.34,0-0.66,0.05-0.98,0.13C12.2,2.45,11.16,2.02,10,2.02L10,2.02z M7,10.5c-1.1,0-2-0.9-2-2 c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65 c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5C7,10.5,7,10.5,7,10.5L7,10.5z M17,17v-6h2v6H17 L17,17z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM11 6H6v5h5V6zm-1 4H7V7h3v3zm1 3H6v5h5v-5zm-1 4H7v-3h3v3z\"></path>" } } }, - "stairs": { - "name": "stairs", + "forward": { + "name": "forward", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M18,6h-4.42 v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 8.83L17.17 12 14 15.17V14H6v-4h8V8.83M12 4v4H4v8h8v4l8-8-8-8z\"></path>" } } }, - "storefront": { - "name": "storefront", + "policy": { + "name": "policy", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M10,3L4,5v4.31c0,3.55,2.56,6.88,6,7.69c3.44-0.81,6-4.13,6-7.69V5L10,3z M15,9.31c0,1.37-0.45,2.68-1.18,3.8l-1.38-1.38 C12.79,11.24,13,10.65,13,10c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c0.65,0,1.24-0.21,1.73-0.56l1.47,1.47 c-0.86,0.97-1.95,1.71-3.2,2.06c-2.87-0.79-5-3.61-5-6.65V5.72l5-1.67l5,1.67V9.31z M10,12c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2 s2,0.9,2,2C12,11.1,11.1,12,10,12z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M18.91,4.99l1.05,4.37c0.1,0.42,0.01,0.84-0.25,1.17 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5L18.91,4.99z M13,5h1.96l0.54,4.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.04,9.36L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47C4.03,10.21,3.94,9.78,4.04,9.36z M5,19v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1z M19,11c0,1.85-0.51,3.65-1.38,5.21l-1.45-1.45 c1.29-1.94,1.07-4.58-0.64-6.29c-1.95-1.95-5.12-1.95-7.07,0c-1.95,1.95-1.95,5.12,0,7.07c1.71,1.71,4.35,1.92,6.29,0.64 l1.72,1.72c-1.19,1.42-2.73,2.51-4.47,3.04C7.98,19.69,5,15.52,5,11V6.3l7-3.11l7,3.11V11z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3 s3,1.34,3,3S13.66,15,12,15z\"></path></g></g>" } } }, - "stroller": { - "name": "stroller", + "content_paste_search": { + "name": "content_paste_search", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M4.5,4.5H6V7h8V4.5h1.5V9H17V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5S8.29,2.14,8.07,3H4.5 C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17H9v-1.5H4.5V4.5z M10,3c0.41,0,0.75,0.33,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75 S9.25,4.16,9.25,3.75C9.25,3.33,9.59,3,10,3z\"></path><path d=\"M16.94,15.88c0.35-0.54,0.56-1.19,0.56-1.88c0-1.93-1.57-3.5-3.5-3.5s-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5 c0.69,0,1.34-0.21,1.88-0.56L17.94,19L19,17.94L16.94,15.88z M14,16c-1.1,0-2-0.9-2-2c0-0.31,0.07-0.61,0.2-0.87 C12.52,12.46,13.21,12,14,12c1.1,0,2,0.9,2,2S15.1,16,14,16z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18,18.9,18,20z M6,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18z M15,8.66L9.6,15H15V8.66 M18.65,3C20.52,3,22,4.56,22,6.48V7h-2V6.48C20,5.66,19.42,5,18.65,5C17.97,5,17.58,5.59,17,6.27V15 c0,1.1-0.9,2-2,2H7.43c-0.85,0-1.31-1-0.76-1.65l8.8-10.32C16.11,4.27,16.99,3,18.65,3L18.65,3z M10,5C9.35,5,8.71,5.09,8.09,5.27 l1.4,1.4l1.37-1.61C10.58,5.02,10.29,5,10,5 M10,3c1.56,0,3.03,0.4,4.3,1.1l-4.7,5.51L4.72,4.72C6.21,3.64,8.03,3,10,3L10,3z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M5,5h2v3h10V5h2v5h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h5v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\"></path><path d=\"M20.3,18.9c0.4-0.7,0.7-1.5,0.7-2.4c0-2.5-2-4.5-4.5-4.5S12,14,12,16.5s2,4.5,4.5,4.5c0.9,0,1.7-0.3,2.4-0.7l2.7,2.7 l1.4-1.4L20.3,18.9z M16.5,19c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5C19,17.9,17.9,19,16.5,19z\"></path></g></g>" } } }, - "tapas": { - "name": "tapas", + "biotech": { + "name": "biotech", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M6,15c-0.55,0-1,0.45-1,1h10c0-0.55-0.45-1-1-1h-4v-2h3c0.55,0,1-0.45,1-1H8.47v0C7.11,11.98,6,10.87,6,9.5 c0-0.93,0.51-1.73,1.26-2.16C7.53,7.74,7.98,8,8.5,8c0.24,0,0.47-0.06,0.67-0.16l0.59,1.62l0.94-0.34l0.32,0.88l0.94-0.34 l-0.32-0.88l0.94-0.34l-1.84-5.06L9.8,3.71L9.47,2.83L8.53,3.17l0.32,0.88L7.92,4.39l0.24,0.65c-0.61,0.15-1.07,0.66-1.14,1.3 C5.83,6.9,5,8.1,5,9.5c0,1.76,1.31,3.2,3,3.45V15H6z M10.14,4.65l1.16,3.18l-0.94,0.34L9.2,4.99L10.14,4.65z M8.5,6 C8.78,6,9,6.22,9,6.5S8.78,7,8.5,7S8,6.78,8,6.5S8.22,6,8.5,6z\"></path></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,10V1h-8v9c0,1.86,1.28,3.41,3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M16,10V8h4v2 c0,1.1-0.9,2-2,2S16,11.1,16,10z M10,9H8V8h2c1.38,0,2.5-1.12,2.5-2.5C12.5,4.12,11.38,3,10,3H8V1H6v2H4C2.62,3,1.5,4.12,1.5,5.5 C1.5,6.88,2.62,8,4,8h2v1H4c-1.38,0-2.5,1.12-2.5,2.5C1.5,12.88,2.62,14,4,14h2v9h2v-9h2c1.38,0,2.5-1.12,2.5-2.5 C12.5,10.12,11.38,9,10,9z M4,6C3.72,6,3.5,5.78,3.5,5.5S3.72,5,4,5h6c0.28,0,0.5,0.22,0.5,0.5S10.28,6,10,6H4z M10,12H4 c-0.28,0-0.5-0.22-0.5-0.5S3.72,11,4,11h6c0.28,0,0.5,0.22,0.5,0.5S10.28,12,10,12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.47-2.57 c0.41,0.59,1.06,1,1.83,1.06c0.7,0.06,1.36-0.19,1.85-0.62l0.59,1.61l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94l0.94-0.34 L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48,8.37,6.27,8.08,7.38C6.27,8.14,5,9.92,5,12 c0,2.76,2.24,5,5,5v2H7z M12.86,4.52l1.71,4.7l-0.94,0.34l-1.71-4.7L12.86,4.52z M10.5,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1C9.5,7.45,9.95,7,10.5,7z\"></path></g>" } } }, - "tty": { - "name": "tty", + "attach_money": { + "name": "attach_money", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M16,6h-2V4h2V6z M18,7h-2v2h2V7z M19,9h2V7h-2V9z M19,4h-2v2h2V4z M15,7h-2v2h2V7z M19,10h-2v2h2V10z M16,10h-2v2h2V10z M13,4h-2v2h2V4z M20,15.82v4.15c0,0.56-0.47,1.03-1.03,1c-2.89-0.17-5.6-1.03-7.97-2.4C8.27,16.99,6.01,14.73,4.43,12 C3.05,9.63,2.2,6.92,2.03,4.03C2,3.47,2.47,3,3.03,3h4.15c0.48,0,0.89,0.34,0.98,0.8L8.9,7.48c0.07,0.33-0.04,0.67-0.27,0.9 L6.1,10.9c1.43,2.5,3.5,4.57,6,6l2.52-2.52c0.24-0.24,0.58-0.34,0.9-0.27l3.67,0.73C19.66,14.93,20,15.34,20,15.82z M5.18,8.99 l1.65-1.65L6.36,5H4.13C4.3,6.37,4.66,7.71,5.18,8.99z M18,16.64l-2.34-0.47l-1.65,1.65c1.28,0.52,2.63,0.87,3.99,1.05V16.64z M20,4v2h2V4H20z M20,12h2v-2h-2V12z M13,10h-2v2h2V10z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z\"></path>" } } }, - "umbrella": { - "name": "umbrella", + "bar_chart": { + "name": "bar_chart", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 9.2h3V19H5V9.2zM10.6 5h2.8v14h-2.8V5zm5.6 8H19v6h-2.8v-6z\"></path>" } } }, - "villa": { - "name": "villa", + "border_clear": { + "name": "border_clear", "keywords": [ - "places" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.5,8.5C14.67,8.5,14,9.17,14,10h-1V3L3,6.89V17h14v-7C17,9.17,16.33,8.5,15.5,8.5z M4.5,7.91l7-2.72V10h-4v5.5h-3V7.91z M15.5,15.5H13V13h-1.5v2.5H9v-4h6.5V15.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,10c-1.1,0-2,0.9-2,2h-1V3L3,8v13h18v-9C21,10.9,20.1,10,19,10z M5,9.37l9-3.46V12H9v7H5V9.37z M19,19h-3v-3h-2v3h-3v-5 h8V19z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z\"></path>" } } }, - "wash": { - "name": "wash", + "title": { + "name": "title", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M13.5,9C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1 c0,0-2.5,2.83-2.5,4.5C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 4v3h5.5v12h3V7H19V4H5z\"></path>" } } }, - "water_damage": { - "name": "water_damage", + "format_align_justify": { + "name": "format_align_justify", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,3L2,12h3v8h14v-8h3L12,3z M7,18v-7.81l5-4.5l5,4.5V18H7z M14,14c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,2-4,2-4 S14,12.9,14,14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z\"></path>" } } }, - "wheelchair_pickup": { - "name": "wheelchair_pickup", + "move_down": { + "name": "move_down", "keywords": [ - "places" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"5\" width=\"7\" x=\"11\" y=\"11\"></rect><path d=\"M11,9h7V4h-7V9z M12.5,5.5h4v2h-4V5.5z\"></path><path d=\"M5.57,11.94l1.06-1.06l2.87,2.87l-2.88,2.88l-1.06-1.06l1.06-1.06V14.5H6.25C3.35,14.5,1,12.15,1,9.25 C1,6.35,3.35,4,6.25,4H9.5v1.5H6.25C4.18,5.5,2.5,7.18,2.5,9.25C2.5,11.32,4.18,13,6.25,13h0.37v-0.01L5.57,11.94z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,11c0,2.45,1.76,4.47,4.08,4.91l-1.49-1.49L7,13l4,4.01L7,21l-1.41-1.41l1.58-1.58l0-0.06C3.7,17.54,1,14.58,1,11 c0-3.87,3.13-7,7-7h3v2H8C5.24,6,3,8.24,3,11z\"></path><path d=\"M22,11V4h-9v7H22z M20,9h-5V6h5V9z\"></path><rect height=\"7\" width=\"9\" x=\"13\" y=\"13\"></rect></g></g>" } } }, - "bathroom": { - "name": "bathroom", + "format_size": { + "name": "format_size", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M8,14c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1S8,14.55,8,14z M12,15c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1 S11.45,15,12,15z M15,15c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S14.45,15,15,15z M12,7.5c-1.76,0-3.22,1.31-3.46,3h6.93 C15.22,8.81,13.76,7.5,12,7.5 M12,6c2.76,0,5,2.24,5,5v1H7v-1C7,8.24,9.24,6,12,6z M9,18c0.55,0,1-0.45,1-1s-0.45-1-1-1 s-1,0.45-1,1S8.45,18,9,18z M12,18c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S11.45,18,12,18z M15,18c0.55,0,1-0.45,1-1 s-0.45-1-1-1s-1,0.45-1,1S14.45,18,15,18z M20,4H4v16h16V4 M20,2c1.1,0,2,0.9,2,2v16c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V4 c0-1.1,0.9-2,2-2H20z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z\"></path>" } } }, - "bed": { - "name": "bed", + "insert_chart": { + "name": "insert_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M21,10.78V8c0-1.65-1.35-3-3-3h-4c-0.77,0-1.47,0.3-2,0.78C11.47,5.3,10.77,5,10,5H6C4.35,5,3,6.35,3,8v2.78 C2.39,11.33,2,12.12,2,13v6h2v-2h16v2h2v-6C22,12.12,21.61,11.33,21,10.78z M14,7h4c0.55,0,1,0.45,1,1v2h-6V8C13,7.45,13.45,7,14,7 z M5,8c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v2H5V8z M4,15v-2c0-0.55,0.45-1,1-1h14c0.55,0,1,0.45,1,1v2H4z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z\"></path>" } } }, - "bedroom_baby": { - "name": "bedroom_baby", + "scatter_plot": { + "name": "scatter_plot", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M17.94,14.04c-0.34,0.34-0.71,0.64-1.1,0.92L16,13.5V11h1v-1h-5.62L9.65,7H6l1,0.76L5.5,9.5l0.95,1L8,9.51v3.99l-0.84,1.46 c-0.39-0.27-0.76-0.58-1.1-0.92L5,15.1c1.87,1.87,4.36,2.9,7,2.9s5.13-1.03,7-2.9L17.94,14.04z M8.45,15.71l0.03-0.06l0.81-1.41 c1.74,0.65,3.66,0.65,5.4,0l0.81,1.41l0.03,0.06c-1.1,0.51-2.3,0.79-3.55,0.79S9.55,16.23,8.45,15.71z M20,4v16H4V4H20 M20,2H4 C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 18c-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-2zm4-2c-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-2zm5.6 17.6c-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>" } } }, - "bedroom_child": { - "name": "bedroom_child", + "align_vertical_top": { + "name": "align_vertical_top", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,4v16H4V4H20 M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M16.5,10.67V9 c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v1.67c-0.88,0.35-1.5,1.2-1.5,2.2V17h1.5v-1.5h9V17H18v-4.13C18,11.87,17.38,11.02,16.5,10.67 z M15,8.5v2H9v-2H15z M7.5,12.87C7.5,12.39,7.89,12,8.37,12h7.27c0.48,0,0.87,0.39,0.87,0.87V14h-9v-1.13H7.5z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,2v2H2V2H22z M7,22h3V6H7V22z M14,16h3V6h-3V16z\"></path>" } } }, - "bedroom_parent": { - "name": "bedroom_parent", + "border_all": { + "name": "border_all", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M18.35,11.45V9c0-1.1-0.9-2-2-2H13c-0.37,0-0.72,0.12-1,0.32C11.72,7.12,11.37,7,11,7H7.65c-1.1,0-2,0.9-2,2v2.45 C5.25,11.91,5,12.51,5,13.17V17h1.5v-1.5h11V17H19v-3.83C19,12.51,18.75,11.91,18.35,11.45z M16.75,10.5h-4v-2h4V10.5z M7.25,8.5h4 v2h-4V8.5z M17.5,14h-11v-1c0-0.55,0.45-1,1-1h9c0.55,0,1,0.45,1,1V14z M20,4v16H4V4H20 M20,2H4C2.9,2,2,2.9,2,4v16 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z\"></path>" } } }, - "blender": { - "name": "blender", + "move_up": { + "name": "move_up", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"5\" width=\"7\" x=\"11\" y=\"4\"></rect><path d=\"M11,16h7v-5h-7V16z M12.5,12.5h4v2h-4V12.5z\"></path><path d=\"M5.57,8.06l1.06,1.06L9.5,6.25L6.62,3.37L5.56,4.43l1.06,1.06V5.5H6.25C3.35,5.5,1,7.85,1,10.75C1,13.65,3.35,16,6.25,16 H9.5v-1.5H6.25c-2.07,0-3.75-1.68-3.75-3.75C2.5,8.68,4.18,7,6.25,7h0.37v0.01L5.57,8.06z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M16.13,15.13L18,3h-4V2h-4v1H5C3.9,3,3,3.9,3,5v4c0,1.1,0.9,2,2,2h2.23l0.64,4.13C6.74,16.05,6,17.43,6,19v1 c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-1C18,17.43,17.26,16.05,16.13,15.13z M5,9V5h1.31l0.62,4H5z M15.67,5l-1.38,9H9.72L8.33,5 H15.67z M16,20H8v-1c0-1.65,1.35-3,3-3h2c1.65,0,3,1.35,3,3V20z\"></path><circle cx=\"12\" cy=\"18\" r=\"1\"></circle></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,13c0-2.45,1.76-4.47,4.08-4.91L5.59,9.59L7,11l4-4.01L7,3L5.59,4.41l1.58,1.58l0,0.06C3.7,6.46,1,9.42,1,13 c0,3.87,3.13,7,7,7h3v-2H8C5.24,18,3,15.76,3,13z\"></path><path d=\"M13,13v7h9v-7H13z M20,18h-5v-3h5V18z\"></path><rect height=\"7\" width=\"9\" x=\"13\" y=\"4\"></rect></g></g>" } } }, - "camera_indoor": { - "name": "camera_indoor", + "polyline": { + "name": "polyline", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M12.5,13.5v0.99l-5-2.71V9.24L9.83,6.5H13V2H8.5v3.75L6.16,8.5H3V13h3.6l5.9,3.2V18H17v-4.5H12.5z M10,3.5h1.5V5H10V3.5z M6,11.5H4.5V10H6V11.5z M15.5,16.5H14V15h1.5V16.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M14,13v-1c0-0.55-0.45-1-1-1H9c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-1l2,1.06v-4.12L14,13z M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M15,16v1.26l-6-3v-3.17L11.7,8H16V2h-6v4.9L7.3,10H3v6h5l7,3.5V22h6v-6H15z M12,4h2v2h-2V4z M7,14H5v-2h2V14z M19,20h-2v-2 h2V20z\"></path></g>" } } }, - "camera_outdoor": { - "name": "camera_outdoor", + "format_list_numbered": { + "name": "format_list_numbered", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M18,13c0-0.55-0.45-1-1-1h-4c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-1l2,1.06v-4.12L18,14V13z M12,3 L4,9v12h16v-2H6v-9l6-4.5l6,4.5v1h2V9L12,3z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z\"></path>" } } }, - "chair": { - "name": "chair", + "format_underlined": { + "name": "format_underlined", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,8V6c0-1.65-1.35-3-3-3H7C5.35,3,4,4.35,4,6v2c-1.65,0-3,1.35-3,3v5c0,1.65,1.35,3,3,3v1c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1v-1h12v1c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-1c1.65,0,3-1.35,3-3v-5C23,9.35,21.65,8,20,8z M6,6 c0-0.55,0.45-1,1-1h10c0.55,0,1,0.45,1,1v2.78c-0.61,0.55-1,1.34-1,2.22v2H7v-2c0-0.88-0.39-1.67-1-2.22V6z M21,16 c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-5c0-0.55,0.45-1,1-1s1,0.45,1,1v4h14v-4c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z\"></path>" } } }, - "chair_alt": { - "name": "chair_alt", + "format_strikethrough": { + "name": "format_strikethrough", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M17,10c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v3c0,1.1,0.9,2,2,2h1v2H7c-1.1,0-2,0.9-2,2v7h2v-3h10v3h2v-7 c0-1.1-0.9-2-2-2h-1v-2H17z M7,8V5h10v3H7z M17,16H7v-2h10V16z M14,12h-4v-2h4V12z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z\"></path>" } } }, - "coffee": { - "name": "coffee", + "schema": { + "name": "schema", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11.5,7.75v1.5h-2v-1.5h-2V6.5h2V2H4v4.5h2v1.25H4v4.5h2V14H4v4.5h5.5V14h-2v-1.75h2v-1.5h2v1.5H17v-4.5H11.5z M5.5,3.5H8V5 H5.5V3.5z M8,17H5.5v-1.5H8V17z M8,10.75H5.5v-1.5H8V10.75z M15.5,10.75H13v-1.5h2.5V10.75z\"></path>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M18.5,3H6C4.9,3,4,3.9,4,5v5.71c0,3.83,2.95,7.18,6.78,7.29c3.96,0.12,7.22-3.06,7.22-7v-1h0.5c1.93,0,3.5-1.57,3.5-3.5 S20.43,3,18.5,3z M16,5v3H6V5H16z M16,10v1c0,2.76-2.24,5-5,5s-5-2.24-5-5v-1 M18.5,8H18V5h0.5C19.33,5,20,5.67,20,6.5 S19.33,8,18.5,8z M4,19h16v2H4V19z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9H14z M6,3h3v2H6V3z M9,21H6v-2h3V21z M9,13H6v-2 h3V13z M19,13h-3v-2h3V13z\"></path>" } } }, - "coffee_maker": { - "name": "coffee_maker", + "border_outer": { + "name": "border_outer", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,6V4h2V2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h14v-2h-4.03C17.2,19.09,18,17.64,18,16v-5H8v5c0,1.64,0.81,3.09,2.03,4 H6V4h2v2c0,0.55,0.45,1,1,1h8C17.55,7,18,6.55,18,6z M10,16v-3h6v3c0,1.65-1.35,3-3,3S10,17.65,10,16z\"></path><circle cx=\"13\" cy=\"9\" r=\"1\"></circle></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z\"></path>" } } }, - "dining": { - "name": "dining", + "short_text": { + "name": "short_text", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M14.75,6c-1.37,0-2.5,1.52-2.5,3.4c0,1.48,0.7,2.71,1.67,3.18L14,12.62V19h1.5v-6.38l0.08-0.03 c0.97-0.47,1.67-1.7,1.67-3.18C17.25,7.53,16.13,6,14.75,6 M6.5,9.96 M10.5,6C10.23,6,10,6.22,10,6.5V9H9.25V6.5 c0-0.28-0.22-0.5-0.5-0.5s-0.5,0.22-0.5,0.5V9H7.5V6.5C7.5,6.22,7.28,6,7,6S6.5,6.22,6.5,6.5v3.8c0,0.93,0.64,1.71,1.5,1.93V19h1.5 v-6.77c0.86-0.22,1.5-1,1.5-1.93V6.5C11,6.22,10.78,6,10.5,6z M20,4H4v16h16V4 M20,2c1.1,0,2,0.9,2,2v16c0,1.1-0.9,2-2,2H4 c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2H20z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M4 9h16v2H4V9zm0 4h10v2H4v-2z\"></path>" } } }, - "doorbell": { - "name": "doorbell", + "border_style": { + "name": "border_style", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M11,16.5h2c0,0.55-0.45,1-1,1S11,17.05,11,16.5z M15,15v-2.34c0-1.54-0.81-2.82-2.25-3.16V9.25c0-0.41-0.34-0.75-0.75-0.75 s-0.75,0.34-0.75,0.75V9.5C9.82,9.84,9,11.12,9,12.66V15H8v1h8v-1H15z M12,5.5L6,10v9h12v-9L12,5.5 M12,3l8,6v12H4V9L12,3z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z\"></path>" } } }, - "door_back": { - "name": "door_back", + "subscript": { + "name": "subscript", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,15l-1,0v1h2v1h-3v-2c0-0.55,0.45-1,1-1l1,0l0-1h-2v-1l2,0c0.55,0,1,0.45,1,1v1C18,14.55,17.55,15,17,15z M5.63,14h1.9 l2.43-3.87h0.08L12.47,14h1.9l-3.32-5.2l3.1-4.8h-1.91l-2.19,3.56H9.96L7.75,4h-1.9l3.09,4.8L5.63,14z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M19,19V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H3v2h18v-2H19z M17,19H7V5h10V19z\"></path><rect height=\"2\" width=\"2\" x=\"9\" y=\"11\"></rect></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z\"></path></g>" } } }, - "door_front": { - "name": "door_front", + "border_right": { + "name": "border_right", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M19,19V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H3v2h18v-2H19z M17,19H7V5h10V19z M13,11h2v2h-2V11z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z\"></path>" } } }, - "door_sliding": { - "name": "door_sliding", + "add_chart": { + "name": "add_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M10,13H8v-2h2V13z M16,11h-2v2h2V11z M21,19v2H3v-2h1V5c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2v14H21z M11,5H6v14h5V5z M18,5 h-5v14h5V5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,19H5V5h9V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-9h-2V19z\"></path><rect height=\"4\" width=\"2\" x=\"15\" y=\"13\"></rect><rect height=\"7\" width=\"2\" x=\"7\" y=\"10\"></rect><rect height=\"10\" width=\"2\" x=\"11\" y=\"7\"></rect><polygon points=\"19,5 19,3 17,3 17,5 15,5 15,7 17,7 17,9 19,9 19,7 21,7 21,5\"></polygon></g></g>" } } }, - "feed": { - "name": "feed", + "format_align_center": { + "name": "format_align_center", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M16,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8L16,3z M19,19H5V5h10v4h4V19z M7,17h10v-2H7V17z M12,7H7 v2h5V7z M7,13h10v-2H7V13z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z\"></path>" } } }, - "flatware": { - "name": "flatware", + "format_clear": { + "name": "format_clear", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M16,7.08c0,1.77-0.84,3.25-2,3.82V21h-2V10.9c-1.16-0.57-2-2.05-2-3.82C10.01,4.83,11.35,3,13,3C14.66,3,16,4.83,16,7.08z M17,3v18h2v-8h2V7C21,5.24,19.76,3,17,3z M8.28,3c-0.4,0-0.72,0.32-0.72,0.72V7H6.72V3.72C6.72,3.32,6.4,3,6,3 S5.28,3.32,5.28,3.72V7H4.44V3.72C4.44,3.32,4.12,3,3.72,3S3,3.32,3,3.72V9c0,1.1,0.9,2,2,2v10h2V11c1.1,0,2-0.9,2-2V3.72 C9,3.32,8.68,3,8.28,3z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z\"></path>" } } }, - "garage": { - "name": "garage", + "margin": { + "name": "margin", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,20H4V4h16V20z\"></path><circle cx=\"9\" cy=\"13\" r=\"1\"></circle><circle cx=\"15\" cy=\"13\" r=\"1\"></circle><path d=\"M5.78,18.5h0.44C6.65,18.5,7,18.14,7,17.69V16.5h10v1.19c0,0.45,0.34,0.81,0.78,0.81h0.44c0.43,0,0.78-0.36,0.78-0.81 v-6.5c-0.82-2.46-1.34-4.03-1.56-4.69c-0.05-0.16-0.12-0.29-0.19-0.4c-0.02-0.02-0.03-0.04-0.05-0.07 c-0.38-0.52-0.92-0.53-0.92-0.53H7.72c0,0-0.54,0.01-0.92,0.54C6.78,6.06,6.77,6.08,6.75,6.1C6.68,6.21,6.61,6.34,6.56,6.5 C6.34,7.16,5.82,8.72,5,11.19v6.5C5,18.14,5.35,18.5,5.78,18.5z M8.33,7.5h7.34l0.23,0.69l0.43,1.31H7.67L8.33,7.5z M7,11.51V11.5 h10v0.01v2.99H7V11.51z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,3v18h18V3H3z M19,19H5V5h14V19z M11,7h2v2h-2V7z M7,7h2v2H7V7z M15,7h2v2h-2V7z M7,11h2v2H7V11z M11,11h2v2h-2V11z M15,11h2v2h-2V11z\"></path></g></g>" } } }, - "light": { - "name": "light", + "format_list_bulleted": { + "name": "format_list_bulleted", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M13,6.06V3h-2v3.06c-4.5,0.5-8,4.31-8,8.93C3,16.1,3.9,17,5.01,17H8c0,2.21,1.79,4,4,4s4-1.79,4-4h2.99 C20.1,17,21,16.1,21,14.99C21,10.37,17.5,6.56,13,6.06z M12,19c-1.1,0-2-0.9-2-2h2h2C14,18.1,13.1,19,12,19z M12,15H5 c0-3.86,3.14-7,7-7s7,3.14,7,7H12z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z\"></path>" } } }, - "living": { - "name": "living", + "checklist_rtl": { + "name": "checklist_rtl", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9,7.5H2V6h7V7.5z M9,12.5H2V14h7V12.5z M11.64,5.11l-1.06,1.06L13.4,9L18,4.4l-1.06-1.06L13.4,6.88L11.64,5.11z M11.64,11.61l-1.06,1.06l2.83,2.83l4.6-4.6l-1.06-1.06l-3.54,3.54L11.64,11.61z\"></path>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M17.75,10.35V9c0-1.66-1.34-3-3-3h-5.5c-1.66,0-3,1.34-3,3v1.35C5.51,10.78,5,11.58,5,12.5V16c0,1.1,0.9,2,2,2h10 c1.1,0,2-0.9,2-2v-3.5C19,11.58,18.49,10.78,17.75,10.35z M9.25,7.5h5.5c0.83,0,1.5,0.67,1.5,1.5v1.03C14.99,10.15,14,11.2,14,12.5 V13h-4v-0.5c0-1.3-0.99-2.35-2.25-2.47V9C7.75,8.17,8.42,7.5,9.25,7.5z M17.5,16c0,0.28-0.22,0.5-0.5,0.5H7 c-0.28,0-0.5-0.22-0.5-0.5v-3.5c0-0.55,0.45-1,1-1s1,0.45,1,1v2h7v-2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1V16z M20,4v16H4V4H20 M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,7H2v2h9V7z M11,15H2v2h9V15z M16.34,11l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,5.34L16.34,11z M16.34,19 l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,13.34L16.34,19z\"></path>" } } }, - "manage_search": { - "name": "manage_search", + "data_array": { + "name": "data_array", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"4,4 4,16 8,16 8,14.5 5.5,14.5 5.5,5.5 8,5.5 8,4\"></polygon><polygon points=\"12,4 12,5.5 14.5,5.5 14.5,14.5 12,14.5 12,16 16,16 16,4\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M7,9H2V7h5V9z M7,12H2v2h5V12z M20.59,19l-3.83-3.83C15.96,15.69,15.02,16,14,16c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5 c0,1.02-0.31,1.96-0.83,2.75L22,17.59L20.59,19z M17,11c0-1.65-1.35-3-3-3s-3,1.35-3,3s1.35,3,3,3S17,12.65,17,11z M2,19h10v-2H2 V19z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"15,4 15,6 18,6 18,18 15,18 15,20 20,20 20,4\"></polygon><polygon points=\"4,20 9,20 9,18 6,18 6,6 9,6 9,4 4,4\"></polygon></g></g>" } } }, - "podcasts": { - "name": "podcasts", + "bubble_chart": { + "name": "bubble_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M14,12c0,0.74-0.4,1.38-1,1.72V22h-2v-8.28c-0.6-0.35-1-0.98-1-1.72c0-1.1,0.9-2,2-2S14,10.9,14,12z M12,6 c-3.31,0-6,2.69-6,6c0,1.74,0.75,3.31,1.94,4.4l1.42-1.42C8.53,14.25,8,13.19,8,12c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.19-0.53,2.25-1.36,2.98l1.42,1.42C17.25,15.31,18,13.74,18,12C18,8.69,15.31,6,12,6z M12,2C6.48,2,2,6.48,2,12 c0,2.85,1.2,5.41,3.11,7.24l1.42-1.42C4.98,16.36,4,14.29,4,12c0-4.41,3.59-8,8-8s8,3.59,8,8c0,2.29-0.98,4.36-2.53,5.82l1.42,1.42 C20.8,17.41,22,14.85,22,12C22,6.48,17.52,2,12,2z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 10c-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 2zm8.01-1c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM16.5 3C13.47 3 11 5.47 11 8.5s2.47 5.5 5.5 5.5S22 11.53 22 8.5 19.53 3 16.5 3zm0 9c-1.93 0-3.5-1.57-3.5-3.5S14.57 5 16.5 5 20 6.57 20 8.5 18.43 12 16.5 12z\"></path>" } } }, - "shower": { - "name": "shower", + "border_color": { + "name": "border_color", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M9,17c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S9,16.45,9,17z M12,16c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S12.55,16,12,16z M16,16c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1S16.55,16,16,16z M19,12v2H5v-2c0-3.53,2.61-6.43,6-6.92 V3h2v2.08C16.39,5.57,19,8.47,19,12z M17,12c0-2.76-2.24-5-5-5s-5,2.24-5,5H17z M8,19c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S8.55,19,8,19z M12,19c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S12.55,19,12,19z M16,19c-0.55,0-1,0.45-1,1s0.45,1,1,1 c0.55,0,1-0.45,1-1S16.55,19,16,19z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M16.81,8.94l-3.75-3.75L4,14.25V18h3.75L16.81,8.94z M6,16v-0.92l7.06-7.06l0.92,0.92L6.92,16H6z\"></path><path d=\"M19.71,6.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34C17.17,2.09,16.92,2,16.66,2c-0.25,0-0.51,0.1-0.7,0.29l-1.83,1.83 l3.75,3.75L19.71,6.04z\"></path><rect height=\"4\" width=\"20\" x=\"2\" y=\"20\"></rect></g></g>" } } }, - "window": { - "name": "window", + "vertical_align_bottom": { + "name": "vertical_align_bottom", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,11h-7V4h7V11z M11,4v7H4V4H11z M4,13h7v7H4V13z M13,20v-7h7v7H13z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z\"></path>" } } }, - "yard": { - "name": "yard", + "vertical_distribute": { + "name": "vertical_distribute", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M18,13c-3.31,0-6,2.69-6,6C15.31,19,18,16.31,18,13z M6,13c0,3.31,2.69,6,6,6C12,15.69,9.31,13,6,13z M8,11.03 c0,0.86,0.7,1.56,1.56,1.56c0.33,0,0.63-0.1,0.89-0.28l-0.01,0.12c0,0.86,0.7,1.56,1.56,1.56s1.56-0.7,1.56-1.56l-0.01-0.12 c0.25,0.17,0.56,0.28,0.89,0.28c0.86,0,1.56-0.7,1.56-1.56c0-0.62-0.37-1.16-0.89-1.41C15.63,9.38,16,8.84,16,8.22 c0-0.86-0.7-1.56-1.56-1.56c-0.33,0-0.63,0.1-0.89,0.28l0.01-0.12c0-0.86-0.7-1.56-1.56-1.56s-1.56,0.7-1.56,1.56l0.01,0.12 C10.2,6.76,9.89,6.66,9.56,6.66C8.7,6.66,8,7.36,8,8.22c0,0.62,0.37,1.16,0.89,1.41C8.37,9.87,8,10.41,8,11.03z M12,8.06 c0.86,0,1.56,0.7,1.56,1.56s-0.7,1.56-1.56,1.56s-1.56-0.7-1.56-1.56S11.14,8.06,12,8.06z M20,4v16H4V4H20 M20,2H4C2.9,2,2,2.9,2,4 v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,2v2H2V2H22z M7,10.5v3h10v-3H7z M2,20v2h20v-2H2z\"></path>" } } }, - "6_ft_apart": { - "name": "6_ft_apart", + "data_object": { + "name": "data_object", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M4,6.25v1.5C4,8.16,3.66,8.5,3.25,8.5H2v3h1.25C3.66,11.5,4,11.84,4,12.25v1.5C4,14.99,5.01,16,6.25,16H8v-1.5H6.25 c-0.41,0-0.75-0.34-0.75-0.75v-1.5c0-1.16-0.88-2.11-2-2.24V9.99c1.12-0.12,2-1.08,2-2.24v-1.5c0-0.41,0.34-0.75,0.75-0.75H8V4 H6.25C5.01,4,4,5.01,4,6.25z\"></path><path d=\"M16.75,8.5C16.34,8.5,16,8.16,16,7.75v-1.5C16,5.01,14.99,4,13.75,4H12v1.5h1.75c0.41,0,0.75,0.34,0.75,0.75v1.5 c0,1.16,0.88,2.11,2,2.24v0.03c-1.12,0.12-2,1.08-2,2.24v1.5c0,0.41-0.34,0.75-0.75,0.75H12V16h1.75c1.24,0,2.25-1.01,2.25-2.25 v-1.5c0-0.41,0.34-0.75,0.75-0.75H18v-3H16.75z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M4,7v2c0,0.55-0.45,1-1,1H2v4h1c0.55,0,1,0.45,1,1v2c0,1.65,1.35,3,3,3h3v-2H7c-0.55,0-1-0.45-1-1v-2 c0-1.3-0.84-2.42-2-2.83v-0.34C5.16,11.42,6,10.3,6,9V7c0-0.55,0.45-1,1-1h3V4H7C5.35,4,4,5.35,4,7z\"></path><path d=\"M21,10c-0.55,0-1-0.45-1-1V7c0-1.65-1.35-3-3-3h-3v2h3c0.55,0,1,0.45,1,1v2c0,1.3,0.84,2.42,2,2.83v0.34 c-1.16,0.41-2,1.52-2,2.83v2c0,0.55-0.45,1-1,1h-3v2h3c1.65,0,3-1.35,3-3v-2c0-0.55,0.45-1,1-1h1v-4H21z\"></path></g></g>" } } }, - "add_moderator": { - "name": "add_moderator", + "mode": { + "name": "mode", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M6,11.09v-4.7l6-2.25l6,2.25v3.69c0.71,0.1,1.38,0.31,2,0.6V5l-8-3L4,5v6.09c0,5.05,3.41,9.76,8,10.91 c0.03-0.01,0.05-0.02,0.08-0.02c-0.79-0.78-1.4-1.76-1.75-2.84C7.76,17.53,6,14.42,6,11.09z\"></path><path d=\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S19.76,12,17,12z M20,17.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20V17.5z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.06 9.02l.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z\"></path>" } } }, - "add_reaction": { - "name": "add_reaction", + "text_fields": { + "name": "text_fields", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7,9.5C7,8.67,7.67,8,8.5,8S10,8.67,10,9.5c0,0.83-0.67,1.5-1.5,1.5S7,10.33,7,9.5z M12,17.5c2.33,0,4.31-1.46,5.11-3.5 H6.89C7.69,16.04,9.67,17.5,12,17.5z M15.5,11c0.83,0,1.5-0.67,1.5-1.5C17,8.67,16.33,8,15.5,8S14,8.67,14,9.5 C14,10.33,14.67,11,15.5,11z M22,1h-2v2h-2v2h2v2h2V5h2V3h-2V1z M20,12c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-4.42,3.58-8,8-8 c1.46,0,2.82,0.4,4,1.08V2.84C14.77,2.3,13.42,2,11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12 c0-1.05-0.17-2.05-0.47-3h-2.13C19.78,9.93,20,10.94,20,12z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z\"></path>" } } }, - "architecture": { - "name": "architecture", + "insert_emoticon": { + "name": "insert_emoticon", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M6.67,14.89L6.79,16l0.81-0.77l1.92-5.28C9.19,9.9,8.87,9.79,8.58,9.63L6.67,14.89z\"></path><path d=\"M11.42,9.63c-0.29,0.16-0.61,0.27-0.95,0.32l1.92,5.28L13.21,16l0.13-1.11L11.42,9.63z\"></path><path d=\"M12,7c0-0.93-0.64-1.71-1.5-1.93V4h-1v1.07C8.64,5.29,8,6.07,8,7c0,1.1,0.9,2,2,2S12,8.1,12,7z M10,8C9.45,8,9,7.55,9,7 c0-0.55,0.45-1,1-1s1,0.45,1,1C11,7.55,10.55,8,10,8z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z\"></path><path d=\"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z\"></path><path d=\"M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\"></path>" } } }, - "back_hand": { - "name": "back_hand", + "horizontal_distribute": { + "name": "horizontal_distribute", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.5,4c-0.17,0-0.34,0.02-0.5,0.06V3.25c0-1.1-0.9-2-2-2c-0.21,0-0.42,0.03-0.61,0.09C12.12,0.56,11.38,0,10.5,0 C9.54,0,8.74,0.67,8.55,1.58C8.37,1.53,8.19,1.5,8,1.5c-1.1,0-2,0.9-2,2v5.4C5.79,8.7,5.55,8.55,5.27,8.45L4.24,8.09 C4.07,8.03,3.9,8,3.73,8c-1,0-1.79,1.03-1.39,2.05l2.18,5.54C5.57,18.25,8.14,20,11,20c3.59,0,6.5-2.91,6.5-6.5V6 C17.5,4.9,16.6,4,15.5,4z M16,13.5c0,2.76-2.24,5-5,5c-2.24,0-4.25-1.37-5.07-3.46L3.76,9.51l0.8,0.28c0.27,0.1,0.49,0.31,0.6,0.58 L6,12.5h1.5v-9C7.5,3.22,7.72,3,8,3s0.5,0.22,0.5,0.5V10H10V2c0-0.28,0.22-0.5,0.5-0.5S11,1.72,11,2v8h1.5V3.25 c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V10H15V6c0-0.28,0.22-0.5,0.5-0.5S16,5.72,16,6V13.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,7c0-1.38-1.12-2.5-2.5-2.5c-0.17,0-0.34,0.02-0.5,0.05V4c0-1.38-1.12-2.5-2.5-2.5c-0.23,0-0.46,0.03-0.67,0.09 C14.46,0.66,13.56,0,12.5,0c-1.23,0-2.25,0.89-2.46,2.06C9.87,2.02,9.69,2,9.5,2C8.12,2,7,3.12,7,4.5v5.89 c-0.34-0.31-0.76-0.54-1.22-0.66L5.01,9.52c-0.83-0.23-1.7,0.09-2.19,0.83c-0.38,0.57-0.4,1.31-0.15,1.95l2.56,6.43 C6.49,21.91,9.57,24,13,24h0c4.42,0,8-3.58,8-8V7z M19,16c0,3.31-2.69,6-6,6h0c-2.61,0-4.95-1.59-5.91-4.01l-2.6-6.54l0.53,0.14 c0.46,0.12,0.83,0.46,1,0.9L7,15h2V4.5C9,4.22,9.22,4,9.5,4S10,4.22,10,4.5V12h2V2.5C12,2.22,12.22,2,12.5,2S13,2.22,13,2.5V12h2V4 c0-0.28,0.22-0.5,0.5-0.5S16,3.72,16,4v8h2V7c0-0.28,0.22-0.5,0.5-0.5S19,6.72,19,7L19,16z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M4,22H2V2h2V22z M22,2h-2v20h2V2z M13.5,7h-3v10h3V7z\"></path>" } } }, - "cake": { - "name": "cake", + "money_off_csred": { + "name": "money_off_csred", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3zm1 11H5v-3c.9-.01 1.76-.37 2.4-1.01l1.09-1.07 1.07 1.07c1.31 1.31 3.59 1.3 4.89 0l1.08-1.07 1.07 1.07c.64.64 1.5 1 2.4 1.01v3zm0-4.5c-.51-.01-.99-.2-1.35-.57l-2.13-2.13-2.14 2.13c-.74.74-2.03.74-2.77 0L8.48 12.8l-2.14 2.13c-.35.36-.83.56-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z\"></path>" } } }, - "catching_pokemon": { - "name": "catching_pokemon", + "border_horizontal": { + "name": "border_horizontal", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M12.25,10c0,1.24-1.01,2.25-2.25,2.25S7.75,11.24,7.75,10S8.76,7.75,10,7.75S12.25,8.76,12.25,10z M18,10c0,4.42-3.58,8-8,8 s-8-3.58-8-8s3.58-8,8-8S18,5.58,18,10z M16.5,10h-3.25c0-1.79-1.46-3.25-3.25-3.25S6.75,8.21,6.75,10H3.5c0,3.58,2.92,6.5,6.5,6.5 S16.5,13.58,16.5,10z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.5,12c0,1.38-1.12,2.5-2.5,2.5c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5C13.38,9.5,14.5,10.62,14.5,12z M22,12 c0,5.52-4.48,10-10,10C6.48,22,2,17.52,2,12S6.48,2,12,2C17.52,2,22,6.48,22,12z M20,12h-4c0-2.21-1.79-4-4-4c-2.21,0-4,1.79-4,4H4 c0,4.41,3.59,8,8,8C16.41,20,20,16.41,20,12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z\"></path>" } } }, - "clean_hands": { - "name": "clean_hands", + "functions": { + "name": "functions", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7l1.37-0.63L16.99,5 M20,14c1.1,0,2-0.9,2-2c0-1.1-2-4-2-4 s-2,2.9-2,4C18,13.1,18.9,14,20,14z M11,6.1V4h2c0.57,0,1.1,0.17,1.55,0.45l1.43-1.43C15.15,2.39,14.13,2,13,2c-1.47,0-5.44,0-5.5,0 v2H9v2.11C7.22,6.48,5.8,7.79,5.25,9.5h2.16C7.94,8.61,8.89,8,10,8c1.62,0,2.94,1.29,2.99,2.9L15,11.65V11 C15,8.58,13.28,6.56,11,6.1z M22,19v1l-8,2.5l-7-1.94V22H1V11h7.97l6.16,2.3C16.25,13.72,17,14.8,17,16h2C20.66,16,22,17.34,22,19z M5,20v-7H3v7H5z M19.9,18.57c-0.16-0.33-0.51-0.56-0.9-0.56h-5.35c-0.54,0-1.07-0.09-1.58-0.26l-2.38-0.79l0.63-1.9l2.38,0.79 C13.01,15.95,15,16,15,16c0-0.37-0.23-0.7-0.57-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z\"></path>" } } }, - "compost": { - "name": "compost", + "format_align_left": { + "name": "format_align_left", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M9.4,10.69c0.07-0.18,0.1-0.37,0.1-0.57C9.5,8,6,8,6,8s0.25,0.27,0.24,1.25l0.01,0.88c0,0.9,0.73,1.62,1.62,1.62 c0.42,0,0.8-0.16,1.09-0.42c0.16,0.4,0.4,1.1,0.42,1.72c-1.06,0.16-1.96,0.73-2.46,1.51C5.46,13.57,4.5,11.9,4.5,10 c0-3.03,2.47-5.5,5.5-5.5h0v2l3.5-3.25L10,0v2h0c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8h-2.5c0,1.9-0.97,3.57-2.43,4.56 c-0.49-0.77-1.36-1.33-2.39-1.5c0.11-0.95,0.33-1.57,0.63-2.38C11.63,10.88,12,11,12.4,11C15,11,15,6.91,15,6c0,0-0.5,1-2,1h-0.6 c-1.1,0-2,0.9-2,2c0,0.38,0.11,0.74,0.29,1.04c0.14-0.15,1.05-1.09,1.81-1.54c-0.48,0.4-1.78,1.93-2.5,3.71 C9.42,11.08,8.51,10.17,8.25,10C8.69,10.17,9.24,10.58,9.4,10.69z\"></path></g>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12.87,11.81c-0.23-0.38-0.37-0.83-0.37-1.31C12.5,9.12,13.62,8,15,8l1,0c1.51,0,2-1,2-1s0.55,6-3,6 c-0.49,0-0.94-0.14-1.32-0.38c-0.24,0.64-0.59,1.76-0.76,2.96c1.26,0.22,2.28,0.89,2.77,1.77c1.69-1.17,2.81-3.13,2.81-5.35h3 c0,5.24-4.26,9.5-9.5,9.5S2.5,17.24,2.5,12S6.76,2.5,12,2.5V0l4,4l-4,4V5.5c-3.58,0-6.5,2.92-6.5,6.5c0,2.21,1.11,4.17,2.81,5.35 c0.51-0.92,1.63-1.62,2.98-1.8c-0.09-0.69-0.26-1.42-0.49-2.03C10.45,13.82,10,14,9.5,14c-1.1,0-2-0.9-2-2v-0.99 c0-0.56-0.19-1.09-0.5-1.51c0,0,4.45-0.23,4.5,2.5c0,0.29-0.06,0.56-0.17,0.8C10.91,12.48,10.47,12.2,10,12 c0.58,0.43,1.37,1.37,2,2.6c0.67-1.62,1.68-3.27,3-4.6C14.24,10.52,13.53,11.12,12.87,11.81z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z\"></path>" } } }, - "connect_without_contact": { - "name": "connect_without_contact", + "multiline_chart": { + "name": "multiline_chart", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,14H9c0-4.97,4.03-9,9-9v2C14.13,7,11,10.13,11,14z M18,11V9c-2.76,0-5,2.24-5,5h2C15,12.34,16.34,11,18,11z M7,4 c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M11.45,4.5h-2C9.21,5.92,7.99,7,6.5,7h-3C2.67,7,2,7.67,2,8.5V11h6V8.74 C9.86,8.15,11.25,6.51,11.45,4.5z M19,17c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M20.5,18h-3 c-1.49,0-2.71-1.08-2.95-2.5h-2c0.2,2.01,1.59,3.65,3.45,4.24V22h6v-2.5C22,18.67,21.33,18,20.5,18z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z\"></path>" } } }, - "construction": { - "name": "construction", + "stacked_line_chart": { + "name": "stacked_line_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect height=\"5.5\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.3383 13.8538)\" width=\"2\" x=\"13.05\" y=\"10.62\"></rect><path d=\"M14.23,8.98c1.38,0,2.5-1.12,2.5-2.5c0-0.51-0.15-0.98-0.42-1.38l-2.08,2.08l-0.71-0.71l2.08-2.08 c-0.4-0.26-0.87-0.42-1.38-0.42c-1.38,0-2.5,1.12-2.5,2.5c0,0.32,0.07,0.63,0.18,0.91L10.69,8.6L9.64,7.54l0.71-0.71L8.93,5.42 L10.34,4C9.56,3.22,8.29,3.22,7.51,4L4.69,6.83l1.06,1.06l-2.13,0L3.27,8.24l2.83,2.83l0.35-0.35L6.46,8.6l1.06,1.06l0.71-0.71 l1.06,1.06l-4.6,4.6l1.41,1.41l7.22-7.22C13.6,8.91,13.91,8.98,14.23,8.98z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"8.48\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)\" width=\"3\" x=\"16.34\" y=\"12.87\"></rect><path d=\"M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2,19.99l7.5-7.51l4,4l7.09-7.97L22,9.92l-8.5,9.56l-4-4l-6,6.01L2,19.99z M3.5,15.49l6-6.01l4,4L22,3.92l-1.41-1.41 l-7.09,7.97l-4-4L2,13.99L3.5,15.49z\"></path>" } } }, - "coronavirus": { - "name": "coronavirus", + "money_off": { + "name": "money_off", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.5,12c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S9.5,11.45,9.5,12z M13.75,10c0.55,0,1-0.45,1-1s-0.45-1-1-1 s-1,0.45-1,1S13.2,10,13.75,10z M10.25,10c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S9.7,10,10.25,10z M10.25,14 c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C11.25,14.45,10.8,14,10.25,14z M22,11.25v1.5c0,0.41-0.34,0.75-0.75,0.75 c-0.41,0-0.75-0.34-0.75-0.75h-1.54c-0.15,1.37-0.69,2.63-1.52,3.65l1.09,1.09l0.01-0.01c0.29-0.29,0.77-0.29,1.06,0 c0.29,0.29,0.29,0.77,0,1.06l-1.06,1.06c-0.29,0.29-0.77,0.29-1.06,0c-0.29-0.29-0.29-0.76-0.01-1.05l-1.09-1.09 c-1.02,0.82-2.27,1.36-3.64,1.51v1.54h0.01c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75h-1.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.33-0.74,0.74-0.75v-1.55c-1.37-0.15-2.62-0.69-3.63-1.51l-1.09,1.09l0.01,0.01 c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0L4.4,18.54c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.76-0.29,1.05-0.01 l1.09-1.09c-0.82-1.02-1.36-2.26-1.5-3.63H3.5c0,0.41-0.34,0.75-0.75,0.75C2.34,13.5,2,13.16,2,12.75v-1.5 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75h1.54c0.15-1.37,0.69-2.61,1.5-3.63L5.45,6.53C5.16,6.81,4.69,6.81,4.4,6.52 c-0.29-0.29-0.29-0.77,0-1.06L5.46,4.4c0.29-0.29,0.77-0.29,1.06,0c0.29,0.29,0.29,0.77,0,1.06L6.51,5.47L7.6,6.56 c1.02-0.82,2.26-1.36,3.63-1.51V3.5c-0.41-0.01-0.74-0.34-0.74-0.75C10.5,2.34,10.84,2,11.25,2h1.5c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75h-0.01v1.54c1.37,0.14,2.62,0.69,3.64,1.51l1.09-1.09c-0.29-0.29-0.28-0.76,0.01-1.05 c0.29-0.29,0.77-0.29,1.06,0l1.06,1.06c0.29,0.29,0.29,0.77,0,1.06s-0.77,0.29-1.06,0l-0.01-0.01L17.44,7.6 c0.82,1.02,1.37,2.27,1.52,3.65h1.54c0-0.41,0.34-0.75,0.75-0.75C21.66,10.5,22,10.84,22,11.25z M17,12c0-2.76-2.24-5-5-5 s-5,2.24-5,5s2.24,5,5,5S17,14.76,17,12z M12,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C13,11.45,12.55,11,12,11z M15.5,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C16.5,11.45,16.05,11,15.5,11z M13.75,14c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1s1-0.45,1-1C14.75,14.45,14.3,14,13.75,14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z\"></path>" } } }, - "cruelty_free": { - "name": "cruelty_free", + "format_list_numbered_rtl": { + "name": "format_list_numbered_rtl", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M13.93,11.7c-0.21-0.21-0.41-0.43-0.57-0.64c0.93-1.37,2.14-3.69,2.14-6.56C15.5,2.94,15.01,2,14,2 c-1.23,0-3.17,1.65-4,4.78C9.17,3.65,7.23,2,6,2C4.99,2,4.5,2.94,4.5,4.5c0,2.87,1.21,5.19,2.14,6.56 c-0.18,0.22-0.35,0.42-0.57,0.64c-0.2,0.2-1.57,1.1-1.57,2.8C4.5,16.43,6.07,18,8,18c1.18,0,2-0.4,2-0.4s0.82,0.4,2,0.4 c1.93,0,3.5-1.57,3.5-3.5C15.5,12.8,14.13,11.9,13.93,11.7z M13.88,3.53C13.94,3.69,14,4,14,4.5c0,2.32-0.94,4.27-1.73,5.49 c0,0-0.45-0.34-1.16-0.48C11.26,5.49,13.21,3.77,13.88,3.53z M6,4.5C6,4,6.06,3.69,6.12,3.53c0.67,0.24,2.62,1.96,2.77,5.98 C8.18,9.65,7.73,9.99,7.73,9.99C6.94,8.77,6,6.82,6,4.5z M12,16.5c-0.93,0-1.61-0.35-1.87-0.52c0.38-0.09,0.67-0.59,0.67-0.78 c0-0.22-0.36-0.4-0.8-0.4s-0.8,0.18-0.8,0.4c0,0.2,0.29,0.69,0.67,0.78C9.61,16.15,8.93,16.5,8,16.5c-1.1,0-2-0.9-2-2 c0-0.69,0.44-1.15,0.91-1.54c0.27-0.21,0.58-0.58,0.88-0.94C8.41,11.27,8.72,10.9,10,10.9s1.59,0.37,2.21,1.12 c0.3,0.36,0.61,0.73,0.88,0.94C13.56,13.35,14,13.81,14,14.5C14,15.6,13.1,16.5,12,16.5z M11.6,13.2c0,0.33-0.18,0.6-0.4,0.6 s-0.4-0.27-0.4-0.6c0-0.33,0.18-0.6,0.4-0.6S11.6,12.87,11.6,13.2z M9.2,13.2c0,0.33-0.18,0.6-0.4,0.6s-0.4-0.27-0.4-0.6 c0-0.33,0.18-0.6,0.4-0.6S9.2,12.87,9.2,13.2z\"></path></g>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,14c-0.24-0.24-0.44-0.49-0.65-0.75C17.51,11.5,19,8.56,19,5c0-1.95-0.74-3-2-3c-1.54,0-3.96,2.06-5,5.97 C10.96,4.06,8.54,2,7,2C5.74,2,5,3.05,5,5c0,3.56,1.49,6.5,2.65,8.25C7.44,13.51,7.24,13.76,7,14c-0.25,0.25-2,1.39-2,3.5 C5,19.98,7.02,22,9.5,22c1.5,0,2.5-0.5,2.5-0.5s1,0.5,2.5,0.5c2.48,0,4.5-2.02,4.5-4.5C19,15.39,17.25,14.25,17,14z M16.88,4.03 C16.94,4.2,17,4.51,17,5c0,2.84-1.11,5.24-2.07,6.78c-0.38-0.26-0.83-0.48-1.4-0.62C13.77,6.64,15.97,4.33,16.88,4.03z M7,5 c0-0.49,0.06-0.8,0.12-0.97c0.91,0.3,3.11,2.61,3.36,7.13c-0.58,0.14-1.03,0.35-1.4,0.62C8.11,10.24,7,7.84,7,5z M14.5,20 c-1,0-1.8-0.33-2.22-0.56C12.7,19.26,13,18.73,13,18.5c0-0.28-0.45-0.5-1-0.5s-1,0.22-1,0.5c0,0.23,0.3,0.76,0.72,0.94 C11.3,19.67,10.5,20,9.5,20C8.12,20,7,18.88,7,17.5c0-0.7,0.43-1.24,1-1.73c0.44-0.36,0.61-0.52,1.3-1.37 c0.76-0.95,1.09-1.4,2.7-1.4s1.94,0.45,2.7,1.4c0.69,0.85,0.86,1.01,1.3,1.37c0.57,0.49,1,1.03,1,1.73C17,18.88,15.88,20,14.5,20z M14,16c0,0.41-0.22,0.75-0.5,0.75S13,16.41,13,16c0-0.41,0.22-0.75,0.5-0.75S14,15.59,14,16z M11,16c0,0.41-0.22,0.75-0.5,0.75 S10,16.41,10,16c0-0.41,0.22-0.75,0.5-0.75S11,15.59,11,16z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3v1zm1-9h1V4h-2v1h1v3zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3v1zM2 5h14v2H2V5zm0 12h14v2H2v-2zm0-6h14v2H2v-2z\"></path>" } } }, - "deck": { - "name": "deck", + "align_horizontal_center": { + "name": "align_horizontal_center", "keywords": [ - "social" + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><polygon points=\"11,2 13,2 13,7 21,7 21,10 13,10 13,14 18,14 18,17 13,17 13,22 11,22 11,17 6,17 6,14 11,14 11,10 3,10 3,7 11,7\"></polygon>" + } + } + }, + "pentagon": { + "name": "pentagon", + "keywords": [ + "editor" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"4.37,10 3.38,10.18 4,13.5 4,17 5,17 5,14 7,14 7,17 8,17 8,13 4.92,13\"></polygon><polygon points=\"15.08,13 12,13 12,17 13,17 13,14 15,14 15,17 16,17 16,13.5 16.62,10.18 15.63,10\"></polygon><path d=\"M10,3L3,8h6.5v9h1V8H17L10,3z M6.12,7L10,4.23L13.88,7H6.12z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10,3.82l6.21,4.27l-2.57,7.41H6.37L3.79,8.09L10,3.82 M2,7.5L5.3,17h9.4L18,7.5L10,2L2,7.5z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M22,9L12,2L2,9h9v13h2V9H22z M12,4.44L15.66,7H8.34L12,4.44z\"></path><polygon points=\"4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16\"></polygon><polygon points=\"19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12\"></polygon></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M19.63,9.78L16.56,19H7.44L4.37,9.78L12,4.44L19.63,9.78z M2,9l4,12h12l4-12L12,2L2,9z\"></path></g>" } } }, - "domain": { - "name": "domain", + "format_indent_increase": { + "name": "format_indent_increase", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z\"></path>" } } }, - "downhill_skiing": { - "name": "downhill_skiing", + "table_rows": { + "name": "table_rows", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M12,3.75C12,2.78,12.78,2,13.75,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C12.79,5.5,12,4.72,12,3.75z M6.83,6.38 c-0.89,0.5-1.13,1.7-0.37,2.43l3.1,2.94L8,15.8l-5.66-2.04L2,14.7l10.85,3.9C13.52,18.86,14.24,19,15,19c1.09,0,2.12-0.29,3-0.8 l-0.74-0.74C16.58,17.81,15.81,18,15,18c-0.6,0-1.14-0.1-1.67-0.29l-0.35-0.12l1.9-5.83c-0.34-0.04-0.67-0.11-0.98-0.2l0,0l0,0 l-1.85,5.7l-2.62-0.94l1.91-4.98L8.74,8.74L10.9,7.5c0.65,1.8,2.31,3.12,4.3,3.28L16,8.31L15.05,8l-0.38,1.17 c-1.22-0.34-2.17-1.31-2.47-2.55l-0.24-0.97C11.72,4.67,10.61,4.2,9.75,4.7L6.83,6.38z\"></path>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><path d=\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,4.5V7h-11V4.5H15.5z M15.5,8.5v3h-11v-3H15.5z M4.5,15.5V13h11v2.5H4.5z\"></path>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18.5,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18.5,3.4,18.5,4.5z M15.78,20.9l0.76,0.27c0.62,0.21,1.27,0.33,1.96,0.33 c0.84,0,1.65-0.18,2.38-0.5L22,22.13C20.95,22.68,19.76,23,18.5,23c-0.86,0-1.68-0.14-2.45-0.41L2,17.47l0.5-1.41l6.9,2.51 l1.72-4.44L7.55,10.4C6.66,9.46,6.88,7.93,8,7.28l3.48-2.01c1.1-0.64,2.52-0.1,2.91,1.11l0.33,1.08c0.44,1.42,1.48,2.57,2.83,3.14 L18.07,9l1.43,0.46l-1.12,3.45c-2.45-0.4-4.48-2.07-5.38-4.32l-2.53,1.45l3.03,3.46l-2.22,5.76l3.09,1.12l2.1-6.44h0l0,0 c0.46,0.18,0.94,0.31,1.44,0.41L15.78,20.9z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,5v3H5V5H19z M19,10v4H5v-4H19z M5,19v-3h14v3H5z\"></path>" } } }, - "edit_notifications": { - "name": "edit_notifications", + "query_stats": { + "name": "query_stats", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13.5,11.03V14h-7V9c0-1.93,1.57-3.5,3.5-3.5c0.58,0,1.13,0.14,1.61,0.39l1.1-1.1C12.19,4.47,11.62,4.23,11,4.1V3 c0-0.55-0.45-1-1-1S9,2.45,9,3v1.1C6.72,4.56,5,6.58,5,9v5H4v1.5h12V14h-1V9.53L13.5,11.03z M10,18c0.83,0,1.5-0.67,1.5-1.5h-3 C8.5,17.33,9.17,18,10,18z M14.32,5.27l1.41,1.41l-3.82,3.82H10.5l0-1.41L14.32,5.27z M14.81,4.77l0.63-0.63 c0.2-0.2,0.51-0.2,0.71,0l0.71,0.71c0.2,0.2,0.2,0.51,0,0.71l-0.63,0.63L14.81,4.77z\"></path>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.44,15.38C16.79,14.84,17,14.19,17,13.5c0-1.93-1.57-3.5-3.5-3.5S10,11.57,10,13.5s1.57,3.5,3.5,3.5 c0.69,0,1.34-0.21,1.88-0.56L17.94,19L19,17.94L16.44,15.38z M13.5,15.5c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S14.6,15.5,13.5,15.5z M17.78,2L19,2.87l-3.88,5.9h0C14.61,8.59,14.07,8.5,13.5,8.5L17.78,2z M13.5,8.5c-0.58,0-1.13,0.1-1.65,0.28l0,0l-0.78-1.1 l-3.41,5.36l-2.48-2.97l-2.96,4.81L1,14l4-6.5l2.5,3L11,5L13.5,8.5z\"></path>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M17.58,6.25l1.77,1.77L14.37,13H12.6v-1.77L17.58,6.25z M20.85,5.81l-1.06-1.06c-0.2-0.2-0.51-0.2-0.71,0l-0.85,0.85 l1.77,1.77l0.85-0.85C21.05,6.32,21.05,6,20.85,5.81z M18,12.2V17h2v2H4v-2h2v-7c0-2.79,1.91-5.14,4.5-5.8V3.5 C10.5,2.67,11.17,2,12,2s1.5,0.67,1.5,1.5v0.7c0.82,0.21,1.57,0.59,2.21,1.09l-1.43,1.43C13.64,6.26,12.85,6,12,6 c-2.21,0-4,1.79-4,4v7h8v-2.8L18,12.2z M10,20h4c0,1.1-0.9,2-2,2S10,21.1,10,20z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M19.88,18.47c0.44-0.7,0.7-1.51,0.7-2.39c0-2.49-2.01-4.5-4.5-4.5s-4.5,2.01-4.5,4.5s2.01,4.5,4.49,4.5 c0.88,0,1.7-0.26,2.39-0.7L21.58,23L23,21.58L19.88,18.47z M16.08,18.58c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5C18.58,17.46,17.46,18.58,16.08,18.58z M15.72,10.08c-0.74,0.02-1.45,0.18-2.1,0.45l-0.55-0.83l-3.8,6.18 l-3.01-3.52l-3.63,5.81L1,17l5-8l3,3.5L13,6C13,6,15.72,10.08,15.72,10.08z M18.31,10.58c-0.64-0.28-1.33-0.45-2.05-0.49 c0,0,5.12-8.09,5.12-8.09L23,3.18L18.31,10.58z\"></path></g>" } } }, - "elderly": { - "name": "elderly", + "pie_chart_outline": { + "name": "pie_chart_outline", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M20,12.5V23h-1V12.5c0-0.28-0.22-0.5-0.5-0.5 S18,12.22,18,12.5v1h-1v-0.69c-1.46-0.38-2.7-1.29-3.51-2.52C13.18,11.16,13,12.07,13,13c0,0.23,0.02,0.46,0.03,0.69L15,16.5V23h-2 v-5l-1.78-2.54L11,19l-3,4l-1.6-1.2L9,18.33V13c0-1.15,0.18-2.29,0.5-3.39L8,10.46V14H6V9.3l5.4-3.07l0,0.01 c0.59-0.31,1.32-0.33,1.94,0.03c0.36,0.21,0.63,0.51,0.8,0.85l0,0l0.79,1.67C15.58,10.1,16.94,11,18.5,11C19.33,11,20,11.67,20,12.5 z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z\"></path>" } } }, - "emoji_emotions": { - "name": "emoji_emotions", + "square": { + "name": "square", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M10,14c1.86,0,3.41-1.28,3.86-3H6.14C6.59,12.72,8.14,14,10,14z\"></path><path d=\"M9.99,3C6.13,3,3,6.14,3,10s3.13,7,6.99,7c3.87,0,7.01-3.14,7.01-7S13.86,3,9.99,3z M9.99,16C6.69,16,4,13.31,4,10 s2.69-6,5.99-6C13.31,4,16,6.69,16,10S13.31,16,9.99,16z\"></path><circle cx=\"13\" cy=\"8\" r=\"1\"></circle><circle cx=\"7\" cy=\"8\" r=\"1\"></circle></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M3,3v14h14V3H3z M15.5,15.5h-11v-11h11V15.5z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><circle cx=\"15.5\" cy=\"9.5\" r=\"1.5\"></circle><circle cx=\"8.5\" cy=\"9.5\" r=\"1.5\"></circle><path d=\"M12,18c2.28,0,4.22-1.66,5-4H7C7.78,16.34,9.72,18,12,18z\"></path><path d=\"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,3v18h18V3H3z M19,19H5V5h14V19z\"></path></g></g>" } } }, - "emoji_events": { - "name": "emoji_events", + "format_color_text": { + "name": "format_color_text", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M15,6h-2V5H7v1H5C4.45,6,4,6.45,4,7v1c0,1.66,1.34,3,3,3h0.18c0.36,1.01,1.24,1.77,2.32,1.95V15H7v1h2.5h1H13v-1h-2.5 v-2.05c1.08-0.18,1.96-0.94,2.32-1.95H13c1.66,0,3-1.34,3-3V7C16,6.45,15.55,6,15,6z M5,8V7h2v3C5.9,10,5,9.1,5,8z M10,12 c-1.1,0-2-0.9-2-2V6h4v4C12,11.1,11.1,12,10,12z M15,8c0,1.1-0.9,2-2,2V7h2V8z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,5h-2V3H7v2H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94c0.63,1.5,1.98,2.63,3.61,2.96V19H7v2h10v-2h-4v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M12,14 c-1.65,0-3-1.35-3-3V5h6v6C15,12.65,13.65,14,12,14z M19,8c0,1.3-0.84,2.4-2,2.82V7h2V8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M2,20h20v4H2V20z M5.49,17h2.42l1.27-3.58h5.65L16.09,17h2.42L13.25,3h-2.5L5.49,17z M9.91,11.39l2.03-5.79h0.12l2.03,5.79 H9.91z\"></path></g>" } } }, - "emoji_flags": { - "name": "emoji_flags", + "candlestick_chart": { + "name": "candlestick_chart", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><path d=\"M12,8l-1-1H7V5.85C7.29,5.67,7.5,5.37,7.5,5c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V16h1v-3h3l1,1h4V8 H12z M14,13h-2.59l-1-1H7V8h3.59l1,1H14V13z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M7.25,3h-1.5v2H4v10h1.75v2h1.5v-2H9V5H7.25V3z M7.5,6.5v7h-2v-7H7.5z\"></path><path d=\"M14.25,7V3h-1.5v4H11v6h1.75v4h1.5v-4H16V7H14.25z M14.5,11.5h-2v-3h2V11.5z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M9,4H7v2H5v12h2v2h2v-2h2V6H9V4z M9,16H7V8h2V16z\"></path><path d=\"M19,8h-2V4h-2v4h-2v7h2v5h2v-5h2V8z M17,13h-2v-3h2V13z\"></path></g></g>" } } }, - "emoji_food_beverage": { - "name": "emoji_food_beverage", + "mode_comment": { + "name": "mode_comment", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><g><path d=\"M15,5H5v7c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2V9h1c0.55,0,1-0.45,1-1V6C16,5.45,15.55,5,15,5z M8.5,8.2L9,8.54V10H8V8.54 L8.5,8.2z M13,9v3c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V6h2.25v1.17L7.11,7.93C7.04,7.97,7,8.05,7,8.13v2.62 C7,10.89,7.11,11,7.25,11h2.5C9.89,11,10,10.89,10,10.75V8.13c0-0.08-0.04-0.16-0.11-0.21L8.75,7.17V6H13V9z M15,8h-1V6h1V8z\"></path></g><g><rect height=\"1\" width=\"11\" x=\"4\" y=\"15\"></rect></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><rect height=\"2\" width=\"18\" x=\"2\" y=\"19\"></rect><path d=\"M20,3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.89,2-2V5C22,3.89,21.11,3,20,3z M16,13 c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V5h3v1.4L7.19,7.85C7.07,7.94,7,8.09,7,8.24v4.26C7,12.78,7.22,13,7.5,13h4 c0.28,0,0.5-0.22,0.5-0.5V8.24c0-0.15-0.07-0.3-0.19-0.39L10,6.4V5h6V13z M9.5,7.28l1.5,1.2V12H8V8.48L9.5,7.28z M20,8h-2V5h2V8z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 17.17L18.83 16H4V4h16v13.17zM20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2z\"></path>" } } }, - "emoji_nature": { - "name": "emoji_nature", + "checklist": { + "name": "checklist", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M16.96,4.8c-0.11-0.33-0.43-0.55-0.79-0.55c-0.02,0-0.04,0-0.06,0H15.5l-0.19-0.6C15.22,3.27,14.88,3,14.5,3h0 c-0.38,0-0.72,0.27-0.81,0.65l-0.19,0.6h-0.61c-0.02,0-0.04,0-0.06,0c-0.36,0-0.68,0.22-0.79,0.55c-0.12,0.35,0.03,0.73,0.35,0.92 l0.54,0.33l-0.24,0.77c-0.14,0.36-0.03,0.78,0.28,1.01C13.12,7.95,13.29,8,13.46,8c0.19,0,0.38-0.07,0.54-0.2l0.51-0.43l0.51,0.43 C15.16,7.93,15.35,8,15.54,8c0.17,0,0.34-0.05,0.49-0.16c0.31-0.23,0.43-0.65,0.28-1.01l-0.24-0.77l0.54-0.33 C16.93,5.53,17.08,5.15,16.96,4.8z M14.5,6C14.22,6,14,5.78,14,5.5C14,5.22,14.22,5,14.5,5S15,5.22,15,5.5C15,5.78,14.78,6,14.5,6 z\"></path><path d=\"M11.27,8.73c-0.36-0.36-0.8-0.59-1.27-0.68V7H9.5v1C8.86,8,8.22,8.24,7.73,8.73C7.6,8.87,7.41,9.05,7.2,9.26L5.74,8.71 C5.23,8.53,4.67,8.56,4.18,8.79C3.69,9.02,3.32,9.43,3.14,9.95c-0.36,1.01,0.13,2.1,1.09,2.53c-0.41,0.92-0.25,2.04,0.5,2.79 C5.22,15.76,5.86,16,6.5,16c0.35,0,0.71-0.08,1.03-0.23c0.2,0.45,0.54,0.82,0.99,1.04C8.8,16.94,9.1,17,9.4,17 c0.23,0,0.46-0.04,0.68-0.12h0c0.51-0.18,0.92-0.55,1.16-1.04c0.23-0.49,0.26-1.04,0.08-1.56l-0.56-1.49 c0.2-0.2,0.39-0.39,0.52-0.52C11.76,11.78,12,11.14,12,10.5h1V10h-1.05C11.85,9.54,11.63,9.09,11.27,8.73z M7.3,14.77 C7.06,14.92,6.79,15,6.5,15c-0.4,0-0.78-0.16-1.06-0.44c-0.5-0.5-0.55-1.27-0.18-1.85c0.09,0.01,0.18,0.02,0.27,0.02 c0.84,0,1.66-0.27,2.35-0.59C7.52,12.91,7.23,13.84,7.3,14.77z M4.71,11.6c-0.26-0.09-0.47-0.28-0.59-0.53s-0.13-0.53-0.04-0.79 c0.09-0.26,0.28-0.47,0.53-0.59c0.14-0.07,0.29-0.1,0.45-0.1c0.11,0,0.23,0.02,0.34,0.06l2.94,1.11 C7.46,11.31,5.95,12.04,4.71,11.6z M10.33,15.41c-0.12,0.25-0.33,0.44-0.59,0.53c-0.26,0.09-0.54,0.08-0.79-0.04 c-0.25-0.12-0.44-0.33-0.53-0.59c-0.44-1.24,0.29-2.75,0.84-3.63l1.11,2.93C10.46,14.88,10.45,15.16,10.33,15.41z M10.56,11.56 l-0.2,0.2l-0.5-1.31c-0.01-0.03-0.03-0.04-0.05-0.07c-0.02-0.04-0.04-0.07-0.07-0.1c-0.03-0.03-0.06-0.05-0.1-0.07 c-0.02-0.01-0.04-0.04-0.07-0.05L8.23,9.65l0.21-0.21C8.72,9.16,9.1,9,9.5,9c0.4,0,0.78,0.16,1.06,0.44 C11.15,10.02,11.15,10.98,10.56,11.56z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,7.5h-7V6h7V7.5z M18,12.5h-7V14h7V12.5z M3.06,5.11L2,6.17L4.83,9l4.6-4.6L8.36,3.34L4.83,6.88L3.06,5.11z M3.06,11.61 L2,12.67l2.83,2.83l4.6-4.6L8.36,9.84l-3.54,3.54L3.06,11.61z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z\"></path><path d=\"M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.12,0.12-0.3,0.3-0.5,0.5L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c0.78,0.78,1.8,1.17,2.83,1.17c0.37,0,0.73-0.07,1.09-0.17 c0.29,0.42,0.68,0.77,1.16,1C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85 l-0.49-1.3c0.2-0.2,0.38-0.38,0.5-0.5c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M7.58,18.82c-0.15,0.04-0.3,0.06-0.46,0.06c-0.53,0-1.04-0.21-1.41-0.59c-0.38-0.38-0.59-0.88-0.59-1.41 c0-0.16,0.03-0.32,0.06-0.47c0.14,0.01,0.28,0.03,0.42,0.03c0.85,0,1.68-0.2,2.44-0.48C7.72,16.85,7.5,17.83,7.58,18.82z M4.67,14.29c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19 C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57 c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03 c-0.02-0.04-0.04-0.08-0.06-0.12c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09 c-0.03-0.03-0.07-0.05-0.11-0.07c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8 c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59C12.8,12.66,12.84,13.81,12.2,14.6z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,7h-9v2h9V7z M22,15h-9v2h9V15z M5.54,11L2,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L5.54,11z M5.54,19L2,15.46 l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L5.54,19z\"></path>" } } }, - "emoji_objects": { - "name": "emoji_objects", + "pie_chart": { + "name": "pie_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><path d=\"M14.91,7.07c-0.01-0.04-0.01-0.08-0.02-0.12c-0.06-0.28-0.15-0.56-0.26-0.82c-0.02-0.05-0.04-0.09-0.06-0.14 c-0.11-0.26-0.25-0.5-0.4-0.74c-0.03-0.04-0.05-0.08-0.08-0.11c-0.16-0.23-0.34-0.46-0.55-0.66c-0.02-0.02-0.03-0.03-0.05-0.05 c-0.2-0.2-0.42-0.38-0.66-0.54c-0.02-0.02-0.04-0.03-0.06-0.05c-0.24-0.16-0.49-0.29-0.75-0.41c-0.04-0.02-0.09-0.04-0.13-0.06 c-0.26-0.11-0.53-0.19-0.81-0.25c-0.05-0.01-0.1-0.02-0.15-0.03C10.64,3.04,10.34,3.01,10.04,3C10.03,3,10.01,3,10,3 C9.9,3,9.79,3.01,9.69,3.02c-0.06,0-0.12,0-0.18,0.01C9.31,3.04,9.12,3.07,8.93,3.11c-1.94,0.4-3.49,2-3.84,3.95 c-0.31,1.72,0.26,3.3,1.33,4.4C6.78,11.84,7,12.34,7,12.87c0,0.77,0,1.6,0,2.14c0,0.55,0.45,1,1,1h0.28l0,0c0.35,0.6,0.98,1,1.72,1 s1.38-0.4,1.72-1l0,0H12c0.55,0,1-0.45,1-1v-2.13c0-0.52,0.21-1.02,0.58-1.4C14.45,10.57,15,9.35,15,8 C15,7.68,14.96,7.37,14.91,7.07z M12,15l-2,0l0,0l0,0l-2,0l0-1h4V15z M12,13H8h0l0-1h4V13z M12.86,10.77 c-0.07,0.07-0.12,0.15-0.19,0.23H7.32c-0.06-0.08-0.12-0.16-0.19-0.24c-0.91-0.94-1.3-2.22-1.06-3.52 c0.29-1.57,1.52-2.83,3.06-3.16C9.42,4.03,9.71,4,10,4c2.21,0,4,1.79,4,4C14,9.04,13.6,10.02,12.86,10.77z\"></path><g><g><g><rect height=\"2.5\" width=\"1\" x=\"9.5\" y=\"8.5\"></rect></g></g><g><g><rect height=\"2.5\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.9225 8.8839)\" width=\"1\" x=\"8.76\" y=\"6.72\"></rect></g></g><g><g><rect height=\"2.5\" transform=\"matrix(-0.7071 -0.7071 0.7071 -0.7071 12.6945 21.1976)\" width=\"1\" x=\"10.24\" y=\"6.72\"></rect></g></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,17h-4v-1h4V17z M10,19v-1h4v1H10z M15.31,13.74c-0.09,0.08-0.16,0.18-0.24,0.26H8.92c-0.08-0.09-0.15-0.19-0.24-0.27c-1.32-1.18-1.91-2.94-1.59-4.7 c0.36-1.94,1.96-3.55,3.89-3.93C11.32,5.03,11.66,5,12,5c2.76,0,5,2.24,5,5C17,11.43,16.39,12.79,15.31,13.74z\"></path></g><g><rect height=\"3\" width=\"1\" x=\"11.5\" y=\"11\"></rect><rect height=\"3\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.0312 10.8536)\" width=\"1\" x=\"10.59\" y=\"8.79\"></rect><rect height=\"3\" transform=\"matrix(-0.7071 -0.7071 0.7071 -0.7071 14.7678 26.7028)\" width=\"1\" x=\"12.41\" y=\"8.79\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.93 9H13V4.07c3.61.45 6.48 3.32 6.93 6.93zM4 12c0-4.07 3.06-7.44 7-7.93v15.86c-3.94-.49-7-3.86-7-7.93zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z\"></path>" } } }, - "emoji_people": { - "name": "emoji_people", + "format_textdirection_l_to_r": { + "name": "format_textdirection_l_to_r", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><circle cx=\"10\" cy=\"5\" r=\"1\"></circle><path d=\"M12.29,7.29C12.11,7.11,11.85,7,11.59,7H8.5C7.12,7,6,5.88,6,4.5V4H5v0.5C5,6.26,6.31,7.75,8,8v4v4h1v-4h2v4h1v-4V8.41 l2.83,2.83l0.71-0.71L12.29,7.29z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><circle cx=\"12\" cy=\"4\" r=\"2\"></circle><path d=\"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2H9C6.79 2 5 3.79 5 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zm0 12v3H5v2h12v3l4-4-4-4z\"></path>" } } }, - "emoji_symbols": { - "name": "emoji_symbols", + "format_align_right": { + "name": "format_align_right", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M5.21,14.09l-1.06,1.06C4.02,15.27,4,15.42,4,15.5s0.02,0.23,0.15,0.35C4.27,15.98,4.42,16,4.5,16 s0.23-0.02,0.35-0.15l0.35-0.35l0.71-0.71L5.21,14.09z\" fill=\"none\"></path><path d=\"M5.71,11.96c0-0.08-0.02-0.23-0.15-0.35s-0.28-0.15-0.35-0.15c-0.08,0-0.23,0.02-0.35,0.15 c-0.13,0.13-0.15,0.28-0.15,0.35c0,0.08,0.02,0.23,0.15,0.35l0.35,0.35l0.35-0.35C5.69,12.19,5.71,12.04,5.71,11.96z\" fill=\"none\"></path><rect height=\"1\" width=\"5\" x=\"4\" y=\"3\"></rect><polygon points=\"4,5 4,6 6,6 6,9 6.99,9 6.99,6 9,6 9,5\"></polygon><rect height=\".99\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.8428 13.8943)\" width=\"7.07\" x=\"10.31\" y=\"13.5\"></rect><path d=\"M12.71,12.71c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41 C11.68,13.1,12.32,13.1,12.71,12.71z\"></path><path d=\"M16.71,15.29c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0 C17.1,16.32,17.1,15.68,16.71,15.29z\"></path><path d=\"M12.5,9C13.33,9,14,8.33,14,7.5C14,7.47,14,4,14,4h2V3h-3v3.09C12.84,6.04,12.68,6,12.5,6C11.67,6,11,6.67,11,7.5 S11.67,9,12.5,9z\"></path><path d=\"M8.04,12.67l-1.41,1.41l-0.71-0.71l0.35-0.35c0.59-0.59,0.59-1.54,0-2.12c-0.29-0.29-0.68-0.44-1.06-0.44 c-0.38,0-0.77,0.15-1.06,0.44c-0.59,0.59-0.59,1.54,0,2.12l0.35,0.35l-1.06,1.06c-0.59,0.59-0.59,1.54,0,2.12 C3.73,16.85,4.12,17,4.5,17s0.77-0.15,1.06-0.44l1.06-1.06l1.41,1.41l0.71-0.71l-1.41-1.41v0l1.41-1.41L8.04,12.67z M4.85,12.32 c-0.13-0.13-0.15-0.28-0.15-0.35c0-0.08,0.02-0.23,0.15-0.35c0.13-0.13,0.28-0.15,0.35-0.15c0.08,0,0.23,0.02,0.35,0.15 s0.15,0.28,0.15,0.35c0,0.08-0.02,0.23-0.15,0.35l-0.35,0.35L4.85,12.32z M4.85,15.85C4.73,15.98,4.58,16,4.5,16 s-0.23-0.02-0.35-0.15C4.02,15.73,4,15.58,4,15.5s0.02-0.23,0.15-0.35l1.06-1.06l0.71,0.71L5.21,15.5L4.85,15.85z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><rect height=\"2\" width=\"8\" x=\"3\" y=\"2\"></rect><polygon points=\"6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7\"></polygon><rect height=\"2\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)\" width=\"11\" x=\"11.5\" y=\"16\"></rect><circle cx=\"14.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"19.5\" cy=\"19.5\" r=\"1.5\"></circle><path d=\"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z\"></path><path d=\"M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z\"></path>" } } }, - "emoji_transportation": { - "name": "emoji_transportation", + "align_vertical_bottom": { + "name": "align_vertical_bottom", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><polygon points=\"8,5 11,5 11,8 12,8 12,4 7,4 7,7 4,7 4,16 5,16 5,8 8,8\"></polygon><rect height=\"1\" width=\"1\" x=\"6\" y=\"9\"></rect><rect height=\"1\" width=\"1\" x=\"9\" y=\"6\"></rect><rect height=\"1\" width=\"1\" x=\"6\" y=\"11\"></rect><rect height=\"1\" width=\"1\" x=\"6\" y=\"13\"></rect><path d=\"M15.11,9.34C15.05,9.14,14.85,9,14.64,9H9.36C9.15,9,8.95,9.14,8.89,9.34L8,12v2v0.5V15v0.5C8,15.78,8.22,16,8.5,16 S9,15.78,9,15.5V15h6v0.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V15v-0.5V14v-2L15.11,9.34z M9.72,10h4.56l0.67,2H9.05L9.72,10 z M9.5,14C9.22,14,9,13.78,9,13.5S9.22,13,9.5,13s0.5,0.22,0.5,0.5S9.78,14,9.5,14z M14.5,14c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5S14.78,14,14.5,14z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z\"></path><polygon points=\"14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4\"></polygon><rect height=\"2\" width=\"2\" x=\"5\" y=\"11\"></rect><rect height=\"2\" width=\"2\" x=\"10\" y=\"5\"></rect><rect height=\"2\" width=\"2\" x=\"5\" y=\"15\"></rect><rect height=\"2\" width=\"2\" x=\"5\" y=\"19\"></rect></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,22H2v-2h20V22z M10,2H7v16h3V2z M17,8h-3v10h3V8z\"></path>" } } }, - "engineering": { - "name": "engineering", + "notes": { + "name": "notes", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M4.82,8H5c0,1.38,1.12,2.5,2.5,2.5S10,9.38,10,8h0.32c0.14,0,0.25-0.11,0.25-0.25S10.45,7.5,10.32,7.5H10 c0-1.02-0.62-1.9-1.5-2.29v0.54C8.5,5.89,8.39,6,8.25,6S8,5.89,8,5.75v-0.7C7.84,5.02,7.67,5,7.5,5S7.16,5.02,7,5.05v0.7 C7,5.89,6.89,6,6.75,6S6.5,5.89,6.5,5.75V5.21C5.62,5.6,5,6.48,5,7.5H4.82c-0.14,0-0.25,0.11-0.25,0.25S4.68,8,4.82,8z M9,8 c0,0.83-0.67,1.5-1.5,1.5S6,8.83,6,8H9z\"></path><path d=\"M17.27,5.31l0.66-0.59L17.4,3.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L16.04,3h-1.07l-0.18,0.87 c-0.12,0.05-0.24,0.12-0.34,0.19L13.6,3.79l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27 c0.1,0.07,0.2,0.13,0.31,0.18L14.96,8h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61 C17.28,5.55,17.28,5.43,17.27,5.31z M15.5,6.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C16.39,5.99,15.99,6.39,15.5,6.39z\"></path><path d=\"M15.3,8.72l-0.59,0.2c-0.07-0.05-0.15-0.1-0.23-0.13l-0.13-0.61H13.6l-0.13,0.61c-0.08,0.04-0.17,0.08-0.24,0.14 l-0.59-0.19l-0.38,0.65l0.46,0.41c-0.01,0.09-0.01,0.18,0,0.26l-0.46,0.42l0.38,0.65l0.6-0.19c0.07,0.05,0.14,0.09,0.22,0.12 l0.14,0.62h0.75l0.13-0.61c0.08-0.04,0.15-0.08,0.22-0.13l0.59,0.19l0.38-0.65l-0.46-0.42c0.01-0.09,0.01-0.17,0-0.26l0.47-0.42 L15.3,8.72z M13.97,10.54c-0.35,0-0.62-0.28-0.62-0.62c0-0.35,0.28-0.62,0.62-0.62c0.35,0,0.62,0.28,0.62,0.62 C14.6,10.26,14.32,10.54,13.97,10.54z\"></path><path d=\"M7.5,12C5,12,2,13.24,2,15v0.97h11V15C13,13.24,10,12,7.5,12z M3,14.97C3.05,14.1,5.21,13,7.5,13s4.45,1.1,4.5,1.97H3z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z M3,19c0.22-0.72,3.31-2,6-2c2.7,0,5.8,1.29,6,2H3z\"></path><path d=\"M4.74,9H5c0,2.21,1.79,4,4,4s4-1.79,4-4h0.26c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13 c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5 C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z M11,9c0,1.1-0.9,2-2,2s-2-0.9-2-2H11z\"></path><path d=\"M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z\"></path><path d=\"M19.4,10.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05-0.24,0.12-0.34,0.19 l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27c0.1,0.07,0.2,0.13,0.31,0.18 L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61c0.01-0.13,0.01-0.25,0-0.37l0.66-0.59 L19.4,10.79z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C18.39,12.99,17.99,13.39,17.5,13.39z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 11.01L3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z\"></path>" } } }, - "facebook": { - "name": "facebook", + "insert_comment": { + "name": "insert_comment", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4v13.17L18.83 16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 10H6v2h12v-2zm0-3H6v2h12V9zm0-3H6v2h12V6z\"></path>" } } }, - "female": { - "name": "female", + "height": { + "name": "height", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14.25,8.25C14.25,5.9,12.35,4,10,4S5.75,5.9,5.75,8.25c0,2.09,1.51,3.82,3.5,4.17V14h-1.5v1.5h1.5V17h1.5v-1.5h1.5V14h-1.5 v-1.58C12.74,12.07,14.25,10.34,14.25,8.25z M7.25,8.25C7.25,6.73,8.48,5.5,10,5.5s2.75,1.23,2.75,2.75S11.52,11,10,11 S7.25,9.77,7.25,8.25z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><polygon points=\"11,7 14,7 10,3.01 6,7 9,7 9,13 6,13 10,16.99 14,13 11,13\"></polygon></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17.5,9.5C17.5,6.46,15.04,4,12,4S6.5,6.46,6.5,9.5c0,2.7,1.94,4.93,4.5,5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1 C15.56,14.43,17.5,12.2,17.5,9.5z M8.5,9.5C8.5,7.57,10.07,6,12,6s3.5,1.57,3.5,3.5S13.93,13,12,13S8.5,11.43,8.5,9.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><polygon points=\"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01\"></polygon></g>" } } }, - "fireplace": { - "name": "fireplace", + "format_shapes": { + "name": "format_shapes", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10.51,10.25c-0.11,0.32-0.11,0.61-0.06,0.96c0.07,0.42,0.24,0.78,0.15,1.2c-0.1,0.44-0.58,1.04-1.15,1.22 c0.96,0.79,2.4,0.28,2.54-0.99C12.12,11.49,10.91,11.16,10.51,10.25z\"></path><path d=\"M3,3v14h14V3H3z M10,15c-1.66,0-2.97-1.74-3-2.88c0-0.04,0-0.08-0.01-0.14c-0.14-1.8,1.27-3.24,2.87-4.29 c0.23,0.85,0.81,1.85,2.11,2.71c0.72,0.47,1.03,1,1.03,1.75C13,13.72,11.65,15,10,15z M16,16h-2v-1h-1.33 c0.81-0.7,1.33-1.71,1.33-2.85c0-1.45-0.87-2.19-1.48-2.59C10.16,8.01,10.8,6,10.8,6C5.42,8.74,5.99,11.74,6,12.15 C6.03,13.1,6.63,14.21,7.53,15H6v1H4V4h12V16z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12.01,12.46c-0.15,0.42-0.15,0.82-0.08,1.28c0.1,0.55,0.33,1.04,0.2,1.6c-0.13,0.59-0.77,1.38-1.53,1.63 c1.28,1.05,3.2,0.37,3.39-1.32C14.16,14.11,12.55,13.67,12.01,12.46z\"></path><path d=\"M2,2v20h20V2H2z M12,18c-1.58,0-2.97-1.88-3-3.06c0-0.05-0.01-0.13-0.01-0.22c-0.13-1.73,1-3.2,2.47-4.37 c0.47,1.01,1.27,2.03,2.57,2.92C14.61,13.69,15,14.13,15,15C15,16.65,13.65,18,12,18z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8 c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z\"></path>" } } }, - "follow_the_signs": { - "name": "follow_the_signs", + "hexagon": { + "name": "hexagon", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M16.27,10l-3.14,5.5H6.87L3.73,10l3.14-5.5h6.26L16.27,10z M6,3l-4,7l4,7h8l4-7l-4-7H6z\"></path></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.4,5.5,9.5,5.5z M5.75,8.9L3,23h2.1l1.75-8L9,17v6h2v-7.55L8.95,13.4 l0.6-3C10.85,12,12.8,13,15,13v-2c-1.85,0-3.45-1-4.35-2.45L9.7,6.95C9.35,6.35,8.7,6,8,6C7.75,6,7.5,6.05,7.25,6.15L2,8.3V13h2 V9.65L5.75,8.9 M13,2v7h3.75v14h1.5V9H22V2H13z M18.01,8V6.25H14.5v-1.5h3.51V3l2.49,2.5L18.01,8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M17.2,3H6.8l-5.2,9l5.2,9h10.4l5.2-9L17.2,3z M16.05,19H7.95l-4.04-7l4.04-7h8.09l4.04,7L16.05,19z\"></path></g>" } } }, - "front_hand": { - "name": "front_hand", + "align_horizontal_right": { + "name": "align_horizontal_right", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.5,6.5c-0.17,0-0.34,0.02-0.5,0.06V3.5c0-1.1-0.9-2-2-2c-0.19,0-0.37,0.03-0.55,0.08C12.26,0.67,11.46,0,10.5,0 C9.62,0,8.88,0.56,8.61,1.34C8.42,1.28,8.21,1.25,8,1.25c-1.1,0-2,0.9-2,2v0.81C5.84,4.02,5.67,4,5.5,4c-1.1,0-2,0.9-2,2v7 c0,3.87,3.13,7,7,7s7-3.13,7-7V8.5C17.5,7.4,16.6,6.5,15.5,6.5z M16,13c0,3.04-2.46,5.5-5.5,5.5S5,16.04,5,13V6 c0-0.28,0.22-0.5,0.5-0.5S6,5.72,6,6v4h1.5V3.25c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V9H10V2c0-0.28,0.22-0.5,0.5-0.5 S11,1.72,11,2v7h1.5V3.5C12.5,3.22,12.72,3,13,3s0.5,0.22,0.5,0.5l0,7.79C12.03,11.88,11,13.32,11,15h1.5c0-1.38,1.12-2.5,2.5-2.5 v-4C15,8.22,15.22,8,15.5,8S16,8.22,16,8.5V13z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18.5,8c-0.17,0-0.34,0.02-0.5,0.05V4.5C18,3.12,16.88,2,15.5,2c-0.19,0-0.37,0.02-0.54,0.06C14.75,0.89,13.73,0,12.5,0 c-1.06,0-1.96,0.66-2.33,1.59C9.96,1.53,9.73,1.5,9.5,1.5C8.12,1.5,7,2.62,7,4v0.55C6.84,4.52,6.67,4.5,6.5,4.5C5.12,4.5,4,5.62,4,7 v8.5c0,4.69,3.81,8.5,8.5,8.5s8.5-3.81,8.5-8.5v-5C21,9.12,19.88,8,18.5,8z M19,15.5c0,3.59-2.91,6.5-6.5,6.5S6,19.09,6,15.5V7 c0-0.28,0.22-0.5,0.5-0.5S7,6.72,7,7v5h2V4c0-0.28,0.22-0.5,0.5-0.5S10,3.72,10,4v7h2V2.5C12,2.22,12.22,2,12.5,2S13,2.22,13,2.5V11 h2V4.5C15,4.22,15.22,4,15.5,4S16,4.22,16,4.5v8.92c-1.77,0.77-3,2.53-3,4.58h2c0-1.66,1.34-3,3-3v-4.5c0-0.28,0.22-0.5,0.5-0.5 s0.5,0.22,0.5,0.5V15.5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,2h2v20h-2V2z M2,10h16V7H2V10z M8,17h10v-3H8V17z\"></path>" } } }, - "group": { - "name": "group", + "merge_type": { + "name": "merge_type", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z\"></path>" } } }, - "groups": { - "name": "groups", + "vertical_align_top": { + "name": "vertical_align_top", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14 c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2 c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14 c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9 c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61C18,15.21,17.32,14.13,16.24,13.65z M8.07,16 c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69H8.07z M12,8 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8 M12,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C15,7.34,13.66,6,12,6L12,6z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z\"></path>" } } }, - "group_add": { - "name": "group_add", + "text_increase": { + "name": "text_increase", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect><path d=\"M15.75,9.25H18v1.5h-2.25V13h-1.5v-2.25H12v-1.5h2.25V7h1.5V9.25z M4.49,12.44h4.04L9.42,15h1.73L7.39,5H5.61L1.85,15h1.73 L4.49,12.44z M6.07,8.02l0.39-1.16h0.08l0.39,1.16l1.06,2.98H5.01L6.07,8.02z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 15v-3h3v-2H5V7H3v3H0v2h3v3zm7-1.25c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM7.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H7.34zM12 12c1.93 0 3.5-1.57 3.5-3.5S13.93 5 12 5 8.5 6.57 8.5 8.5 10.07 12 12 12zm0-5c.83 0 1.5.67 1.5 1.5S12.83 10 12 10s-1.5-.67-1.5-1.5S11.17 7 12 7zm5 5c1.93 0 3.5-1.57 3.5-3.5S18.93 5 17 5c-.24 0-.48.02-.71.07.76.94 1.21 2.13 1.21 3.43 0 1.3-.47 2.48-1.23 3.42.24.05.48.08.73.08zm2.32 2.02c1 .81 1.68 1.87 1.68 3.23V19h3v-1.75c0-1.69-2.44-2.76-4.68-3.23z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M0.99,19h2.42l1.27-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19z M5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41z M20,11h3v2h-3 v3h-2v-3h-3v-2h3V8h2V11z\"></path>" } } }, - "group_off": { - "name": "group_off", + "border_vertical": { + "name": "border_vertical", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M7.66,5.54C7.77,5.51,7.88,5.5,8,5.5c0.83,0,1.5,0.67,1.5,1.5c0,0.12-0.01,0.23-0.04,0.34l1.15,1.15 C10.86,8.05,11,7.54,11,7c0-1.66-1.34-3-3-3C7.46,4,6.95,4.14,6.51,4.39L7.66,5.54z M11.68,9.56C12.19,8.83,12.5,7.95,12.5,7 c0-1.13-0.43-2.15-1.12-2.94C11.58,4.02,11.79,4,12,4c1.66,0,3,1.34,3,3c0,1.62-1.28,2.94-2.88,3L11.68,9.56z M15.41,13.29 c-0.2-0.83-0.69-1.57-1.39-2.06c1.08,0.22,2.1,0.6,3.02,1.14c0.6,0.36,0.97,1.02,0.97,1.72v1.79L15.41,13.29z M5,7.12L1.16,3.28 l1.06-1.06l15.56,15.56l-1.06,1.06L13.88,16H2v-1.91c0-0.7,0.36-1.36,0.97-1.72C4.44,11.5,6.16,11,8,11c0.31,0,0.62,0.01,0.92,0.04 l0,0L7.88,10C6.32,9.93,5.07,8.68,5,7.12z M10.89,13.01C9.97,12.67,8.99,12.5,8,12.5c-1.5,0-2.98,0.4-4.28,1.16 c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h8.88C12.38,14.5,10.89,13.01,10.89,13.01L10.89,13.01z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15,8c0-1.42-0.5-2.73-1.33-3.76C14.09,4.1,14.53,4,15,4c2.21,0,4,1.79,4,4s-1.79,4-4,4c-0.06,0-0.12,0-0.18,0l-0.77-0.77 C14.65,10.29,15,9.18,15,8z M22.83,20H23v-3c0-2.18-3.58-3.47-6.34-3.87c1.1,0.75,1.95,1.71,2.23,2.94L22.83,20z M9,6 C8.94,6,8.89,6,8.84,6.01l-1.6-1.6C7.77,4.15,8.37,4,9,4c2.21,0,4,1.79,4,4c0,0.63-0.15,1.23-0.41,1.76l-1.6-1.6 C11,8.11,11,8.06,11,8C11,6.9,10.1,6,9,6z M9.17,12C9.11,12,9.06,12,9,12c-2.21,0-4-1.79-4-4c0-0.06,0-0.11,0-0.17L0.69,3.51 L2.1,2.1l19.8,19.8l-1.41,1.41L17,19.83V20H1v-3c0-2.66,5.33-4,8-4c0.37,0,0.8,0.03,1.25,0.08L9.17,12z M9,15 c-2.7,0-5.8,1.29-6,2.01V18h12v-0.17l-2.11-2.11C11.76,15.31,10.33,15,9,15z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z\"></path>" } } }, - "health_and_safety": { - "name": "health_and_safety", + "format_bold": { + "name": "format_bold", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M10.5,13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13z M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2 z M18,11.09c0,4-2.55,7.7-6,8.83c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z\"></path>" } } }, - "hiking": { - "name": "hiking", + "format_textdirection_r_to_l": { + "name": "format_textdirection_r_to_l", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M4.9,10.75l1.64,0.32l0.96-4.91L6.84,6.03C6.03,5.87,5.24,6.4,5.08,7.21l-0.57,2.94C4.46,10.43,4.63,10.69,4.9,10.75z M14,18h1V8 h-1l0,1.41c-2.11-0.42-2.13-2.19-3.11-2.97c-0.21-0.17-0.45-0.29-0.7-0.36c-0.81-0.23-1.7,0.27-1.88,1.16C8.15,8.06,6.2,18,6.2,18 h1.53l1.19-6.01l1.58,1.58V18H12v-5.05l-1.46-1.46l0.49-2.48c0.72,0.95,1.76,1.64,2.97,1.89L14,18z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M17.5,10.78c-1.23-0.37-2.22-1.17-2.8-2.18l-1-1.6 c-0.41-0.65-1.11-1-1.84-1c-0.78,0-1.59,0.5-1.78,1.44S7,23,7,23h2.1l1.8-8l2.1,2v6h2v-7.5l-2.1-2l0.6-3c1,1.15,2.41,2.01,4,2.34V23 H19V9h-1.5L17.5,10.78z M7.43,13.13l-2.12-0.41c-0.54-0.11-0.9-0.63-0.79-1.17l0.76-3.93c0.21-1.08,1.26-1.79,2.34-1.58l1.16,0.23 L7.43,13.13z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zM8 14l-4 4 4 4v-3h12v-2H8v-3z\"></path>" } } }, - "history_edu": { - "name": "history_edu", + "format_paint": { + "name": "format_paint", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M7,4v0.73c-0.68-0.32-1.4-0.5-2.13-0.5c-1.28,0-2.56,0.49-3.54,1.46l2.12,2.12h1.41L4.76,9.13 c0.62,0.62,1.42,0.92,2.23,0.92c0,0,0.01,0,0.01,0V12H5v2.5C5,15.33,5.67,16,6.5,16H14c1.1,0,2-0.9,2-2V4H7z M6.99,9.05 c-0.43,0-0.84-0.12-1.19-0.36l0.15-1.87H3.87L2.84,5.79c0.61-0.36,1.31-0.55,2.03-0.55c1.07,0,2.07,0.42,2.83,1.17l1.41,1.41 l-0.6,0.6C8.1,8.82,7.56,9.05,6.99,9.05z M15,14c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2H8V9.87c0.44-0.15,0.86-0.39,1.22-0.74l0.6-0.6 L12.29,11H13v-0.71L8.4,5.7C8.28,5.57,8.14,5.48,8,5.37V5h7V14z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z\"></path>" } } }, - "ice_skating": { - "name": "ice_skating", + "drag_handle": { + "name": "drag_handle", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.5,14c0,1.38-1.12,2.5-2.5,2.5h-1.5V15H16v-3.5c0-1.35-0.89-2.49-2.2-2.85l-2.2-0.6c-0.65-0.18-1.1-0.77-1.1-1.45V2.5H3 V15h2.5v1.5H2V18h13c2.21,0,4-1.79,4-4H17.5z M4.5,13.5V4H9v1H7.5C7.22,5,7,5.22,7,5.5C7,5.77,7.22,6,7.5,6H9 c0,0.57-0.01,0.76,0.03,1H7.5C7.22,7,7,7.22,7,7.5C7,7.77,7.22,8,7.5,8h1.85c0.38,0.72,1.04,1.28,1.86,1.5l2.19,0.6 c0.65,0.18,1.1,0.73,1.1,1.4v2H4.5z M12,16.5H7V15h5V16.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M21,17c0,1.66-1.34,3-3,3h-2v-2h3v-4c0-1.79-1.19-3.34-2.91-3.82l-2.62-0.74C12.62,9.19,12,8.39,12,7.5V3H3v15h3v2H2v2h16 c2.76,0,5-2.24,5-5H21z M5,16V5h5v1H8.5C8.22,6,8,6.22,8,6.5C8,6.78,8.22,7,8.5,7H10l0.1,1H8.5C8.22,8,8,8.22,8,8.5 C8,8.78,8.22,9,8.5,9h1.81c0.45,1.12,1.4,2.01,2.6,2.36l2.62,0.73C16.4,12.33,17,13.1,17,14v2H5z M14,20H8v-2h6V20z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 9H4v2h16V9zM4 15h16v-2H4v2z\"></path>" } } }, - "ios_share": { - "name": "ios_share", + "space_bar": { + "name": "space_bar", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M16,5l-1.42,1.42l-1.59-1.59V16h-1.98V4.83L9.42,6.42L8,5l4-4L16,5z M20,10v11c0,1.1-0.9,2-2,2H6c-1.11,0-2-0.9-2-2V10 c0-1.11,0.89-2,2-2h3v2H6v11h12V10h-3V8h3C19.1,8,20,8.89,20,10z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 9v4H6V9H4v6h16V9h-2z\"></path>" } } }, - "kayaking": { - "name": "kayaking", + "format_color_reset": { + "name": "format_color_reset", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11.5,6.25C11.5,7.22,10.72,8,9.75,8S8,7.22,8,6.25S8.78,4.5,9.75,4.5S11.5,5.28,11.5,6.25z M18,17.5h-0.5 c-0.87,0-1.74-0.33-2.5-1h0c-1.52,1.33-3.47,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5 c0.86,0,1.71-0.2,2.5-0.6c1.58,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18L18,17.5z M20,14.5 c0,0-1.43,0.64-3.67,1.19c-0.52-0.27-0.97-0.7-1.33-1.19c-0.61,0.84-1.5,1.5-2.5,1.5s-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16 S5.61,15.34,5,14.5c-0.36,0.49-0.81,0.92-1.33,1.19C1.43,15.14,0,14.5,0,14.5s2.47-1.1,6-1.67l1.07-3.29 c0.26-0.79,1.1-1.22,1.89-0.96C9.05,8.6,9.13,8.64,9.2,8.68l2,1.12l2.44-1.3l1.33-3L14.6,4.51L15.72,2L18,3.02l-1.12,2.51L15.89,5.9 l-3.01,6.77C17,13.16,20,14.5,20,14.5z M12.65,10.72l-1.46,0.8l-1.36-0.77l-0.57,1.77C9.5,12.51,9.75,12.5,10,12.5 c0.63,0,1.24,0.02,1.83,0.07L12.65,10.72z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,23c-1.03,0-2.06-0.25-3-0.75h0c-1.89,1-4.11,1-6,0c-1.89,1-4.11,1-6,0C5.05,22.75,4.03,23,3,23H2l0-2h1 c1.04,0,2.08-0.35,3-1c1.83,1.3,4.17,1.3,6,0c1.83,1.3,4.17,1.3,6,0c0.91,0.65,1.96,1,3,1h1v2H21z M12,5.5c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S13.1,5.5,12,5.5z M24,17.5c0,0-1.52,0.71-3.93,1.37c-0.82-0.23-1.53-0.75-2.07-1.37c-0.73,0.84-1.8,1.5-3,1.5 s-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5s-2.27-0.66-3-1.5c-0.54,0.61-1.25,1.13-2.07,1.37C1.52,18.21,0,17.5,0,17.5 s2.93-1.36,7.13-2.08l1.35-4.17c0.31-0.95,1.32-1.47,2.27-1.16c0.09,0.03,0.19,0.07,0.27,0.11l0,0l2.47,1.3l2.84-1.5l1.65-3.71 l-0.51-1.32L18.8,2L22,3.43L20.67,6.4l-1.31,0.5l-3.72,8.34C20.49,15.87,24,17.5,24,17.5z M15.02,12.96l-1.52,0.8l-1.75-0.92 l-0.71,2.17C11.36,15.01,11.68,15,12,15c0.71,0,1.4,0.03,2.07,0.08L15.02,12.96z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6.36c1.53 2 3.08 4.43 3.71 6.24l2.23 2.23c.03-.27.06-.55.06-.83 0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l1.44 1.44c.34-.51.7-1 1.06-1.47zM5.41 5.14L4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14zM12 18c-2.21 0-4-1.79-4-4 0-.69.32-1.62.81-2.64l5.72 5.72c-.7.56-1.57.92-2.53.92z\"></path>" } } }, - "king_bed": { - "name": "king_bed", + "post_add": { + "name": "post_add", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><rect fill=\"none\" height=\"2\" width=\"4.5\" x=\"10.5\" y=\"6\"></rect><rect fill=\"none\" height=\"2\" width=\"4.5\" x=\"5\" y=\"6\"></rect><polygon fill=\"none\" points=\"9.5,9 4,9 4,12 16,12 16,9 10.5,9\"></polygon><path d=\"M16,8V6c0-0.55-0.45-1-1-1H5C4.45,5,4,5.45,4,6v2C3.45,8,3,8.45,3,9v4h1l0.75,2h0.5L6,13h8l0.75,2h0.5L16,13h1V9 C17,8.45,16.55,8,16,8z M10.5,6H15v2h-4.5V6z M5,6h4.5v2H5V6z M16,12H4V9h12V12z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><path d=\"M14,15H5V6h6V5H5C4.45,5,4,5.45,4,6V15c0,0.55,0.45,1,1,1H14c0.55,0,1-0.45,1-1V9h-1V15z\"></path><polygon points=\"7,8 7,9 11,9 12,9 12,8\"></polygon><rect height=\"1\" width=\"5\" x=\"7\" y=\"10\"></rect><rect height=\"1\" width=\"5\" x=\"7\" y=\"12\"></rect><polygon points=\"15,3 14,3 14,5 14,5 12,5 12,6 14,6 14,8 15,8 15,6 15,6 17,6 17,5 15,5\"></polygon></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M22,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1 l0.67-2H22V12z M18,10h-5V7h5V10z M6,7h5v3H6V7z M4,12h16v3H4V12z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z\"></path><path d=\"M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z\"></path><rect height=\"2\" width=\"8\" x=\"7\" y=\"9\"></rect><polygon points=\"7,12 7,14 15,14 15,12 12,12\"></polygon><rect height=\"2\" width=\"8\" x=\"7\" y=\"15\"></rect></g></g>" } } }, - "kitesurfing": { - "name": "kitesurfing", + "border_top": { + "name": "border_top", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M8.26,3c0,0.97-0.78,1.75-1.75,1.75S4.76,3.97,4.76,3s0.78-1.75,1.75-1.75S8.26,2.03,8.26,3z M16.33,1h-1.41l-2.52,2.51 l0.71,0.71L16.33,1z M15,16.5c-1.53,1.33-3.48,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5 c0.86,0,1.71-0.2,2.5-0.6c1.58,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18l0-1.5h-0.5 C16.63,17.5,15.76,17.17,15,16.5z M15.52,10c-1.1,0-2.7,0.49-4.39,1.25L10,10H8V7h1c1.51,0,2.86-0.67,3.78-1.72l-1.07-1.07 C11.07,5,10.09,5.5,9,5.5H6.5C5.67,5.5,5,6.17,5,7v1.46v2.06c0,0.32,0.07,0.63,0.22,0.91l1.28,2.52c-0.42,0.31-0.82,0.63-1.19,0.94 C5.9,15.53,6.66,16,7.5,16c1,0,1.89-0.66,2.5-1.5c0.55,0.76,1.33,1.37,2.22,1.48C14.85,14.3,17,12.3,17,11.02 C17,10.2,16.19,10,15.52,10z M7.88,13L7.3,11.5h2.03l0.39,0.44C9.24,12.19,8.36,12.69,7.88,13z\"></path></g>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M6,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S6,4.1,6,3z M20.06,1h-2.12L15.5,3.44l1.06,1.06L20.06,1z M22,23v-2h-1 c-1.04,0-2.08-0.35-3-1c-1.83,1.3-4.17,1.3-6,0c-1.83,1.3-4.17,1.3-6,0c-0.91,0.65-1.96,1-3,1H2l0,2h1c1.03,0,2.05-0.25,3-0.75 c1.89,1,4.11,1,6,0c1.89,1,4.11,1,6,0h0c0.95,0.5,1.97,0.75,3,0.75H22z M21,13.28c0,1.44-2.19,3.62-5.04,5.58 C15.65,18.95,15.33,19,15,19c-1.2,0-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5c-0.94,0-1.81-0.41-2.49-0.99 c0.46-0.39,0.96-0.78,1.49-1.17l-1.55-2.97C6.15,13.3,6,12.64,6,12V8c0-1.1,0.9-2,2-2h3c1.38,0,2.63-0.56,3.54-1.46l1.41,1.41 C14.68,7.21,12.93,8,11,8H9.6l0,3.5h2.8l1.69,1.88c1.95-0.84,3.77-1.38,5.06-1.38C19.99,12,21,12.25,21,13.28z M12.2,14.27 l-0.7-0.77L9,13.6l0.83,2.01C10.42,15.23,11.64,14.55,12.2,14.27z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z\"></path>" } } }, - "location_city": { - "name": "location_city", + "border_bottom": { + "name": "border_bottom", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z\"></path>" } } }, - "luggage": { - "name": "luggage", + "insert_photo": { + "name": "insert_photo", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3 H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1s1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c1.1,0,2-0.9,2-2V8 C19,6.9,18.1,6,17,6z M10.5,3.5h3V6h-3V3.5z M17,19H7V8h10V19z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z\"></path>" } } }, - "male": { - "name": "male", + "insert_page_break": { + "name": "insert_page_break", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16,4h-4.5v1.5h1.94l-2.76,2.76C9.99,7.78,9.15,7.5,8.25,7.5C5.9,7.5,4,9.4,4,11.75C4,14.1,5.9,16,8.25,16 s4.25-1.9,4.25-4.25c0-0.9-0.28-1.74-0.76-2.43l2.76-2.76V8.5H16V4z M8.25,14.5c-1.52,0-2.75-1.23-2.75-2.75S6.73,9,8.25,9 S11,10.23,11,11.75S9.77,14.5,8.25,14.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M5.5,3.5H11V7h3.5v2H16V6l-4-4H5.5C4.67,2,4,2.67,4,3.5V9h1.5V3.5z\"></path><path d=\"M14.5,16.5h-9V14H4v2.5C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5V14h-1.5V16.5z\"></path><rect height=\"1.5\" width=\"4\" x=\"8\" y=\"11\"></rect><rect height=\"1.5\" width=\"4\" x=\"2\" y=\"11\"></rect><rect height=\"1.5\" width=\"4\" x=\"14\" y=\"11\"></rect></g></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9.5,11c1.93,0,3.5,1.57,3.5,3.5S11.43,18,9.5,18S6,16.43,6,14.5S7.57,11,9.5,11z M9.5,9C6.46,9,4,11.46,4,14.5 S6.46,20,9.5,20s5.5-2.46,5.5-5.5c0-1.16-0.36-2.23-0.97-3.12L18,7.42V10h2V4h-6v2h2.58l-3.97,3.97C11.73,9.36,10.66,9,9.5,9z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18,20H6v-3H4v3c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-3h-2V20z\"></path><path d=\"M6,4h7v5h5v2h2V8l-6-6H6C4.9,2,4,2.9,4,4v7h2V4z\"></path><rect height=\"2\" width=\"6\" x=\"9\" y=\"13\"></rect><rect height=\"2\" width=\"6\" x=\"17\" y=\"13\"></rect><rect height=\"2\" width=\"6\" x=\"1\" y=\"13\"></rect></g></g>" } } }, - "masks": { - "name": "masks", + "attach_file": { + "name": "attach_file", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M7,11.5V9.85c1.12-0.23,1.95-0.69,2.66-1.08C10.48,8.33,11.07,8,12,8c0.93,0,1.52,0.33,2.34,0.78c0.71,0.39,1.54,0.84,2.66,1.08 v1.65c0,2.76-2.24,5-5,5S7,14.26,7,11.5z M20.5,9c0,3.65-1.49,5.27-3.01,5.98c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1 s1,0.45,1,1V9z M10.69,10.48c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58C10.72,9.3,11.23,9,12,9 s1.27,0.3,1.8,0.62c0.34,0.2,0.71,0.42,1.2,0.59v1.04c-0.75-0.21-1.26-0.51-1.71-0.78C12.83,10.2,12.49,10,12,10 C11.51,10,11.16,10.2,10.69,10.48z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z\"></path>" } } }, - "military_tech": { - "name": "military_tech", + "text_decrease": { + "name": "text_decrease", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M13.16,13.29l-2.27-0.19l-0.56-1.31l2.45-1.63C12.92,10.06,13,9.9,13,9.73V3H7v6.73c0,0.17,0.08,0.32,0.22,0.42l2.45,1.63 l-0.56,1.31l-2.27,0.19l1.72,1.49L8.05,17L10,15.82L11.95,17l-0.52-2.22L13.16,13.29z M10.5,4H12v5.46l-1.5,1V4z M9.5,10.46 l-1.5-1V4h1.5V10.46z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect><path d=\"M18,9.25v1.5h-6v-1.5H18z M4.49,12.44h4.04L9.42,15h1.73L7.39,5H5.61L1.85,15h1.73L4.49,12.44z M6.07,8.02l0.39-1.16h0.08 l0.39,1.16l1.06,2.98H5.01L6.07,8.02z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M11,11.07l-2-1.2V4h2V11.07z M15,9.87 l-2,1.2V4h2V9.87z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M0.99,19h2.42l1.27-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19z M5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41z M23,11v2h-8 v-2H23z\"></path>" } } }, - "mood": { - "name": "mood", + "horizontal_rule": { + "name": "horizontal_rule", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><rect height=\"2\" width=\"14\" x=\"3\" y=\"9\"></rect></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\"></path>" + "path": "<g><rect fill=\"none\" fill-rule=\"evenodd\" height=\"24\" width=\"24\"></rect><g><rect fill-rule=\"evenodd\" height=\"2\" width=\"16\" x=\"4\" y=\"11\"></rect></g></g>" } } }, - "mood_bad": { - "name": "mood_bad", + "score": { + "name": "score", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5l4-4 4 4 6-6v6zm0-8.5l-6 6-4-4-4 4V5h14v5.5zM13.5 9V6H12v6h1.5zm3.7 3l-2-3 2-3h-1.7l-2 3 2 3zM11 10.5H8.5v-.75H11V6H7v1.5h2.5v.75H7V12h4z\"></path>" } } }, - "nights_stay": { - "name": "nights_stay", + "format_indent_decrease": { + "name": "format_indent_decrease", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.46,13.85c-1.73,0-4.6-0.93-6.08-3.8C7.75,6.89,9.03,4.11,9.76,3C6,3.13,3,6.21,3,9.99c0,0.4,0.04,0.78,0.1,1.16 C3.39,11.06,3.69,11,4,11c0.03,0,0.06,0.01,0.09,0.01C4.04,10.68,4,10.34,4,9.99c0-2.63,1.67-4.85,4.03-5.67 c-0.52,1.53-0.79,3.76,0.46,6.18c1.2,2.33,3.32,3.66,5.31,4.14C12.74,15.51,11.41,16,10.01,16c-0.64,0-1.25-0.1-1.83-0.29 C8,16.03,7.76,16.3,7.46,16.52C8.25,16.82,9.11,17,10.01,17c2.45,0,4.6-1.26,5.86-3.17C15.74,13.85,15.6,13.85,15.46,13.85z\"></path><path d=\"M7.5,14.5C7.5,13.67,6.83,13,6,13l-0.27,0C5.38,12.4,4.74,12,4,12c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2c0.53,0,1.54,0,2,0 C6.83,16,7.5,15.33,7.5,14.5z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19.78,17.51c-2.47,0-6.57-1.33-8.68-5.43C8.77,7.57,10.6,3.6,11.63,2.01C6.27,2.2,1.98,6.59,1.98,12 c0,0.14,0.02,0.28,0.02,0.42C2.61,12.16,3.28,12,3.98,12c0,0,0,0,0,0c0-3.09,1.73-5.77,4.3-7.1C7.78,7.09,7.74,9.94,9.32,13 c1.57,3.04,4.18,4.95,6.8,5.86c-1.23,0.74-2.65,1.15-4.13,1.15c-0.5,0-1-0.05-1.48-0.14c-0.37,0.7-0.94,1.27-1.64,1.64 c0.98,0.32,2.03,0.5,3.11,0.5c3.5,0,6.58-1.8,8.37-4.52C20.18,17.5,19.98,17.51,19.78,17.51z\"></path><path d=\"M7,16l-0.18,0C6.4,14.84,5.3,14,4,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c0.62,0,2.49,0,3,0c1.1,0,2-0.9,2-2 C9,16.9,8.1,16,7,16z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z\"></path>" } } }, - "nordic_walking": { - "name": "nordic_walking", + "monetization_on": { + "name": "monetization_on", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M15,11 V9.5c-3.12,0-2.99-2.17-4.11-3.06c-0.57-0.46-1.35-0.57-2.03-0.28L5,7.79V11h1.5V8.78l1.65-0.7L6.2,18h1.53l1.19-6.02l1.58,1.59V18 H12v-5.05l-1.46-1.46l0.49-2.48C11.94,10.21,13.37,11,15,11z M14,18h1v-6h-1V18z M6.03,12H5l-1.4,6h1.03L6.03,12z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,23h-1.5v-9H19V23z M7.53,14H6l-2,9h1.53L7.53,14z M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M9.8,8.9L7,23h2.1l1.8-8l2.1,2v6h2v-7.5l-2.1-2l0.6-3C14.8,12,16.8,13,19,13v-2c-1.9,0-3.5-1-4.3-2.4l-1-1.6 c-0.56-0.89-1.68-1.25-2.65-0.84L6,8.3V13h2V9.6L9.8,8.9z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z\"></path>" } } }, - "notifications": { - "name": "notifications", + "padding": { + "name": "padding", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5z M19,19H5V5h14V19z M11,7h2v2h-2V7z M7,7h2v2H7V7z M15,7h2v2h-2V7z\"></path></g></g>" } } }, - "notifications_active": { - "name": "notifications_active", + "format_quote": { + "name": "format_quote", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.62 18h-5.24l2-4H13V6h8v7.24L18.62 18zm-2-2h.76L19 12.76V8h-4v4h3.62l-2 4zm-8 2H3.38l2-4H3V6h8v7.24L8.62 18zm-2-2h.76L9 12.76V8H5v4h3.62l-2 4z\"></path>" } } }, - "notifications_none": { - "name": "notifications_none", + "vertical_align_center": { + "name": "vertical_align_center", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z\"></path>" } } }, - "notifications_off": { - "name": "notifications_off", + "mode_edit_outline": { + "name": "mode_edit_outline", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M3,14v3h3l8.62-8.62l-3-3L3,14z M5.38,15.5H4.5v-0.88l7.12-7.12l0.88,0.88L5.38,15.5z\"></path><path d=\"M16.71,4.88l-1.59-1.59c-0.39-0.39-1.02-0.39-1.41,0l-1.03,1.02l3,3l1.03-1.02C17.1,5.9,17.1,5.27,16.71,4.88z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm0-15.5c2.49 0 4 2.02 4 4.5v.1l2 2V11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23l1.64 1.64c.18-.02.36-.05.55-.05zM5.41 3.35L4 4.76l2.81 2.81C6.29 8.57 6 9.74 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35zM16 17H8v-6c0-.68.12-1.32.34-1.9L16 16.76V17z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M3,21l3.75,0L17.81,9.94l-3.75-3.75L3,17.25L3,21z M5,18.08l9.06-9.06l0.92,0.92L5.92,19L5,19L5,18.08z\"></path></g><g><path d=\"M18.37,3.29c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75l1.83-1.83c0.39-0.39,0.39-1.02,0-1.41L18.37,3.29z\"></path></g></g></g>" } } }, - "notifications_paused": { - "name": "notifications_paused", + "insert_chart_outlined": { + "name": "insert_chart_outlined", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.5 9.8h2.8l-2.8 3.4V15h5v-1.8h-2.8l2.8-3.4V8h-5zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm0-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"></path>" } } }, - "notification_add": { - "name": "notification_add", + "add_comment": { + "name": "add_comment", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M20,7.69h-2.25V10h-1.5V7.69H14V6.31h2.25V4h1.5v2.31H20V7.69z M13.5,11v3h-7V9c0-1.93,1.57-3.5,3.5-3.5 c0.58,0,1.13,0.14,1.61,0.39l1.1-1.1C12.19,4.47,11.62,4.23,11,4.1V3c0-0.55-0.45-1-1-1S9,2.45,9,3v1.1C6.72,4.56,5,6.58,5,9v5H4 v1.5h12V14h-1v-3H13.5z M10,18c0.83,0,1.5-0.67,1.5-1.5h-3C8.5,17.33,9.17,18,10,18z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect><g><path d=\"M16,14v3H8v-7c0-2.21,1.79-4,4-4c0.85,0,1.64,0.26,2.28,0.72l1.43-1.43c-0.64-0.51-1.39-0.88-2.21-1.09V3.5 C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5v0.7C7.91,4.86,6,7.21,6,10v7H4v2h16v-2h-2v-3H16z M12,22c1.1,0,2-0.9,2-2h-4 C10,21.1,10.9,22,12,22z M24,8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4zm-2 13.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z\"></path>" } } }, - "no_luggage": { - "name": "no_luggage", + "border_left": { + "name": "border_left", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><g><path d=\"M16,13.17l-1.5-1.5V9H16V13.17z M19.78,22.61l-1.85-1.85C17.65,20.91,17.34,21,17,21c0,0.55-0.45,1-1,1s-1-0.45-1-1H9 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c-1.1,0-2-0.9-2-2V8c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38 L19.78,22.61z M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M12.75,9h-0.92l0.92,0.92V9z M19,8v8.17 l-2-2V8h-6.17L9.84,7.01L9,6.17V6V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3h2C18.1,6,19,6.9,19,8z M10.5,6h3V3.5h-3V6z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z\"></path>" } } }, - "outdoor_grill": { - "name": "outdoor_grill", + "linear_scale": { + "name": "linear_scale", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M15.66,13.88c-0.14-0.21-0.33-0.4-0.54-0.54C14.8,13.13,14.41,13,14,13s-0.8,0.13-1.12,0.34 c-0.21,0.14-0.4,0.33-0.54,0.54c-0.03,0.04-0.04,0.08-0.06,0.12H7.72l1.36-2.09C9.38,11.96,9.69,12,10,12s0.62-0.04,0.92-0.09 l0.78,1.2c0.22-0.26,0.47-0.49,0.76-0.66l-0.54-0.83C13.73,10.86,15,9.08,15,7H5c0,2.08,1.27,3.86,3.08,4.62l-3,4.61 C4.93,16.46,5,16.77,5.23,16.92c0.23,0.15,0.54,0.08,0.69-0.15L7.07,15H12c0,1.1,0.9,2,2,2s2-0.9,2-2 C16,14.59,15.87,14.2,15.66,13.88z M6.13,8h7.75c-0.45,1.72-2.01,3-3.87,3C8.14,11,6.57,9.72,6.13,8z M14,16c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C15,15.55,14.55,16,14,16z\"></path><path d=\"M8.64,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77C8.37,3.92,8.21,3.76,8.34,3h-0.5C7.71,3.67,7.86,4.23,8.37,4.78 C8.51,4.92,8.85,5.18,8.64,6z\"></path><path d=\"M10.14,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77C9.87,3.92,9.71,3.76,9.84,3h-0.5C9.21,3.67,9.36,4.23,9.87,4.78 C10.01,4.92,10.35,5.18,10.14,6z\"></path><path d=\"M11.64,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77c-0.25-0.3-0.41-0.47-0.28-1.23h-0.5c-0.13,0.67,0.02,1.23,0.53,1.78 C11.51,4.92,11.85,5.18,11.64,6z\"></path></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z M7.42,10h9.16c-0.77,1.76-2.54,3-4.58,3 S8.19,11.76,7.42,10z\"></path><path d=\"M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z\"></path><path d=\"M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z\"></path><path d=\"M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z\"></path>" } } }, - "pages": { - "name": "pages", + "align_horizontal_left": { + "name": "align_horizontal_left", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 2h6v6h-3l1-4-4 1V5zM5 5h6v3L7 7l1 4H5V5zm6 14H5v-6h3l-1 4 4-1v3zm8 0h-6v-3l4 1-1-4h3v6zm-4.37-4.37L12 13.72l-2.63.91.91-2.63-.91-2.63 2.63.91 2.63-.91-.91 2.63.91 2.63z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M4,22H2V2h2V22z M22,7H6v3h16V7z M16,14H6v3h10V14z\"></path>" } } }, - "paragliding": { - "name": "paragliding", + "align_vertical_center": { + "name": "align_vertical_center", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect><path d=\"M10,14.25c-0.97,0-1.75-0.78-1.75-1.75s0.78-1.75,1.75-1.75s1.75,0.78,1.75,1.75S10.97,14.25,10,14.25z M10.5,15.5h-1 c-2.21,0-4-1.79-4-4H4c0,2.33,1.45,4.32,3.5,5.12V20h5v-3.38c2.05-0.8,3.5-2.79,3.5-5.12h-1.5C14.5,13.71,12.71,15.5,10.5,15.5z M19,3.48v3.17c0,0.61-0.68,0.95-1.19,0.61c-0.1-0.07-0.2-0.13-0.31-0.19L16,10.5h-1.5L13,5.7c-0.94-0.13-1.95-0.2-3-0.2 S7.94,5.57,7,5.7l-1.5,4.8H4L2.5,7.05C2.39,7.12,2.29,7.18,2.19,7.25C1.68,7.59,1,7.26,1,6.64V3.48C1,1.56,5.03,0,10,0 S19,1.56,19,3.48z M5.84,5.89C4.92,6.08,4.1,6.32,3.4,6.61l1.32,3.03L5.84,5.89z M16.6,6.61c-0.7-0.29-1.52-0.54-2.44-0.72 l1.13,3.75L16.6,6.61z M17.5,3.48C17.34,2.95,14.78,1.5,10,1.5s-7.34,1.45-7.5,2l0,1.87C4.4,4.5,7.1,4,10,4c2.9,0,5.6,0.5,7.5,1.37 V3.48z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,16.1,13.1,17,12,17z M15.48,17.94C14.68,18.54,14,19,12,19 s-2.68-0.46-3.48-1.06C8.04,17.55,7,16.76,7,14H5c0,2.7,0.93,4.41,2.3,5.5c0.5,0.4,1.1,0.7,1.7,0.9V24h6v-3.6 c0.6-0.2,1.2-0.5,1.7-0.9c1.37-1.09,2.3-2.8,2.3-5.5h-2C17,16.76,15.96,17.55,15.48,17.94z M23,4.25v3.49c0,0.8-0.88,1.26-1.56,0.83 C21.3,8.48,21.16,8.39,21,8.31L19,13h-2l-1.5-6.28C14.4,6.58,13.22,6.5,12,6.5S9.6,6.58,8.5,6.72L7,13H5L3,8.31 C2.84,8.39,2.7,8.48,2.56,8.57C1.88,9,1,8.55,1,7.74V4.25C1,1.9,5.92,0,12,0S23,1.9,23,4.25z M6.9,6.98 C5.97,7.17,5.12,7.41,4.37,7.69l1.51,3.55L6.9,6.98z M19.63,7.69c-0.75-0.28-1.6-0.52-2.53-0.71l1.02,4.25L19.63,7.69z M21,4.31 C20.65,3.63,17.57,2,12,2S3.35,3.63,3,4.31v1.77C5.34,5.07,8.56,4.5,12,4.5s6.66,0.57,9,1.58V4.31z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><polygon points=\"22,11 17,11 17,6 14,6 14,11 10,11 10,3 7,3 7,11 1.84,11 1.84,13 7,13 7,21 10,21 10,13 14,13 14,18 17,18 17,13 22,13\"></polygon>" } } }, - "party_mode": { - "name": "party_mode", + "line_axis": { + "name": "line_axis", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><polygon points=\"14.68,10.61 18,6.88 16.88,5.89 13.62,9.56 8,4 2,10.01 3.06,11.07 8,6.12 12.62,10.68 11.27,12.2 8,8.93 2,14.94 3.06,16 8,11.05 11.33,14.38 13.69,11.73 17,15.01 18.06,13.95\"></polygon></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM9 12c0-1.66 1.34-3 3-3h3.98c-.92-1.21-2.35-2-3.98-2-2.76 0-5 2.24-5 5 0 .34.04.68.1 1h2.08c-.11-.31-.18-.65-.18-1zm6 0c0 1.66-1.34 3-3 3H8.02c.92 1.21 2.35 2 3.98 2 2.76 0 5-2.24 5-5 0-.34-.03-.68-.1-1h-2.08c.11.31.18.65.18 1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><polygon points=\"22,7.43 20.59,6.02 16.56,10.55 9.5,4 2,11.51 3.5,13.01 9.64,6.86 15.23,12.04 13.5,13.99 9.5,9.99 2,17.5 3.5,19 9.5,12.99 13.5,16.99 16.69,13.4 20.59,17.01 22,15.6 18.02,11.9\"></polygon></g>" } } }, - "people": { - "name": "people", + "format_color_fill": { + "name": "format_color_fill", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M15.25,14c0.96,0,1.75-0.79,1.75-1.75c0-1.16-1.75-3.06-1.75-3.06s-1.75,1.9-1.75,3.06C13.5,13.21,14.29,14,15.25,14z\"></path><rect height=\"4\" width=\"16\" x=\"2\" y=\"16\"></rect><path d=\"M7.03,12.6C7.3,12.87,7.65,13,8,13s0.7-0.13,0.97-0.4l3.63-3.63c0.53-0.53,0.53-1.4,0-1.93L5.57,0L4.51,1.06l2.43,2.43 L3.4,7.03c-0.53,0.53-0.53,1.4,0,1.93L7.03,12.6z M8,4.56L11.44,8H4.56L8,4.56z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M16.56,8.94L7.62,0L6.21,1.41l2.38,2.38L3.44,8.94c-0.59,0.59-0.59,1.54,0,2.12l5.5,5.5C9.23,16.85,9.62,17,10,17 s0.77-0.15,1.06-0.44l5.5-5.5C17.15,10.48,17.15,9.53,16.56,8.94z M5.21,10L10,5.21L14.79,10H5.21z M19,11.5c0,0-2,2.17-2,3.5 c0,1.1,0.9,2,2,2s2-0.9,2-2C21,13.67,19,11.5,19,11.5z M2,20h20v4H2V20z\"></path></g>" } } }, - "people_alt": { - "name": "people_alt", + "area_chart": { + "name": "area_chart", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><g><g><path d=\"M8.5,6C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9S7,8.33,7,7.5S7.67,6,8.5,6 M8.5,5C7.12,5,6,6.12,6,7.5C6,8.88,7.12,10,8.5,10 S11,8.88,11,7.5C11,6.12,9.88,5,8.5,5L8.5,5z\"></path></g><g><path d=\"M10.99,9.95C11.16,9.98,11.33,10,11.5,10c1.38,0,2.5-1.12,2.5-2.5 C14,6.12,12.88,5,11.5,5c-0.17,0-0.34,0.02-0.51,0.05C11.61,5.68,12,6.55,12,7.5S11.61,9.32,10.99,9.95z\" fill-rule=\"evenodd\"></path></g><g><path d=\"M8.5,12c2.15,0,4.38,0.77,4.5,1.23V14H4l0-0.77C4.12,12.77,6.35,12,8.5,12 M8.5,11C6.66,11,3,11.66,3,13.23V15h11v-1.77 C14,11.66,10.34,11,8.5,11L8.5,11z\"></path></g><g><path d=\"M13.73,11.23c0.75,0.48,1.27,1.12,1.27,2V15h2v-1.77 C17,12.18,15.36,11.54,13.73,11.23z\" fill-rule=\"evenodd\"></path></g></g></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14,6l-4-3L6,8L3,6v10h14V6H14z M15.5,13.8L10,9.39L7,13.5l-2.5-1.88V8.8l1.81,1.21l3.95-4.94L13.5,7.5h2V13.8z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><g><path d=\"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3C23,14.82,19.43,13.53,16.67,13.13z\"></path><path d=\"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76 C14.09,11.9,14.53,12,15,12z\"></path><path d=\"M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z\"></path><path d=\"M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z M15,18H3l0-0.99C3.2,16.29,6.3,15,9,15s5.8,1.29,6,2V18z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,7l-5-4l-5,7L3,7v13h18V7H17z M19,16.95l-7-5.45L8,17l-3-2.4V11l2.44,1.83l4.96-6.95L16.3,9H19V16.95z\"></path>" } } }, - "people_outline": { - "name": "people_outline", + "format_italic": { + "name": "format_italic", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4h-8z\"></path>" } } }, - "person": { - "name": "person", + "numbers": { + "name": "numbers", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M16.62,8.5L17,7h-3.25l0.75-3H13l-0.75,3h-3L10,4H8.5L7.75,7H4.38L4,8.5h3.37L6.5,12H3.38L3,13.5h3.12L5.5,16H7l0.62-2.5h3 L10,16h1.5l0.62-2.5h3.5L16,12h-3.5l0.88-3.5H16.62z M11,12H8l0.88-3.5h3L11,12z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 10c2.7 0 5.8 1.29 6 2H6c.23-.72 3.31-2 6-2m0-12C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 10c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20.5,10L21,8h-4l1-4h-2l-1,4h-4l1-4h-2L9,8H5l-0.5,2h4l-1,4h-4L3,16h4l-1,4h2l1-4h4l-1,4h2l1-4h4l0.5-2h-4l1-4H20.5z M13.5,14h-4l1-4h4L13.5,14z\"></path></g>" } } }, - "personal_injury": { - "name": "personal_injury", + "format_line_spacing": { + "name": "format_line_spacing", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,8c1.66,0,3-1.34,3-3s-1.34-3-3-3S7,3.34,7,5S8.34,8,10,8z M10,3.5c0.83,0,1.5,0.67,1.5,1.5S10.83,6.5,10,6.5 S8.5,5.83,8.5,5S9.17,3.5,10,3.5z M15.03,10.37C13.56,9.5,11.84,9,10,9s-3.56,0.5-5.03,1.37C4.36,10.73,4,11.39,4,12.09V18h1.5 v-5.91c0-0.18,0.09-0.34,0.22-0.42C7.02,10.9,8.5,10.5,10,10.5c0.63,0,1.25,0.07,1.85,0.21l-1.29,2.79H8.73 c-1.24,0-2.25,1.01-2.25,2.25c0,1.24,1.01,2.25,2.25,2.25h5.77c0.83,0,1.5-0.67,1.5-1.5v-4.41C16,11.39,15.64,10.73,15.03,10.37z M9.18,16.5H8.73c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h1.15L9.18,16.5z M14.5,16.5h-3.66l2.46-5.33 c0.34,0.14,0.67,0.31,0.98,0.49c0.14,0.08,0.22,0.25,0.22,0.42V16.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,10c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S8,3.79,8,6C8,8.21,9.79,10,12,10z M12,4c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 s-2-0.9-2-2C10,4.9,10.9,4,12,4z M18.39,12.56C16.71,11.7,14.53,11,12,11c-2.53,0-4.71,0.7-6.39,1.56C4.61,13.07,4,14.1,4,15.22V22 h2v-6.78c0-0.38,0.2-0.72,0.52-0.88C7.71,13.73,9.63,13,12,13c0.76,0,1.47,0.07,2.13,0.2l-1.55,3.3H9.75C8.23,16.5,7,17.73,7,19.25 C7,20.77,8.23,22,9.75,22h2.18H18c1.1,0,2-0.9,2-2v-4.78C20,14.1,19.39,13.07,18.39,12.56z M10.94,20H9.75C9.34,20,9,19.66,9,19.25 c0-0.41,0.34-0.75,0.75-0.75h1.89L10.94,20z M18,20h-4.85l2.94-6.27c0.54,0.2,1.01,0.41,1.4,0.61C17.8,14.5,18,14.84,18,15.22V20z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z\"></path>" } } }, - "person_add": { - "name": "person_add", + "superscript": { + "name": "superscript", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,6l-1,0v1h2v1l-3,0V6c0-0.55,0.45-1,1-1l1,0l0-1h-2V3l2,0c0.55,0,1,0.45,1,1v1C18,5.55,17.55,6,17,6z M5.63,16h1.9 l2.43-3.87h0.08L12.47,16h1.9l-3.32-5.2l3.1-4.8h-1.91l-2.19,3.56H9.96L7.75,6h-1.9l3.09,4.8L5.63,16z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H9zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\" y=\"0\"></rect><path d=\"M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z\"></path></g>" } } }, - "person_add_alt": { - "name": "person_add_alt", + "mode_edit": { + "name": "mode_edit", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M8,10c1.66,0,3-1.34,3-3S9.66,4,8,4S5,5.34,5,7S6.34,10,8,10z M8,5.5c0.83,0,1.5,0.67,1.5,1.5S8.83,8.5,8,8.5 S6.5,7.83,6.5,7S7.17,5.5,8,5.5z\"></path><path d=\"M13.03,12.37C11.56,11.5,9.84,11,8,11s-3.56,0.5-5.03,1.37C2.36,12.72,2,13.39,2,14.09V16h12v-1.91 C14,13.39,13.64,12.72,13.03,12.37z M12.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C5.02,12.9,6.5,12.5,8,12.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\"></path><polygon points=\"16.25,7.75 16.25,6 14.75,6 14.75,7.75 13,7.75 13,9.25 14.75,9.25 14.75,11 16.25,11 16.25,9.25 18,9.25 18,7.75\"></polygon></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,9V6h-2v3h-3v2h3v3h2v-3h3V9H20z M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6 c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2S7,9.1,7,8C7,6.9,7.9,6,9,6z M15.39,14.56C13.71,13.7,11.53,13,9,13c-2.53,0-4.71,0.7-6.39,1.56 C1.61,15.07,1,16.1,1,17.22V20h16v-2.78C17,16.1,16.39,15.07,15.39,14.56z M15,18H3v-0.78c0-0.38,0.2-0.72,0.52-0.88 C4.71,15.73,6.63,15,9,15c2.37,0,4.29,0.73,5.48,1.34C14.8,16.5,15,16.84,15,17.22V18z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M3,21l3.75,0L17.81,9.94l-3.75-3.75L3,17.25L3,21z M5,18.08l9.06-9.06l0.92,0.92L5.92,19L5,19L5,18.08z\"></path></g><g><path d=\"M18.37,3.29c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75l1.83-1.83c0.39-0.39,0.39-1.02,0-1.41L18.37,3.29z\"></path></g></g></g>" } } }, - "person_add_alt_1": { - "name": "person_add_alt_1", + "edit_note": { + "name": "edit_note", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M2,13.86V16h12v-2.14c0-1.9-4-2.86-6-2.86C6,11,2,11.96,2,13.86z M3,13.86C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15H3 V13.86z\"></path><path d=\"M11,7c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7c0,1.66,1.34,3,3,3C9.66,10,11,8.66,11,7z M10,7c0,1.1-0.9,2-2,2S6,8.1,6,7 s0.9-2,2-2S10,5.9,10,7z\"></path><polygon points=\"13,9 15,9 15,7 16,7 16,9 18,9 18,10 16,10 16,12 15,12 15,10 13,10\"></polygon></g></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3,5h9v1.5H3V5z M3,11.25h6v1.5H3V11.25z M3,8.12h9v1.5H3V8.12z M16.78,11.99l0.65-0.65c0.29-0.29,0.29-0.77,0-1.06 l-0.71-0.71c-0.29-0.29-0.77-0.29-1.06,0l-0.65,0.65L16.78,11.99z M16.19,12.58L11.77,17H10v-1.77l4.42-4.42L16.19,12.58z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M11,8c0,1.1-0.9,2-2,2S7,9.1,7,8s0.9-2,2-2S11,6.9,11,8z M1,18v2h16v-2c0-2.66-5.33-4-8-4S1,15.34,1,18z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z M20,15v-3h3v-2h-3V7h-2v3h-3v2 h3v3H20z\"></path></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,10h11v2H3V10z M3,8h11V6H3V8z M3,16h7v-2H3V16z M18.01,12.87l0.71-0.71c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71 c0.39,0.39,0.39,1.02,0,1.41l-0.71,0.71L18.01,12.87z M17.3,13.58l-5.3,5.3V21h2.12l5.3-5.3L17.3,13.58z\"></path>" } } }, - "person_off": { - "name": "person_off", + "auto_graph": { + "name": "auto_graph", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11.64,9.51C12.46,8.98,13,8.05,13,7c0-1.66-1.34-3-3-3C8.95,4,8.02,4.54,7.49,5.36L8.6,6.47C8.81,5.91,9.36,5.5,10,5.5 c0.83,0,1.5,0.67,1.5,1.5c0,0.64-0.41,1.19-0.97,1.4L11.64,9.51z M15.99,13.87c-0.07-0.62-0.41-1.18-0.95-1.5 c-0.35-0.21-0.72-0.39-1.1-0.56L15.99,13.87z M2.93,2.93L1.87,3.99l7.07,7.07c-1.44,0.15-2.78,0.62-3.97,1.31 C4.36,12.72,4,13.39,4,14.09V16h9.88l2.13,2.13l1.06-1.06L2.93,2.93z M5.5,14.5v-0.41c0-0.18,0.09-0.34,0.22-0.42 C7.02,12.9,8.5,12.5,10,12.5c0.13,0,0.26,0,0.39,0.01l1.99,1.99H5.5z\"></path>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M11.72,8.28L10,7.5l1.72-0.78L12.5,5l0.78,1.72L15,7.5l-1.72,0.78L12.5,10L11.72,8.28z M3.5,12l0.78-1.72L6,9.5L4.28,8.72 L3.5,7L2.72,8.72L1,9.5l1.72,0.78L3.5,12z M7,8l0.94-2.06L10,5L7.94,4.06L7,2L6.06,4.06L4,5l2.06,0.94L7,8z M17.88,6.5l-5.61,6.31 L9,9.54l-6,6.01l1.06,1.06L9,11.67L12.33,15L19,7.5L17.88,6.5z\"></path>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,17.17l-3.37-3.38c0.64,0.22,1.23,0.48,1.77,0.76C19.37,15.06,19.98,16.07,20,17.17z M21.19,21.19l-1.41,1.41L17.17,20H4 v-2.78c0-1.12,0.61-2.15,1.61-2.66c1.29-0.66,2.87-1.22,4.67-1.45L1.39,4.22l1.41-1.41L21.19,21.19z M15.17,18l-3-3 c-0.06,0-0.11,0-0.17,0c-2.37,0-4.29,0.73-5.48,1.34C6.2,16.5,6,16.84,6,17.22V18H15.17z M12,6c1.1,0,2,0.9,2,2 c0,0.86-0.54,1.59-1.3,1.87l1.48,1.48C15.28,10.64,16,9.4,16,8c0-2.21-1.79-4-4-4c-1.4,0-2.64,0.72-3.35,1.82l1.48,1.48 C10.41,6.54,11.14,6,12,6z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M14.06,9.94L12,9l2.06-0.94L15,6l0.94,2.06L18,9l-2.06,0.94L15,12L14.06,9.94z M4,14l0.94-2.06L7,11l-2.06-0.94L4,8 l-0.94,2.06L1,11l2.06,0.94L4,14z M8.5,9l1.09-2.41L12,5.5L9.59,4.41L8.5,2L7.41,4.41L5,5.5l2.41,1.09L8.5,9z M4.5,20.5l6-6.01l4,4 L23,8.93l-1.41-1.41l-7.09,7.97l-4-4L3,19L4.5,20.5z\"></path></g>" } } }, - "person_outline": { - "name": "person_outline", + "show_chart": { + "name": "show_chart", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z\"></path>" } } }, - "person_remove": { - "name": "person_remove", + "draw": { + "name": "draw", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M2,13.86V16h12v-2.14c0-1.9-4-2.86-6-2.86C6,11,2,11.96,2,13.86z M3,13.86C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15H3 V13.86z\"></path><path d=\"M11,7c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7c0,1.66,1.34,3,3,3C9.66,10,11,8.66,11,7z M10,7c0,1.1-0.9,2-2,2S6,8.1,6,7 s0.9-2,2-2S10,5.9,10,7z\"></path><rect height=\"1\" transform=\"matrix(-1 4.479249e-11 -4.479249e-11 -1 30 19)\" width=\"4\" x=\"13\" y=\"9\"></rect></g></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.35,8.83l0.71-0.71c0.59-0.59,0.59-1.54,0-2.12L15,4.94c-0.59-0.59-1.54-0.59-2.12,0l-0.71,0.71L15.35,8.83z M12.17,9.89 L6.56,15.5H5.5v-1.06l5.61-5.61L12.17,9.89z M11.11,6.71L4,13.82V17h3.18l7.11-7.11L11.11,6.71L11.11,6.71z M4.51,11.18 C3.59,10.76,3,10.16,3,9.25c0-1.31,1.39-1.99,2.61-2.59C6.45,6.24,7.5,5.73,7.5,5.25C7.5,4.91,6.83,4.5,6,4.5 c-0.94,0-1.36,0.46-1.38,0.48C4.35,5.29,3.88,5.33,3.57,5.07C3.26,4.81,3.21,4.35,3.46,4.03C3.55,3.93,4.34,3,6,3 c1.47,0,3,0.84,3,2.25C9,6.66,7.55,7.37,6.27,8C5.56,8.35,4.5,8.87,4.5,9.25c0,0.3,0.48,0.56,1.17,0.78L4.51,11.18z M14.14,12.16 c0.83,0.48,1.36,1.14,1.36,2.09c0,1.94-2.44,2.75-3.75,2.75C11.34,17,11,16.66,11,16.25s0.34-0.75,0.75-0.75 c0.77,0,2.25-0.49,2.25-1.25c0-0.39-0.38-0.71-0.97-0.97L14.14,12.16z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z\"></path><path d=\"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z\"></path><rect height=\"2\" width=\"6\" x=\"17\" y=\"10\"></rect></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18.85,10.39l1.06-1.06c0.78-0.78,0.78-2.05,0-2.83L18.5,5.09c-0.78-0.78-2.05-0.78-2.83,0l-1.06,1.06L18.85,10.39z M14.61,11.81L7.41,19H6v-1.41l7.19-7.19L14.61,11.81z M13.19,7.56L4,16.76V21h4.24l9.19-9.19L13.19,7.56L13.19,7.56z M19,17.5 c0,2.19-2.54,3.5-5,3.5c-0.55,0-1-0.45-1-1s0.45-1,1-1c1.54,0,3-0.73,3-1.5c0-0.47-0.48-0.87-1.23-1.2l1.48-1.48 C18.32,15.45,19,16.29,19,17.5z M4.58,13.35C3.61,12.79,3,12.06,3,11c0-1.8,1.89-2.63,3.56-3.36C7.59,7.18,9,6.56,9,6 c0-0.41-0.78-1-2-1C5.74,5,5.2,5.61,5.17,5.64C4.82,6.05,4.19,6.1,3.77,5.76C3.36,5.42,3.28,4.81,3.62,4.38C3.73,4.24,4.76,3,7,3 c2.24,0,4,1.32,4,3c0,1.87-1.93,2.72-3.64,3.47C6.42,9.88,5,10.5,5,11c0,0.31,0.43,0.6,1.07,0.86L4.58,13.35z\"></path>" } } }, - "person_remove_alt_1": { - "name": "person_remove_alt_1", + "wrap_text": { + "name": "wrap_text", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M2,13.86V16h12v-2.14c0-1.9-4-2.86-6-2.86C6,11,2,11.96,2,13.86z M3,13.86C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15H3 V13.86z\"></path><path d=\"M11,7c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7c0,1.66,1.34,3,3,3C9.66,10,11,8.66,11,7z M10,7c0,1.1-0.9,2-2,2S6,8.1,6,7 s0.9-2,2-2S10,5.9,10,7z\"></path><rect height=\"1\" transform=\"matrix(-1 4.479249e-11 -4.479249e-11 -1 30 19)\" width=\"4\" x=\"13\" y=\"9\"></rect></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z\"></path><path d=\"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z\"></path><rect height=\"2\" width=\"6\" x=\"17\" y=\"10\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z\"></path>" } } }, - "piano": { - "name": "piano", + "table_chart": { + "name": "table_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M7,15.5H4.5v-11H6v7C6,11.78,6.22,12,6.5,12H7V15.5z M12,15.5H8V12h0.5C8.78,12,9,11.78,9,11.5v-7h2v7c0,0.28,0.22,0.5,0.5,0.5H12 V15.5z M15.5,15.5H13V12h0.5c0.28,0,0.5-0.22,0.5-0.5v-7h1.5V15.5z\"></path></g>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M14,14.5h0.25V19h-4.5v-4.5H10 c0.55,0,1-0.45,1-1V5h2v8.5C13,14.05,13.45,14.5,14,14.5z M5,5h2v8.5c0,0.55,0.45,1,1,1h0.25V19H5V5z M19,19h-3.25v-4.5H16 c0.55,0,1-0.45,1-1V5h2V19z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H5V5h15zm-5 14h-5v-9h5v9zM5 10h3v9H5v-9zm12 9v-9h3v9h-3z\"></path>" } } }, - "piano_off": { - "name": "piano_off", + "highlight": { + "name": "highlight", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V15.5C3,16.33,3.67,17,4.5,17h10.38l1.13,1.13L17.07,17.07z M7,15.5H4.5V6.62 L6,8.12v3.38C6,11.78,6.22,12,6.5,12H7V15.5z M8,15.5V12h0.5C8.78,12,9,11.78,9,11.5v-0.38l3,3v1.38H8z M5.12,3H15.5 C16.33,3,17,3.67,17,4.5v10.38l-1.5-1.5V4.5H14v7c0,0.11-0.04,0.2-0.1,0.28L11,8.88V4.5H9v2.38L5.12,3z\"></path></g>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61L21.19,21.19z M8.25,19H5V7.83l2,2v3.67 c0,0.55,0.45,1,1,1h0.25V19z M9.75,19v-4.5H10c0.46,0,0.82-0.31,0.94-0.73l3.31,3.31V19H9.75z M11,8.17L5.83,3H19c1.1,0,2,0.9,2,2 v13.17l-2-2V5h-2v8.5c0,0.19-0.07,0.36-0.16,0.51L13,10.17V5h-2V8.17z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M6 14l3 3v5h6v-5l3-3V9H6v5zm2-3h8v2.17l-3 3V20h-2v-3.83l-3-3V11zm3-9h2v3h-2zM3.502 5.874L4.916 4.46l2.122 2.12-1.414 1.415zm13.458.708l2.123-2.12 1.413 1.416-2.123 2.12z\"></path>" } } }, - "plus_one": { - "name": "plus_one", + "insert_invitation": { + "name": "insert_invitation", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-2 5h-5v5h5v-5z\"></path>" } } }, - "poll": { - "name": "poll", + "insert_link": { + "name": "insert_link", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z\"></path>" } } }, - "precision_manufacturing": { - "name": "precision_manufacturing", + "publish": { + "name": "publish", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10.5,9C10.78,9,11,8.78,11,8.5V8.43l1.43,1.43c0.15,0.15,0.37,0.19,0.56,0.1l2.72-1.27c0.25-0.12,0.36-0.41,0.24-0.66v0 c-0.12-0.25-0.41-0.36-0.66-0.24l-2.4,1.12L11,7.01V6.99l1.89-1.89l2.4,1.12c0.25,0.12,0.55,0.01,0.66-0.24v0 c0.12-0.25,0.01-0.55-0.24-0.66l-2.72-1.27C12.8,3.96,12.58,4,12.43,4.15L11,5.57V5.5C11,5.22,10.78,5,10.5,5S10,5.22,10,5.5v1 H7.93c-0.26-1-1.27-1.71-2.4-1.45C4.8,5.22,4.21,5.82,4.05,6.54C3.83,7.56,4.37,8.47,5.21,8.84L6.5,14H6c-0.55,0-1,0.45-1,1v1h8v-1 c0-0.55-0.45-1-1-1h-1.14L7.56,8.23C7.73,8.02,7.86,7.77,7.93,7.5H10v1C10,8.78,10.22,9,10.5,9z M6,8C5.45,8,5,7.55,5,7 c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M9.38,14H7.82L6.65,9.28h0.04L9.38,14z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7 c0,1.1,0.6,2.05,1.48,2.58L7.08,18H6c-1.1,0-2,0.9-2,2v1h13v-1c0-1.1-0.9-2-2-2h-1.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M11.11,18H9.17 l-2.46-8h0.1L11.11,18z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 4h14v2H5zm0 10h4v6h6v-6h4l-7-7-7 7zm8-2v6h-2v-6H9.83L12 9.83 14.17 12H13z\"></path>" } } }, - "psychology": { - "name": "psychology", + "border_inner": { + "name": "border_inner", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M12.92,7.68l-0.5-0.87c-0.03-0.06-0.1-0.08-0.15-0.06l-0.62,0.25c-0.13-0.1-0.27-0.18-0.42-0.24l-0.09-0.66 C11.12,6.04,11.06,6,11,6h-1C9.94,6,9.89,6.04,9.88,6.11L9.78,6.77C9.63,6.83,9.49,6.92,9.36,7.01L8.74,6.76 c-0.06-0.02-0.12,0-0.15,0.06l-0.5,0.87C8.06,7.74,8.07,7.81,8.12,7.84l0.53,0.41C8.63,8.33,8.62,8.42,8.62,8.5 c0,0.08,0.01,0.17,0.02,0.24L8.12,9.16C8.07,9.19,8.06,9.26,8.08,9.32l0.5,0.87c0.03,0.06,0.1,0.08,0.15,0.06l0.62-0.25 c0.13,0.1,0.27,0.18,0.42,0.24l0.09,0.66C9.89,10.96,9.94,11,10,11h1c0.06,0,0.12-0.04,0.12-0.11l0.09-0.66 c0.15-0.06,0.29-0.15,0.42-0.24l0.62,0.25c0.06,0.02,0.12,0,0.15-0.06l0.5-0.87c0.03-0.06,0.02-0.12-0.03-0.16l-0.52-0.41 c0.01-0.08,0.02-0.16,0.02-0.24c0-0.08-0.01-0.17-0.02-0.24l0.53-0.41C12.93,7.81,12.94,7.74,12.92,7.68z M10.5,9.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S11.05,9.5,10.5,9.5z\"></path><path d=\"M10.5,4C8.19,4,6.3,5.75,6.05,8l-1.53,2.22C4.3,10.55,4.53,11,4.93,11H6v2c0,0.55,0.45,1,1,1h1v2h5v-3.76 c1.21-0.81,2-2.18,2-3.74C15,6.01,12.99,4,10.5,4z M12,11.65V15H9v-2H7v-3H5.89l1.13-1.64C7.09,6.5,8.61,5,10.5,5 C12.43,5,14,6.57,14,8.5C14,9.89,13.18,11.09,12,11.65z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z\"></path><path d=\"M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z\"></path>" } } }, - "public": { - "name": "public", + "rectangle": { + "name": "rectangle", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M2,4v12h16V4H2z M16.5,14.5h-13v-9h13V14.5z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-.61.08-1.21.21-1.78L8.99 15v1c0 1.1.9 2 2 2v1.93C7.06 19.43 4 16.07 4 12zm13.89 5.4c-.26-.81-1-1.4-1.9-1.4h-1v-3c0-.55-.45-1-1-1h-6v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41C17.92 5.77 20 8.65 20 12c0 2.08-.81 3.98-2.11 5.4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M2,4v16h20V4H2z M20,18H4V6h16V18z\"></path></g></g>" } } }, - "public_off": { - "name": "public_off", + "insert_drive_file": { + "name": "insert_drive_file", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z\"></path>" } } }, - "real_estate_agent": { - "name": "real_estate_agent", + "strikethrough_s": { + "name": "strikethrough_s", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17,5.5v6h-1.5V6.26l-4-2.91l-4,2.91V7.5H6v-2l5.5-4L17,5.5z M18,16v0.5l-6.5,2L6,16.82V18H1V9h6l5.59,2 c0.85,0.3,1.41,1.1,1.41,2h1C16.66,13,18,14.34,18,16z M4.5,10.5h-2v6h2v-0.14V10.5z M16.39,15.43c-0.23-0.54-0.76-0.93-1.39-0.93 H9.74l-2-0.8l0.53-1.4l1.87,0.7h2.36c0-0.26-0.17-0.5-0.42-0.59L6.74,10.5H6v4.75l5.5,1.68L16.39,15.43z M12.62,6h-0.75v0.75h0.75V6 z M11.12,6h-0.75v0.75h0.75V6z M12.62,7.5h-0.75v0.75h0.75V7.5z M11.12,7.5h-0.75v0.75h0.75V7.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,6.5V14h-2V7.5L14,4L9,7.5V9H7V6.5l7-5L21,6.5z M15.5,7h-1v1h1V7z M13.5,7h-1v1h1V7z M15.5,9h-1v1h1V9z M13.5,9h-1v1h1V9 z M19,16h-2c0-1.2-0.75-2.28-1.87-2.7L8.97,11H1v11h6v-1.44l7,1.94l8-2.5v-1C22,17.34,20.66,16,19,16z M3,20v-7h2v7H3z M13.97,20.41 L7,18.48V13h1.61l5.82,2.17C14.77,15.3,15,15.63,15,16c0,0-1.99-0.05-2.3-0.15l-2.38-0.79l-0.63,1.9l2.38,0.79 c0.51,0.17,1.04,0.26,1.58,0.26H19c0.39,0,0.74,0.23,0.9,0.56L13.97,20.41z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V12z\"></path>" } } }, - "recommend": { - "name": "recommend", + "home_max": { + "name": "home_max", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z\"></path><path d=\"M17,10h-4.59l0.58-3.41v-0.2c-0.01-0.26-0.12-0.51-0.3-0.7L12,5l-4.6,5c-0.27,0.26-0.42,0.62-0.4,1v5c0,1.1,0.9,2,2,2h5.5 c0.56,0.03,1.08-0.29,1.3-0.8l2.1-4.9c0.08-0.15,0.12-0.33,0.1-0.5V11C18,10.45,17.55,10,17,10z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><path d=\"M19,5H5C2.79,5,1,6.79,1,9v5c0,2.21,1.79,4,4,4h2v1h10v-1h2c2.21,0,4-1.79,4-4V9C23,6.79,21.21,5,19,5z M21,14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2V14z\"></path></g>" } } }, - "recycling": { - "name": "recycling", + "speaker": { + "name": "speaker", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13,14h3.83l-1.09,2.17C15.49,16.68,14.97,17,14.4,17H13 M7.62,7.72l1.8-3L8.52,3.23c-0.39-0.65-1.33-0.65-1.72,0L5.05,6.17 L7.62,7.72z M16.34,8.49L13.72,10l1.83,3h0.85c0.57,0,1.09-0.32,1.34-0.83c0.23-0.46,0.21-1-0.06-1.44L16.34,8.49z M4.37,15.08 c-0.22,0.37-0.24,0.83-0.05,1.22C4.54,16.73,4.98,17,5.46,17H8.5v-3H5.02L4.37,15.08z M13,14v-1.54l-3,3l3,3V17 M14.01,4.6 l-1.13-1.88C12.62,2.28,12.13,2,11.6,2H8.95l2.49,4.15l-1.29,0.77l4.12,1.03l1.03-4.12L14.01,4.6z M5.3,11.58l1.28,0.77L5.56,8.23 L1.44,9.26l1.29,0.77l-0.42,0.69c-0.26,0.44-0.28,0.98-0.06,1.44l1.22,2.44L5.3,11.58z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M5.77,7.15L7.2,4.78l1.03-1.71c0.39-0.65,1.33-0.65,1.72,0l1.48,2.46l-1.23,2.06L9.2,9.21L5.77,7.15z M21.72,12.97 l-1.6-2.66l-3.46,2L18.87,16H20c0.76,0,1.45-0.43,1.79-1.11C21.93,14.61,22,14.31,22,14C22,13.64,21.9,13.29,21.72,12.97z M16,21 h1.5c0.76,0,1.45-0.43,1.79-1.11L20.74,17H16v-2l-4,4l4,4V21z M10,17H5.7l-0.84,1.41c-0.3,0.5-0.32,1.12-0.06,1.65l0,0 C5.08,20.63,5.67,21,6.32,21H10V17z M6.12,14.35l1.73,1.04L6.48,9.9L1,11.27l1.7,1.02l-0.41,0.69c-0.35,0.59-0.38,1.31-0.07,1.92 l1.63,3.26L6.12,14.35z M17.02,5.14l-1.3-2.17C15.35,2.37,14.7,2,14,2h-3.53l3.12,5.2l-1.72,1.03l5.49,1.37l1.37-5.49L17.02,5.14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 20V4h10v16H7zm5-11c1.1 0 2-.9 2-2s-.9-2-2-2c-1.11 0-2 .9-2 2s.89 2 2 2zm0 2c-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>" } } }, - "reduce_capacity": { - "name": "reduce_capacity", + "keyboard_arrow_down": { + "name": "keyboard_arrow_down", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M12.75,13v-2h-1.5v2H9l3,3l3-3H12.75z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z\"></path>" } } }, - "remove_moderator": { - "name": "remove_moderator", + "keyboard_arrow_up": { + "name": "keyboard_arrow_up", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,4.14l6,2.25v4.7c0,1.19-0.23,2.36-0.64,3.44l1.51,1.51c0.72-1.53,1.13-3.22,1.13-4.95V5l-8-3L6.78,3.96l1.55,1.55 L12,4.14z M2.81,2.81L1.39,4.22L4,6.83v4.26c0,5.05,3.41,9.76,8,10.91c1.72-0.43,3.28-1.36,4.55-2.62l3.23,3.23l1.41-1.41 L2.81,2.81z M12,19.92c-3.45-1.13-6-4.82-6-8.83V8.83l9.14,9.14C14.24,18.85,13.17,19.54,12,19.92z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z\"></path>" } } }, - "safety_divider": { - "name": "safety_divider", + "desktop_mac": { + "name": "desktop_mac", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11,5h2v14h-2V5z M5,12c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C3,11.1,3.9,12,5,12z M7.78,13.58 C6.93,13.21,5.99,13,5,13s-1.93,0.21-2.78,0.58C1.48,13.9,1,14.62,1,15.43L1,16h8l0-0.57C9,14.62,8.52,13.9,7.78,13.58z M19,12 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C17,11.1,17.9,12,19,12z M21.78,13.58C20.93,13.21,19.99,13,19,13s-1.93,0.21-2.78,0.58 C15.48,13.9,15,14.62,15,15.43L15,16h8l0-0.57C23,14.62,22.52,13.9,21.78,13.58z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z\"></path>" } } }, - "sanitizer": { - "name": "sanitizer", + "earbuds": { + "name": "earbuds", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15.5,6.5C15.5,5.66,17,4,17,4s1.5,1.66,1.5,2.5C18.5,7.33,17.83,8,17,8S15.5,7.33,15.5,6.5z M19.5,15 c1.38,0,2.5-1.12,2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17,10.83,17,12.5C17,13.88,18.12,15,19.5,15z M13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14z M16,12v8c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-8c0-2.97,2.16-5.43,5-5.91V4H7V2h6c1.13,0,2.15,0.39,2.99,1.01l-1.43,1.43 C14.1,4.17,13.57,4,13,4h-2v2.09C13.84,6.57,16,9.03,16,12z M14,12c0-2.21-1.79-4-4-4s-4,1.79-4,4v8h8V12z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M16,3c-2.76,0-5,2.24-5,5v8c0,1.66-1.34,3-3,3s-3-1.34-3-3V9h0.83C7.44,9,8.89,7.82,9,6.21c0.12-1.69-1.16-3.1-2.8-3.21 C4.44,2.89,3,4.42,3,6.19V16c0,2.76,2.24,5,5,5s5-2.24,5-5V8c0-1.66,1.34-3,3-3s3,1.34,3,3v7h-0.83c-1.61,0-3.06,1.18-3.17,2.79 c-0.12,1.69,1.16,3.1,2.8,3.21c1.76,0.12,3.2-1.42,3.2-3.18V8C21,5.24,18.76,3,16,3z M5,6c0-0.55,0.45-1,1-1s1,0.45,1,1S6.55,7,6,7 H5V6z M19,18c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1h1V18z\"></path></g>" } } }, - "school": { - "name": "school", + "laptop_chromebook": { + "name": "laptop_chromebook", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 3L1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm6.82 6L12 12.72 5.18 9 12 5.28 18.82 9zM17 15.99l-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z\"></path>" } } }, - "science": { - "name": "science", + "computer": { + "name": "computer", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M10.5,5.52v3.75L14.96,15l-9.91,0L9.5,9.27V5.52L9.08,5h1.84L10.5,5.52z M11.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81 L8.5,5.87v3.05l-4.24,5.46C3.74,15.04,4.21,16,5.04,16h9.91c0.83,0,1.3-0.96,0.79-1.61L11.5,8.93V5.87l0.85-1.06 C12.61,4.48,12.38,4,11.96,4L11.96,4z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13,11.33L18,18H6l5-6.67V6h2 M15.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L9,6.5v4.17L3.2,18.4C2.71,19.06,3.18,20,4,20h16 c0.82,0,1.29-0.94,0.8-1.6L15,10.67V6.5l1.35-1.69C16.61,4.48,16.38,4,15.96,4L15.96,4z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z\"></path>" } } }, - "self_improvement": { - "name": "self_improvement", + "keyboard_return": { + "name": "keyboard_return", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"10\" cy=\"5.5\" r=\"1.5\"></circle><path d=\"M16,12v-1c-1.67,0-3.28-0.85-4.11-2.16C11.55,8.29,10.91,8,10.27,8H9.73C9.09,8,8.45,8.29,8.11,8.84 C7.28,10.15,5.67,11,4,11v1c2,0,3.51-0.75,4.5-1.96v2.45l-2.77,1.19C5.29,13.88,5,14.31,5,14.79C5,15.46,5.54,16,6.21,16H8 c0,0,0-0.11,0-0.25C8,14.79,8.79,14,9.75,14h2c0.14,0,0.25,0.11,0.25,0.25s-0.11,0.25-0.25,0.25h-2c-0.69,0-1.25,0.56-1.25,1.25 c0,0.05,0,0.25,0,0.25h5.29c0.67,0,1.21-0.54,1.21-1.21c0-0.48-0.29-0.92-0.73-1.11L11.5,12.5v-2.45C12.49,11.25,14,12,16,12z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"12\" cy=\"6\" r=\"2\"></circle><path d=\"M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z\"></path>" } } }, - "sentiment_dissatisfied": { - "name": "sentiment_dissatisfied", + "headset": { + "name": "headset", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"15.5\" cy=\"9.5\" r=\"1.5\"></circle><circle cx=\"8.5\" cy=\"9.5\" r=\"1.5\"></circle><path d=\"M12 14c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5zm-.01-12C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 14v3c0 .55-.45 1-1 1h-1v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z\"></path>" } } }, - "sentiment_neutral": { - "name": "sentiment_neutral", + "keyboard_double_arrow_left": { + "name": "keyboard_double_arrow_left", "keywords": [ - "social" + "hardware" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"14.94,15 16,13.94 12.06,10 16,6.06 14.94,5 9.94,10\"></polygon><polygon points=\"9,15 10.06,13.94 6.12,10 10.06,6.06 9,5 4,10\"></polygon></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 14h6v1.5H9z\"></path><circle cx=\"15.5\" cy=\"9.5\" r=\"1.5\"></circle><circle cx=\"8.5\" cy=\"9.5\" r=\"1.5\"></circle><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"17.59,18 19,16.59 14.42,12 19,7.41 17.59,6 11.59,12\"></polygon><polygon points=\"11,18 12.41,16.59 7.83,12 12.41,7.41 11,6 5,12\"></polygon></g></g>" } } }, - "sentiment_satisfied": { - "name": "sentiment_satisfied", + "adf_scanner": { + "name": "adf_scanner", "keywords": [ - "social" + "hardware" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M16,9.5h-1V4H5v5.5H4c-1.1,0-2,0.9-2,2V16h16v-4.5C18,10.4,17.1,9.5,16,9.5z M6.5,5.5h7v4h-7V5.5z M16.5,14.5h-13V11h13 V14.5z\"></path></g><g><circle cx=\"14.75\" cy=\"12.75\" r=\".75\"></circle></g></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"15.5\" cy=\"9.5\" r=\"1.5\"></circle><circle cx=\"8.5\" cy=\"9.5\" r=\"1.5\"></circle><path d=\"M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,12h-1V4H6v8H5c-1.66,0-3,1.34-3,3v5h20v-5C22,13.34,20.66,12,19,12z M8,6h8v6H8V6z M20,18H4v-3c0-0.55,0.45-1,1-1h14 c0.55,0,1,0.45,1,1V18z\"></path><circle cx=\"18\" cy=\"16\" r=\"1\"></circle></g></g>" } } }, - "sentiment_very_dissatisfied": { - "name": "sentiment_very_dissatisfied", + "smart_display": { + "name": "smart_display", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24l-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><polygon points=\"9.5,7.5 9.5,16.5 16.5,12\"></polygon><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18.01H4V5.99h16V18.01z\"></path></g></g>" } } }, - "sentiment_very_satisfied": { - "name": "sentiment_very_satisfied", + "browser_updated": { + "name": "browser_updated", "keywords": [ - "social" + "hardware" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M18,10.5v3c0,0.83-0.67,1.5-1.5,1.5H13l1,1v1H6v-1l1-1H3.5C2.67,15,2,14.33,2,13.5v-9C2,3.67,2.67,3,3.5,3h6.75v1.5H3.5v9 h13v-3H18z M16.5,9l-1.06-1.06l-2.19,2.19V3h-1.5v7.13L9.56,7.94L8.5,9l4,4L16.5,9z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm1-10.06L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12L13 9.94zm-4.12 0L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11l1.06-1.06zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect><path d=\"M22,13v3c0,1.1-0.9,2-2,2h-3l1,1v2H6v-2l1-1H4c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2l8,0v2L4,5v11h16v-3H22z M15,15l-5-5 l1.41-1.41L14,11.17V3h2v8.17l2.59-2.58L20,10L15,15z\"></path>" } } }, - "share": { - "name": "share", + "device_hub": { + "name": "device_hub", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z\"></path>" } } }, - "sick": { - "name": "sick", + "smart_toy": { + "name": "smart_toy", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.32,10.56L8.38,9.5L7.32,8.44l1.06-1.06L10.5,9.5l-2.12,2.12L7.32,10.56z M4.5,9c0.03,0,0.05,0.01,0.08,0.01 C5.77,6.07,8.64,4,12,4c2.19,0,4.16,0.88,5.61,2.3c0.15-0.6,0.45-1.29,0.81-1.96C16.68,2.88,14.44,2,11.99,2 c-4.88,0-8.94,3.51-9.81,8.14C2.74,9.44,3.59,9,4.5,9z M21,10.5c-0.42,0-0.82-0.09-1.19-0.22C19.93,10.83,20,11.41,20,12 c0,4.42-3.58,8-8,8c-3.36,0-6.23-2.07-7.42-5.01C4.55,14.99,4.53,15,4.5,15c-0.52,0-1.04-0.14-1.5-0.4 c-0.32-0.18-0.59-0.42-0.82-0.7c0.89,4.61,4.93,8.1,9.8,8.1C17.52,22,22,17.52,22,12c0-0.55-0.06-1.09-0.14-1.62 C21.58,10.45,21.3,10.5,21,10.5z M21,3c0,0-2,2.9-2,4c0,1.1,0.9,2,2,2s2-0.9,2-2C23,5.9,21,3,21,3z M15.62,7.38L13.5,9.5l2.12,2.12 l1.06-1.06L15.62,9.5l1.06-1.06L15.62,7.38z M8.56,17c0.69-1.19,1.97-2,3.44-2s2.75,0.81,3.44,2h1.68c-0.8-2.05-2.79-3.5-5.12-3.5 c-0.87,0-1.7,0.2-2.43,0.57l0,0L5.99,12c0-0.52-0.26-1.02-0.74-1.29c-0.72-0.41-1.63-0.17-2.05,0.55c-0.41,0.72-0.17,1.63,0.55,2.05 c0.48,0.28,1.05,0.25,1.49,0l2.97,1.72l0,0C7.64,15.56,7.18,16.24,6.88,17H8.56z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M20,9V7c0-1.1-0.9-2-2-2h-3c0-1.66-1.34-3-3-3S9,3.34,9,5H6C4.9,5,4,5.9,4,7v2c-1.66,0-3,1.34-3,3s1.34,3,3,3v4 c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4c1.66,0,3-1.34,3-3S21.66,9,20,9z M18,19L6,19V7h12V19z M9,13c-0.83,0-1.5-0.67-1.5-1.5 S8.17,10,9,10s1.5,0.67,1.5,1.5S9.83,13,9,13z M16.5,11.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S14.17,10,15,10 S16.5,10.67,16.5,11.5z M8,15h8v2H8V15z\"></path></g></g>" } } }, - "single_bed": { - "name": "single_bed", + "watch": { + "name": "watch", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,8V6c0-0.55-0.45-1-1-1H6C5.45,5,5,5.45,5,6v2C4.45,8,4,8.45,4,9v4h1l0.75,2h0.5L7,13h6l0.75,2h0.5L15,13h1V9 C16,8.45,15.55,8,15,8z M10.5,6H14v2h-3.5V6z M6,6h3.5v2H6V6z M15,12H5V9h10V12z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2 H20V12z M16,10h-3V7h3V10z M8,7h3v3H8V7z M6,12h12v3H6V12z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.31 2l.41 2.48C13.87 4.17 12.96 4 12 4c-.95 0-1.87.17-2.71.47L9.7 2h4.61m.41 17.52L14.31 22H9.7l-.41-2.47c.84.3 1.76.47 2.71.47.96 0 1.87-.17 2.72-.48M16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12s-1.19-4.81-3.04-6.27L16 0zm-4 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\"></path>" } } }, - "skateboarding": { - "name": "skateboarding", + "keyboard_alt": { + "name": "keyboard_alt", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M7.49,19.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75S7.49,18.84,7.49,19.25z M13.26,18.5 c-0.41,0-0.75,0.34-0.75,0.75S12.85,20,13.26,20c0.41,0,0.75-0.34,0.75-0.75S13.67,18.5,13.26,18.5z M12.25,4.5 C13.21,4.5,14,3.72,14,2.75C14,1.78,13.22,1,12.25,1S10.5,1.78,10.5,2.75C10.5,3.72,11.29,4.5,12.25,4.5z M17,16.5 c0,0.12-0.04,0.24-0.13,0.34C16.46,17.29,15.58,18,14.26,18H5.74c-1.25,0-2.13-0.62-2.61-1.16C3.05,16.75,3,16.62,3,16.5 C3,16.24,3.2,16,3.5,16c0.14,0,0.28,0.06,0.38,0.17C4.34,16.68,5,17,5.74,17H6l2-3l-1.23-3.23C6.6,10.33,6.65,9.84,6.9,9.44 L8.73,6.5H6.8L5.27,8.9L4,8l2-3h4.5c0.68,0,1.11,0.43,1.3,0.76l0.75,1.27C13.25,8.21,14.53,9,16,9v1.5c-1.95,0-3.66-1.02-4.64-2.55 L10,10.13l3.5,2.37V17h0.76c0.74,0,1.4-0.32,1.86-0.83c0.1-0.11,0.23-0.17,0.38-0.17C16.8,16,17,16.24,17,16.5z M12,13.4l-3-1.65 l0.7,2.45L7.8,17H12V13.4z\"></path></g>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M13,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S13,4.1,13,3z M7.25,22.5c-0.41,0-0.75,0.34-0.75,0.75S6.84,24,7.25,24 S8,23.66,8,23.25S7.66,22.5,7.25,22.5z M15.75,22.5c-0.41,0-0.75,0.34-0.75,0.75S15.34,24,15.75,24s0.75-0.34,0.75-0.75 S16.16,22.5,15.75,22.5z M19.24,19c-0.24,0-0.45,0.11-0.59,0.3c-0.55,0.73-1.42,1.2-2.4,1.2H16v-6l-4.32-2.67l1.8-2.89 C14.63,10.78,16.68,12,19,12v-2c-1.85,0-3.44-1.12-4.13-2.72l-0.52-1.21C14.16,5.64,13.61,5,12.7,5H7L4.5,9l1.7,1.06L8.1,7h2.35 l-2.4,3.84c-0.31,0.5-0.39,1.11-0.21,1.67l1.34,4.15l-3.12,3.76c-0.7-0.16-1.3-0.57-1.71-1.12C4.21,19.11,3.99,19,3.75,19 C3.31,19,3,19.36,3,19.75c0,0.15,0.05,0.31,0.15,0.45c0.82,1.1,2.13,1.8,3.6,1.8h9.5c1.47,0,2.78-0.7,3.6-1.8 c0.1-0.14,0.15-0.3,0.15-0.45C20,19.36,19.68,19,19.24,19z M14,20.5H8.6l2.9-3.5l-1-3.3l3.5,2.2V20.5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M21,4H3C1.9,4,1,4.9,1,6v13c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V6C23,4.9,22.1,4,21,4z M21,19H3V6h18V19z M9,8h2v2H9V8z M5,8h2v2H5V8z M8,16h8v1H8V16z M13,8h2v2h-2V8z M9,12h2v2H9V12z M5,12h2v2H5V12z M13,12h2v2h-2V12z M17,8h2v2h-2V8z M17,12h2v2 h-2V12z\"></path></g></g>" } } }, - "sledding": { - "name": "sledding", + "headset_off": { + "name": "headset_off", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M8.25,3.75C8.25,2.78,9.03,2,10,2s1.75,0.78,1.75,1.75S10.97,5.5,10,5.5S8.25,4.72,8.25,3.75z M18.85,16.93 c-0.51,1.58-2.21,2.44-3.78,1.93L1,14.28l0.31-0.95l3.13,1.02l0.46-1.43L1.77,11.9l0.31-0.95l1.42,0.46V8l4.4-1.87 c0.32-0.14,0.68-0.17,1.04-0.06c0.79,0.24,1.24,1.08,1,1.87L9.15,10.5l2.09-0.37c0.45-0.08,0.89,0.16,1.08,0.57l1.92,4.2l1.92,0.62 l-0.31,0.95l-2.85-0.93l-0.46,1.43l2.85,0.93c1.05,0.34,2.18-0.24,2.52-1.28c0.34-1.05-0.24-2.18-1.28-2.52l0.31-0.95 C18.5,13.66,19.36,15.35,18.85,16.93z M5,11.9l1.17,0.38c-0.31-0.38-0.43-0.89-0.28-1.39l0.8-2.62L5,9V11.9z M12.04,15.24 l-6.18-2.01l-0.46,1.43l6.18,2.01L12.04,15.24z M12.3,14.27l-1.12-2.46L7.7,12.78L12.3,14.27z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,3.4,14,4.5z M22.8,20.24c-0.68,2.1-2.94,3.25-5.04,2.57h0L1,17.36 l0.46-1.43l3.93,1.28l0.46-1.43L1.93,14.5l0.46-1.43L4,13.6V9.5l5.47-2.35c0.39-0.17,0.84-0.21,1.28-0.07 c0.95,0.31,1.46,1.32,1.16,2.27l-1.05,3.24L13,12.25c0.89-0.15,1.76,0.32,2.14,1.14l2.08,4.51l1.93,0.63l-0.46,1.43l-3.32-1.08 L14.9,20.3l3.32,1.08l0,0c1.31,0.43,2.72-0.29,3.15-1.61c0.43-1.31-0.29-2.72-1.61-3.15l0.46-1.43 C22.33,15.88,23.49,18.14,22.8,20.24z M6,14.25l1.01,0.33c-0.22-0.42-0.28-0.92-0.12-1.4L7.92,10L6,10.82V14.25z M13.94,18.41 l-6.66-2.16l-0.46,1.43l6.66,2.16L13.94,18.41z M14.63,17.05l-1.18-2.56l-3.97,0.89L14.63,17.05z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M12,4c3.87,0,7,3.13,7,7v1h-4v0.17L16.83,14H19v2.17l2,2V11c0-4.97-4.03-9-9-9C9.98,2,8.12,2.67,6.62,3.8l1.43,1.43 C9.17,4.45,10.53,4,12,4z\"></path><path d=\"M2.1,2.1L0.69,3.51l3.33,3.33C3.37,8.09,3,9.5,3,11v7c0,1.1,0.9,2,2,2h4v-8H5v-1c0-0.94,0.19-1.83,0.52-2.65L15,17.83V20 h2.17l1,1H12v2h7c0.34,0,0.65-0.09,0.93-0.24l0.55,0.55l1.41-1.41L2.1,2.1z M7,14v4H5v-4H7z\"></path></g></g>" } } }, - "snowboarding": { - "name": "snowboarding", + "gamepad": { + "name": "gamepad", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><g><path d=\"M12.75,4.5c0.96,0,1.75-0.78,1.75-1.75C14.5,1.78,13.72,1,12.75,1S11,1.78,11,2.75C11,3.72,11.79,4.5,12.75,4.5z M17.6,16.93c-0.14-0.03-0.29,0-0.41,0.09c-0.55,0.4-1.27,0.58-1.99,0.43L14,17.19l-1-4.89l-2.6-2l1.46-2.35 c0.98,1.53,2.69,2.55,4.64,2.55V9c-1.47,0-2.75-0.79-3.45-1.97L12.3,5.76C12.11,5.43,11.68,5,11,5H6.5l-2,3l1.27,0.9L7.3,6.5h1.93 L7.48,9.32c-0.3,0.48-0.38,1.07-0.22,1.61L8,13.5l-2.75,1.83l-0.66-0.14c-0.72-0.15-1.3-0.61-1.65-1.2 c-0.07-0.12-0.19-0.21-0.34-0.24c-0.29-0.06-0.54,0.13-0.59,0.38c-0.03,0.11,0,0.25,0.06,0.36c0.36,0.63,1.09,1.42,2.31,1.68 l8.89,1.89L15,18.42c1.29,0.27,2.3-0.23,2.79-0.59c0.11-0.08,0.17-0.19,0.2-0.31C18.04,17.27,17.9,16.99,17.6,16.93z M7.3,15.76 l2.45-1.62L9.3,11.5l2.34,1.65l0.76,3.7L7.3,15.76z\"></path></g>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S14,4.1,14,3z M21.4,20.09c-0.23-0.05-0.46,0.02-0.64,0.17 c-0.69,0.6-1.64,0.88-2.6,0.67L17,20.69l-1-6.19l-3.32-2.67l1.8-2.89C15.63,10.78,17.68,12,20,12v-2c-1.85,0-3.44-1.12-4.13-2.72 l-0.52-1.21C15.16,5.64,14.61,5,13.7,5H8L5.5,9l1.7,1.06L9.1,7h2.35l-2.51,3.99c-0.28,0.45-0.37,1-0.25,1.52L9.5,16L6,18.35 l-0.47-0.1c-0.96-0.2-1.71-0.85-2.1-1.67c-0.1-0.21-0.28-0.37-0.51-0.42c-0.43-0.09-0.82,0.2-0.9,0.58C1.98,16.88,2,17.05,2.07,17.2 c0.58,1.24,1.71,2.2,3.15,2.51l12.63,2.69c1.44,0.31,2.86-0.11,3.9-1.01c0.13-0.11,0.21-0.26,0.24-0.41 C22.06,20.6,21.83,20.18,21.4,20.09z M8.73,18.93l3.02-2.03l-0.44-3.32l2.84,2.02l0.75,4.64L8.73,18.93z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5l-3 3V22h6v-5.5l-3-3z\"></path>" } } }, - "snowshoeing": { - "name": "snowshoeing", + "dock": { + "name": "dock", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10.25,3.75C10.25,2.78,11.03,2,12,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C11.04,5.5,10.25,4.72,10.25,3.75z M8.16,17.02c-0.4-0.11-0.78-0.35-1.06-0.7l2.29-1.65l0.53-2.69l1.58,1.58V17L10,17v1h3c0.67,0,1.3-0.22,1.8-0.6 c0.14-0.11,0.2-0.25,0.2-0.4c0-0.25-0.19-0.5-0.5-0.5c-0.11,0-0.21,0.04-0.3,0.1C13.87,16.85,13.45,17,13,17v-4.05l-1.46-1.46 l0.49-2.48C12.94,10.21,14.37,11,16,11V9.5c-3.12,0-2.99-2.17-4.11-3.06c-0.57-0.46-1.35-0.57-2.03-0.28L6,7.79V11h1.5V8.79 l1.65-0.7L8.03,13.8l-1.85,1.34L5.29,14L4.5,14.61l1.82,2.32C6.92,17.71,7.81,18,8.03,18c0.39,0,0.66-0.47,0.39-0.81 C8.35,17.11,8.26,17.05,8.16,17.02z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12.5,3.5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S12.5,4.6,12.5,3.5z M6.32,19.03l-1.14-1.47L4,18.5l2.38,3.04 c0.51,0.65,1.16,1.15,1.88,1.41c0.28,0.1,0.53,0.04,0.72-0.11c0.3-0.23,0.42-0.7,0.12-1.07c-0.08-0.1-0.2-0.17-0.31-0.22 c-0.43-0.18-0.82-0.45-1.14-0.83l-0.08-0.1L11,18.2l0.89-3.22l2.11,2v4.52h-2V23h3.87c0.82,0,1.61-0.21,2.26-0.61 c0.26-0.16,0.37-0.39,0.37-0.64c0-0.38-0.3-0.75-0.77-0.75c-0.13,0-0.26,0.04-0.37,0.1c-0.4,0.23-0.87,0.37-1.36,0.4l0-6.02l-2.11-2 l0.6-3C15.79,11.98,17.8,13,20,13v-2c-1.9,0-3.51-1.02-4.31-2.42l-1-1.58c-0.4-0.6-1-1-1.7-1C12.24,6,11.58,6.34,7,8.28V13h2V9.58 l1.79-0.7L9.2,17L6.32,19.03z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z\"></path>" } } }, - "social_distance": { - "name": "social_distance", + "scanner": { + "name": "scanner", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M4,5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S4,6.1,4,5z M8.78,8.58C7.93,8.21,6.99,8,6,8S4.07,8.21,3.22,8.58 C2.48,8.9,2,9.62,2,10.43L2,11h8l0-0.57C10,9.62,9.52,8.9,8.78,8.58z M18,7c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2 C16,6.1,16.9,7,18,7z M20.78,8.58C19.93,8.21,18.99,8,18,8c-0.99,0-1.93,0.21-2.78,0.58C14.48,8.9,14,9.62,14,10.43L14,11h8l0-0.57 C22,9.62,21.52,8.9,20.78,8.58z M18.01,13.01l-1.41,1.41L18.17,16H5.83l1.58-1.59l-1.41-1.41L2,17l3.99,3.99l1.41-1.41L5.83,18 h12.34l-1.58,1.58l1.41,1.41L22,17L18.01,13.01z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.8 10.7L4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM19 18H5v-4h14v4zM6 15h2v2H6zm4 0h8v2h-8z\"></path>" } } }, - "sports": { - "name": "sports", + "phonelink": { + "name": "phonelink", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M9.5,6C8.06,6,6.8,6.68,5.98,7.73C5.99,7.66,6,7.58,6,7.5C6,6.67,5.33,6,4.5,6S3,6.67,3,7.5S3.67,9,4.5,9 c0.33,0,0.62-0.11,0.87-0.28C5.13,9.26,5,9.87,5,10.5C5,12.99,7.01,15,9.5,15s4.5-2.01,4.5-4.5c0-0.08-0.02-0.16-0.02-0.24 c0-0.04,0.01-0.09,0.01-0.12C13.93,9.53,14.37,9,14.97,9H18V6H9.5z M4.5,8C4.22,8,4,7.78,4,7.5C4,7.22,4.22,7,4.5,7S5,7.22,5,7.5 C5,7.78,4.78,8,4.5,8z M11.47,12.02C11.02,12.61,10.31,13,9.5,13C8.12,13,7,11.88,7,10.5c0-1.27,0.95-2.3,2.17-2.47 C9.28,8.02,9.39,8,9.5,8c1.38,0,2.5,1.12,2.5,2.5C12,11.07,11.8,11.6,11.47,12.02z\"></path></g><g><circle cx=\"9.5\" cy=\"10.5\" r=\"1.5\"></circle></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z\"></path></g><g><circle cx=\"11\" cy=\"12\" r=\"2\"></circle></g></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z\"></path>" } } }, - "sports_baseball": { - "name": "sports_baseball", + "smartphone": { + "name": "smartphone", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M4,10c0-1.63,0.65-3.11,1.71-4.19 C7.09,6.7,8,8.24,8,10s-0.91,3.3-2.29,4.19C4.65,13.11,4,11.63,4,10z M10,16c-1.31,0-2.51-0.42-3.5-1.14C8.01,13.77,9,12,9,10 S8.01,6.23,6.5,5.14C7.49,4.42,8.69,4,10,4s2.51,0.42,3.5,1.14C11.99,6.23,11,8,11,10s0.99,3.77,2.5,4.86 C12.51,15.58,11.31,16,10,16z M14.29,14.19C12.91,13.3,12,11.76,12,10s0.91-3.3,2.29-4.19C15.35,6.89,16,8.37,16,10 S15.35,13.11,14.29,14.19z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.61,16.78C4.6,15.45,4,13.8,4,12 s0.6-3.45,1.61-4.78C7.06,8.31,8,10.05,8,12S7.06,15.69,5.61,16.78z M12,20c-1.89,0-3.63-0.66-5-1.76c1.83-1.47,3-3.71,3-6.24 S8.83,7.23,7,5.76C8.37,4.66,10.11,4,12,4s3.63,0.66,5,1.76c-1.83,1.47-3,3.71-3,6.24s1.17,4.77,3,6.24C15.63,19.34,13.89,20,12,20 z M18.39,16.78C16.94,15.69,16,13.95,16,12s0.94-3.69,2.39-4.78C19.4,8.55,20,10.2,20,12S19.4,15.45,18.39,16.78z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\"></path>" } } }, - "sports_basketball": { - "name": "sports_basketball", + "keyboard_arrow_left": { + "name": "keyboard_arrow_left", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z\"></path>" + } + } + }, + "cast_for_education": { + "name": "cast_for_education", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6L9 9l5.5 3L20 9l-5.5-3z\"></path>" + } + } + }, + "keyboard_option_key": { + "name": "keyboard_option_key", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M5.3,6.28C6.22,7.09,6.84,8.22,6.97,9.5 H4.03C4.13,8.29,4.59,7.18,5.3,6.28z M4.03,10.5h2.95c-0.13,1.28-0.75,2.41-1.67,3.22C4.59,12.82,4.13,11.71,4.03,10.5z M9.5,15.97c-1.34-0.11-2.55-0.66-3.5-1.51c1.11-0.99,1.84-2.39,1.97-3.96H9.5V15.97z M9.5,9.5H7.97C7.84,7.93,7.11,6.53,6,5.54 c0.95-0.85,2.16-1.4,3.5-1.51V9.5z M15.97,9.5h-2.95c0.13-1.28,0.75-2.41,1.67-3.22C15.41,7.18,15.87,8.29,15.97,9.5z M10.5,4.03 c1.34,0.11,2.55,0.66,3.5,1.51c-1.11,0.99-1.84,2.39-1.97,3.96H10.5V4.03z M10.5,15.97V10.5h1.53c0.13,1.57,0.86,2.97,1.97,3.96 C13.05,15.31,11.84,15.86,10.5,15.97z M14.7,13.72c-0.91-0.81-1.54-1.94-1.67-3.22h2.95C15.87,11.71,15.41,12.82,14.7,13.72z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"8,5 3,5 3,6.5 7.13,6.5 12.04,15 17,15 17,13.5 12.91,13.5\"></polygon><rect height=\"1.5\" width=\"5\" x=\"12\" y=\"5\"></rect></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.23,7.75 C6.1,8.62,6.7,9.74,6.91,11H4.07C4.22,9.82,4.63,8.72,5.23,7.75z M4.07,13h2.84c-0.21,1.26-0.81,2.38-1.68,3.25 C4.63,15.28,4.22,14.18,4.07,13z M11,19.93c-1.73-0.22-3.29-1-4.49-2.14c1.3-1.24,2.19-2.91,2.42-4.79H11V19.93z M11,11H8.93 C8.69,9.12,7.81,7.44,6.5,6.2C7.71,5.06,9.27,4.29,11,4.07V11z M19.93,11h-2.84c0.21-1.26,0.81-2.38,1.68-3.25 C19.37,8.72,19.78,9.82,19.93,11z M13,4.07c1.73,0.22,3.29,0.99,4.5,2.13c-1.31,1.24-2.19,2.92-2.43,4.8H13V4.07z M13,19.93V13 h2.07c0.24,1.88,1.12,3.55,2.42,4.79C16.29,18.93,14.73,19.71,13,19.93z M18.77,16.25c-0.87-0.86-1.46-1.99-1.68-3.25h2.84 C19.78,14.18,19.37,15.28,18.77,16.25z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"6\" x=\"15\" y=\"5\"></rect><polygon points=\"9,5 3,5 3,7 7.85,7 14.77,19 21,19 21,17 15.93,17\"></polygon></g></g>" } } }, - "sports_cricket": { - "name": "sports_cricket", + "headphones_battery": { + "name": "headphones_battery", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21,7h-1V6h-2v1h-1c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8C22,7.45,21.55,7,21,7z M20,16h-2V9h2 V16z\"></path><path d=\"M8,6c-3.31,0-6,2.69-6,6v4c0,1.1,0.9,2,2,2h2v-5H3.5v-1c0-2.48,2.02-4.5,4.5-4.5s4.5,2.02,4.5,4.5v1H10v5h2 c1.1,0,2-0.9,2-2v-4C14,8.69,11.31,6,8,6z\"></path></g></g>" + } + } + }, + "start": { + "name": "start", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14.5,3C13.12,3,12,4.12,12,5.5C12,6.88,13.12,8,14.5,8C15.88,8,17,6.88,17,5.5C17,4.12,15.88,3,14.5,3z M14.5,7 C13.67,7,13,6.33,13,5.5S13.67,4,14.5,4S16,4.67,16,5.5S15.33,7,14.5,7z\"></path><path d=\"M12.34,11.51L5.97,5.15C5.87,5.05,5.75,5,5.62,5C5.49,5,5.36,5.05,5.26,5.15L3.15,7.26c-0.2,0.2-0.2,0.51,0,0.71 l6.36,6.36c0.1,0.1,0.23,0.15,0.35,0.15c0.13,0,0.26-0.05,0.35-0.15l2.12-2.12C12.53,12.02,12.53,11.71,12.34,11.51z M9.86,13.27 L4.21,7.62l1.41-1.41l5.66,5.66L9.86,13.27z\"></path><rect height=\"4\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.9645 13.9853)\" width=\"1\" x=\"12.9\" y=\"13.4\"></rect></g></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect><path d=\"M2.5,5v10H4V5H2.5z M17.5,10l-4,4l-1.06-1.06l2.19-2.19H5.5v-1.5h9.13l-2.19-2.19L13.5,6L17.5,10z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M15.04,12.79l-8.5-8.5C6.35,4.1,6.09,4,5.83,4S5.32,4.1,5.13,4.29L2.29,7.13c-0.39,0.39-0.39,1.03,0,1.42l8.5,8.5 c0.2,0.2,0.45,0.29,0.71,0.29c0.26,0,0.51-0.1,0.71-0.29l2.83-2.83C15.43,13.82,15.43,13.18,15.04,12.79z M11.5,14.92L4.41,7.83 l1.42-1.42l7.09,7.09L11.5,14.92z\"></path><rect height=\"6\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)\" width=\"2\" x=\"16.17\" y=\"16.17\"></rect><path d=\"M18.5,2C16.57,2,15,3.57,15,5.5C15,7.43,16.57,9,18.5,9S22,7.43,22,5.5C22,3.57,20.43,2,18.5,2z M18.5,7 C17.67,7,17,6.33,17,5.5S17.67,4,18.5,4S20,4.67,20,5.5S19.33,7,18.5,7z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.59,7.41L18.17,11H6v2h12.17l-3.59,3.59L16,18l6-6l-6-6L14.59,7.41z M2,6v12h2V6H2z\"></path>" } } }, - "sports_esports": { - "name": "sports_esports", + "keyboard": { + "name": "keyboard", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 7v10H4V7h16m0-2H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2zm0 3h2v2h-2zM8 8h2v2H8zm0 3h2v2H8zm-3 0h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2z\"></path>" + } + } + }, + "phone_iphone": { + "name": "phone_iphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z\"></path>" + } + } + }, + "monitor": { + "name": "monitor", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M20,3H4C2.9,3,2,3.9,2,5v11c0,1.1,0.9,2,2,2h3l-1,1v2h12v-2l-1-1h3c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,16H4V5h16 V16z\"></path></g></g>" + } + } + }, + "laptop_windows": { + "name": "laptop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z\"></path>" + } + } + }, + "browser_not_supported": { + "name": "browser_not_supported", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.82,13.55l-0.62-5.76C15.08,6.77,14.23,6,13.21,6H6.79C5.77,6,4.92,6.77,4.81,7.78l-0.62,5.76 C4.09,14.32,4.69,15,5.46,15c0.34,0,0.67-0.14,0.91-0.38L8,13h4l1.62,1.62c0.24,0.24,0.57,0.38,0.91,0.38 C15.31,15,15.91,14.32,15.82,13.55z M14.76,13.9c-0.03,0.04-0.1,0.1-0.22,0.1c-0.08,0-0.15-0.03-0.21-0.09L12.41,12H7.59 l-1.91,1.91C5.62,13.97,5.54,14,5.46,14c-0.11,0-0.19-0.06-0.22-0.1c-0.03-0.04-0.09-0.12-0.07-0.25L5.8,7.89 C5.86,7.38,6.28,7,6.79,7h6.41c0.51,0,0.94,0.38,0.99,0.89l0.63,5.78C14.84,13.78,14.79,13.86,14.76,13.9z\"></path><polygon points=\"8,8 7.5,8 7.5,9.25 6.25,9.25 6.25,9.75 7.5,9.75 7.5,11 8,11 8,9.75 9.25,9.75 9.25,9.25 8,9.25\"></polygon><circle cx=\"12.5\" cy=\"10.5\" r=\".5\"></circle><circle cx=\"11.5\" cy=\"8.5\" r=\".5\"></circle></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15,5v8.59l1,1V5c0-0.55-0.45-1-1-1H5.41l1,1H15z\"></path><path d=\"M3.64,3.64L2.93,4.34L4,5.41V15c0,0.55,0.45,1,1,1h9.59l1.07,1.07l0.71-0.71L3.64,3.64z M5,15V6.41L13.59,15H5z\"></path></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M19.48,16.81C19.4,16.9,19.27,17,19.06,17c-0.15,0-0.29-0.06-0.39-0.16L15.83,14H8.17 l-2.84,2.84C5.23,16.94,5.09,17,4.94,17c-0.21,0-0.34-0.1-0.42-0.19c-0.08-0.09-0.16-0.23-0.13-0.44l1.09-7.66 C5.63,7.74,6.48,7,7.47,7h9.06c0.99,0,1.84,0.74,1.98,1.72l1.09,7.66C19.63,16.58,19.55,16.72,19.48,16.81z\"></path><polygon points=\"9,8 8,8 8,10 6,10 6,11 8,11 8,13 9,13 9,11 11,11 11,10 9,10\"></polygon><circle cx=\"17\" cy=\"12\" r=\"1\"></circle><circle cx=\"15\" cy=\"9\" r=\"1\"></circle></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z\"></path><path d=\"M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z\"></path></g></g>" } } }, - "sports_football": { - "name": "sports_football", + "sim_card": { + "name": "sim_card", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18zM7 17h2v2H7zm8 0h2v2h-2zm-8-6h2v4H7zm4 4h2v4h-2zm0-4h2v2h-2zm4 0h2v4h-2z\"></path>" + } + } + }, + "keyboard_control_key": { + "name": "keyboard_control_key", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M15.54,4.46C15.32,4.24,14.25,4,12.84,4c-2.02,0-4.73,0.5-6.53,2.31c-3.06,3.06-2.37,8.71-1.85,9.23 C4.68,15.76,5.75,16,7.16,16c2.02,0,4.73-0.5,6.53-2.31C16.75,10.63,16.07,4.99,15.54,4.46z M12.84,5c0.96,0,1.64,0.12,1.96,0.21 c0.14,0.46,0.26,1.48,0.18,2.69L12.1,5.03C12.38,5.01,12.64,5,12.84,5z M5.2,14.79c-0.14-0.46-0.26-1.48-0.18-2.69l2.87,2.87 C7.62,14.99,7.36,15,7.16,15C6.2,15,5.52,14.88,5.2,14.79z M12.99,12.99c-1.1,1.1-2.58,1.6-3.83,1.83l-3.98-3.98 c0.25-1.36,0.79-2.78,1.83-3.82c1.1-1.1,2.58-1.6,3.83-1.83l3.98,3.98C14.57,10.52,14.03,11.94,12.99,12.99z\"></path><rect height=\"1\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.1421 10)\" width=\"6\" x=\"7\" y=\"9.5\"></rect></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><polygon points=\"5,10 6.06,11.06 10,7.12 13.94,11.06 15,10 10,5\"></polygon></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20.31,3.69C19.99,3.36,18.37,3,16.26,3c-3.03,0-7.09,0.75-9.8,3.46C1.87,11.05,2.9,19.52,3.69,20.31 C4.01,20.64,5.63,21,7.74,21c3.03,0,7.09-0.75,9.8-3.46C22.13,12.95,21.1,4.48,20.31,3.69z M7.74,19c-1.14,0-2.02-0.12-2.53-0.23 c-0.18-0.79-0.3-2.21-0.17-3.83l4.01,4.01C8.53,18.99,8.08,19,7.74,19z M16.13,16.13c-1.33,1.33-3.06,2.05-4.66,2.44l-6.04-6.04 c0.42-1.68,1.16-3.37,2.45-4.65c1.32-1.32,3.05-2.04,4.64-2.43l6.05,6.05C18.15,13.17,17.4,14.85,16.13,16.13z M18.96,9.09 l-4.03-4.03C15.45,5.01,15.91,5,16.26,5c1.14,0,2.02,0.12,2.53,0.23C18.97,6.02,19.09,7.45,18.96,9.09z\"></path><rect height=\"1.98\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12.0001)\" width=\"7.92\" x=\"8.04\" y=\"11.01\"></rect></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><polygon points=\"5,12 6.41,13.41 12,7.83 17.59,13.41 19,12 12,5\"></polygon></g>" } } }, - "sports_golf": { - "name": "sports_golf", + "earbuds_battery": { + "name": "earbuds_battery", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21,7h-1V6h-2v1h-1c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8C22,7.45,21.55,7,21,7z M20,16h-2V9h2 V16z M14,9.38C14,7.51,12.49,6,10.62,6S7.25,7.51,7.25,9.38v5.25c0,1.04-0.84,1.88-1.88,1.88S3.5,15.66,3.5,14.62v-4.7 C3.66,9.97,3.83,10,4,10c1.1,0,2-0.9,2-2S5.1,6,4,6S2,6.9,2,8c0,0.04,0,6.62,0,6.62C2,16.49,3.51,18,5.38,18s3.38-1.51,3.38-3.38 V9.38c0-1.04,0.84-1.88,1.88-1.88s1.88,0.84,1.88,1.88v4.7C12.34,14.03,12.17,14,12,14c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2 C14,15.96,14,9.38,14,9.38z\"></path></g></g>" + } + } + }, + "videogame_asset_off": { + "name": "videogame_asset_off", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3C7.24,3,5,5.24,5,8s2.24,5,5,5s5-2.24,5-5S12.76,3,10,3z M10,12c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4 C14,10.21,12.21,12,10,12z\"></path><circle cx=\"8.5\" cy=\"6.5\" r=\".5\"></circle><circle cx=\"11.5\" cy=\"6.5\" r=\".5\"></circle><circle cx=\"10\" cy=\"5.5\" r=\".5\"></circle><path d=\"M7,15h1.5c0.55,0,1,0.45,1,1v1h1v-1c0-0.55,0.45-1,1-1H13v-1H7V15z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect><path d=\"M13.25,9c0-0.69,0.56-1.25,1.25-1.25S15.75,8.31,15.75,9s-0.56,1.25-1.25,1.25S13.25,9.69,13.25,9z M8.62,6.5h7.88v7h-0.88 l1.4,1.4c0.57-0.21,0.97-0.76,0.97-1.4v-7C18,5.68,17.33,5,16.5,5H7.12L8.62,6.5z M16.01,18.13L12.88,15H3.5C2.67,15,2,14.32,2,13.5 v-7c0-0.64,0.41-1.19,0.97-1.4L1.87,3.99l1.06-1.06l14.14,14.14L16.01,18.13z M11.38,13.5l-2.75-2.75H7.55v1.75h-1.5v-1.75H4.3v-1.5 h1.75V8.17L4.38,6.5H3.5v7H11.38z\"></path>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z\"></path><circle cx=\"10\" cy=\"8\" r=\"1\"></circle><circle cx=\"14\" cy=\"8\" r=\"1\"></circle><circle cx=\"12\" cy=\"6\" r=\"1\"></circle><path d=\"M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect><path d=\"M17.5,9c0.83,0,1.5,0.67,1.5,1.5S18.33,12,17.5,12S16,11.33,16,10.5S16.67,9,17.5,9z M10.83,8H20v8h-1.17l1.87,1.87 C21.45,17.58,22,16.85,22,16V8c0-1.1-0.9-2-2-2H8.83L10.83,8z M19.78,22.61L15.17,18H4c-1.1,0-2-0.9-2-2V8 c0-0.85,0.55-1.58,1.3-1.87L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M13.17,16l-3-3H9v2H7v-2H5v-2h2V9.83L5.17,8H4v8H13.17z\"></path>" } } }, - "sports_handball": { - "name": "sports_handball", + "memory": { + "name": "memory", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z\"></path>" + } + } + }, + "laptop": { + "name": "laptop", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><path d=\"M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z\"></path></g></g>" + } + } + }, + "laptop_mac": { + "name": "laptop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" + } + } + }, + "cast_connected": { + "name": "cast_connected", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 7v2h12v6h-3v2h5V7z\"></path>" + } + } + }, + "tablet": { + "name": "tablet", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z\"></path>" + } + } + }, + "videogame_asset": { + "name": "videogame_asset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h18v8zM6 15h2v-2h2v-2H8V9H6v2H4v2h2z\"></path><circle cx=\"14.5\" cy=\"13.5\" r=\"1.5\"></circle><circle cx=\"18.5\" cy=\"10.5\" r=\"1.5\"></circle>" + } + } + }, + "keyboard_double_arrow_down": { + "name": "keyboard_double_arrow_down", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M13.23,8.6l-3.46-2c-1.43-0.83-1.93-2.67-1.1-4.1l0.5-0.87L8.3,1.14L7.8,2C6.7,3.92,7.35,6.36,9.27,7.47l-4.5,7.79 l0.87,0.5l1.5-2.6l1.73,1l-3,5.2l0.87,0.5l6-10.39c1.43,0.83,1.93,2.67,1.1,4.1l-0.5,0.87l0.87,0.5l0.5-0.87 C15.8,12.15,15.14,9.71,13.23,8.6z\"></path><circle cx=\"11\" cy=\"2\" r=\"1\"></circle><circle cx=\"12.5\" cy=\"5.5\" r=\"1.5\"></circle></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"15,5.06 13.94,4 10,7.94 6.06,4 5,5.06 10,10.06\"></polygon><polygon points=\"15,11 13.94,9.94 10,13.88 6.06,9.94 5,11 10,16\"></polygon></g></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z\"></path><path d=\"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z\"></path><path d=\"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"18,6.41 16.59,5 12,9.58 7.41,5 6,6.41 12,12.41\"></polygon><polygon points=\"18,13 16.59,11.59 12,16.17 7.41,11.59 6,13 12,19\"></polygon></g></g>" } } }, - "sports_hockey": { - "name": "sports_hockey", + "keyboard_capslock": { + "name": "keyboard_capslock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z\"></path>" + } + } + }, + "keyboard_double_arrow_up": { + "name": "keyboard_double_arrow_up", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"5,14.94 6.06,16 10,12.06 13.94,16 15,14.94 10,9.94\"></polygon><polygon points=\"5,9 6.06,10.06 10,6.12 13.94,10.06 15,9 10,4\"></polygon></g></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"6,17.59 7.41,19 12,14.42 16.59,19 18,17.59 12,11.59\"></polygon><polygon points=\"6,11 7.41,12.41 12,7.83 16.59,12.41 18,11 12,5\"></polygon></g></g>" + } + } + }, + "cast": { + "name": "cast", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z\"></path>" + } + } + }, + "keyboard_voice": { + "name": "keyboard_voice", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2V5.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.41 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z\"></path>" + } + } + }, + "keyboard_backspace": { + "name": "keyboard_backspace", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z\"></path>" + } + } + }, + "point_of_sale": { + "name": "point_of_sale", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14,3H6C5.45,3,5,3.45,5,4v1c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V4C15,3.45,14.55,3,14,3z M14,5H6V4h8V5z M16,17H4 c-0.55,0-1-0.45-1-1l0,0l0-1h14v1l0,0C17,16.55,16.55,17,16,17z M14.26,7.61C14.1,7.24,13.74,7,13.34,7H6.66 C6.26,7,5.9,7.24,5.74,7.61L3,14h14L14.26,7.61z M7.75,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C8.25,12.78,8.03,13,7.75,13z M7.75,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5S6.97,10,7.25,10h0.5 c0.28,0,0.5,0.22,0.5,0.5S8.03,11,7.75,11z M7.75,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C8.25,8.78,8.03,9,7.75,9z M10.25,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5S9.47,12,9.75,12h0.5 c0.28,0,0.5,0.22,0.5,0.5S10.53,13,10.25,13z M10.25,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C10.75,10.78,10.53,11,10.25,11z M10.25,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5S9.47,8,9.75,8h0.5 c0.28,0,0.5,0.22,0.5,0.5S10.53,9,10.25,9z M12.75,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5 S13.03,13,12.75,13z M12.75,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5 C13.25,10.78,13.03,11,12.75,11z M12.75,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5S11.97,8,12.25,8h0.5c0.28,0,0.5,0.22,0.5,0.5 S13.03,9,12.75,9z\"></path></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z\"></path></g>" + } + } + }, + "watch_off": { + "name": "watch_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,6.5c1.93,0,3.5,1.57,3.5,3.5c0,0.41-0.08,0.8-0.21,1.16l1.14,1.14C14.79,11.62,15,10.83,15,10 c0-1.65-0.81-3.1-2.04-4.01L12,2H8L7.25,5.13l1.59,1.59C9.2,6.58,9.59,6.5,10,6.5z M9.18,3.5h1.63l0.4,1.67 C10.83,5.07,10.42,5,10,5S9.17,5.07,8.78,5.17L9.18,3.5z\"></path><path d=\"M1.87,3.99l3.7,3.7C5.21,8.38,5,9.17,5,10c0,1.64,0.8,3.07,2.01,3.99L8,18h4l0.77-3.11l3.24,3.24l1.06-1.06L2.93,2.93 L1.87,3.99z M10.83,16.5H9.17l-0.41-1.67C9.16,14.93,9.57,15,10,15s0.84-0.07,1.24-0.17L10.83,16.5z M6.71,8.84l4.45,4.45 C10.8,13.42,10.41,13.5,10,13.5c-1.93,0-3.5-1.57-3.5-3.5C6.5,9.59,6.58,9.2,6.71,8.84z\"></path></g></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,7c2.76,0,5,2.24,5,5c0,0.64-0.13,1.25-0.35,1.82l1.5,1.5C18.69,14.33,19,13.2,19,12c0-2.22-1.03-4.19-2.64-5.47L15,2 H9L8.04,5.21l2.14,2.14C10.75,7.13,11.36,7,12,7z M10.49,4h3.02l0.38,1.27c-0.55-0.16-1.97-0.51-3.78,0L10.49,4z\"></path><path d=\"M2.81,2.81L1.39,4.22l4.46,4.46C5.31,9.67,5,10.8,5,12c0,2.22,1.03,4.19,2.64,5.47L9,22h6l0.96-3.21l3.82,3.82l1.41-1.41 L2.81,2.81z M13.51,20h-3.02l-0.38-1.27c0.55,0.15,1.97,0.51,3.78,0L13.51,20z M12,17c-2.76,0-5-2.24-5-5 c0-0.64,0.13-1.25,0.35-1.82l6.47,6.47C13.25,16.87,12.64,17,12,17z\"></path></g></g>" + } + } + }, + "developer_board_off": { + "name": "developer_board_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.12,14H18v-1.5h-2v-1.75h2v-1.5h-2V7.5h2V6h-2V4.5C16,3.67,15.33,3,14.5,3H5.12l1.5,1.5h7.88v7.88L16.12,14z M8.12,6H9 v0.88L8.12,6z M13,8h-2.88L10,7.88V6h3V8z M11.12,9H13v1.88L11.12,9z M2.22,2.22L1.16,3.28l0.88,0.88C2.01,4.27,2,4.38,2,4.5v11 C2,16.33,2.67,17,3.5,17h11c0.12,0,0.23-0.01,0.34-0.04l1.88,1.88l1.06-1.06L2.22,2.22z M3.5,15.5V5.62L5,7.12V10h2.88l1,1H5v3h4 v-2.88l1,1V14h1.88l1.5,1.5H3.5z\"></path>" + }, + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.83,5H18v10.17L19.83,17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0-1.1-0.9-2-2-2H5.83L7.83,5z M12,9.17V7h4v3h-3.17L12,9.17z M9.83,7H11v1.17L9.83,7z M13.83,11H16v2.17L13.83,11z M18,21c0.06,0,0.11,0,0.16-0.01l2.32,2.32l1.41-1.41L2.1,2.1L0.69,3.51 l1.32,1.32C2,4.89,2,4.94,2,5v14c0,1.1,0.9,2,2,2H18z M4,19V6.83l2,2V12h3.17l1,1H6v4h5v-3.17l1,1V17h2.17l2,2H4z\"></path>" + } + } + }, + "keyboard_double_arrow_right": { + "name": "keyboard_double_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"5.06,5 4,6.06 7.94,10 4,13.94 5.06,15 10.06,10\"></polygon><polygon points=\"11,5 9.94,6.06 13.88,10 9.94,13.94 11,15 16,10\"></polygon></g></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"6.41,6 5,7.41 9.58,12 5,16.59 6.41,18 12.41,12\"></polygon><polygon points=\"13,6 11.59,7.41 16.17,12 11.59,16.59 13,18 19,12\"></polygon></g></g>" + } + } + }, + "tablet_android": { + "name": "tablet_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z\"></path>" + } + } + }, + "keyboard_command_key": { + "name": "keyboard_command_key", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M14.25,11.5H13v-3h1.25C15.77,8.5,17,7.27,17,5.75S15.77,3,14.25,3S11.5,4.23,11.5,5.75V7h-3V5.75C8.5,4.23,7.27,3,5.75,3 S3,4.23,3,5.75S4.23,8.5,5.75,8.5H7v3H5.75C4.23,11.5,3,12.73,3,14.25S4.23,17,5.75,17s2.75-1.23,2.75-2.75V13h3v1.25 c0,1.52,1.23,2.75,2.75,2.75S17,15.77,17,14.25S15.77,11.5,14.25,11.5z M13,5.75c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S14.94,7,14.25,7H13V5.75z M5.75,7C5.06,7,4.5,6.44,4.5,5.75S5.06,4.5,5.75,4.5S7,5.06,7,5.75V7H5.75z M7,14.25 c0,0.69-0.56,1.25-1.25,1.25c-0.69,0-1.25-0.56-1.25-1.25S5.06,13,5.75,13H7h0V14.25z M8.5,11.5L8.5,11.5l0-3h3v3H8.5z M14.25,15.5 c-0.69,0-1.25-0.56-1.25-1.25V13h1.25c0.69,0,1.25,0.56,1.25,1.25S14.94,15.5,14.25,15.5z\"></path></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17.5,3C15.57,3,14,4.57,14,6.5V8h-4V6.5C10,4.57,8.43,3,6.5,3S3,4.57,3,6.5S4.57,10,6.5,10H8v4H6.5 C4.57,14,3,15.57,3,17.5S4.57,21,6.5,21s3.5-1.57,3.5-3.5V16h4v1.5c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S19.43,14,17.5,14H16 v-4h1.5c1.93,0,3.5-1.57,3.5-3.5S19.43,3,17.5,3L17.5,3z M16,8V6.5C16,5.67,16.67,5,17.5,5S19,5.67,19,6.5S18.33,8,17.5,8H16L16,8 z M6.5,8C5.67,8,5,7.33,5,6.5S5.67,5,6.5,5S8,5.67,8,6.5V8H6.5L6.5,8z M10,14v-4h4v4H10L10,14z M17.5,19c-0.83,0-1.5-0.67-1.5-1.5 V16h1.5c0.83,0,1.5,0.67,1.5,1.5S18.33,19,17.5,19L17.5,19z M6.5,19C5.67,19,5,18.33,5,17.5S5.67,16,6.5,16H8v1.5 C8,18.33,7.33,19,6.5,19L6.5,19z\"></path></g></g>" + } + } + }, + "headset_mic": { + "name": "headset_mic", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 14v4h-2v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9z\"></path>" + } + } + }, + "desktop_windows": { + "name": "desktop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z\"></path>" + } + } + }, + "tablet_mac": { + "name": "tablet_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z\"></path>" + } + } + }, + "power_input": { + "name": "power_input", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z\"></path>" + } + } + }, + "tv": { + "name": "tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z\"></path>" + } + } + }, + "phone_android": { + "name": "phone_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm1 17H7V4h10v14zm-3 3h-4v-1h4v1z\"></path>" + } + } + }, + "security": { + "name": "security", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z\"></path>" + } + } + }, + "keyboard_arrow_right": { + "name": "keyboard_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z\"></path>" + } + } + }, + "speaker_group": { + "name": "speaker_group", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM18 17l-8-.01V3h8v14zm-4-9c1.1 0 2-.89 2-2s-.9-2-2-2-2 .89-2 2 .9 2 2 2zm0 8c1.93 0 3.5-1.57 3.5-3.5S15.93 9 14 9s-3.5 1.57-3.5 3.5S12.07 16 14 16zm0-5c.83 0 1.5.67 1.5 1.5S14.83 14 14 14s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z\"></path>" + } + } + }, + "smart_screen": { + "name": "smart_screen", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><rect height=\"1.5\" width=\"1.5\" x=\"12.5\" y=\"11.25\"></rect><rect height=\"1.5\" width=\"1.5\" x=\"15\" y=\"11.25\"></rect><rect height=\"1.5\" width=\"1.5\" x=\"10\" y=\"11.25\"></rect><rect height=\"1.5\" width=\"1.5\" x=\"7.5\" y=\"11.25\"></rect><path d=\"M21,5H3C1.9,5,1,5.9,1,7v10c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V7C23,5.9,22.1,5,21,5z M4,17H3V7h1V17z M18,17H6V7h12V17z M21,17h-1V7h1V17z\"></path></g></g>" + } + } + }, + "keyboard_tab": { + "name": "keyboard_tab", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z\"></path>" + } + } + }, + "phonelink_off": { + "name": "phonelink_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 6V4H7.39l2 2zm2 13V9c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93zM2.06 1.51L.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51zM4 17V6.27L14.73 17H4z\"></path>" + } + } + }, + "keyboard_hide": { + "name": "keyboard_hide", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H4V5h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 6h2v2H8zm0 3h2v2H8zM5 9h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2zm-5 17l4-4H8z\"></path>" + } + } + }, + "connected_tv": { + "name": "connected_tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,3H4C2.9,3,2,3.9,2,5v12c0,1.1,0.9,2,2,2h4v2h8v-2h4c1.1,0,1.99-0.9,1.99-2L22,5C22,3.9,21.1,3,20,3z M20,17H4V5h16V17 z M5,14v2h2C7,14.89,6.11,14,5,14z M5,11v1.43c1.97,0,3.57,1.6,3.57,3.57H10C10,13.24,7.76,11,5,11z M5,8v1.45 c3.61,0,6.55,2.93,6.55,6.55H13C13,11.58,9.41,8,5,8z\"></path></g></g>" + } + } + }, + "developer_board": { + "name": "developer_board", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6v-4zm6-6h4v3h-4V7zM6 7h5v5H6V7zm6 4h4v6h-4v-6z\"></path>" + } + } + }, + "toys": { + "name": "toys", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "<g display=\"none\"><rect display=\"inline\" fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect></g><g><g><path d=\"M14.55,8.53l-0.83-2.49c-0.31-0.92-1.17-1.54-2.13-1.54H8.41c-0.97,0-1.83,0.62-2.13,1.54L5.73,7.67l-1-1l0.15-0.15 c0.29-0.29,0.29-0.77,0-1.06s-0.77-0.29-1.06,0L2.47,6.82c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0l0.14-0.14 l0.99,0.99C3.69,9.15,3,10.12,3,11.25c0,0.98,0.51,1.83,1.28,2.32c0.16,1.09,1.09,1.93,2.22,1.93c0.98,0,1.8-0.63,2.11-1.5h2.78 c0.31,0.87,1.14,1.5,2.11,1.5c1.13,0,2.06-0.84,2.22-1.93c0.77-0.49,1.28-1.34,1.28-2.32C17,9.84,15.92,8.68,14.55,8.53z M10.75,6 h0.84c0.32,0,0.61,0.21,0.71,0.51l0.66,1.99h-2.21V6z M7.7,6.51C7.81,6.21,8.09,6,8.41,6h0.84v2.5H7.04L7.7,6.51z M6.5,14 c-0.41,0-0.75-0.34-0.75-0.75S6.09,12.5,6.5,12.5s0.75,0.34,0.75,0.75S6.91,14,6.5,14z M13.5,14c-0.41,0-0.75-0.34-0.75-0.75 s0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75S13.91,14,13.5,14z M15.29,11.9c-0.41-0.54-1.06-0.9-1.79-0.9c-0.98,0-1.8,0.63-2.11,1.5 H8.61C8.3,11.63,7.48,11,6.5,11c-0.73,0-1.38,0.36-1.79,0.9c-0.12-0.19-0.21-0.41-0.21-0.65C4.5,10.56,5.06,10,5.75,10h8.5 c0.69,0,1.25,0.56,1.25,1.25C15.5,11.49,15.41,11.71,15.29,11.9z\"></path></g></g>" + }, + "24": { + "width": 24, + "path": "<g display=\"none\"><rect display=\"inline\" fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><g><path d=\"M18.75,10.08L17.4,6.05C17,4.82,15.85,4,14.56,4H9.44C8.15,4,7,4.82,6.6,6.05L5.81,8.4L4.41,7l0.29-0.29 c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0l-2,2c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0L3,8.41 l1.79,1.79C3.18,10.72,2,12.22,2,14c0,1.49,0.83,2.78,2.05,3.47C4.27,18.9,5.51,20,7,20c1.3,0,2.4-0.84,2.82-2h4.37 c0.41,1.16,1.51,2,2.82,2c1.49,0,2.73-1.1,2.95-2.53C21.17,16.78,22,15.49,22,14C22,12.05,20.6,10.43,18.75,10.08z M13,6h1.56 c0.43,0,0.81,0.27,0.95,0.68L16.61,10H13V6z M8.49,6.68C8.63,6.27,9.01,6,9.44,6H11v4H7.41L7.39,9.98L8.49,6.68z M7,18 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S7.55,18,7,18z M17,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.55,18,17,18z M19.49,15.32C18.95,14.53,18.03,14,17,14c-1.3,0-2.4,0.84-2.82,2H9.82C9.4,14.84,8.3,14,7,14c-1.03,0-1.95,0.53-2.49,1.32 C4.2,14.97,4,14.51,4,14c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2C20,14.51,19.8,14.97,19.49,15.32z\"></path></g></g>" + } + } + }, + "router": { + "name": "router", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 4.2c1.5 0 3 .6 4.2 1.7l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2zm-3.3 2.5l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm0 6H5v-4h14v4zM6 16h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z\"></path>" + } + } + }, + "home_mini": { + "name": "home_mini", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" y=\"0\"></rect></g><g><path d=\"M12,5C4.19,5,2,9.48,2,12c0,3.86,3.13,7,6.99,7h6.02c2.69,0,6.99-2.08,6.99-7C22,12,22,5,12,5z M12,7c7.64,0,7.99,4.51,8,5 H4C4,11.8,4.09,7,12,7z M14.86,17H9.14c-2.1,0-3.92-1.24-4.71-3h15.15C18.78,15.76,16.96,17,14.86,17z\"></path></g>" + } + } + }, + "device_unknown": { + "name": "device_unknown", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zM11 16h2v2h-2v-2z\"></path>" + } + } + }, + "headphones": { + "name": "headphones", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,3c-4.97,0-9,4.03-9,9v7c0,1.1,0.9,2,2,2h4v-8H5v-1c0-3.87,3.13-7,7-7s7,3.13,7,7v1h-4v8h4c1.1,0,2-0.9,2-2v-7 C21,7.03,16.97,3,12,3z M7,15v4H5v-4H7z M19,19h-2v-4h2V19z\"></path></g>" + } + } + }, + "mouse": { + "name": "mouse", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 9c-.04-4.39-3.6-7.93-8-7.93S4.04 4.61 4 9v6c0 4.42 3.58 8 8 8s8-3.58 8-8V9zm-2 0h-5V3.16c2.81.47 4.96 2.9 5 5.84zm-7-5.84V9H6c.04-2.94 2.19-5.37 5-5.84zM18 15c0 3.31-2.69 6-6 6s-6-2.69-6-6v-4h12v4z\"></path>" + } + } + }, + "devices_other": { + "name": "devices_other", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z\"></path>" + } + } + }, + "offline_share": { + "name": "offline_share", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M6,5H4v16c0,1.1,0.9,2,2,2h10v-2H6V5z\"></path><path d=\"M18,1h-8C8.9,1,8,1.9,8,3v14c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V3C20,1.9,19.1,1,18,1z M18,17h-8v-1h8V17z M18,14h-8V6h8 V14z M18,4h-8V3h8V4z\"></path><path d=\"M12.5,10.25h1.63l-0.69,0.69L14.5,12L17,9.5L14.5,7l-1.06,1.06l0.69,0.69H12c-0.55,0-1,0.45-1,1V12h1.5V10.25z\"></path></g></g>" + } + } + }, + "more_vert": { + "name": "more_vert", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" + } + } + }, + "app_settings_alt": { + "name": "app_settings_alt", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><rect fill=\"none\" height=\"1\" width=\"10\" x=\"7\" y=\"20\"></rect><rect fill=\"none\" height=\"1\" width=\"10\" x=\"7\" y=\"3\"></rect><path d=\"M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05c0.03-0.02,0.06-0.04,0.09-0.06 l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3 c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z\"></path></g>" + } + } + }, + "pivot_table_chart": { + "name": "pivot_table_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M21,5c0-1.1-0.9-2-2-2h-9v5h11V5z M3,19c0,1.1,0.9,2,2,2h3V10H3V19z M3,5v3h5V3H5C3.9,3,3,3.9,3,5z M18,8.99L14,13 l1.41,1.41l1.59-1.6V15c0,1.1-0.9,2-2,2h-2.17l1.59-1.59L13,14l-4,4l4,4l1.41-1.41L12.83,19H15c2.21,0,4-1.79,4-4v-2.18l1.59,1.6 L22,13L18,8.99z\"></path></g>" + } + } + }, + "fullscreen": { + "name": "fullscreen", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z\"></path>" + } + } + }, + "close": { + "name": "close", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z\"></path>" + } + } + }, + "apps_outage": { + "name": "apps_outage", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M7,7H4V4h3V7z M7,8.5H4v3h3V8.5z M11.5,8.5h-3v3h3V8.5z M7,13H4v3h3V13z M11.5,13h-3v3h3V13z M16,13h-3v3h3V13z M20,4 c0,2.21-1.79,4-4,4s-4-1.79-4-4s1.79-4,4-4S20,1.79,20,4z M16.5,5h-1v1h1V5z M16.5,2h-1v2h1V2z M16,9.5v2h-3V8.61 C13.86,9.17,14.89,9.5,16,9.5z M11.39,7H8.5V4h2C10.5,5.11,10.83,6.14,11.39,7z\"></path>" + }, + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M4,8h4V4H4V8z M10,20h4v-4h-4V20z M4,20h4v-4H4V20z M4,14h4v-4H4V14z M10,14h4v-4h-4V14z M16,20h4v-4h-4V20z M19,0 c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S21.76,0,19,0z M19.5,8h-1V7h1V8z M19.5,6h-1V2h1V6z M16,14h4v-2.07 C19.67,11.98,19.34,12,19,12c-1.07,0-2.09-0.24-3-0.68V14z M10,4v4h2.68C12.24,7.09,12,6.07,12,5c0-0.34,0.02-0.67,0.07-1H10z\"></path>" + } + } + }, + "home_work": { + "name": "home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M17 15h2v2h-2zM17 11h2v2h-2zM17 7h2v2h-2zM13.74 7l1.26.84V7z\"></path><path d=\"M10 3v1.51l2 1.33V5h9v14h-4v2h6V3z\"></path><path d=\"M8.17 5.7L15 10.25V21H1V10.48L8.17 5.7zM10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4v6z\"></path>" + } + } + }, + "arrow_back": { + "name": "arrow_back", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z\"></path>" + } + } + }, + "menu": { + "name": "menu", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z\"></path>" + } + } + }, + "arrow_back_ios": { + "name": "arrow_back_ios", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\" opacity=\".87\"></path><path d=\"M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z\"></path>" + } + } + }, + "last_page": { + "name": "last_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\" opacity=\".87\"></path><path d=\"M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z\"></path>" + } + } + }, + "double_arrow": { + "name": "double_arrow", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><polygon points=\"9.21,15 12.43,15 16,10 12.43,5 9.21,5 12.79,10\"></polygon><polygon points=\"4.21,15 7.43,15 11,10 7.43,5 4.21,5 7.79,10\"></polygon></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"15.5,5 11,5 16,12 11,19 15.5,19 20.5,12\"></polygon><polygon points=\"8.5,5 4,5 9,12 4,19 8.5,19 13.5,12\"></polygon></g></g>" + } + } + }, + "legend_toggle": { + "name": "legend_toggle", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16,15H4v-1h12V15z M16,11H4v1h12V11z M4,9l4-2.78L12,9l4-2.78V5l-4,2.78L8,5L4,7.78L4,9z\"></path></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z\"></path></g>" + } + } + }, + "switch_left": { + "name": "switch_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z\"></path>" + } + } + }, + "subdirectory_arrow_right": { + "name": "subdirectory_arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\"></path><path d=\"M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z\"></path>" + } + } + }, + "chevron_right": { + "name": "chevron_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z\"></path>" + } + } + }, + "arrow_left": { + "name": "arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M24 0v24H0V0h24z\" fill=\"none\" opacity=\".87\"></path><path d=\"M14 7l-5 5 5 5V7z\"></path>" + } + } + }, + "north": { + "name": "north", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z\"></path>" + } + } + }, + "more_horiz": { + "name": "more_horiz", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" + } + } + }, + "apps": { + "name": "apps", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z\"></path>" + } + } + }, + "west": { + "name": "west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9,19l1.41-1.41L5.83,13H22V11H5.83l4.59-4.59L9,5l-7,7L9,19z\"></path>" + } + } + }, + "maps_home_work": { + "name": "maps_home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><rect height=\"2\" width=\"2\" x=\"17\" y=\"7\"></rect><rect height=\"2\" width=\"2\" x=\"17\" y=\"11\"></rect><rect height=\"2\" width=\"2\" x=\"17\" y=\"15\"></rect><path d=\"M1,11v10h6v-5h2v5h6V11L8,6L1,11z M13,19h-2v-5H5v5H3v-7l5-3.5l5,3.5V19z\"></path><polygon points=\"10,3 10,4.97 12,6.4 12,5 21,5 21,19 17,19 17,21 23,21 23,3\"></polygon></g></g>" + } + } + }, + "cancel": { + "name": "cancel", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\" opacity=\".87\"></path><path d=\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z\"></path>" + } + } + }, + "first_page": { + "name": "first_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M24 0v24H0V0h24z\" fill=\"none\" opacity=\".87\"></path><path d=\"M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z\"></path>" + } + } + }, + "east": { + "name": "east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z\"></path>" + } + } + }, + "arrow_upward": { + "name": "arrow_upward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z\"></path>" + } + } + }, + "check": { + "name": "check", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z\"></path>" + } + } + }, + "chevron_left": { + "name": "chevron_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z\"></path>" + } + } + }, + "menu_open": { + "name": "menu_open", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3,18h13v-2H3V18z M3,13h10v-2H3V13z M3,6v2h13V6H3z M21,15.59L17.42,12L21,8.41L19.59,7l-5,5l5,5L21,15.59z\"></path>" + } + } + }, + "arrow_downward": { + "name": "arrow_downward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z\"></path>" + } + } + }, + "payments": { + "name": "payments", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,14V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v8c0,1.1,0.9,2,2,2h14C18.1,16,19,15.1,19,14z M17,14H3V6h14V14z M10,7 c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,7,10,7z M23,7v11c0,1.1-0.9,2-2,2H4c0-1,0-0.9,0-2h17V7C22.1,7,22,7,23,7z\"></path></g>" + } + } + }, + "arrow_back_ios_new": { + "name": "arrow_back_ios_new", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><polygon points=\"14.41,3.41 13,2 5,10 13,18 14.41,16.59 7.83,10\"></polygon>" + }, + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><polygon points=\"17.77,3.77 16,2 6,12 16,22 17.77,20.23 9.54,12\"></polygon></g>" + } + } + }, + "arrow_drop_up": { + "name": "arrow_drop_up", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 14l5-5 5 5H7z\"></path>" + } + } + }, + "unfold_more": { + "name": "unfold_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z\"></path>" + } + } + }, + "south_east": { + "name": "south_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z\"></path>" + } + } + }, + "arrow_drop_down_circle": { + "name": "arrow_drop_down_circle", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13l-4-4h8z\"></path>" + } + } + }, + "expand_more": { + "name": "expand_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\"></path><path d=\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\"></path>" + } + } + }, + "north_east": { + "name": "north_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z\"></path>" + } + } + }, + "arrow_forward_ios": { + "name": "arrow_forward_ios", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g><g><polygon points=\"4.59,16.59 6,18 14,10 6,2 4.59,3.41 11.17,10\"></polygon></g>" + }, + "24": { + "width": 24, + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><polygon points=\"6.23,20.23 8,22 18,12 8,2 6.23,3.77 14.46,12\"></polygon></g>" + } + } + }, + "south": { + "name": "south", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z\"></path>" + } + } + }, + "expand_less": { + "name": "expand_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z\"></path>" + } + } + }, + "arrow_right": { + "name": "arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 17l5-5-5-5v10z\"></path>" + } + } + }, + "campaign": { + "name": "campaign", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><path d=\"M18,11c0,0.67,0,1.33,0,2c1.2,0,2.76,0,4,0c0-0.67,0-1.33,0-2C20.76,11,19.2,11,18,11z\"></path><path d=\"M16,17.61c0.96,0.71,2.21,1.65,3.2,2.39c0.4-0.53,0.8-1.07,1.2-1.6c-0.99-0.74-2.24-1.68-3.2-2.4 C16.8,16.54,16.4,17.08,16,17.61z\"></path><path d=\"M20.4,5.6C20,5.07,19.6,4.53,19.2,4c-0.99,0.74-2.24,1.68-3.2,2.4c0.4,0.53,0.8,1.07,1.2,1.6 C18.16,7.28,19.41,6.35,20.4,5.6z\"></path><path d=\"M4,9c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v4h2v-4h1l5,3V6L8,9H4z M9.03,10.71L11,9.53v4.94l-1.97-1.18L8.55,13H8H4v-2h4 h0.55L9.03,10.71z\"></path><path d=\"M15.5,12c0-1.33-0.58-2.53-1.5-3.35v6.69C14.92,14.53,15.5,13.33,15.5,12z\"></path>" + } + } + }, + "fullscreen_exit": { + "name": "fullscreen_exit", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z\"></path>" + } + } + }, + "arrow_drop_down": { + "name": "arrow_drop_down", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 10l5 5 5-5H7z\"></path>" + } + } + }, + "arrow_forward": { + "name": "arrow_forward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z\"></path>" + } + } + }, + "expand_circle_down": { + "name": "expand_circle_down", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,12.6L6.63,9.23l1.06-1.06L10,10.48l2.31-2.31l1.06,1.06L10,12.6z M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8s3.58-8,8-8 S18,5.58,18,10z M16.5,10c0-3.59-2.91-6.5-6.5-6.5S3.5,6.41,3.5,10s2.91,6.5,6.5,6.5S16.5,13.59,16.5,10z\"></path>" + }, + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15.08,9.59L12,12.67L8.92,9.59L7.5,11l4.5,4.5l4.5-4.5L15.08,9.59z M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\"></path>" + } + } + }, + "switch_right": { + "name": "switch_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" transform=\"matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)\" width=\"24\"></rect><path d=\"M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z\"></path>" + } + } + }, + "refresh": { + "name": "refresh", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z\"></path>" + } + } + }, + "subdirectory_arrow_left": { + "name": "subdirectory_arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z\"></path>" + } + } + }, + "unfold_less": { + "name": "unfold_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M24 0v24H0V0h24z\" fill=\"none\" opacity=\".87\"></path><path d=\"M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z\"></path>" + } + } + }, + "waterfall_chart": { + "name": "waterfall_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M18,4h3v16h-3V4z M3,13h3v7H3V13z M14,4h3v3h-3V4z M10,5h3v4h-3V5z M7,10h3v4H7V10z\"></path></g></g>" + } + } + }, + "south_west": { + "name": "south_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z\"></path>" + } + } + }, + "north_west": { + "name": "north_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z\"></path>" + } + } + }, + "assistant_direction": { + "name": "assistant_direction", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><g><path d=\"M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11S18.1,1,12,1z M12,21c-4.99,0-9-4.01-9-9s4.01-9,9-9s9,4.01,9,9 S16.99,21,12,21z\"></path><path d=\"M19.73,11.42L12.54,4.2c-0.36-0.27-0.8-0.27-1.15,0L4.2,11.42c-0.27,0.36-0.27,0.8,0,1.16l7.19,7.22 c0.36,0.27,0.8,0.27,1.15,0l7.19-7.22C20.09,12.22,20.09,11.69,19.73,11.42z M13.5,14.5l-1.41-1.41L13.17,12H10v3H8v-4 c0-0.6,0.4-1,1-1h4.17l-1.09-1.09L13.5,7.5L17,11L13.5,14.5z\"></path></g></g>" + } + } + }, + "drive_file_rename_outline": { + "name": "drive_file_rename_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"15,16 11,20 21,20 21,16\"></polygon><path d=\"M12.06,7.19L3,16.25V20h3.75l9.06-9.06L12.06,7.19z M5.92,18H5v-0.92l7.06-7.06l0.92,0.92L5.92,18z\"></path><path d=\"M18.71,8.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34C16.17,4.09,15.92,4,15.66,4c-0.25,0-0.51,0.1-0.7,0.29l-1.83,1.83 l3.75,3.75L18.71,8.04z\"></path></g></g>" + } + } + }, + "request_quote": { + "name": "request_quote", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z\"></path></g>" + } + } + }, + "download_for_offline": { + "name": "download_for_offline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M14.59,8.59L16,10l-4,4l-4-4l1.41-1.41L11,10.17V6h2v4.17L14.59,8.59z M17,17H7v-2h10V17z\"></path></g></g>" + } + } + }, + "approval": { + "name": "approval", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M4,16v6h16v-6c0-1.1-0.9-2-2-2H6C4.9,14,4,14.9,4,16z M18,18H6v-2h12V18z M12,2C9.24,2,7,4.24,7,7l5,7l5-7 C17,4.24,14.76,2,12,2z M12,11L9,7c0-1.66,1.34-3,3-3s3,1.34,3,3L12,11z\"></path></g></g>" + } + } + }, + "attachment": { + "name": "attachment", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z\"></path>" + } + } + }, + "file_download_done": { + "name": "file_download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"20.13,5.41 18.72,4 9.53,13.19 5.28,8.95 3.87,10.36 9.53,16.02\"></polygon><rect height=\"2\" width=\"14\" x=\"5\" y=\"18\"></rect></g></g>" + } + } + }, + "folder": { + "name": "folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.17 6l2 2H20v10H4V6h5.17M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z\"></path>" + } + } + }, + "download_done": { + "name": "download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z\"></path>" + } + } + }, + "text_snippet": { + "name": "text_snippet", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3L14.17,3z M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z\"></path></g>" + } + } + }, + "grid_view": { + "name": "grid_view", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M3,3v8h8V3H3z M9,9H5V5h4V9z M3,13v8h8v-8H3z M9,19H5v-4h4V19z M13,3v8h8V3H13z M19,9h-4V5h4V9z M13,13v8h8v-8H13z M19,19h-4v-4h4V19z\"></path></g></g></g>" + } + } + }, + "file_upload": { + "name": "file_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18,15v3H6v-3H4v3c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-3H18z M7,9l1.41,1.41L11,7.83V16h2V7.83l2.59,2.58L17,9l-5-5L7,9z\"></path></g>" + } + } + }, + "create_new_folder": { + "name": "create_new_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z\"></path>" + } + } + }, + "file_download": { + "name": "file_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18,15v3H6v-3H4v3c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-3H18z M17,11l-1.41-1.41L13,12.17V4h-2v8.17L8.41,9.59L7,11l5,5 L17,11z\"></path></g>" + } + } + }, + "topic": { + "name": "topic", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16.77c0.68,0,1.23-0.56,1.23-1.23V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z\"></path></g>" + } + } + }, + "folder_zip": { + "name": "folder_zip", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M16.5,6H10L8,4H3.5C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z M3.5,14.5v-9h3.88l2,2h4.12V9H12v1.5h1.5V12H12v1.5h1.5V12H15v-1.5h-1.5V9H15V7.5h1.5v7H3.5z\"></path></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M16,16h2v-2h-2v-2 h2v-2h-2V8h4v10h-4V16z M16,16h-2v2H4V6h5.17l2,2H14v2h2v2h-2v2h2V16z\"></path></g>" + } + } + }, + "cloud_off": { + "name": "cloud_off", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM4.41 3.86L3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z\"></path>" + } + } + }, + "cloud_sync": { + "name": "cloud_sync", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M18.18,12.25C18.01,10.98,16.92,10,15.6,10c-1.06,0-1.97,0.64-2.35,1.5c-1.24,0-2.25,1.01-2.25,2.25 c0,1.24,1.01,2.25,2.25,2.25h4.88c1.04,0,1.88-0.84,1.88-1.88C20,13.11,19.19,12.28,18.18,12.25z M18.12,14.5h-4.88 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h1.25v-0.4c0-0.61,0.49-1.1,1.1-1.1c0.61,0,1.1,0.49,1.1,1.1v1.15h1.42 c0.21,0,0.38,0.17,0.38,0.38S18.33,14.5,18.12,14.5z M8.5,4.2v1.58c-1.74,0.62-3,2.27-3,4.22c0,1.32,0.59,2.5,1.5,3.32V12h1.5v4 h-4v-1.5h1.55C4.8,13.4,4,11.8,4,10C4,7.21,5.91,4.86,8.5,4.2z M15.92,9l-1.53,0C14.17,8.09,13.68,7.29,13,6.68V8h-1.5V4h4v1.5 h-1.55C14.96,6.39,15.68,7.61,15.92,9z\"></path></g></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21.5,14.98c-0.02,0-0.03,0-0.05,0.01C21.2,13.3,19.76,12,18,12c-1.4,0-2.6,0.83-3.16,2.02C13.26,14.1,12,15.4,12,17 c0,1.66,1.34,3,3,3l6.5-0.02c1.38,0,2.5-1.12,2.5-2.5S22.88,14.98,21.5,14.98z M21.51,18L21.51,18L15,18c-0.55,0-1-0.45-1-1 s0.45-1,1-1h1.25v-0.25c0-0.97,0.78-1.75,1.75-1.75s1.75,0.78,1.75,1.75V17c0,0,1.75,0,1.76,0c0.28,0,0.5,0.22,0.5,0.5 C22,17.77,21.78,18,21.51,18z M10,4.26v2.09C7.67,7.18,6,9.39,6,12c0,1.77,0.78,3.34,2,4.44V14h2v6H4v-2h2.73 C5.06,16.54,4,14.4,4,12C4,8.27,6.55,5.15,10,4.26z M20,6h-2.73c1.43,1.26,2.41,3.01,2.66,5l-2.02,0 C17.68,9.64,16.98,8.45,16,7.56V10h-2V4h6V6z\"></path></g></g>" + } + } + }, + "folder_shared": { + "name": "folder_shared", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 4h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2v1z\"></path>" + } + } + }, + "file_open": { + "name": "file_open", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M14,17.74V13.5h4.24V15h-1.68l2.21,2.21l-1.06,1.06l-2.21-2.21v1.68H14z M12.5,16.5h-7v-13H11V7h3.5v5H16V6l-4-4H5.5 C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h7V16.5z\"></path></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M15,22H6c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2h8l6,6v6h-2V9h-5V4H6v16h9V22z M19,21.66l0-2.24l2.95,2.95l1.41-1.41L20.41,18 h2.24v-2H17v5.66H19z\"></path></g>" + } + } + }, + "cloud_download": { + "name": "cloud_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-5.55-8h-2.9v3H8l4 4 4-4h-2.55z\"></path>" + } + } + }, + "format_overline": { + "name": "format_overline", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M15,3v1.5H5V3H15z M15.5,11.5c0,3.04-2.46,5.5-5.5,5.5s-5.5-2.46-5.5-5.5C4.5,8.46,6.96,6,10,6S15.5,8.46,15.5,11.5z M13.5,11.5C13.5,9.57,11.93,8,10,8s-3.5,1.57-3.5,3.5S8.07,15,10,15S13.5,13.43,13.5,11.5z\"></path></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M19,3v2H5V3H19z M12,7c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C19,10.13,15.87,7,12,7z M12,18.5 c-2.49,0-4.5-2.01-4.5-4.5S9.51,9.5,12,9.5s4.5,2.01,4.5,4.5S14.49,18.5,12,18.5z\"></path></g>" + } + } + }, + "snippet_folder": { + "name": "snippet_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12z M13,9v8l6,0v-5.5L16.5,9H13z\"></path></g>" + } + } + }, + "attach_email": { + "name": "attach_email", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M3,5.18l6,3.75l6-3.75V8h1V4c0-0.55-0.45-1-1-1H3C2.45,3,2,3.45,2,4v10c0,0.55,0.45,1,1,1h9v-1H3V5.18z M15,4L9,7.75L3,4 H15z\"></path><path d=\"M17,11v3.5c0,0.83-0.67,1.5-1.5,1.5S14,15.33,14,14.5v-4c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V14h1v-3.5 C16,9.67,15.33,9,14.5,9S13,9.67,13,10.5v4c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V11H17z\"></path></g></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M3,6l8,5l8-5v3h2V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h10v-2H3V6z M19,4l-8,5L3,4H19z\"></path><path d=\"M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z\"></path></g></g>" + } + } + }, + "folder_off": { + "name": "folder_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16.5,6H10L8,4H6.12l3.5,3.5h6.88v6.88l1.12,1.12C17.85,15.23,18,14.88,18,14.5v-7C18,6.67,17.33,6,16.5,6z\"></path><path d=\"M2.22,2.22L1.16,3.28l1.22,1.22C2.15,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16h10.38l2.84,2.84l1.06-1.06L2.22,2.22z M3.5,14.5V5.62l8.88,8.88H3.5z\"></path></g></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,6h-8l-2-2H7.17l4,4H20v9.17l1.76,1.76C21.91,18.65,22,18.34,22,18V8C22,6.9,21.1,6,20,6z\"></path><path d=\"M2.1,2.1L0.69,3.51l1.56,1.56C2.1,5.35,2.01,5.66,2.01,6L2,18c0,1.1,0.9,2,2,2h13.17l3.31,3.31l1.41-1.41L2.1,2.1z M4,18 V6.83L15.17,18H4z\"></path></g></g>" + } + } + }, + "newspaper": { + "name": "newspaper", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M16.67,4.33L15.33,3L14,4.33L12.67,3l-1.33,1.33L10,3L8.67,4.33L7.33,3L6,4.33L4.67,3L3.33,4.33L2,3v12.5 C2,16.33,2.67,17,3.5,17h13c0.83,0,1.5-0.67,1.5-1.5V3L16.67,4.33z M16.5,9.5h-13v-3h13V9.5z M10.75,11h5.75v1.5h-5.75V11z M3.5,11 h5.75v4.5H3.5V11z M10.75,15.5V14h5.75v1.5H10.75z\"></path></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M22,3l-1.67,1.67L18.67,3L17,4.67L15.33,3l-1.66,1.67L12,3l-1.67,1.67L8.67,3L7,4.67L5.33,3L3.67,4.67L2,3v16 c0,1.1,0.9,2,2,2l16,0c1.1,0,2-0.9,2-2V3z M11,19H4v-6h7V19z M20,19h-7v-2h7V19z M20,15h-7v-2h7V15z M20,11H4V8h16V11z\"></path></g>" + } + } + }, + "difference": { + "name": "difference", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M3.5,17.5H13V19H3.5C2.67,19,2,18.33,2,17.5V6h1.5V17.5z M17,5v9.5c0,0.83-0.67,1.5-1.5,1.5h-9C5.67,16,5,15.33,5,14.5v-12 C5,1.67,5.67,1,6.5,1H13L17,5z M15.5,5.62L12.38,2.5H6.5v12h9V5.62z M11.75,6.5V5h-1.5v1.5h-1.5V8h1.5v1.5h1.5V8h1.5V6.5H11.75z M13.25,11h-4.5v1.5h4.5V11z\"></path></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18,23H4c-1.1,0-2-0.9-2-2V7h2v14h14V23z M14.5,7V5h-2v2h-2v2h2v2h2V9h2V7H14.5z M16.5,13h-6v2h6V13z M15,1H8 C6.9,1,6.01,1.9,6.01,3L6,17c0,1.1,0.89,2,1.99,2H19c1.1,0,2-0.9,2-2V7L15,1z M19,17H8V3h6.17L19,7.83V17z\"></path></g>" + } + } + }, + "downloading": { + "name": "downloading", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M18.32,4.26C16.84,3.05,15.01,2.25,13,2.05v2.02c1.46,0.18,2.79,0.76,3.9,1.62L18.32,4.26z M19.93,11h2.02 c-0.2-2.01-1-3.84-2.21-5.32L18.31,7.1C19.17,8.21,19.75,9.54,19.93,11z M18.31,16.9l1.43,1.43c1.21-1.48,2.01-3.32,2.21-5.32 h-2.02C19.75,14.46,19.17,15.79,18.31,16.9z M13,19.93v2.02c2.01-0.2,3.84-1,5.32-2.21l-1.43-1.43 C15.79,19.17,14.46,19.75,13,19.93z M15.59,10.59L13,13.17V7h-2v6.17l-2.59-2.59L7,12l5,5l5-5L15.59,10.59z M11,19.93v2.02 c-5.05-0.5-9-4.76-9-9.95s3.95-9.45,9-9.95v2.02C7.05,4.56,4,7.92,4,12S7.05,19.44,11,19.93z\"></path></g></g>" + } + } + }, + "cloud_circle": { + "name": "cloud_circle", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.29-9.81c-.4-2.01-2.16-3.52-4.29-3.52-1.69 0-3.15.96-3.88 2.36C6.36 9.21 5 10.7 5 12.5 5 14.43 6.57 16 8.5 16h7.58c1.61 0 2.92-1.31 2.92-2.92 0-1.54-1.2-2.79-2.71-2.89zM16 14H8.5c-.83 0-1.5-.67-1.5-1.5S7.67 11 8.5 11h.9l.49-1.05c.41-.79 1.22-1.28 2.11-1.28 1.13 0 2.11.8 2.33 1.91l.28 1.42H16c.55 0 1 .45 1 1s-.45 1-1 1z\"></path>" + } + } + }, + "workspaces": { + "name": "workspaces", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M5,11c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3C8,12.35,6.65,11,5,11z M5,15.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S5.83,15.5,5,15.5z\"></path><path d=\"M13,6c0-1.65-1.35-3-3-3S7,4.35,7,6c0,1.65,1.35,3,3,3S13,7.65,13,6z M10,7.5C9.17,7.5,8.5,6.83,8.5,6S9.17,4.5,10,4.5 s1.5,0.67,1.5,1.5S10.83,7.5,10,7.5z\"></path><path d=\"M15,11c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3C18,12.35,16.65,11,15,11z M15,15.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S15.83,15.5,15,15.5z\"></path></g></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M6,15c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S4.9,15,6,15 M6,13c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S8.2,13,6,13z M12,5 c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,5,12,5 M12,3C9.8,3,8,4.8,8,7s1.8,4,4,4s4-1.8,4-4S14.2,3,12,3z M18,15 c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S16.9,15,18,15 M18,13c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S20.2,13,18,13z\"></path></g></g>" + } + } + }, + "drive_file_move_rtl": { + "name": "drive_file_move_rtl", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.87,10.25H13v1.5H9.87l1.19,1.19L10,14l-3-3l3-3l1.06,1.06L9.87,10.25z M16.5,6H10L8,4H3.5C2.67,4,2,4.67,2,5.5v9 C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z M16.5,14.5h-13v-9h3.88l2,2h7.12V14.5z\"></path>" + }, + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,6h-8l-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18H4V6h5.17l2,2H20V18z M13.41,15.59L12,17l-4-4l4-4l1.41,1.41L11.83,12H16v2h-4.17L13.41,15.59z\"></path>" + } + } + }, + "download": { + "name": "download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11zm-6 7h14v2H5z\"></path>" + } + } + }, + "upload": { + "name": "upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 16h6v-6h4l-7-7-7 7h4v6zm3-10.17L14.17 8H13v6h-2V8H9.83L12 5.83zM5 18h14v2H5z\"></path>" + } + } + }, + "folder_delete": { + "name": "folder_delete", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M7.38,5.5l2,2h7.12v7h-13v-9H7.38z M3.5,4C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7 C18,6.67,17.33,6,16.5,6H10L8,4H3.5z M14,9V8.5h-1.5V9H11v1h0.5v2.5c0,0.55,0.45,1,1,1H14c0.55,0,1-0.45,1-1V10h0.5V9H14z M14,12.5 h-1.5V10H14V12.5z\"></path></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M16.5,10V9h-2v1H12v1.5h1v4c0,0.83,0.67,1.5,1.5,1.5h2c0.83,0,1.5-0.67,1.5-1.5v-4h1V10H16.5z M16.5,15.5h-2v-4h2V15.5z M20,6h-8l-2-2H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V8C22,6.89,21.11,6,20,6z M20,18H4V6h5.17 l2,2H20V18z\"></path></g>" + } + } + }, + "cloud_done": { + "name": "cloud_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-9-3.82l-2.09-2.09L6.5 13.5 10 17l6.01-6.01-1.41-1.41z\"></path>" + } + } + }, + "cloud_queue": { + "name": "cloud_queue", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z\"></path>" + } + } + }, + "file_download_off": { + "name": "file_download_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10.75,8.63l-1.5-1.5V3h1.5V8.63z M14,9l-1.06-1.06L11.5,9.38l1.06,1.06L14,9z M17.07,17.07L2.93,2.93L1.87,3.99l4.57,4.57 L6,9l4,4l0.44-0.44l1.94,1.94H5.5V13H4v1.5C4,15.33,4.67,16,5.5,16h8.38l2.13,2.13L17.07,17.07z M16,13h-0.88L16,13.88V13z\"></path>" + }, + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M18,15.17V15h2v2.17L18,15.17z M15.41,12.59L17,11l-1.41-1.41L14,11.17L15.41,12.59z M13,10.17V4h-2v4.17L13,10.17z M21.19,21.19l-1.78-1.78L2.81,2.81L1.39,4.22l6.19,6.19L7,11l5,5l0.59-0.59L15.17,18H6v-3H4v3c0,1.1,0.9,2,2,2h11.17l2.61,2.61 L21.19,21.19z\"></path>" + } + } + }, + "cloud": { + "name": "cloud", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6m0-2C9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4z\"></path>" + } + } + }, + "drive_file_move": { + "name": "drive_file_move", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,6h-8l-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18H4V6h5.17l1.41,1.41 L11.17,8H20V18z M12.16,12H8v2h4.16l-1.59,1.59L11.99,17L16,13.01L11.99,9l-1.41,1.41L12.16,12z\"></path></g>" + } + } + }, + "rule_folder": { + "name": "rule_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16 L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z\"></path></g>" + } + } + }, + "folder_open": { + "name": "folder_open", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z\"></path>" + } + } + }, + "cloud_upload": { + "name": "cloud_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z\"></path>" + } + } + }, + "drive_folder_upload": { + "name": "drive_folder_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M9.41,14.42L11,12.84V17h2v-4.16l1.59,1.59L16,13.01L12.01,9L8,13.01L9.41,14.42z\"></path></g>" + } + } + }, + "upload_file": { + "name": "upload_file", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h7v5h5V20z M8,15.01 l1.41,1.41L11,14.84V19h2v-4.16l1.59,1.59L16,15.01L12.01,11L8,15.01z\"></path></g></g>" + } + } + }, + "error_outline": { + "name": "error_outline", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" + } + } + }, + "notification_important": { + "name": "notification_important", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM11 8h2v4h-2zm0 6h2v2h-2z\"></path>" + } + } + }, + "warning_amber": { + "name": "warning_amber", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z\"></path>" + } + } + }, + "warning": { + "name": "warning", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z\"></path>" + } + } + }, + "auto_delete": { + "name": "auto_delete", + "keywords": [ + "alert" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><polygon points=\"13,4 11,4 10,3 6,3 5,4 3,4 3,5 13,5\"></polygon><path d=\"M12.5,8c-0.17,0-0.33,0.03-0.5,0.05V6H4v8c0,0.55,0.45,1,1,1h3.76c0.81,1.21,2.18,2,3.74,2c2.49,0,4.5-2.01,4.5-4.5 S14.99,8,12.5,8z M8.28,14H5V7h6v1.28C9.26,8.9,8,10.54,8,12.5C8,13.03,8.11,13.53,8.28,14z M12.5,16C10.57,16,9,14.43,9,12.5 S10.57,9,12.5,9s3.5,1.57,3.5,3.5S14.43,16,12.5,16z\"></path><polygon points=\"13,12.42 13,10 12,10 12,13 14.6,14.5 15.1,13.63\"></polygon></g></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4\"></polygon><path d=\"M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M9,16c0,0.34,0.03,0.67,0.08,1H4V7h8v3.26C10.19,11.53,9,13.62,9,16z M16,21c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z\"></path><polygon points=\"16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2\"></polygon></g></g>" + } + } + }, + "add_alert": { + "name": "add_alert", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z\"></path>" + } + } + }, + "error": { + "name": "error", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z\"></path>" + } + } + }, + "system_update": { + "name": "system_update", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z\"></path>" + } + } + }, + "tap_and_play": { + "name": "tap_and_play", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z\"></path>" + } + } + }, + "no_encryption": { + "name": "no_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z\"></path>" + } + } + }, + "airline_seat_legroom_normal": { + "name": "airline_seat_legroom_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z\"></path>" + } + } + }, + "bluetooth_audio": { + "name": "bluetooth_audio", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z\"></path>" + } + } + }, + "wifi_off": { + "name": "wifi_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 11l2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zm-2 2c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zM3.41 1.64L2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z\"></path>" + } + } + }, + "sync_disabled": { + "name": "sync_disabled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4L2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z\"></path>" + } + } + }, + "mms": { + "name": "mms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-5.5-8L11 12.51 8.5 9.5 5 14h14z\"></path>" + } + } + }, + "sync_lock": { + "name": "sync_lock", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M16.5,14H16v-1c0-0.82-0.67-1.5-1.5-1.5S13,12.18,13,13v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C17,14.22,16.78,14,16.5,14z M13.75,13c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V13z M8.5,4.2v1.58c-1.74,0.62-3,2.27-3,4.22c0,1.32,0.59,2.5,1.5,3.32V12h1.5v4h-4v-1.5h1.55C4.8,13.4,4,11.8,4,10 C4,7.21,5.91,4.86,8.5,4.2z M14.5,10c-0.08-1.32-0.59-2.5-1.5-3.32V8h-1.5V4h4v1.5h-1.55C15.2,6.6,16,8.2,16,10H14.5z\"></path></g></g>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M10,4.26v2.09C7.67,7.18,6,9.39,6,12c0,1.77,0.78,3.34,2,4.44V14h2v6H4v-2h2.73C5.06,16.54,4,14.4,4,12 C4,8.27,6.55,5.15,10,4.26z M20,4h-6v6h2V7.56c1.22,1.1,2,2.67,2,4.44h2c0-2.4-1.06-4.54-2.73-6H20V4z M20,17v-1c0-1.1-0.9-2-2-2 s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C21,17.45,20.55,17,20,17z M19,17h-2v-1 c0-0.55,0.45-1,1-1s1,0.45,1,1V17z\"></path></g>" + } + } + }, + "do_disturb_alt": { + "name": "do_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z\"></path>" + } + } + }, + "phone_paused": { + "name": "phone_paused", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6.54 5c.06.88.21 1.75.44 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79h1.51m9.86 12.01c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1zM15 3h2v7h-2zm4 0h2v7h-2z\"></path>" + } + } + }, + "wc": { + "name": "wc", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M.01 0h24v24h-24V0z\" fill=\"none\"></path><path d=\"M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z\"></path>" + } + } + }, + "tv_off": { + "name": "tv_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 7v10.88l1.85 1.85c.09-.23.15-.47.15-.73V7c0-1.11-.89-2-2-2h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2H21zm-.54 16l1.26-1.27-1.26 1.26zM2.41 2.13l-.14.14L1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z\"></path>" + } + } + }, + "sync_problem": { + "name": "sync_problem", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z\"></path>" + } + } + }, + "phone_locked": { + "name": "phone_locked", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M16.22,12.2l-2.23-0.49c-0.29-0.06-0.65,0-0.92,0.27l-2.08,2c-2.11-1.15-3.85-2.89-5-5l2.04-2.04 C8.27,6.69,8.37,6.34,8.3,6.01L7.8,3.78C7.7,3.33,7.29,3,6.83,3L4,3C3.41,3,2.96,3.51,3,4.1C3.53,10.95,9.04,16.46,15.9,17 c0.41,0.03,1.1-0.25,1.1-1v-2.82C17,12.71,16.67,12.3,16.22,12.2z M4.55,4.5h1.87l0.35,1.57L5.31,7.52C4.94,6.57,4.68,5.55,4.55,4.5 z M15.5,15.45c-1.05-0.13-2.07-0.39-3.02-0.76l1.46-1.46l1.57,0.35V15.45z M16.5,5H16V4c0-0.82-0.67-1.5-1.5-1.5S13,3.18,13,4v1 h-0.5C12.22,5,12,5.22,12,5.5v3C12,8.78,12.22,9,12.5,9h4C16.78,9,17,8.78,17,8.5v-3C17,5.22,16.78,5,16.5,5z M13.75,4 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5V4z\"></path>" + }, + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,5V4c0-1.1-0.9-2-2-2s-2,0.9-2,2v1h-1v5h6V5H20z M19,5h-2V4c0-0.55,0.45-1,1-1s1,0.45,1,1V5z\"></path><path d=\"M20.2,14.87l-3.67-0.73c-0.5-0.1-0.83,0.2-0.9,0.27l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52 c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3L4,3C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43c0.55,0.03,1.03-0.43,1.03-1v-4.15C21,15.37,20.66,14.96,20.2,14.87 z M5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7,5.27,6.37,5.1,5z M19,18.9c-1.37-0.18-2.7-0.53-4-1.07l1.65-1.63L19,16.67V18.9z\"></path></g></g>" + } + } + }, + "power_off": { + "name": "power_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84L2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z\"></path>" + } + } + }, + "no_encryption_gmailerrorred": { + "name": "no_encryption_gmailerrorred", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z\"></path>" + } + } + }, + "drive_eta": { + "name": "drive_eta", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z\"></path><circle cx=\"7.5\" cy=\"13.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"13.5\" r=\"1.5\"></circle>" + } + } + }, + "folder_special": { + "name": "folder_special", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-6.92-3.96L12.39 17 15 15.47 17.61 17l-.69-2.96 2.3-1.99-3.03-.26L15 9l-1.19 2.79-3.03.26z\"></path>" + } + } + }, + "sim_card_alert": { + "name": "sim_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><g><path d=\"M18,2h-8L4.02,8L4,20c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,20H6V8.83L10.83,4H18V20z\"></path><rect height=\"2\" width=\"2\" x=\"11\" y=\"15\"></rect><rect height=\"5\" width=\"2\" x=\"11\" y=\"8\"></rect></g></g></g></g>" + } + } + }, + "do_not_disturb_on": { + "name": "do_not_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7,11v2h10v-2H7z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z\"></path></g></g>" + } + } + }, + "personal_video": { + "name": "personal_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z\"></path>" + } + } + }, + "running_with_errors": { + "name": "running_with_errors", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,8v7h-1.5V8H18z M16.5,16.5V18H18v-1.5H16.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5 c2.01,0,3.81-0.92,5-2.35l0,2.1c-1.37,1.1-3.11,1.75-5,1.75c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0c2.46,0,4.67,1.11,6.13,2.87L10,11 V3.5z\"></path>" + }, + "24": { + "width": 24, + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,10v8h-2v-8H22z M20,20v2h2v-2H20z M18,17.29C16.53,18.95,14.39,20,12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8v9 l7.55-7.55C17.72,3.34,15.02,2,12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10c2.25,0,4.33-0.74,6-2V17.29z\"></path>" + } + } + }, + "airline_seat_recline_extra": { + "name": "airline_seat_recline_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z\"></path>" + } + } + }, + "airline_seat_flat_angled": { + "name": "airline_seat_flat_angled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 6.5c.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1m6.47 2.11l6.69 2.41c.52.19.93.56 1.15 1.05.22.48.25 1.03.06 1.53l-.01.02-8.59-3.11.7-1.9M10 15.19l4 1.44V17h-4v-1.81M6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5zm5.28 1.55L9.2 11.71l12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15l-8.56-3.09zm-9.09 4.2l-.69 1.89L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86z\"></path>" + } + } + }, + "voice_chat": { + "name": "voice_chat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-6-5.4l3 2.4V7l-3 2.4V7H7v6h7z\"></path>" + } + } + }, + "sms": { + "name": "sms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM7 9h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z\"></path>" + } + } + }, + "event_note": { + "name": "event_note", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm2 4h10v2H7zm0 4h7v2H7z\"></path>" + } + } + }, + "phone_missed": { + "name": "phone_missed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.12-.52-.3-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.08 1.26c-.6-.48-1.22-.9-1.88-1.27v-1.7c1.05.51 2.03 1.15 2.95 1.9l-1.07 1.07zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z\"></path>" + } + } + }, + "do_not_disturb_alt": { + "name": "do_not_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M4,12c0-4.4,3.6-8,8-8c1.8,0,3.5,0.6,4.9,1.7L5.7,16.9 C4.6,15.5,4,13.8,4,12z M12,20c-1.8,0-3.5-0.6-4.9-1.7L18.3,7.1C19.4,8.5,20,10.2,20,12C20,16.4,16.4,20,12,20z\"></path></g></g></g>" + } + } + }, + "more": { + "name": "more", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z\"></path><circle cx=\"9\" cy=\"12\" r=\"1.5\"></circle><circle cx=\"14\" cy=\"12\" r=\"1.5\"></circle><circle cx=\"19\" cy=\"12\" r=\"1.5\"></circle>" + } + } + }, + "sd_card_alert": { + "name": "sd_card_alert", "keywords": [ - "social" + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zm-7-5h2v2h-2zm0-7h2v5h-2z\"></path>" + } + } + }, + "power": { + "name": "power", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16 9v4.66l-3.5 3.51V19h-1v-1.83L8 13.65V9h8m0-6h-2v4h-4V3H8v4h-.01C6.9 6.99 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.51V9c0-1.1-.9-2-2-2V3z\"></path>" + } + } + }, + "phone_callback": { + "name": "phone_callback", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z\"></path>" + } + } + }, + "do_not_disturb": { + "name": "do_not_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-1.85,0.63-3.55,1.69-4.9L16.9,18.31C15.55,19.37,13.85,20,12,20z M18.31,16.9L7.1,5.69C8.45,4.63,10.15,4,12,4 c4.42,0,8,3.58,8,8C20,13.85,19.37,15.55,18.31,16.9z\"></path></g></g></g>" + } + } + }, + "disc_full": { + "name": "disc_full", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 7h2v5h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm10-4h2v2h-2zm-10-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" + } + } + }, + "phone_in_talk": { + "name": "phone_in_talk", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15 12h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm4 0h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm1 3.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51z\"></path>" + } + } + }, + "event_available": { + "name": "event_available", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm5.56 10.46l5.93-5.93-1.06-1.06-4.87 4.87-2.11-2.11-1.06 1.06z\"></path>" + } + } + }, + "live_tv": { + "name": "live_tv", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H3V8h18v12z\"></path>" + } + } + }, + "do_disturb_off": { + "name": "do_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 4c4.41 0 8 3.59 8 8 0 1.41-.37 2.73-1.01 3.88l1.46 1.46C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55l1.46 1.46C9.27 4.37 10.59 4 12 4zm5 7h-2.88l2 2H17zM2.41 2.13L1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM12 20c-4.41 0-8-3.59-8-8 0-1.56.45-3 1.23-4.23L8.46 11H7v2h3.46l5.77 5.77C15 19.55 13.56 20 12 20z\"></path>" + } + } + }, + "ondemand_video": { + "name": "ondemand_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 7v8l7-4zm12-4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z\"></path>" + } + } + }, + "airline_seat_recline_normal": { + "name": "airline_seat_recline_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z\"></path>" + } + } + }, + "network_check": { + "name": "network_check", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z\"></path>" + } + } + }, + "sd_card": { + "name": "sd_card", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z\"></path>" + } + } + }, + "adb": { + "name": "adb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" + } + } + }, + "sms_failed": { + "name": "sms_failed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z\"></path>" + } + } + }, + "airline_seat_individual_suite": { + "name": "airline_seat_individual_suite", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z\"></path>" + } + } + }, + "time_to_leave": { + "name": "time_to_leave", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z\"></path><circle cx=\"7.5\" cy=\"13.5\" r=\"1.5\"></circle><circle cx=\"16.5\" cy=\"13.5\" r=\"1.5\"></circle>" + } + } + }, + "airline_seat_flat": { + "name": "airline_seat_flat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z\"></path>" + } + } + }, + "do_disturb": { + "name": "do_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\"></path>" + } + } + }, + "confirmation_number": { + "name": "confirmation_number", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM11 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z\"></path>" + } + } + }, + "wifi": { + "name": "wifi", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z\"></path>" + } + } + }, + "enhanced_encryption": { + "name": "enhanced_encryption", + "keywords": [ + "notification" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><g><path d=\"M3,14v2h1v-3C3.45,13,3,13.45,3,14z\"></path></g><g><polygon points=\"12.32,13 11.1,10.34 14,4 11.8,4 10,7.94 8.2,4 6,4 8.9,10.34 10,12.74 11.5,16 15,16 15,13\"></polygon></g><g><path d=\"M16,13v3h1v-2C17,13.45,16.55,13,16,13z\"></path></g><g><polygon points=\"7.68,13 5,13 5,16 8.5,16 9.45,13.94 8.35,11.54\"></polygon></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z\"></path><path d=\"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z\"></path><g><path d=\"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z\"></path></g><path d=\"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10zm-5-9h-2v3H8v2h3v3h2v-3h3v-2h-3z\"></path>" } } }, - "sports_kabaddi": { - "name": "sports_kabaddi", + "account_tree": { + "name": "account_tree", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><circle cx=\"13.5\" cy=\"2.5\" r=\"1.5\"></circle><path d=\"M12,10.34c-0.81-0.06-1.53-0.32-2.17-0.78l0,0C9.6,9.4,9.38,9.22,9.17,9.01L7.29,7.12c-0.39-0.39-1.02-0.39-1.41,0 L3.07,9.91c-0.22,0.22-0.32,0.52-0.29,0.82l0.42,3.75l-2.75,2.75l0.71,0.71l3.25-3.25l0.04-2L6,14.03L6,18h1v-4.69l-1.96-2.05 l2.51-2.51l0.9,0.9c1.02,1.02,2.13,1.62,3.56,1.69V10.34z\"></path><path d=\"M9.5,6.99c0.82,0,1.5-0.68,1.5-1.5c0-0.77-0.59-1.38-1.34-1.47C9.61,4.01,9.56,3.99,9.5,3.99C8.68,3.99,8,4.66,8,5.49 C8,5.67,8.05,5.84,8.11,6C8.32,6.57,8.86,6.99,9.5,6.99z\"></path><path d=\"M19,9.53V6.18l-3.85-1.53c-0.18-0.08-0.37-0.11-0.56-0.11c-0.5,0-0.96,0.25-1.23,0.68l-0.82,1.32 C12,7.46,11.11,8.15,10.08,8.47c0.24,0.21,0.48,0.39,0.74,0.53c0.06,0.03,0.15,0.08,0.26,0.15c0.73-0.34,1.38-0.82,1.91-1.42 l0.44-0.51l0.67,3.33L12,12.24V18h1v-4.8l2.59-2.16L17.16,18h1.08L15.87,6.09L18,6.81v2.72H19z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"16.5\" cy=\"2.38\" r=\"2\"></circle><path d=\"M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z\"></path><path d=\"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z\"></path><path d=\"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z\"></path></g></g>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z\"></path>" } } }, - "sports_mma": { - "name": "sports_mma", + "network_locked": { + "name": "network_locked", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14,7c-0.55,0-1,0.45-1,1l-0.01-3c0-0.55-0.45-1-1-1H6C5.45,4,5,4.45,5,5v4.57c0.01,0.07,0.01,0.13,0.02,0.2l0.57,2.83 C5.63,12.83,5.84,13,6.08,13h7.85c0.24,0,0.44-0.17,0.49-0.4l0.57-2.83c0.01-0.07,0.01-0.13,0.02-0.2V8C15,7.45,14.55,7,14,7z M13.97,9.73l-0.37,1.87c-0.05,0.23-0.25,0.4-0.49,0.4H6.9c-0.24,0-0.44-0.17-0.49-0.4L6.03,9.73C6.02,9.62,6.01,9.51,6,9.4V5 h5.99L12,8v1h2C14,9,13.99,9.62,13.97,9.73z\"></path><path d=\"M6,15.5C6,15.78,6.22,16,6.5,16h7c0.28,0,0.5-0.22,0.5-0.5V14H6V15.5z\"></path><g><rect height=\"2\" width=\"4\" x=\"7\" y=\"7\"></rect></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z\"></path><path d=\"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8H17c0.55,0,1.09-0.44,1.2-0.98l0.77-3.83C18.99,11.06,19,10.93,19,10.8V9V8C19,7.45,18.55,7,18,7z M17,10.6c0,0.13-0.64,3.4-0.64,3.4H7.64c0,0-0.64-3.26-0.64-3.4V5h8v5h2V10.6z\"></path><rect height=\"3\" width=\"6\" x=\"8\" y=\"7\"></rect></g></g>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 16v-.5c0-1.38-1.12-2.5-2.5-2.5S17 14.12 17 15.5v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zM18 5.83v5.43c.47-.16.97-.26 1.5-.26.17 0 .33.03.5.05V1L1 20h13v-2H5.83L18 5.83z\"></path>" } } }, - "sports_motorsports": { - "name": "sports_motorsports", + "sync": { + "name": "sync", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M11.16,5C11,5,10.85,5.01,10.69,5.02C3.25,5.6,3,14.07,3,14.07V15c0,0.55,0.45,1,1,1h7.5c3.13,0,5.65-2.62,5.49-5.79 C16.84,7.2,14.14,5,11.16,5z M6.82,7.6L10,8.91c0.51,0.21,0.86,0.64,0.96,1.17c0.11,0.54-0.05,1.07-0.44,1.45 C10.22,11.83,9.82,12,9.39,12H4.32C4.66,10.62,5.37,8.86,6.82,7.6z M14.76,13.6C13.9,14.5,12.74,15,11.5,15H4l0-0.9 c0-0.07,0.02-0.49,0.12-1.1h5.27c0.69,0,1.35-0.27,1.84-0.76c1.32-1.32,0.87-3.55-0.85-4.25L7.77,6.91c0.81-0.47,1.8-0.8,2.99-0.89 C10.9,6.01,11.03,6,11.16,6c2.55,0,4.72,1.91,4.84,4.26C16.06,11.51,15.62,12.7,14.76,13.6z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M21.96,11.22C21.57,7.01,17.76,4,13.56,4c-0.19,0-0.38,0.01-0.57,0.02C2,4.74,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10 C18.67,20,22.41,15.99,21.96,11.22z M5.26,11.56c0.57-1.29,1.28-2.35,2.14-3.19l3.62,1.53c0.6,0.25,0.98,0.83,0.98,1.48 c0,0.89-0.72,1.61-1.61,1.61H4.72C4.87,12.53,5.04,12.05,5.26,11.56z M18.44,16.04C17.3,17.29,15.68,18,14,18H4v-0.8 c0-0.02,0.01-0.92,0.24-2.2h6.15c1.99,0,3.61-1.62,3.61-3.61c0-1.45-0.87-2.76-2.2-3.32L9.3,7.01c1.1-0.57,2.37-0.9,3.82-0.99 C13.27,6,13.42,6,13.56,6c3.31,0,6.13,2.37,6.41,5.41C20.13,13.13,19.59,14.77,18.44,16.04z\"></path></g>" + "path": "<path d=\"M.01 0h24v24h-24V0z\" fill=\"none\"></path><path d=\"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z\"></path>" } } }, - "sports_rugby": { - "name": "sports_rugby", + "priority_high": { + "name": "priority_high", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><path d=\"M15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7c-0.35-0.35-1.34-0.6-2.6-0.6c-1.93,0-4.47,0.6-6.24,2.37 C3.54,9.39,3.81,14.42,4.7,15.3c0.35,0.35,1.34,0.6,2.6,0.6c1.93,0,4.47-0.6,6.24-2.37C16.46,10.61,16.19,5.58,15.3,4.7z M5.55,14.45c0.1-1.05,0.88-3.7,3.04-5.86c2.13-2.13,4.76-2.94,5.86-3.03c-0.1,1.05-0.88,3.7-3.04,5.86 C9.28,13.54,6.66,14.35,5.55,14.45z M7.17,7.17c1.63-1.63,3.86-1.98,5.01-2.06c-1.36,0.52-2.94,1.4-4.3,2.76 c-1.35,1.35-2.24,2.92-2.76,4.28C5.22,10.58,5.75,8.6,7.17,7.17z M12.83,12.83c-1.63,1.63-3.86,1.98-5.01,2.06 c1.36-0.52,2.94-1.4,4.3-2.76c1.35-1.35,2.24-2.92,2.76-4.28C14.78,9.42,14.25,11.4,12.83,12.83z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M5.71,18.29 c0.63-1.89,2.16-4.99,4.87-7.7c2.68-2.68,5.78-4.23,7.7-4.88c-0.63,1.89-2.16,4.99-4.88,7.7C10.74,16.09,7.64,17.64,5.71,18.29z M7.76,7.76c2.64-2.64,6.34-3.12,8.03-3.19c-2.05,0.94-4.46,2.46-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63 C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.34,3.12-8.03,3.19c2.05-0.94,4.46-2.46,6.61-4.61 c2.16-2.16,3.67-4.58,4.62-6.63C19.34,10.67,18.56,13.93,16.24,16.24z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><circle cx=\"12\" cy=\"19\" r=\"2\"></circle><path d=\"M10 3h4v12h-4z\"></path>" } } }, - "sports_soccer": { - "name": "sports_soccer", + "event_busy": { + "name": "event_busy", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10.5,5.45l1.55-1.08 c1.14,0.41,2.11,1.16,2.81,2.12l-0.48,1.67l-0.68,0.23L10.5,6.15V5.45z M13.01,9.13l-1.14,3.37H8.12L6.99,9.13L10,7.02L13.01,9.13 z M7.95,4.37L9.5,5.45v0.7L6.31,8.39L5.63,8.15L5.15,6.49C5.84,5.53,6.82,4.78,7.95,4.37z M6.8,13.55l-1.52,0.13 c-0.79-1-1.26-2.26-1.27-3.63l1.3-0.95L6,9.34l1.19,3.53L6.8,13.55z M11.53,15.8c-0.49,0.13-1,0.2-1.53,0.2s-1.04-0.08-1.53-0.2 l-0.81-1.74l0.32-0.55h4.04l0.32,0.55L11.53,15.8z M14.72,13.69l-1.52-0.13l-0.4-0.68L14,9.34l0.69-0.24l1.3,0.95 C15.98,11.42,15.51,12.68,14.72,13.69z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm3.23 9.41l1.06 1.06 2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44z\"></path>" } } }, - "sports_tennis": { - "name": "sports_tennis", + "phone_bluetooth_speaker": { + "name": "phone_bluetooth_speaker", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M14.09,10.28c2.2-2.2,2.55-5.4,0.8-7.16c-1.76-1.76-4.96-1.4-7.16,0.8C6.4,5.24,5.75,6.93,5.82,8.44l0,0 c-0.04,0.82,0.29,2.73-0.98,4.01L2.28,15L3,15.72l2.56-2.56c1.27-1.27,3.19-0.94,4.01-0.98l0,0 C11.07,12.25,12.76,11.6,14.09,10.28z M7.64,10.36C6.27,9,6.63,6.42,8.43,4.62s4.38-2.16,5.75-0.8c1.36,1.36,1.01,3.94-0.8,5.75 S9,11.73,7.64,10.36z\"></path><path d=\"M16.12,12.88C15.54,12.29,14.77,12,14,12s-1.54,0.29-2.12,0.88c-1.17,1.17-1.17,3.07,0,4.24C12.46,17.71,13.23,18,14,18 s1.54-0.29,2.12-0.88C17.29,15.95,17.29,14.05,16.12,12.88z M15.41,16.41C15.04,16.79,14.53,17,14,17s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C12.96,13.21,13.47,13,14,13s1.04,0.21,1.41,0.59C16.19,14.37,16.19,15.63,15.41,16.41z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z\"></path><path d=\"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21z\"></path>" } } }, - "sports_volleyball": { - "name": "sports_volleyball", + "airline_seat_legroom_reduced": { + "name": "airline_seat_legroom_reduced", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3z M10.5,4.04 c2.66,0.22,4.84,2.17,5.37,4.73L10.5,5.67V4.04z M7,4.81c0.75-0.43,1.6-0.7,2.5-0.78v5.68L7,11.15V4.81z M4.58,12.55 C4.21,11.78,4,10.91,4,10c0-1.77,0.78-3.35,2-4.45v6.18L4.58,12.55z M5.08,13.42L10,10.58l2.5,1.44l-5.48,3.17 C6.25,14.74,5.58,14.15,5.08,13.42z M10,16c-0.65,0-1.28-0.11-1.87-0.3l5.37-3.1l1.42,0.82C13.84,14.98,12.04,16,10,16z M10.5,9.71V6.82l5.5,3.18c0,0.91-0.21,1.77-0.58,2.55L10.5,9.71z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,4.07 c3.07,0.38,5.57,2.52,6.54,5.36L13,5.65V4.07z M8,5.08c1.18-0.69,3.33-1.06,3-1.02v7.35l-3,1.73V5.08z M4.63,15.1 C4.23,14.14,4,13.1,4,12c0-2.02,0.76-3.86,2-5.27v7.58L4.63,15.1z M5.64,16.83L12,13.15l3,1.73l-6.98,4.03 C7.09,18.38,6.28,17.68,5.64,16.83z M10.42,19.84 M12,20c-0.54,0-1.07-0.06-1.58-0.16l6.58-3.8l1.36,0.78 C16.9,18.75,14.6,20,12,20z M13,11.42V7.96l7,4.05c0,1.1-0.23,2.14-0.63,3.09L13,11.42z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z\"></path>" } } }, - "surfing": { - "name": "surfing", + "support_agent": { + "name": "support_agent", "keywords": [ - "social" + "notification" ], "heights": { "20": { "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.5,3.25C15.5,4.22,14.72,5,13.75,5S12,4.22,12,3.25s0.78-1.75,1.75-1.75S15.5,2.28,15.5,3.25z M15,16.5 c-1.52,1.33-3.48,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5c0.86,0,1.71-0.2,2.5-0.6 c1.57,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18l0-1.5h-0.5C16.63,17.5,15.76,17.17,15,16.5z M11.9,7.2 L10,8.48L13,11v3.09c0.5,0.35,0.98,0.71,1.41,1.07c-0.54,0.5-1.2,0.84-1.91,0.84c-1,0-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16 c-0.19,0-0.37-0.02-0.55-0.07C4.71,14.38,3,12.66,3,11.52c0-0.45,0.28-1.02,1.47-1.02c0.68,0,1.56,0.19,2.53,0.51L6.53,8.28 c-0.1-0.57,0.13-1.16,0.63-1.5l1.72-1.16L7.54,5.38l-2.3,1.56L4.4,5.7l2.8-1.9l4.22,0.69c0.36,0.06,0.69,0.23,0.91,0.51l1.38,2.1 c0.64,0.85,1.66,1.4,2.8,1.4V10c-1.64,0-3.09-0.79-4-2L11.9,7.2z M8.4,9.15l0.35,2.55c0.86,0.37,2.18,1.05,2.74,1.42V11.7L8.4,9.15z\"></path>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g><path d=\"M10,6C9.32,6,6.12,6.51,6.01,9.88c1.72-0.4,3.06-1.77,3.4-3.51c0.53,1.15,1.96,2.8,4.43,2.6C13.39,7.26,11.85,6,10,6z\"></path><circle cx=\"7.5\" cy=\"10.75\" r=\".75\"></circle><circle cx=\"12.5\" cy=\"10.75\" r=\".75\"></circle><path d=\"M16,10c0-3.31-2.69-6-6-6s-6,2.69-6,6c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h1v-4c0-2.76,2.24-5,5-5s5,2.24,5,5v5H9v1h6 c0.55,0,1-0.45,1-1v-1c0.55,0,1-0.45,1-1v-2C17,10.45,16.55,10,16,10z\"></path></g></g>" }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,23c-1.03,0-2.06-0.25-3-0.75h0c-1.89,1-4.11,1-6,0c-1.89,1-4.11,1-6,0C5.05,22.75,4.03,23,3,23H2l0-2h1 c1.04,0,2.08-0.35,3-1c1.83,1.3,4.17,1.3,6,0c1.83,1.3,4.17,1.3,6,0c0.91,0.65,1.96,1,3,1h1v2H21z M17,1.5c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S18.1,1.5,17,1.5z M14.43,8.48L12.18,10L16,13v3.84c0.53,0.38,1.03,0.78,1.49,1.17C16.81,18.59,15.94,19,15,19 c-1.2,0-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5c-0.33,0-0.65-0.05-0.96-0.14C5.19,16.9,3,14.72,3,13.28C3,12.25,4.01,12,4.85,12 c0.98,0,2.28,0.31,3.7,0.83l-0.53-3.1C7.91,9.06,8.2,8.35,8.8,7.94l2.15-1.45l-2-0.37L6.13,8.05L5,6.4L8.5,4l5.55,1.03 c0.45,0.09,0.93,0.37,1.22,0.89l0.88,1.55C17.01,8.98,18.64,10,20.5,10v2C17.91,12,15.64,10.58,14.43,8.48z M10.3,11.1l0.44,2.65 c0.92,0.42,2.48,1.27,3.26,1.75V14L10.3,11.1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z\"></path><circle cx=\"9\" cy=\"13\" r=\"1\"></circle><circle cx=\"15\" cy=\"13\" r=\"1\"></circle><path d=\"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z\"></path></g></g>" } } }, - "switch_account": { - "name": "switch_account", + "phone_forwarded": { + "name": "phone_forwarded", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z M14,11c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C11,9.66,12.34,11,14,11z M14,7c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S13.45,7,14,7z M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4 C22,2.9,21.1,2,20,2z M10.69,16c0.95-0.63,2.09-1,3.31-1s2.36,0.37,3.31,1H10.69z M20,15.73C18.53,14.06,16.4,13,14,13 s-4.53,1.06-6,2.73V4h12V15.73z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 11l5-5-5-5v3h-4v4h4z\"></path>" } } }, - "thumb_down_alt": { - "name": "thumb_down_alt", + "do_disturb_on": { + "name": "do_disturb_on", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\" opacity=\".87\"></path><path d=\"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L11.77 14H3v-2l3-7h9v10zm4-12h4v12h-4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z\"></path>" } } }, - "thumb_up_alt": { - "name": "thumb_up_alt", + "do_not_disturb_off": { + "name": "do_not_disturb_off", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\" opacity=\".87\"></path><path d=\"M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4l-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M7.94,5.12C9.14,4.41,10.52,4,12,4c4.41,0,8,3.59,8,8c0,1.48-0.41,2.86-1.12,4.06l1.46,1.46C21.39,15.93,22,14.04,22,12 c0-5.52-4.48-10-10-10C9.96,2,8.07,2.61,6.49,3.66L7.94,5.12z\"></path><path d=\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.41L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06L8.17,11H7v2h3.17l5.88,5.88 C14.86,19.59,13.48,20,12,20z\"></path><polygon points=\"13.83,11 15.83,13 17,13 17,11\"></polygon></g></g>" } } }, - "transgender": { - "name": "transgender", + "directions_off": { + "name": "directions_off", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13.5,1.5V3h1.94l-3.16,3.16C11.62,5.74,10.84,5.5,10,5.5S8.38,5.74,7.72,6.16l-0.6-0.6L8.18,4.5L7.12,3.44L6.06,4.5L4.56,3 H6.5V1.5H2V6h1.5V4.06L5,5.56L3.94,6.62L5,7.68l1.06-1.06l0.56,0.56C6.07,7.89,5.75,8.78,5.75,9.75c0,2.09,1.51,3.83,3.5,4.18v1.57 h-1.5V17h1.5v1.5h1.5V17h1.5v-1.5h-1.5v-1.57c1.99-0.35,3.5-2.09,3.5-4.18c0-0.97-0.32-1.86-0.87-2.57l3.12-3.12V6H18V1.5H13.5z M10,12.5c-1.52,0-2.75-1.23-2.75-2.75C7.25,8.23,8.48,7,10,7s2.75,1.23,2.75,2.75C12.75,11.27,11.52,12.5,10,12.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,8c1.93,0,3.5,1.57,3.5,3.5S13.93,15,12,15s-3.5-1.57-3.5-3.5S10.07,8,12,8z M16.53,8.38l3.97-3.96V7h2V1h-6v2h2.58 l-3.97,3.97C14.23,6.36,13.16,6,12,6c-1.16,0-2.23,0.36-3.11,0.97L8.24,6.32l1.41-1.41L8.24,3.49L6.82,4.9L4.92,3H7.5V1h-6v6h2V4.42 l1.91,1.9L3.99,7.74l1.41,1.41l1.41-1.41l0.65,0.65C6.86,9.27,6.5,10.34,6.5,11.5c0,2.7,1.94,4.94,4.5,5.41L11,19H9v2h2v2h2v-2h2v-2 h-2l0-2.09c2.56-0.47,4.5-2.71,4.5-5.41C17.5,10.34,17.14,9.27,16.53,8.38z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M21.71,11.29l-9-9c-0.39-0.39-1.02-0.39-1.41,0L8.21,5.38l1.41,1.41L12,4.42L19.58,12l-2.38,2.38l1.41,1.41l3.09-3.09 C22.1,12.33,22.1,11.7,21.71,11.29z\"></path><polygon points=\"13,7.5 13,10.17 15.17,12.34 16.5,11\"></polygon><path d=\"M1.39,4.22l3.99,3.99l-3.09,3.09c-0.39,0.39-0.39,1.02,0,1.41l9,9c0.39,0.39,1.02,0.39,1.41,0l3.09-3.09l3.99,3.99 l1.41-1.41L2.81,2.81L1.39,4.22z M8.03,10.85C8.02,10.9,7.99,10.95,7.99,11v4h2v-2.18l4.38,4.38L12,19.58L4.42,12l2.38-2.38 L8.03,10.85z\"></path></g></g>" } } }, - "travel_explore": { - "name": "travel_explore", + "vibration": { + "name": "vibration", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.85,8.5h-1.54c-0.48-2.03-1.93-3.68-3.82-4.48V4.5C12.5,5.33,11.83,6,11,6H9v1c0,0.55-0.45,1-1,1H7v2h1v2H7L3.64,8.64 C3.55,9.08,3.5,9.53,3.5,10c0,3.58,2.92,6.5,6.5,6.5V18c-4.42,0-8-3.58-8-8s3.58-8,8-8C13.91,2,17.15,4.8,17.85,8.5z M18,16.44 l-1.06,1.06l-2.56-2.56c-0.54,0.35-1.19,0.56-1.88,0.56C10.57,15.5,9,13.93,9,12s1.57-3.5,3.5-3.5S16,10.07,16,12 c0,0.69-0.21,1.34-0.56,1.88L18,16.44z M14.5,12c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14.5,13.1,14.5,12z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.3,16.9c0.4-0.7,0.7-1.5,0.7-2.4c0-2.5-2-4.5-4.5-4.5S11,12,11,14.5s2,4.5,4.5,4.5c0.9,0,1.7-0.3,2.4-0.7l3.2,3.2 l1.4-1.4L19.3,16.9z M15.5,17c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5S16.9,17,15.5,17z M12,20v2 C6.48,22,2,17.52,2,12C2,6.48,6.48,2,12,2c4.84,0,8.87,3.44,9.8,8h-2.07c-0.64-2.46-2.4-4.47-4.73-5.41V5c0,1.1-0.9,2-2,2h-2v2 c0,0.55-0.45,1-1,1H8v2h2v3H9l-4.79-4.79C4.08,10.79,4,11.38,4,12C4,16.41,7.59,20,12,20z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z\"></path>" } } }, - "water_drop": { - "name": "water_drop", + "vpn_lock": { + "name": "vpn_lock", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,2c0,0-6.5,5.16-6.5,9.5c0,3.59,2.91,6.5,6.5,6.5s6.5-2.91,6.5-6.5C16.5,7.16,10,2,10,2z M10,16.5c-2.76,0-5-2.24-5-5 c0-2.47,3.1-5.8,5-7.53c1.9,1.73,5,5.05,5,7.53C15,14.26,12.76,16.5,10,16.5z M7.03,11.93c0.24,1.66,1.79,2.77,3.4,2.54 c0.3-0.04,0.57,0.19,0.57,0.49c0,0.28-0.2,0.47-0.42,0.5c-2.23,0.31-4.22-1.23-4.54-3.39C6,11.77,6.23,11.5,6.54,11.5 C6.79,11.5,7,11.68,7.03,11.93z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,2c-5.33,4.55-8,8.48-8,11.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2C20,10.48,17.33,6.55,12,2z M12,20c-3.35,0-6-2.57-6-6.2 c0-2.34,1.95-5.44,6-9.14c4.05,3.7,6,6.79,6,9.14C18,17.43,15.35,20,12,20z M7.83,14c0.37,0,0.67,0.26,0.74,0.62 c0.41,2.22,2.28,2.98,3.64,2.87c0.43-0.02,0.79,0.32,0.79,0.75c0,0.4-0.32,0.73-0.72,0.75c-2.13,0.13-4.62-1.09-5.19-4.12 C7.01,14.42,7.37,14,7.83,14z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M18.92 12c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93zM22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z\"></path>" } } }, - "waving_hand": { - "name": "waving_hand", + "imagesearch_roller": { + "name": "imagesearch_roller", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M6.23,3.87L3.05,7.05c-2.73,2.73-2.73,7.17,0,9.9s7.17,2.73,9.9,0L17.9,12c0.78-0.78,0.78-2.05,0-2.83 c-0.12-0.12-0.26-0.23-0.4-0.31l0.57-0.57c0.78-0.78,0.78-2.05,0-2.83c-0.15-0.15-0.32-0.27-0.5-0.36c0.36-0.75,0.23-1.67-0.39-2.29 c-0.68-0.68-1.72-0.77-2.5-0.27c-0.09-0.16-0.2-0.31-0.33-0.44c-0.78-0.78-2.05-0.78-2.83,0L9.37,4.27 c-0.08-0.14-0.19-0.28-0.31-0.4C8.28,3.09,7.01,3.09,6.23,3.87z M7.29,4.93c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 L5.17,8.46c0.98,0.98,0.98,2.56,0,3.54l1.06,1.06c1.19-1.19,1.47-2.93,0.86-4.39l5.51-5.51c0.2-0.2,0.51-0.2,0.71,0 c0.2,0.2,0.2,0.51,0,0.71L9.41,7.76l1.06,1.06l4.95-4.95c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-4.95,4.95l1.06,1.06 l4.07-4.07c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71L12.24,12l1.06,1.06l2.83-2.83c0.2-0.2,0.51-0.2,0.71,0 c0.2,0.2,0.2,0.51,0,0.71l-4.95,4.95c-2.15,2.15-5.63,2.15-7.78,0s-2.15-5.63,0-7.78L7.29,4.93z M1,6c0-2.76,2.24-5,5-5v1 C3.79,2,2,3.79,2,6H1z M19,14c0,2.76-2.24,5-5,5v-1c2.21,0,4-1.79,4-4H19z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M7.03,4.95L3.49,8.49c-3.32,3.32-3.32,8.7,0,12.02s8.7,3.32,12.02,0l6.01-6.01c0.97-0.97,0.97-2.56,0-3.54 c-0.12-0.12-0.25-0.23-0.39-0.32l0.39-0.39c0.97-0.97,0.97-2.56,0-3.54c-0.16-0.16-0.35-0.3-0.54-0.41c0.4-0.92,0.23-2.02-0.52-2.77 c-0.87-0.87-2.22-0.96-3.2-0.28c-0.1-0.15-0.21-0.29-0.34-0.42c-0.97-0.97-2.56-0.97-3.54,0l-2.51,2.51 c-0.09-0.14-0.2-0.27-0.32-0.39C9.58,3.98,8,3.98,7.03,4.95z M8.44,6.37c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 l-3.18,3.18c1.17,1.17,1.17,3.07,0,4.24l1.41,1.41c1.45-1.45,1.82-3.57,1.12-5.36l6.3-6.3c0.2-0.2,0.51-0.2,0.71,0s0.2,0.51,0,0.71 l-4.6,4.6l1.41,1.41l6.01-6.01c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-6.01,6.01l1.41,1.41l4.95-4.95 c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-5.66,5.66l1.41,1.41l3.54-3.54c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 L14.1,19.1c-2.54,2.54-6.65,2.54-9.19,0s-2.54-6.65,0-9.19L8.44,6.37z M23,17c0,3.31-2.69,6-6,6v-1.5c2.48,0,4.5-2.02,4.5-4.5H23z M1,7c0-3.31,2.69-6,6-6v1.5C4.52,2.5,2.5,4.52,2.5,7H1z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,7V3c0-0.55-0.45-1-1-1H7C6.45,2,6,2.45,6,3v1H4C2.9,4,2,4.9,2,6v4c0,1.1,0.9,2,2,2h8v3h-1c-0.55,0-1,0.45-1,1v6 c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-6c0-0.55-0.45-1-1-1h-1v-3c0-1.1-0.9-2-2-2H4V6h2v1c0,0.55,0.45,1,1,1h12 C19.55,8,20,7.55,20,7z M8,4h10v2H8V4z M14,21h-2v-4h2V21z\"></path></g>" } } }, - "whatshot": { - "name": "whatshot", + "airline_seat_legroom_extra": { + "name": "airline_seat_legroom_extra", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.57 13.16c-1.36.28-2.17 1.16-2.17 2.41 0 1.34 1.11 2.42 2.49 2.42 2.05 0 3.71-1.66 3.71-3.71 0-1.07-.15-2.12-.46-3.12-.79 1.07-2.2 1.72-3.57 2zM13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM12 20c-3.31 0-6-2.69-6-6 0-1.53.3-3.04.86-4.43 1.01 1.01 2.41 1.63 3.97 1.63 2.66 0 4.75-1.83 5.28-4.43C17.34 8.97 18 11.44 18 14c0 3.31-2.69 6-6 6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z\"></path>" } } }, - "check_box": { - "name": "check_box", + "star_border": { + "name": "star_border", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\"></path>" } } }, - "check_box_outline_blank": { - "name": "check_box_outline_blank", + "radio_button_unchecked": { + "name": "radio_button_unchecked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" } } }, - "indeterminate_check_box": { - "name": "indeterminate_check_box", + "star": { + "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 11h10v2H7z\"></path>" + "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z\"></path></g>" } } }, - "radio_button_checked": { - "name": "radio_button_checked", + "check_box_outline_blank": { + "name": "check_box_outline_blank", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path><circle cx=\"12\" cy=\"12\" r=\"5\"></circle>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"></path>" } } }, - "radio_button_unchecked": { - "name": "radio_button_unchecked", + "toggle_on": { + "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\"></path>" } } }, - "star": { - "name": "star", + "indeterminate_check_box": { + "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 11h10v2H7z\"></path>" } } }, - "star_border": { - "name": "star_border", + "star_purple500": { + "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z\"></path>" } } }, - "star_border_purple500": { - "name": "star_border_purple500", + "toggle_off": { + "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\"></path>" } } }, - "star_half": { - "name": "star_half", + "check_box": { + "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z\"></path>" } } }, - "star_outline": { - "name": "star_outline", + "star_border_purple500": { + "name": "star_border_purple500", "keywords": [ "toggle" ], @@ -22799,40 +26071,40 @@ } } }, - "star_purple500": { - "name": "star_purple500", + "star_half": { + "name": "star_half", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\"></path>" } } }, - "toggle_off": { - "name": "toggle_off", + "star_outline": { + "name": "star_outline", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\"></path>" } } }, - "toggle_on": { - "name": "toggle_on", + "radio_button_checked": { + "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path><circle cx=\"12\" cy=\"12\" r=\"5\"></circle>" } } } -} +} \ No newline at end of file diff --git a/sphinx_design/compiled/material_regular.json b/sphinx_design/compiled/material_regular.json index 395336f..b3c9b94 100644 --- a/sphinx_design/compiled/material_regular.json +++ b/sphinx_design/compiled/material_regular.json @@ -1,18061 +1,18629 @@ { - "3d_rotation": { - "name": "3d_rotation", + "view_comfy": { + "name": "view_comfy", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72c.13-.29.2-.61.2-.97 0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46.05-.16.07-.32.07-.48 0-.36-.06-.68-.18-.96-.12-.28-.29-.51-.51-.69-.2-.19-.47-.33-.77-.43C9.1 8.05 8.76 8 8.39 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34c.11-.09.23-.17.38-.22.15-.05.3-.08.48-.08.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49-.05.15-.14.27-.25.37-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09H7.5v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4.07.16.1.35.1.57 0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.43-.18-.92-.27-1.46-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27.45-.18.84-.43 1.16-.76.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57-.18-.47-.43-.87-.75-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.44 4.84 18.29 0 12 0z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 9h4V5H3v4zm0 5h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zM8 9h4V5H8v4zm5-4v4h4V5h-4zm5 9h4v-4h-4v4zM3 19h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zm5 0h4v-4h-4v4zm0-14v4h4V5h-4z\"></path>" } } }, - "accessibility": { - "name": "accessibility", + "crop_din": { + "name": "crop_din", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\"></path>" } } }, - "accessibility_new": { - "name": "accessibility_new", + "brightness_5": { + "name": "brightness_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\"></path>" } } }, - "accessible": { - "name": "accessible", + "broken_image": { + "name": "broken_image", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><circle cx=\"12\" cy=\"4\" r=\"2\"></circle><path d=\"M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M0 0h24v24H0zm0 0h24v24H0zm21 19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2\" fill=\"none\"></path><path d=\"M21 5v6.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2zm-3 6.42l3 3.01V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-6.58l3 2.99 4-4 4 4 4-3.99z\"></path>" } } }, - "accessible_forward": { - "name": "accessible_forward", + "crop_7_5": { + "name": "crop_7_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><circle cx=\"17\" cy=\"4.54\" r=\"2\"></circle><path d=\"M14 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C17.42 8.5 16.44 7 14.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L7.22 10l1.92.53L9.79 9H12l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H17v5h2v-5.5c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z\"></path>" } } }, - "account_balance": { - "name": "account_balance", + "brightness_1": { + "name": "brightness_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"7\" width=\"3\" x=\"4\" y=\"10\"></rect><rect height=\"7\" width=\"3\" x=\"10.5\" y=\"10\"></rect><rect height=\"3\" width=\"20\" x=\"2\" y=\"19\"></rect><rect height=\"7\" width=\"3\" x=\"17\" y=\"10\"></rect><polygon points=\"12,1 2,6 2,8 22,8 22,6\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><circle cx=\"12\" cy=\"12\" r=\"10\"></circle>" } } }, - "account_balance_wallet": { - "name": "account_balance_wallet", + "13mp": { + "name": "13mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21 18v1c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2V5c0-1.1.89-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H12V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z\"></path>" } } }, - "account_box": { - "name": "account_box", + "wb_iridescent": { + "name": "wb_iridescent", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M5 14.5h14v-6H5v6zM11 .55V3.5h2V.55h-2zm8.04 2.5l-1.79 1.79 1.41 1.41 1.8-1.79-1.42-1.41zM13 22.45V19.5h-2v2.95h2zm7.45-3.91l-1.8-1.79-1.41 1.41 1.79 1.8 1.42-1.42zM3.55 4.46l1.79 1.79 1.41-1.41-1.79-1.79-1.41 1.41zm1.41 15.49l1.79-1.8-1.41-1.41-1.79 1.79 1.41 1.42z\"></path>" } } }, - "account_circle": { - "name": "account_circle", + "wb_sunny": { + "name": "wb_sunny", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91l-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z\"></path>" } } }, - "addchart": { - "name": "addchart", + "23mp": { + "name": "23mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3zm-3 14H5V5h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6h-2v6zm-4-6v4h2v-4h-2zm-4 4h2V9h-2v8zm-2 0v-6H7v6h2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm7.5 1.5c0 .55-.45 1-1 1H13V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-2 3.5H17v1.5h-1.5z\"></path>" } } }, - "add_shopping_cart": { - "name": "add_shopping_cart", + "vrpano": { + "name": "vrpano", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0zm18.31 6l-2.76 5z\" fill=\"none\"></path><path d=\"M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-9.83-3.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4h-.01l-1.1 2-2.76 5H8.53l-.13-.27L6.16 6l-.95-2-.94-2H1v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.13 0-.25-.11-.25-.25z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20.69,4.05C18.66,4.73,15.86,5.5,12,5.5c-3.89,0-6.95-0.84-8.69-1.43C2.67,3.85,2,4.33,2,5.02V19 c0,0.68,0.66,1.17,1.31,0.95C5.36,19.26,8.1,18.5,12,18.5c3.87,0,6.66,0.76,8.69,1.45C21.34,20.16,22,19.68,22,19V5 C22,4.32,21.34,3.84,20.69,4.05z M12,15c-2.34,0-4.52,0.15-6.52,0.41l3.69-4.42l2,2.4L14,10l4.51,5.4C16.52,15.15,14.3,15,12,15z\"></path></g>" } } }, - "add_task": { - "name": "add_task", + "bedtime": { + "name": "bedtime", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M10.28,2C5.67,1.85,2,5.53,2,10c0,4.42,3.58,8,8,8c2.97,0,5.55-1.62,6.93-4.02C10.92,13.78,7.26,7.24,10.28,2z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12.34,2.02C6.59,1.82,2,6.42,2,12c0,5.52,4.48,10,10,10c3.71,0,6.93-2.02,8.66-5.02C13.15,16.73,8.57,8.55,12.34,2.02z\"></path></g></g>" } } }, - "add_to_drive": { - "name": "add_to_drive", + "cases": { + "name": "cases", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M13.17,17.5H4.95c-0.54,0-1.03-0.29-1.3-0.75l-1.9-3.31c-0.27-0.46-0.27-1.04,0-1.5L6.8,3.25C7.07,2.78,7.57,2.5,8.1,2.5 h3.8c0.53,0,1.03,0.28,1.3,0.75l3.69,6.34C16.6,9.53,16.3,9.5,16,9.5c-0.29,0-0.58,0.03-0.85,0.08L11.9,4H8.1l-5.05,8.69L4.95,16 h7.02C12.26,16.59,12.66,17.09,13.17,17.5z M19,13.25h-2.25V11h-1.5v2.25H13v1.5h2.25V17h1.5v-2.25H19V13.25z M7.69,12.45L10,8.42 l2.01,3.5c0.25-0.49,0.59-0.92,1-1.28l-2.29-4H9.29l-3.61,6.3l0.57,1h5.25c0.01-0.53,0.1-1.03,0.28-1.5H7.69z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M20,21v-3h3v-2h-3v-3h-2v3h-3v2h3v3H20z M15.03,21.5H5.66c-0.72,0-1.38-0.38-1.73-1L1.57,16.4c-0.36-0.62-0.35-1.38,0.01-2 L7.92,3.49C8.28,2.88,8.94,2.5,9.65,2.5h4.7c0.71,0,1.37,0.38,1.73,0.99l4.48,7.71C20.06,11.07,19.54,11,19,11 c-0.28,0-0.56,0.02-0.84,0.06L14.35,4.5h-4.7L3.31,15.41l2.35,4.09h7.89C13.9,20.27,14.4,20.95,15.03,21.5z M13.34,15 C13.12,15.63,13,16.3,13,17H7.25l-0.73-1.27l4.58-7.98h1.8l2.53,4.42c-0.56,0.42-1.05,0.93-1.44,1.51l-2-3.49L9.25,15H13.34z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M18 6V4l-2-2h-5L9 4v2H5v11s1 2 2 2h13s2-.98 2-2V6h-4zM4 9H2v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H4V9zm7-4c0-.55.53-1 1-1h3c.46 0 1 .54 1 1v1h-5V5zM5 6h17v11c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6z\"></path>" } } }, - "admin_panel_settings": { - "name": "admin_panel_settings", + "euro": { + "name": "euro", "keywords": [ - "action" + "image" ], "heights": { "20": { "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M13,9c0.35,0,0.68,0.06,1,0.14V6.18L9,4L4,6.18v3.27c0,3.03,2.13,5.86,5,6.55c0.35-0.08,0.7-0.2,1.02-0.35 C9.39,14.94,9,14.02,9,13C9,10.79,10.79,9,13,9z\"></path><path d=\"M13,10c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3C16,11.34,14.66,10,13,10z M13,11.03c0.47,0,0.84,0.38,0.84,0.84 c0,0.46-0.38,0.84-0.84,0.84s-0.84-0.38-0.84-0.84C12.16,11.41,12.53,11.03,13,11.03z M13,15.06c-0.7,0-1.31-0.35-1.68-0.87 c0.04-0.54,1.13-0.81,1.68-0.81s1.64,0.27,1.68,0.81C14.31,14.72,13.7,15.06,13,15.06z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\"></rect></g><g><g></rect><path d=\"M12,15c-1.63,0-3.06-0.79-3.98-2H12l1-2H7.1C7.04,10.68,7,10.34,7,10s0.04-0.68,0.1-1H12l1-2H8.02C8.94,5.79,10.37,5,12,5 c1.38,0,2.63,0.56,3.54,1.46l1.41-1.41C15.68,3.78,13.93,3,12,3C9.21,3,6.81,4.64,5.68,7H3L2,9h3.08C5.03,9.33,5,9.66,5,10 s0.03,0.67,0.08,1H3l-1,2h3.68c1.12,2.36,3.53,4,6.32,4c1.93,0,3.68-0.78,4.95-2.05l-1.41-1.41C14.63,14.44,13.38,15,12,15z\"></path></g>" }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M17,11c0.34,0,0.67,0.04,1,0.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55 C11.41,19.47,11,18.28,11,17C11,13.69,13.69,11,17,11z\"></path><path d=\"M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38c0.62,0,1.12,0.51,1.12,1.12 s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75c-0.93,0-1.74-0.46-2.24-1.17 c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z\"></path></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g></rect><path d=\"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z\"></path></g>" } } }, - "ads_click": { - "name": "ads_click", + "straighten": { + "name": "straighten", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.09,18.5l-3.47-3.47L12.5,18L10,10l8,2.5l-2.97,1.11l3.47,3.47L17.09,18.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5 s2.92,6.5,6.5,6.5c0.15,0,0.3-0.01,0.45-0.02l0.46,1.46C10.61,17.98,10.31,18,10,18c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0 c4.42,0,8,3.58,8,8c0,0.31-0.02,0.61-0.05,0.91l-1.46-0.46c0.01-0.15,0.02-0.3,0.02-0.45C16.5,6.42,13.58,3.5,10,3.5 M10,6.5 c-1.93,0-3.5,1.57-3.5,3.5c0,1.76,1.31,3.23,3.01,3.47L10,15c0,0-0.01,0-0.01,0C7.23,15,5,12.76,5,10c0-2.76,2.24-5,5-5l0,0 c2.76,0,5,2.23,5,4.99c0,0,0,0.01,0,0.01l-1.53-0.49C13.23,7.81,11.76,6.5,10,6.5\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M11.71,17.99C8.53,17.84,6,15.22,6,12c0-3.31,2.69-6,6-6c3.22,0,5.84,2.53,5.99,5.71l-2.1-0.63C15.48,9.31,13.89,8,12,8 c-2.21,0-4,1.79-4,4c0,1.89,1.31,3.48,3.08,3.89L11.71,17.99z M22,12c0,0.3-0.01,0.6-0.04,0.9l-1.97-0.59C20,12.21,20,12.1,20,12 c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8c0.1,0,0.21,0,0.31-0.01l0.59,1.97C12.6,21.99,12.3,22,12,22C6.48,22,2,17.52,2,12 C2,6.48,6.48,2,12,2S22,6.48,22,12z M18.23,16.26L22,15l-10-3l3,10l1.26-3.77l4.27,4.27l1.98-1.98L18.23,16.26z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z\"></path>" } } }, - "alarm": { - "name": "alarm", + "panorama_photosphere_select": { + "name": "panorama_photosphere_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22.49 8.51c-.47-.23-.93-.44-1.4-.64C19.52 4.41 16.05 2 12 2S4.47 4.41 2.9 7.88c-.47.2-.93.41-1.4.63-.31.15-.5.48-.5.83v5.32c0 .35.19.68.51.83.47.23.93.44 1.39.64 3.55 7.83 14.65 7.82 18.2 0 .47-.2.93-.41 1.39-.63.31-.17.51-.49.51-.84V9.34c0-.35-.19-.68-.51-.83zM12 3.8c2.6 0 4.91 1.23 6.41 3.12-4.1-1.19-8.48-1.26-12.83.01C7.08 5.03 9.4 3.8 12 3.8zM5.6 17.08c4.19 1.22 8.57 1.23 12.82-.01-1.54 1.97-3.9 3.13-6.41 3.13-2.5 0-4.87-1.15-6.41-3.12z\"></path>" } } }, - "alarm_add": { - "name": "alarm_add", + "leak_remove": { + "name": "leak_remove", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M10 3H8c0 .37-.04.72-.12 1.06l1.59 1.59C9.81 4.84 10 3.94 10 3zM3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.71 0 5.19-.99 7.11-2.62l2.5 2.5C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.69l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21 21 19.73 4.27 3 3 4.27zM14 3h-2c0 1.5-.37 2.91-1.02 4.16l1.46 1.46C13.42 6.98 14 5.06 14 3zm5.94 13.12c.34-.08.69-.12 1.06-.12v-2c-.94 0-1.84.19-2.66.52l1.6 1.6zm-4.56-4.56l1.46 1.46C18.09 12.37 19.5 12 21 12v-2c-2.06 0-3.98.58-5.62 1.56z\"></path>" } } }, - "alarm_off": { - "name": "alarm_off", + "animation": { + "name": "animation", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 6c3.87 0 7 3.13 7 7 0 .84-.16 1.65-.43 2.4l1.52 1.52c.58-1.19.91-2.51.91-3.92 0-4.97-4.03-9-9-9-1.41 0-2.73.33-3.92.91L9.6 6.43C10.35 6.16 11.16 6 12 6zm10-.28l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM2.92 2.29L1.65 3.57 2.98 4.9l-1.11.93 1.42 1.42 1.11-.94.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.02 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.2 2.2 1.27-1.27L3.89 3.27l-.97-.98zm13.55 16.1C15.26 19.39 13.7 20 12 20c-3.87 0-7-3.13-7-7 0-1.7.61-3.26 1.61-4.47l9.86 9.86zM8.02 3.28L6.6 1.86l-.86.71 1.42 1.42.86-.71z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z\"></path><path d=\"M0 0h24v24H0zm0 0h24v24H0z\" fill=\"none\"></path>" } } }, - "alarm_on": { - "name": "alarm_on", + "timer_off": { + "name": "timer_off", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><rect height=\"1.5\" width=\"5\" x=\"7.5\" y=\"1.5\"></rect><path d=\"M10.75,7v1.63l5.5,5.5c0.47-0.94,0.75-2,0.75-3.13c0-1.66-0.58-3.19-1.55-4.39l1.08-1.08l-1.06-1.06l-1.08,1.08 C13.19,4.58,11.66,4,10,4C8.87,4,7.81,4.27,6.87,4.75L9.12,7H10.75z\"></path><path d=\"M1.87,3.99l2.66,2.66C3.57,7.84,3,9.35,3,11c0,3.87,3.13,7,7,7c1.65,0,3.16-0.57,4.35-1.52l1.66,1.66l1.06-1.06L2.93,2.93 L1.87,3.99z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-1.46-5.47L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06-4.93 4.95z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" width=\"6\" x=\"9\" y=\"1\"></rect><path d=\"M13,8v2.17l6.98,6.98C20.63,15.91,21,14.5,21,13c0-2.12-0.74-4.07-1.97-5.61l1.42-1.42c-0.43-0.51-0.9-0.99-1.41-1.41 l-1.42,1.42C16.07,4.74,14.12,4,12,4c-1.5,0-2.91,0.37-4.15,1.02L10.83,8H13z\"></path><path d=\"M2.81,2.81L1.39,4.22l3.4,3.4C3.67,9.12,3,10.98,3,13c0,4.97,4.02,9,9,9c2.02,0,3.88-0.67,5.38-1.79l2.4,2.4l1.41-1.41 L2.81,2.81z\"></path></g></g>" } } }, - "all_inbox": { - "name": "all_inbox", + "currency_pound": { + "name": "currency_pound", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><path d=\"M9.75,4c1.23,0,2.27,0.81,2.62,1.93l1.39-0.59C13.18,3.69,11.6,2.5,9.75,2.5C7.4,2.5,5.5,4.4,5.5,6.75 c0,1.44,0.67,2.33,1.23,3.25L5.5,10v1.5l1.91,0c0.06,0.25,0.09,0.51,0.09,0.8c0,2.2-2,3.2-2,3.2V17H12c1.44,0,2.6-1.01,2.92-2.3 l-1.42-0.6c-0.05,0.78-0.7,1.4-1.5,1.4l-4.18,0C8.47,14.72,9,13.65,9,12.3c0-0.28-0.02-0.55-0.06-0.8l3.06,0V10l-3.55,0 C7.79,8.65,7,8.02,7,6.75C7,5.23,8.23,4,9.75,4z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v3c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M14,21c1.93,0,3.62-1.17,4-3l-1.75-0.88C16,18.21,15.33,19,14,19l-4.9,0c0.83-1,1.5-2.34,1.5-4c0-0.35-0.03-0.69-0.08-1 L14,14v-2l-4.18,0C9,10.42,8,9.6,8,8c0-1.93,1.57-3.5,3.5-3.5c1.5,0,2.79,0.95,3.28,2.28L16.63,6c-0.8-2.05-2.79-3.5-5.13-3.5 C8.46,2.5,6,4.96,6,8c0,1.78,0.79,2.9,1.49,4L6,12v2l2.47,0c0.08,0.31,0.13,0.64,0.13,1c0,2.7-2.6,4-2.6,4v2H14z\"></path></g>" } } }, - "all_out": { - "name": "all_out", + "20mp": { + "name": "20mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M16.21 4.16l4 4v-4zm4 12l-4 4h4zm-12 4l-4-4v4zm-4-12l4-4h-4zm12.95-.95c-2.73-2.73-7.17-2.73-9.9 0s-2.73 7.17 0 9.9 7.17 2.73 9.9 0 2.73-7.16 0-9.9zm-1.1 8.8c-2.13 2.13-5.57 2.13-7.7 0s-2.13-5.57 0-7.7 5.57-2.13 7.7 0 2.13 5.57 0 7.7z\"></path><path d=\"M.21.16h24v24h-24z\" fill=\"none\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M14.5 7H16v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm2-8c0 .55-.45 1-1 1H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm5.5 5H17v1.5h-1.5z\"></path>" } } }, - "analytics": { - "name": "analytics", + "filter_9": { + "name": "filter_9", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-5h2v5zm4 0h-2v-3h2v3zm0-5h-2v-2h2v2zm4 5h-2V7h2v10z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z\"></path>" } } }, - "anchor": { - "name": "anchor", + "brightness_3": { + "name": "brightness_3", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54 0 4.48-2.94 8.27-7 9.54.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z\"></path>" } } }, - "android": { - "name": "android", + "filter_hdr": { + "name": "filter_hdr", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><g><g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g></g></g><g><path d=\"M14.36,8.14l1.57-2.72c0.14-0.24,0.06-0.54-0.18-0.68c-0.24-0.14-0.54-0.06-0.68,0.18l-1.6,2.78C12.4,7.25,11.23,7,10,7 S7.6,7.25,6.54,7.7l-1.6-2.78C4.8,4.68,4.49,4.6,4.25,4.74C4.01,4.87,3.93,5.18,4.07,5.42l1.57,2.72C3.15,9.52,1.39,12.04,1.06,15 h17.88C18.61,12.04,16.85,9.52,14.36,8.14z M6,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,13,6,13z M14,13 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S14.55,13,14,13z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g></g><g><g><path d=\"M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z\"></path>" } } }, - "announcement": { - "name": "announcement", + "14mp": { + "name": "14mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 9h-2V5h2v6zm0 4h-2v-2h2v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm7.5 4.5h-1v1.5H15V10h-3V5.5h1.5v3H15v-3h1.5v3h1V10zm-2 4H17v1.5h-1.5z\"></path>" } } }, - "api": { - "name": "api", + "lens": { + "name": "lens", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z\"></path>" } } }, - "app_blocking": { - "name": "app_blocking", + "auto_fix_high": { + "name": "auto_fix_high", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5zM17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M7.5 5.6L10 7 8.6 4.5 10 2 7.5 3.4 5 2l1.4 2.5L5 7zm12 9.8L17 14l1.4 2.5L17 19l2.5-1.4L22 19l-1.4-2.5L22 14zM22 2l-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29c-.39-.39-1.02-.39-1.41 0L1.29 18.96c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05c.39-.39.39-1.02 0-1.41l-2.33-2.35zm-1.03 5.49l-2.12-2.12 2.44-2.44 2.12 2.12-2.44 2.44z\"></path>" } } }, - "arrow_circle_down": { - "name": "arrow_circle_down", + "10mp": { + "name": "10mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S13.31,16,10,16 M10,17c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7 c-3.87,0-7,3.13-7,7C3,13.87,6.13,17,10,17L10,17z M10.5,10V7h-1v3H7l3,3l3-3H10.5z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13.5 7H15v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z\"></path>" } } }, - "arrow_circle_up": { - "name": "arrow_circle_up", + "iso": { + "name": "iso", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7 c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3L10,3z M9.5,10v3h1v-3H13l-3-3l-3,3H9.5z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0zm0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z\"></path>" } } }, - "arrow_right_alt": { - "name": "arrow_right_alt", + "photo_camera": { + "name": "photo_camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M16.01 11H4v2h12.01v3L20 12l-3.99-4z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><circle cx=\"12\" cy=\"12\" r=\"3.2\"></circle><path d=\"M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\"></path>" } } }, - "article": { - "name": "article", + "motion_photos_on": { + "name": "motion_photos_on", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z M5,10c0-2.76,2.24-5,5-5s5,2.24,5,5 c0,2.76-2.24,5-5,5S5,12.76,5,10z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M6,12 c0-3.31,2.69-6,6-6s6,2.69,6,6s-2.69,6-6,6S6,15.31,6,12z M7,5.5C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z\"></path>" } } }, - "aspect_ratio": { - "name": "aspect_ratio", + "bedtime_off": { + "name": "bedtime_off", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M10.28,2C8.49,1.95,6.85,2.47,5.5,3.38l3.79,3.79C9.04,5.48,9.31,3.68,10.28,2z\"></path><path d=\"M2.93,2.93L1.87,3.99L3.38,5.5C2.51,6.79,2,8.34,2,10c0,4.42,3.58,8,8,8c1.67,0,3.2-0.52,4.48-1.39l1.53,1.53l1.06-1.06 L2.93,2.93z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M21.19,21.19L2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.08,2,9.97,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.62,5.51-1.66 l2.27,2.27L21.19,21.19z\"></path></g><g><path d=\"M12.34,2.02c-2.18-0.07-4.19,0.55-5.85,1.64l4.59,4.59C10.81,6.2,11.18,4.03,12.34,2.02z\"></path></g></g></g>" } } }, - "assessment": { - "name": "assessment", + "image": { + "name": "image", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z\"></path>" } } }, - "assignment": { - "name": "assignment", + "21mp": { + "name": "21mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 9H9v1h3v1.5H7.5V9c0-.55.45-1 1-1h2V7h-3V5.5H11c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm3-3.5h3v6h-1.5V7H14V5.5zm1.5 8.5H17v1.5h-1.5z\"></path>" } } }, - "assignment_ind": { - "name": "assignment_ind", + "assistant_photo": { + "name": "assistant_photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z\"></path>" } } }, - "assignment_late": { - "name": "assignment_late", + "hdr_off": { + "name": "hdr_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 15h-2v-2h2v2zm0-4h-2V8h2v6zm-1-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" + "path": "<path d=\"M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.2.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.9l1.1 1.1h.4zm0-4.5h2v1h-2v-1zm-4.5 0v.4l1.5 1.5v-1.9c0-.8-.7-1.5-1.5-1.5h-1.9l1.5 1.5h.4zm-3.5-1l-7-7-1.1 1L6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.1-1.1-12.1-12z\"></path>" } } }, - "assignment_return": { - "name": "assignment_return", + "3mp": { + "name": "3mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-5-5 5-5v3h4v4z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z\"></path>" } } }, - "assignment_returned": { - "name": "assignment_returned", + "filter_8": { + "name": "filter_8", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 15l-5-5h3V9h4v4h3l-5 5z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z\"></path>" } } }, - "assignment_turned_in": { - "name": "assignment_turned_in", + "filter_center_focus": { + "name": "filter_center_focus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\"></path>" } } }, - "autorenew": { - "name": "autorenew", + "burst_mode": { + "name": "burst_mode", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z\"></path>" } } }, - "backup": { - "name": "backup", + "6mp": { + "name": "6mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11.5 9H13v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm-1-7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H11zm4.5 7H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z\"></path>" } } }, - "backup_table": { - "name": "backup_table", + "adjust": { + "name": "adjust", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><g><path d=\"M16,6v10H6v1h10c0.55,0,1-0.45,1-1V6H16z\"></path></g><g><path d=\"M14,13V4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v9c0,0.55,0.45,1,1,1h9C13.55,14,14,13.55,14,13z M4,4h9v4H4V4z M8,13H4 V9h4V13z M9,9h4v4H9V9z\"></path></g></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z\"></path><path d=\"M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z\"></path>" } } }, - "batch_prediction": { - "name": "batch_prediction", + "hevc": { + "name": "hevc", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M14,7H6C5.45,7,5,7.45,5,8v8c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V8C15,7.45,14.55,7,14,7z M10.75,16h-1.5v-1h1.5V16z M10.75,14c0,0-1.15,0-1.5,0c0-1-1.75-2-1.75-3.5C7.5,9.12,8.62,8,10,8c0,0,0,0,0,0c1.38,0,2.5,1.12,2.5,2.5 C12.5,12,10.75,13,10.75,14z M14,6H6v0c0-0.55,0.45-1,1-1h6C13.55,5,14,5.45,14,6L14,6z M13,4H7v0c0-0.55,0.45-1,1-1h4 C12.55,3,13,3.45,13,4L13,4z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect><path d=\"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z\"></path></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"5.5,11 4.5,11 4.5,9 3,9 3,15 4.5,15 4.5,12.5 5.5,12.5 5.5,15 7,15 7,9 5.5,9\"></polygon><path d=\"M21,11v-1c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-1h-1.5v0.5h-1v-3h1V11H21z\"></path><polygon points=\"14.25,13.5 13.5,9 12,9 13,15 15.5,15 16.5,9 15,9\"></polygon><polygon points=\"8,9 8,15 11.5,15 11.5,13.5 9.5,13.5 9.5,12.5 11.5,12.5 11.5,11 9.5,11 9.5,10.5 11.5,10.5 11.5,9\"></polygon></g></g>" } } }, - "book": { - "name": "book", + "camera_roll": { + "name": "camera_roll", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z\"></path>" } } }, - "bookmark": { - "name": "bookmark", + "switch_video": { + "name": "switch_video", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M18 9.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zm-5 6V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5-3.5 3.5z\"></path>" } } }, - "bookmarks": { - "name": "bookmarks", + "camera": { + "name": "camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 18l2 1V3c0-1.1-.9-2-2-2H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13zM15 5H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M9.4 10.5l4.77-8.26C13.47 2.09 12.75 2 12 2c-2.4 0-4.6.85-6.32 2.25l3.66 6.35.06-.1zM21.54 9c-.92-2.92-3.15-5.26-6-6.34L11.88 9h9.66zm.26 1h-7.49l.29.5 4.76 8.25C21 16.97 22 14.61 22 12c0-.69-.07-1.35-.2-2zM8.54 12l-3.9-6.75C3.01 7.03 2 9.39 2 12c0 .69.07 1.35.2 2h7.49l-1.15-2zm-6.08 3c.92 2.92 3.15 5.26 6 6.34L12.12 15H2.46zm11.27 0l-3.9 6.76c.7.15 1.42.24 2.17.24 2.4 0 4.6-.85 6.32-2.25l-3.66-6.35-.93 1.6z\"></path>" } } }, - "bookmark_add": { - "name": "bookmark_add", + "video_stable": { + "name": "video_stable", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M15.75,4.25v-1.5h-1.5v1.5h-1.5v1.5h1.5v1.5h1.5v-1.5h1.5v-1.5H15.75z M11,5c0,2.21,1.79,4,4,4v8l-5-2l-5,2V4.5 C5,3.67,5.67,3,6.5,3l5.04,0C11.19,3.59,11,4.27,11,5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,7h-2v2h-2V7h-2V5h2V3h2v2h2V7z M19,21l-7-3l-7,3V5c0-1.1,0.9-2,2-2l7,0c-0.63,0.84-1,1.87-1,3c0,2.76,2.24,5,5,5 c0.34,0,0.68-0.03,1-0.1V21z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,18V6h2.95l-2.33,8.73L16.82,18 H4z M20,18h-2.95l2.34-8.73L7.18,6H20V18z\"></path></g></g>" } } }, - "bookmark_added": { - "name": "bookmark_added", + "filter_frames": { + "name": "filter_frames", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19,21l-7-3l-7,3V5c0-1.1,0.9-2,2-2l7,0c-0.63,0.84-1,1.87-1,3c0,2.76,2.24,5,5,5c0.34,0,0.68-0.03,1-0.1V21z M17.83,9 L15,6.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L17.83,9z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM18 8H6v10h12\"></path>" } } }, - "bookmark_border": { - "name": "bookmark_border", + "dirty_lens": { + "name": "dirty_lens", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12.95 19H20V7H4v12h7.24c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33zM20 5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3.17L9 3h6l1.83 2H20zm-1.86 13.01c-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86s-.38.86-.86.86z\"></path>" } } }, - "bookmark_remove": { - "name": "bookmark_remove", + "5mp": { + "name": "5mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M12.75,4.25v1.5h4.5v-1.5H12.75z M11,5c0,2.21,1.79,4,4,4v8l-5-2l-5,2V4.5C5,3.67,5.67,3,6.5,3l5.04,0 C11.19,3.59,11,4.27,11,5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21,7h-6V5h6V7z M19,10.9c-0.32,0.07-0.66,0.1-1,0.1c-2.76,0-5-2.24-5-5c0-1.13,0.37-2.16,1-3L7,3C5.9,3,5,3.9,5,5v16l7-3 l7,3V10.9z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM14.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H10V10h3V9h-3V5.5h4.5V7zm1 7H17v1.5h-1.5z\"></path>" } } }, - "book_online": { - "name": "book_online", + "exposure": { + "name": "exposure", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><g><path d=\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M7,18V6h10v12H7z M16,11V9.14 C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1l0,1.76C8,15.49,8.45,16,9,16h6 c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16z\"></path>" } } }, - "bug_report": { - "name": "bug_report", + "photo_camera_back": { + "name": "photo_camera_back", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5c-.49 0-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3.17L9 3h6l1.83 2H20zm0 14V7H4v12h16zm-6-7l-3 3.72L9 13l-3 4h12l-4-5z\"></path>" } } }, - "build": { - "name": "build", + "transform": { + "name": "transform", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path clip-rule=\"evenodd\" d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z\"></path>" } } }, - "build_circle": { - "name": "build_circle", + "color_lens": { + "name": "color_lens", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3z M12.02,13.5 l-2.26-2.26c-0.84,0.26-1.79,0.08-2.45-0.59C6.54,9.88,6.4,8.73,6.88,7.81l1.63,1.63l1.03-1.03L7.91,6.78 c0.92-0.48,2.07-0.34,2.84,0.43c0.74,0.74,0.9,1.84,0.48,2.74l2.17,2.17L12.02,13.5z\" fill-rule=\"evenodd\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M16.9,15.49l-1.4,1.4c-0.2,0.2-0.51,0.2-0.71,0l-3.41-3.41c-1.22,0.43-2.64,0.17-3.62-0.81 c-1.11-1.11-1.3-2.79-0.59-4.1l2.35,2.35l1.41-1.41L8.58,7.17c1.32-0.71,2.99-0.52,4.1,0.59c0.98,0.98,1.24,2.4,0.81,3.62 l3.41,3.41C17.09,14.98,17.09,15.3,16.9,15.49z\" fill-rule=\"evenodd\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\"></path>" } } }, - "cached": { - "name": "cached", + "16mp": { + "name": "16mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 8l-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13.5 9H15v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm3 6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H13zm2.5 2.5H17v1.5h-1.5z\"></path>" } } }, - "calendar_today": { - "name": "calendar_today", + "currency_lira": { + "name": "currency_lira", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><path d=\"M8,7.32L5.5,8.89v1.77L8,9.09v1.77l-2.5,1.57v1.77L8,12.63V17h1.5c3.04,0,5.5-2.46,5.5-5.5h-1.5c0,2.21-1.79,4-4,4v-3.81 l3-1.88V8.04l-3,1.88V8.15l3-1.88V4.5l-3,1.88V3H8V7.32z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M9,8.76V3h2v4.51L15,5v2.36l-4,2.51l0.01,2.35L15,9.72v2.36l-4,2.51V19c2.76,0,5-2.24,5-5h2c0,3.87-3.13,7-7,7H9v-5.16 l-3,1.88l0-2.36l3-1.88v-2.36L6,13l0-2.36L9,8.76z\"></path></g>" } } }, - "calendar_view_day": { - "name": "calendar_view_day", + "crop_16_9": { + "name": "crop_16_9", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 17h18v2H3zm0-7h18v5H3zm0-4h18v2H3z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z\"></path>" } } }, - "calendar_view_month": { - "name": "calendar_view_month", + "crop_original": { + "name": "crop_original", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M8,11H4V6h4V11z M14,11h-4V6h4V11z M20,11h-4V6h4V11z M8,18H4v-5h4V18z M14,18h-4v-5h4V18z M20,18h-4v-5h4V18z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z\"></path>" } } }, - "calendar_view_week": { - "name": "calendar_view_week", + "filter_4": { + "name": "filter_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><path d=\"M0,0h24v24H0V0z\" fill=\"none\"></path></g><g><path d=\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M13,6h2.5v12H13V6z M11,18H8.5V6H11 V18z M4,6h2.5v12H4V6z M20,18h-2.5V6H20V18z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\"></path>" } } }, - "camera_enhance": { - "name": "camera_enhance", + "filter_vintage": { + "name": "filter_vintage", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9 3L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.17L15 3H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\"></path><path d=\"M12 17l1.25-2.75L16 13l-2.75-1.25L12 9l-1.25 2.75L8 13l2.75 1.25z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-1.79-1.03-4.07-1.11-6 0-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-1.92-1.11-4.2-1.03-6 0 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19 1.79 1.03 4.07 1.11 6 0 .28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54 1.92 1.11 4.2 1.03 6 0-.01-2.07-1.08-4.08-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\"></path>" } } }, - "cancel_schedule_send": { - "name": "cancel_schedule_send", + "nature_people": { + "name": "nature_people", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\" x=\"0\" y=\"0\"></rect><g><path d=\"M2,12.31l6.91-1.48c-0.38,0.6-0.65,1.27-0.79,1.99l-0.51,0.2L2,15.47V12.31z M2,7.69V4.53l9.35,4.09 c-0.44,0.22-0.86,0.49-1.23,0.81L2,7.69z\"></path><path d=\"M3,6.06l3.7,1.62L3,6.88V6.06 M6.7,12.32L3,13.94v-0.83L6.7,12.32 M1,3v5.5L8,10l-7,1.5V17l7-3.06c0,0.02,0,0.04,0,0.06 c0,3.31,2.69,6,6,6s6-2.69,6-6s-2.69-6-6-6c-0.43,0-0.85,0.05-1.26,0.14L1,3L1,3z M14,19c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5 S16.76,19,14,19L14,19z\"></path></g><polygon points=\"15.41,11.88 14,13.29 12.59,11.88 11.88,12.59 13.29,14 11.88,15.41 12.59,16.12 14,14.71 15.41,16.12 16.12,15.41 14.71,14 16.12,12.59\"></polygon>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l9,2l-9,2l0.01,7l8.07-3.46C9.59,21.19,12.71,24,16.5,24 c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5S19.53,22,16.5,22 z\"></path><polygon points=\"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73\"></polygon></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zM4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z\"></path>" } } }, - "card_giftcard": { - "name": "card_giftcard", + "navigate_before": { + "name": "navigate_before", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z\"></path>" } } }, - "card_membership": { - "name": "card_membership", + "add_photo_alternate": { + "name": "add_photo_alternate", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8h-3zM5 19l3-4 2 3 3-4 4 5H5z\"></path>" } } }, - "card_travel": { - "name": "card_travel", + "12mp": { + "name": "12mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM15.5 9h-2v1h3v1.5H12V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm0 5H17v1.5h-1.5z\"></path>" } } }, - "change_history": { - "name": "change_history", + "filter_drama": { + "name": "filter_drama", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z\"></path>" } } }, - "check_circle": { - "name": "check_circle", + "brightness_2": { + "name": "brightness_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z\"></path>" } } }, - "check_circle_outline": { - "name": "check_circle_outline", + "video_camera_back": { + "name": "video_camera_back", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M16.59 7.58L10 14.17l-3.59-3.58L5 12l5 5 8-8zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M5,16 l2.38-3.17L9,15l2.62-3.5L15,16H5z\"></path></g>" } } }, - "chrome_reader_mode": { - "name": "chrome_reader_mode", + "add_a_photo": { + "name": "add_a_photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M-74 29h48v48h-48V29zM0 0h24v24H0V0zm0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M13 12h7v1.5h-7zm0-2.5h7V11h-7zm0 5h7V16h-7zM21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15h-9V6h9v13z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,4V1h2v3h3v2H5v3H3V6H0V4H3z M6,10V7h3V4h7l1.83,2H21c1.1,0,2,0.9,2,2v12c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V10H6z M13,19c2.76,0,5-2.24,5-5s-2.24-5-5-5s-5,2.24-5,5S10.24,19,13,19z M9.8,14c0,1.77,1.43,3.2,3.2,3.2s3.2-1.43,3.2-3.2 s-1.43-3.2-3.2-3.2S9.8,12.23,9.8,14z\"></path>" } } }, - "circle_notifications": { - "name": "circle_notifications", + "nature": { + "name": "nature", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm5-2.5H7v-1l1-1v-2.61C8 9.27 9.03 7.47 11 7v-.5c0-.57.43-1 1-1s1 .43 1 1V7c1.97.47 3 2.28 3 4.39V14l1 1v1z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M13 16.12c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88z\"></path>" } } }, - "class": { - "name": "class", + "image_not_supported": { + "name": "image_not_supported", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\" y=\"0\"></rect><g><path d=\"M5.41,4H15c0.55,0,1,0.45,1,1v9.59L5.41,4z M16.36,17.78L14.59,16H5c-0.55,0-1-0.45-1-1V5.41L2.22,3.64l0.71-0.71 l14.14,14.14L16.36,17.78z M12.59,14l-2.18-2.18l-1.05,1.32L8,11.33L6,14H12.59z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.9,21.9l-8.49-8.49l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31L21.9,21.9z M5,18 l3.5-4.5l2.5,3.01L12.17,15l3,3H5z M21,18.17L5.83,3H19c1.1,0,2,0.9,2,2V18.17z\"></path></g>" } } }, - "close_fullscreen": { - "name": "close_fullscreen", + "currency_franc": { + "name": "currency_franc", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><polygon points=\"14.5,4.5 14.5,3 6,3 6,13 4.5,13 4.5,14.5 6,14.5 6,17 7.5,17 7.5,14.5 11,14.5 11,13 7.5,13 7.5,10.5 14,10.5 14,9 7.5,9 7.5,4.5\"></polygon></g>" + }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><polygon points=\"18,5 18,3 7,3 7,16 5,16 5,18 7,18 7,21 9,21 9,18 13,18 13,16 9,16 9,13 17,13 17,11 9,11 9,5\"></polygon></g>" } } }, - "code": { - "name": "code", + "tune": { + "name": "tune", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z\"></path>" } } }, - "code_off": { - "name": "code_off", + "face_retouching_off": { + "name": "face_retouching_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,10l-2.94,2.94L14,11.88L15.88,10l-3.94-3.94L13,5L18,10z M16.01,18.13l1.06-1.06L2.93,2.93L1.87,3.99l3.07,3.07L2,10 l5,5l1.06-1.06L4.12,10L6,8.12L16.01,18.13z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M19.17,12l-4.58-4.59L16,6l6,6l-3.59,3.59L17,14.17L19.17,12z M1.39,4.22l4.19,4.19L2,12l6,6l1.41-1.41L4.83,12L7,9.83 l12.78,12.78l1.41-1.41L2.81,2.81L1.39,4.22z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><circle cx=\"9\" cy=\"13\" r=\"1.25\"></circle><path d=\"M17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12c0,1.22-0.28,2.37-0.77,3.4l1.49,1.49 C21.53,15.44,22,13.78,22,12c0-5.52-4.48-10-10-10c-1.78,0-3.44,0.47-4.89,1.28l5.33,5.33C13.93,9.49,15.65,10,17.5,10z\"></path><path d=\"M1.89,3.72l2.19,2.19C2.78,7.6,2,9.71,2,12c0,5.52,4.48,10,10,10c2.29,0,4.4-0.78,6.09-2.08l2.19,2.19l1.41-1.41 L3.31,2.31L1.89,3.72z M16.66,18.49C15.35,19.44,13.74,20,12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14 c1.39-0.52,2.63-1.35,3.64-2.39L16.66,18.49z\"></path></g></g>" } } }, - "comment_bank": { - "name": "comment_bank", + "crop_3_2": { + "name": "crop_3_2", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><path d=\"M16,3H4C3.45,3,3,3.45,3,4v13l3-3h10c0.55,0,1-0.45,1-1V4C17,3.45,16.55,3,16,3z M15,11l-2-1.31L11,11V5h4V11z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M19,13l-2.5-1.5L14,13V5h5V13z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z\"></path>" } } }, - "commute": { - "name": "commute", + "mic_external_on": { + "name": "mic_external_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2.03L9 18v-5H4V5.98L13 6v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 13.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M9.22 7H4.78C4.3 6.47 4 5.77 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .77-.3 1.47-.78 2zM16 2c2.21 0 4 1.79 4 4v16h-2V6c0-1.1-.9-2-2-2s-2 .9-2 2v12c0 2.21-1.79 4-4 4s-4-1.79-4-4H5L4 8h6L9 18H8c0 1.1.9 2 2 2s2-.9 2-2V6c0-2.21 1.79-4 4-4z\"></path>" } } }, - "compare_arrows": { - "name": "compare_arrows", + "panorama_photosphere": { + "name": "panorama_photosphere", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><g><path d=\"M9.01,14H2v2h7.01v3L13,15l-3.99-4V14z M14.99,13v-3H22V8h-7.01V5L11,9L14.99,13z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21.4 11.32v2.93c-.1.05-2.17.85-3.33 1.17-.94.26-3.84.73-6.07.73-3.7 0-7-.7-9.16-1.8-.08-.04-.16-.06-.24-.1V9.76c6.02-2.84 12.6-2.92 18.8 0v1.56zm-9.39 8.88c-2.5 0-4.87-1.15-6.41-3.12 4.19 1.22 8.57 1.23 12.82-.01-1.54 1.97-3.9 3.13-6.41 3.13zM12 3.8c2.6 0 4.91 1.23 6.41 3.12-4.1-1.19-8.48-1.26-12.83.01C7.08 5.03 9.4 3.8 12 3.8zm10.49 4.71c-.47-.23-.93-.44-1.4-.64C19.52 4.41 16.05 2 12 2S4.47 4.41 2.9 7.88c-.47.2-.93.41-1.4.63-.31.15-.5.48-.5.83v5.32c0 .35.19.68.51.83.47.23.93.44 1.39.64 3.55 7.83 14.65 7.82 18.2 0 .47-.2.93-.41 1.39-.63.31-.17.51-.49.51-.84V9.34c0-.35-.19-.68-.51-.83z\"></path>" } } }, - "compress": { - "name": "compress", + "currency_ruble": { + "name": "currency_ruble", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><path d=\"M11.25,3H6v7H4.5v1.5H6V13H4.5v1.5H6V17h1.5v-2.5H11V13H7.5v-1.5h3.75c2.35,0,4.25-1.9,4.25-4.25C15.5,4.9,13.6,3,11.25,3z M11.25,10H7.5V4.5h3.75C12.77,4.5,14,5.73,14,7.25S12.77,10,11.25,10z\"></path></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M8 19h3v3h2v-3h3l-4-4-4 4zm8-15h-3V1h-2v3H8l4 4 4-4zM4 9v2h16V9H4z\"></path><path d=\"M4 12h16v2H4z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M13.5,3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04,0,5.5-2.46,5.5-5.5C19,5.46,16.54,3,13.5,3z M13.5,12H9V5h4.5 C15.43,5,17,6.57,17,8.5S15.43,12,13.5,12z\"></path></g>" } } }, - "contactless": { - "name": "contactless", + "mp": { + "name": "mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><path d=\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M7.63,11.71l-0.91-0.41 C6.91,10.86,7.01,10.42,7,9.98C6.99,9.53,6.9,9.11,6.72,8.71l0.91-0.42C7.87,8.82,7.99,9.38,8,9.97 C8.01,10.56,7.88,11.14,7.63,11.71z M9.82,12.79L8.95,12.3c0.37-0.65,0.55-1.39,0.55-2.22c0-0.84-0.19-1.64-0.57-2.39l0.89-0.45 c0.45,0.89,0.67,1.85,0.67,2.84C10.5,11.08,10.27,12,9.82,12.79z M12.07,13.72l-0.9-0.44c0.55-1.13,0.83-2.24,0.83-3.3 c0-1.06-0.28-2.16-0.83-3.26l0.9-0.44C12.69,7.52,13,8.77,13,9.99C13,11.2,12.69,12.46,12.07,13.72z\"></path></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M8.46,14.45L7.1,13.83 c0.28-0.61,0.41-1.24,0.4-1.86c-0.01-0.63-0.14-1.24-0.4-1.8l1.36-0.63c0.35,0.75,0.53,1.56,0.54,2.4 C9.01,12.8,8.83,13.64,8.46,14.45z M11.53,16.01l-1.3-0.74c0.52-0.92,0.78-1.98,0.78-3.15c0-1.19-0.27-2.33-0.8-3.4l1.34-0.67 c0.64,1.28,0.96,2.65,0.96,4.07C12.51,13.55,12.18,14.86,11.53,16.01z M14.67,17.33l-1.35-0.66c0.78-1.6,1.18-3.18,1.18-4.69 c0-1.51-0.4-3.07-1.18-4.64l1.34-0.67C15.56,8.45,16,10.23,16,11.98C16,13.72,15.56,15.52,14.67,17.33z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9H11c.55 0 1 .45 1 1v5h-1.5v-4.5h-1v3H8v-3H7V15H5.5v-5c0-.55.45-1 1-1zm9 6H14V9h3.5c.55 0 1 .45 1 1v2.5c0 .55-.45 1-1 1h-2V15zm0-3H17v-1.5h-1.5V12z\"></path>" } } }, - "contact_page": { - "name": "contact_page", + "auto_awesome_mosaic": { + "name": "auto_awesome_mosaic", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M12,10c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2 C10,10.9,10.9,10,12,10z M16,18H8v-0.57c0-0.81,0.48-1.53,1.22-1.85C10.07,15.21,11.01,15,12,15c0.99,0,1.93,0.21,2.78,0.58 C15.52,15.9,16,16.62,16,17.43V18z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 5v14c0 1.1.89 2 2 2h6V3H5c-1.11 0-2 .9-2 2zm16-2h-6v8h8V5c0-1.1-.9-2-2-2zm-6 18h6c1.1 0 2-.9 2-2v-6h-8v8z\"></path>" } } }, - "contact_support": { - "name": "contact_support", + "raw_off": { + "name": "raw_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><polygon points=\"17.15,14.32 17.74,11.96 18.5,15 19.98,15 21.48,9 19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 14.72,11.9\"></polygon><path d=\"M1.39,4.22L6.17,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-0.67l1.43,1.43L8.75,15h1.5l0.38-1.5h0.04 l9.11,9.11l1.41-1.41L2.81,2.81L1.39,4.22z M6.5,11.5h-2v-1h2V11.5z\"></path></g></g>" } } }, - "copyright": { - "name": "copyright", + "portrait": { + "name": "portrait", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\" x=\"0\"></rect></g><g><g><g><path d=\"M11.88,9.14c1.28,0.06,1.61,1.15,1.63,1.66h1.79c-0.08-1.98-1.49-3.19-3.45-3.19C9.64,7.61,8,9,8,12.14 c0,1.94,0.93,4.24,3.84,4.24c2.22,0,3.41-1.65,3.44-2.95h-1.79c-0.03,0.59-0.45,1.38-1.63,1.44C10.55,14.83,10,13.81,10,12.14 C10,9.25,11.28,9.16,11.88,9.14z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z\"></path></g></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\"></path>" } } }, - "credit_card": { - "name": "credit_card", + "photo_size_select_small": { + "name": "photo_size_select_small", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0zm24 24H0V0h24v24z\" fill=\"none\"></path><path d=\"M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z\"></path>" } } }, - "credit_card_off": { - "name": "credit_card_off", + "auto_fix_off": { + "name": "auto_fix_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9c0,0.38-0.15,0.73-0.38,1l-5.5-5.5h4.38V7H9.12L6.12,4z M16.72,18.84L13.88,16H3.5 C2.67,16,2,15.33,2,14.5v-9c0-0.38,0.15-0.73,0.38-1L1.16,3.28l1.06-1.06l15.56,15.56L16.72,18.84z M7.88,10l-3-3H3.5v3H7.88z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.9,21.9L2.1,2.1L0.69,3.51l1.55,1.55C2.09,5.34,2.01,5.66,2.01,6L2,18c0,1.11,0.89,2,2,2h13.17l3.31,3.31L21.9,21.9z M4,12V8h1.17l4,4H4z M6.83,4H20c1.11,0,2,0.89,2,2v12c0,0.34-0.08,0.66-0.23,0.94L14.83,12H20V8h-9.17L6.83,4z\"></path>" + "path": "<path d=\"M0 0h24v24H0zm0 0h24v24H0z\" fill=\"none\"></path><path d=\"M23 1l-2.5 1.4L18 1l1.4 2.5L18 6l2.5-1.4L23 6l-1.4-2.5L23 1zm-8.34 6.22l2.12 2.12-2.44 2.44.81.81 2.55-2.55c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0L11.4 8.84l.81.81 2.45-2.43zm-.78 6.65l-3.75-3.75-6.86-6.86L2 4.53l6.86 6.86-6.57 6.57c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0l6.57-6.57L19.47 22l1.27-1.27-6.86-6.86z\"></path>" } } }, - "dangerous": { - "name": "dangerous", + "22mp": { + "name": "22mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<path d=\"M0 0h20v20H0z\" fill=\"none\"></path><path d=\"M13.3 2L18 6.7v6.6L13.3 18H6.7L2 13.3V6.7L6.7 2h6.6zm.7 5l-1-1-3 3-3-3-1 1 3 3-3 3 1 1 3-3 3 3 1-1-3-3 3-3z\"></path>" - }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM17 15.74L15.74 17 12 13.26 8.26 17 7 15.74 10.74 12 7 8.26 8.26 7 12 10.74 15.74 7 17 8.26 13.26 12 17 15.74z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm6.5 0h-2v1h3v1.5H13V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm-1 5H17v1.5h-1.5z\"></path>" } } }, - "dashboard": { - "name": "dashboard", + "blur_off": { + "name": "blur_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-.2 4.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm11 7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8 8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-4 13.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM2.5 5.27l3.78 3.78L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78L20 20.23 3.77 4 2.5 5.27zM10 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm11-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\"></path>" } } }, - "dashboard_customize": { - "name": "dashboard_customize", + "looks_6": { + "name": "looks_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3 3h8v8H3zm10 0h8v8h-8zM3 13h8v8H3zm15 0h-2v3h-3v2h3v3h2v-3h3v-2h-3z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M11 15h2v-2h-2v2zm8-12H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.11.9-2 2-2h4v2z\"></path>" } } }, - "data_exploration": { - "name": "data_exploration", + "tag_faces": { + "name": "tag_faces", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M10,2c-4.42,0-8,3.58-8,8c0,1.17,0.25,2.29,0.71,3.29L7,9l2.49,2.44l2.94-2.94H11V7h4v4h-1.5V9.55l-4,4l-2.49-2.44 l-3.53,3.53C4.93,16.67,7.31,18,10,18l0,0h6.5c0.83,0,1.5-0.67,1.5-1.5V10C18,5.58,14.42,2,10,2z M16,16.75 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75C16.75,16.41,16.41,16.75,16,16.75z\"></path>" - }, "24": { "width": 24, - "path": "<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>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\"></path>" } } }, - "date_range": { - "name": "date_range", + "looks": { + "name": "looks", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z\"></path>" } } }, - "delete": { - "name": "delete", + "motion_photos_auto": { + "name": "motion_photos_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99z M12,18 c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M11.29,7.5h1.43l3.01,8h-1.39l-0.72-2.04h-3.23L9.66,15.5H8.28 L11.29,7.5z\"></path>" } } }, - "delete_forever": { - "name": "delete_forever", + "details": { + "name": "details", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2.46-7.12l1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z\"></path>" } } }, - "delete_outline": { - "name": "delete_outline", + "filter_3": { + "name": "filter_3", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z\"></path>" } } }, - "description": { - "name": "description", + "auto_awesome": { + "name": "auto_awesome", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M19 9l1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25L19 9zm-7.5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zM19 15l-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25L19 15z\"></path>" } } }, - "disabled_by_default": { - "name": "disabled_by_default", + "auto_fix_normal": { + "name": "auto_fix_normal", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7L17,8.41L13.41,12 L17,15.59z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M22 2l-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29c-.39-.39-1.02-.39-1.41 0L1.29 18.96c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05c.39-.39.39-1.02 0-1.41l-2.33-2.35zm-1.03 5.49l-2.12-2.12 2.44-2.44 2.12 2.12-2.44 2.44z\"></path>" } } }, - "disabled_visible": { - "name": "disabled_visible", + "gradient": { + "name": "gradient", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M17.99,10.38C18,10.26,18,10.13,18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,4.24,3.3,7.71,7.47,7.98 c-0.73-0.53-1.35-1.18-1.83-1.93C5.22,15.11,3.5,12.75,3.5,10c0-1.52,0.53-2.92,1.41-4.03l4.85,4.85c0.43-0.29,0.9-0.53,1.39-0.73 L5.97,4.91C7.08,4.03,8.48,3.5,10,3.5c3.51,0,6.39,2.81,6.5,6.3C17.02,9.95,17.52,10.14,17.99,10.38z M15.5,14.5 c0,0.69-0.56,1.25-1.25,1.25S13,15.19,13,14.5s0.56-1.25,1.25-1.25S15.5,13.81,15.5,14.5z M14.25,11c-2.61,0-4.85,1.45-5.75,3.5 c0.9,2.05,3.14,3.5,5.75,3.5s4.85-1.45,5.75-3.5C19.1,12.45,16.86,11,14.25,11z M14.25,16.5c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S15.35,16.5,14.25,16.5z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M21.99,12.34C22,12.23,22,12.11,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,5.17,3.93,9.43,8.96,9.95 c-0.93-0.73-1.72-1.64-2.32-2.68C5.9,18,4,15.22,4,12c0-1.85,0.63-3.55,1.69-4.9l5.66,5.66c0.56-0.4,1.17-0.73,1.82-1L7.1,5.69 C8.45,4.63,10.15,4,12,4c4.24,0,7.7,3.29,7.98,7.45C20.69,11.67,21.37,11.97,21.99,12.34z M17,13c-3.18,0-5.9,1.87-7,4.5 c1.1,2.63,3.82,4.5,7,4.5s5.9-1.87,7-4.5C22.9,14.87,20.18,13,17,13z M17,20c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5C19.5,18.88,18.38,20,17,20z M18.5,17.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5 S18.5,16.67,18.5,17.5z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M11 9h2v2h-2zm-2 2h2v2H9zm4 0h2v2h-2zm2-2h2v2h-2zM7 9h2v2H7zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z\"></path>" } } }, - "dns": { - "name": "dns", + "wb_incandescent": { + "name": "wb_incandescent", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 13H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM20 3H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M3.55 18.54l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8zM11 22.45h2V19.5h-2v2.95zM4 10.5H1v2h3v-2zm11-4.19V1.5H9v4.81C7.21 7.35 6 9.28 6 11.5c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm5 4.19v2h3v-2h-3zm-2.76 7.66l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4z\"></path>" } } }, - "done": { - "name": "done", + "landscape": { + "name": "landscape", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z\"></path>" } } }, - "done_all": { - "name": "done_all", + "incomplete_circle": { + "name": "incomplete_circle", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-2.21,0.9-4.21,2.34-5.66L10,10V2C14.42,2,18,5.58,18,10z\"></path>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z\"></path>" + "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-2.76,1.12-5.26,2.93-7.07L12,12V2C17.52,2,22,6.48,22,12z\"></path>" } } }, - "done_outline": { - "name": "done_outline", + "hdr_on": { + "name": "hdr_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M19.77 5.03l1.4 1.4L8.43 19.17l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 5.03m0-2.83L8.43 13.54l-4.2-4.2L0 13.57 8.43 22 24 6.43 19.77 2.2z\"></path>" + "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z\"></path>" } } }, - "donut_large": { - "name": "donut_large", + "contrast": { + "name": "contrast", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><path d=\"M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8S2,5.58,2,10z M10.75,3.55C13.98,3.92,16.5,6.67,16.5,10 s-2.52,6.08-5.75,6.45V3.55z\"></path></g>" + }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><g><path d=\"M11,5.08V2C6,2.5,2,6.81,2,12s4,9.5,9,10v-3.08c-3-0.48-6-3.4-6-6.92S8,5.56,11,5.08z M18.97,11H22c-0.47-5-4-8.53-9-9 v3.08C16,5.51,18.54,8,18.97,11z M13,18.92V22c5-0.47,8.53-4,9-9h-3.03C18.54,16,16,18.49,13,18.92z\"></path></g></g></g>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><path d=\"M12,22c5.52,0,10-4.48,10-10S17.52,2,12,2S2,6.48,2,12S6.48,22,12,22z M13,4.07c3.94,0.49,7,3.85,7,7.93s-3.05,7.44-7,7.93 V4.07z\"></path></g>" } } }, - "donut_small": { - "name": "donut_small", + "blur_circular": { + "name": "blur_circular", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M11 9.16V2c-5 .5-9 4.79-9 10s4 9.5 9 10v-7.16c-1-.41-2-1.52-2-2.84s1-2.43 2-2.84zM14.86 11H22c-.48-4.75-4-8.53-9-9v7.16c1 .3 1.52.98 1.86 1.84zM13 14.84V22c5-.47 8.52-4.25 9-9h-7.14c-.34.86-.86 1.54-1.86 1.84z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\"></path>" } } }, - "drag_indicator": { - "name": "drag_indicator", + "wb_twilight": { + "name": "wb_twilight", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><rect height=\"1.5\" width=\"16\" x=\"2\" y=\"14.5\"></rect><rect height=\"2.5\" width=\"1.5\" x=\"9.25\" y=\"3\"></rect><rect height=\"1.5\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.1972 12.8523)\" width=\"2.5\" x=\"14.16\" y=\"5.91\"></rect><rect height=\"2.5\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -3.3852 5.1557)\" width=\"1.5\" x=\"3.78\" y=\"5.41\"></rect><path d=\"M10,7c-3.31,0-6,2.69-6,6h12C16,9.69,13.31,7,10,7z\"></path></g></g>" + }, "24": { "width": 24, - "path": "<path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path><path d=\"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"></path>" + "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><rect height=\"2\" transform=\"matrix(0.7069 -0.7074 0.7074 0.7069 -0.3887 15.676)\" width=\"3\" x=\"17.22\" y=\"7.31\"></rect><rect height=\"2\" width=\"20\" x=\"2\" y=\"18\"></rect><rect height=\"3\" width=\"2\" x=\"11\" y=\"4\"></rect><rect height=\"3\" transform=\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.2992 6.1783)\" width=\"2\" x=\"4.31\" y=\"6.78\"></rect><path d=\"M5,16h14c0-3.87-3.13-7-7-7S5,12.13,5,16z\"></path></g></g>" } } }, - "dynamic_form": { - "name": "dynamic_form", + "crop": { + "name": "crop", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M17,20v-9h-2V4h7l-2,5h2L17,20z M15,13v7H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2H15z M6.25,15.75h-1.5v1.5h1.5V15.75z M13,4v7H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H13z M6.25,6.75h-1.5v1.5h1.5V6.75z\"></path></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z\"></path>" } } }, - "eco": { - "name": "eco", + "blur_linear": { + "name": "blur_linear", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><path d=\"M5.53,7.04c-2.05,2.05-2.05,5.36-0.01,7.41c1.11-2.55,3.07-4.68,5.53-5.95C8.97,10.26,7.51,12.71,7,15.49 c1.95,0.92,4.35,0.59,5.96-1.03C15.57,11.86,16,4,16,4S8.14,4.43,5.53,7.04z\"></path></g></g>" - }, "24": { "width": 24, - "path": "<g><rect fill=\"none\" height=\"24\" width=\"24\"></rect></g><g><g><path d=\"M6.05,8.05c-2.73,2.73-2.73,7.15-0.02,9.88c1.47-3.4,4.09-6.24,7.36-7.93c-2.77,2.34-4.71,5.61-5.39,9.32 c2.6,1.23,5.8,0.78,7.95-1.37C19.43,14.47,20,4,20,4S9.53,4.57,6.05,8.05z\"></path></g></g>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z\"></path>" } } }, - "edit_calendar": { - "name": "edit_calendar", + "switch_camera": { + "name": "switch_camera", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "<rect fill=\"none\" height=\"20\" width=\"20\"></rect><path d=\"M9.5,18h-5C3.67,18,3,17.32,3,16.5v-11C3,4.68,3.67,4,4.5,4H6V2h1.5v2h5V2H14v2h1.5C16.33,4,17,4.68,17,5.5V10h-1.5V9h-11 v7.5h5V18z M17.78,13.99l0.65-0.65c0.29-0.29,0.29-0.77,0-1.06l-0.71-0.71c-0.29-0.29-0.77-0.29-1.06,0l-0.65,0.65L17.78,13.99z M17.19,14.58L12.77,19H11v-1.77l4.42-4.42L17.19,14.58z\"></path>" - }, "24": { "width": 24, - "path": "<rect fill=\"none\" height=\"24\" width=\"24\"></rect><path d=\"M12,22H5c-1.11,0-2-0.9-2-2L3.01,6c0-1.1,0.88-2,1.99-2h1V2h2v2h8V2h2v2h1c1.1,0,2,0.9,2,2v6h-2v-2H5v10h7V22z M22.13,16.99 l0.71-0.71c0.39-0.39,0.39-1.02,0-1.41l-0.71-0.71c-0.39-0.39-1.02-0.39-1.41,0l-0.71,0.71L22.13,16.99z M21.42,17.7l-5.3,5.3H14 v-2.12l5.3-5.3L21.42,17.7z\"></path>" + "path": "<path d=\"M0 0h24v24H0z\" fill=\"none\"></path><path d=\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 11.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z\"></path>" } } }, - "edit_off": { - "name": "edit_off", + "photo_album": { + "name": "photo_album", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "<g><rect fill=\"none\" height=\"20\" width=\"20\"></rect></g><g><g><g><path d=\"M14.5,2h-9C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5v-13C16,2.67,15.33,2,14.5,2z M9,4 h4v6l-2-1l-2,1V4z M6,15l2.12-2.83L9.5,14l1.88-2.5L14,15H6z\"></path></g></g></g>" + }, "24": { "width": 24, - "path": "<title>ic_edit_off_24px" + "path": "" } } }, - "eject": { - "name": "eject", + "deblur": { + "name": "deblur", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "euro_symbol": { - "name": "euro_symbol", + "currency_yen": { + "name": "currency_yen", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "event": { - "name": "event", + "panorama_horizontal": { + "name": "panorama_horizontal", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_seat": { - "name": "event_seat", + "filter_1": { + "name": "filter_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exit_to_app": { - "name": "exit_to_app", + "compare": { + "name": "compare", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "expand": { - "name": "expand", + "grain": { + "name": "grain", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "explore": { - "name": "explore", + "17mp": { + "name": "17mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "explore_off": { - "name": "explore_off", + "looks_4": { + "name": "looks_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "extension": { - "name": "extension", + "monochrome_photos": { + "name": "monochrome_photos", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "extension_off": { - "name": "extension_off", + "looks_two": { + "name": "looks_two", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "face": { - "name": "face", + "auto_stories": { + "name": "auto_stories", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fact_check": { - "name": "fact_check", + "view_compact": { + "name": "view_compact", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "favorite": { - "name": "favorite", + "camera_front": { + "name": "camera_front", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "favorite_border": { - "name": "favorite_border", + "8mp": { + "name": "8mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "feedback": { - "name": "feedback", + "blur_on": { + "name": "blur_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_present": { - "name": "file_present", + "image_search": { + "name": "image_search", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_alt": { - "name": "filter_alt", + "shutter_speed": { + "name": "shutter_speed", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_list_alt": { - "name": "filter_list_alt", + "hdr_plus": { + "name": "hdr_plus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "find_in_page": { - "name": "find_in_page", + "panorama_wide_angle_select": { + "name": "panorama_wide_angle_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "find_replace": { - "name": "find_replace", + "timelapse": { + "name": "timelapse", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fingerprint": { - "name": "fingerprint", + "photo_size_select_large": { + "name": "photo_size_select_large", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fit_screen": { - "name": "fit_screen", + "panorama_horizontal_select": { + "name": "panorama_horizontal_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flaky": { - "name": "flaky", + "timer_3": { + "name": "timer_3", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flight_land": { - "name": "flight_land", + "wb_twighlight": { + "name": "wb_twighlight", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flight_takeoff": { - "name": "flight_takeoff", + "center_focus_weak": { + "name": "center_focus_weak", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_to_back": { - "name": "flip_to_back", + "center_focus_strong": { + "name": "center_focus_strong", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_to_front": { - "name": "flip_to_front", + "auto_awesome_motion": { + "name": "auto_awesome_motion", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flutter_dash": { - "name": "flutter_dash", + "filter_5": { + "name": "filter_5", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "free_cancellation": { - "name": "free_cancellation", + "exposure_plus_1": { + "name": "exposure_plus_1", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gavel": { - "name": "gavel", + "audiotrack": { + "name": "audiotrack", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "generating_tokens": { - "name": "generating_tokens", + "wb_cloudy": { + "name": "wb_cloudy", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "get_app": { - "name": "get_app", + "music_note": { + "name": "music_note", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gif": { - "name": "gif", + "brush": { + "name": "brush", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grade": { - "name": "grade", + "photo": { + "name": "photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grading": { - "name": "grading", + "18mp": { + "name": "18mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "group_work": { - "name": "group_work", + "loupe": { + "name": "loupe", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "g_translate": { - "name": "g_translate", + "currency_rupee": { + "name": "currency_rupee", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "help": { - "name": "help", + "flip": { + "name": "flip", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "help_center": { - "name": "help_center", - "keywords": [ - "action" + "remove_red_eye": { + "name": "remove_red_eye", + "keywords": [ + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "help_outline": { - "name": "help_outline", + "texture": { + "name": "texture", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hide_source": { - "name": "hide_source", + "flash_on": { + "name": "flash_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "highlight_alt": { - "name": "highlight_alt", + "7mp": { + "name": "7mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "highlight_off": { - "name": "highlight_off", + "wb_shade": { + "name": "wb_shade", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "history": { - "name": "history", + "receipt_long": { + "name": "receipt_long", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "history_toggle_off": { - "name": "history_toggle_off", + "rotate_right": { + "name": "rotate_right", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "home": { - "name": "home", + "crop_rotate": { + "name": "crop_rotate", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_filled": { - "name": "home_filled", + "2mp": { + "name": "2mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "horizontal_split": { - "name": "horizontal_split", + "raw_on": { + "name": "raw_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hotel_class": { - "name": "hotel_class", + "rotate_left": { + "name": "rotate_left", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_disabled": { - "name": "hourglass_disabled", + "crop_portrait": { + "name": "crop_portrait", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_empty": { - "name": "hourglass_empty", + "flip_camera_android": { + "name": "flip_camera_android", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_full": { - "name": "hourglass_full", + "rotate_90_degrees_ccw": { + "name": "rotate_90_degrees_ccw", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "http": { - "name": "http", + "photo_filter": { + "name": "photo_filter", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "https": { - "name": "https", + "exposure_plus_2": { + "name": "exposure_plus_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "important_devices": { - "name": "important_devices", + "motion_photos_pause": { + "name": "motion_photos_pause", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "info": { - "name": "info", + "assistant": { + "name": "assistant", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "info_outline": { - "name": "info_outline", + "flare": { + "name": "flare", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "input": { - "name": "input", + "picture_as_pdf": { + "name": "picture_as_pdf", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "integration_instructions": { - "name": "integration_instructions", + "brightness_4": { + "name": "brightness_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "invert_colors": { - "name": "invert_colors", + "camera_rear": { + "name": "camera_rear", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "label": { - "name": "label", + "circle": { + "name": "circle", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_important": { - "name": "label_important", + "dehaze": { + "name": "dehaze", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_important_outline": { - "name": "label_important_outline", + "filter_6": { + "name": "filter_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_off": { - "name": "label_off", + "motion_photos_paused": { + "name": "motion_photos_paused", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_outline": { - "name": "label_outline", + "crop_landscape": { + "name": "crop_landscape", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "language": { - "name": "language", + "linked_camera": { + "name": "linked_camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "launch": { - "name": "launch", + "24mp": { + "name": "24mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "leaderboard": { - "name": "leaderboard", + "logo_dev": { + "name": "logo_dev", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lightbulb": { - "name": "lightbulb", + "15mp": { + "name": "15mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lightbulb_outline": { - "name": "lightbulb_outline", + "panorama_vertical": { + "name": "panorama_vertical", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "line_style": { - "name": "line_style", + "motion_photos_off": { + "name": "motion_photos_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "line_weight": { - "name": "line_weight", + "panorama_vertical_select": { + "name": "panorama_vertical_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "list": { - "name": "list", + "grid_off": { + "name": "grid_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock": { - "name": "lock", + "panorama_fish_eye": { + "name": "panorama_fish_eye", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock_clock": { - "name": "lock_clock", + "autofps_select": { + "name": "autofps_select", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock_open": { - "name": "lock_open", + "photo_size_select_actual": { + "name": "photo_size_select_actual", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock_outline": { - "name": "lock_outline", + "9mp": { + "name": "9mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "login": { - "name": "login", + "filter_7": { + "name": "filter_7", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "logout": { - "name": "logout", + "flip_camera_ios": { + "name": "flip_camera_ios", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "loyalty": { - "name": "loyalty", + "currency_yuan": { + "name": "currency_yuan", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "manage_accounts": { - "name": "manage_accounts", + "video_camera_front": { + "name": "video_camera_front", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "markunread_mailbox": { - "name": "markunread_mailbox", + "movie_filter": { + "name": "movie_filter", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_as_unread": { - "name": "mark_as_unread", + "collections": { + "name": "collections", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "maximize": { - "name": "maximize", + "tonality": { + "name": "tonality", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mediation": { - "name": "mediation", + "music_off": { + "name": "music_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "minimize": { - "name": "minimize", + "photo_library": { + "name": "photo_library", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "model_training": { - "name": "model_training", + "filter_none": { + "name": "filter_none", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "new_label": { - "name": "new_label", + "vignette": { + "name": "vignette", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "next_plan": { - "name": "next_plan", + "hide_image": { + "name": "hide_image", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nightlight_round": { - "name": "nightlight_round", + "4mp": { + "name": "4mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "note_add": { - "name": "note_add", + "30fps_select": { + "name": "30fps_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_accessible": { - "name": "not_accessible", + "looks_5": { + "name": "looks_5", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_started": { - "name": "not_started", + "exposure_zero": { + "name": "exposure_zero", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_accounts": { - "name": "no_accounts", + "11mp": { + "name": "11mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "offline_bolt": { - "name": "offline_bolt", + "healing": { + "name": "healing", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "offline_pin": { - "name": "offline_pin", + "exposure_neg_1": { + "name": "exposure_neg_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "online_prediction": { - "name": "online_prediction", + "filter": { + "name": "filter", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "opacity": { - "name": "opacity", + "filter_9_plus": { + "name": "filter_9_plus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_browser": { - "name": "open_in_browser", + "movie_creation": { + "name": "movie_creation", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_full": { - "name": "open_in_full", + "add_to_photos": { + "name": "add_to_photos", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_new": { - "name": "open_in_new", + "crop_free": { + "name": "crop_free", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_new_off": { - "name": "open_in_new_off", + "filter_tilt_shift": { + "name": "filter_tilt_shift", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_with": { - "name": "open_with", + "hdr_strong": { + "name": "hdr_strong", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outbond": { - "name": "outbond", + "wb_auto": { + "name": "wb_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outbound": { - "name": "outbound", + "filter_2": { + "name": "filter_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outbox": { - "name": "outbox", + "looks_3": { + "name": "looks_3", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "outgoing_mail": { - "name": "outgoing_mail", + "collections_bookmark": { + "name": "collections_bookmark", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "outlet": { - "name": "outlet", + "brightness_6": { + "name": "brightness_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pageview": { - "name": "pageview", + "timer_10": { + "name": "timer_10", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "paid": { - "name": "paid", + "palette": { + "name": "palette", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pan_tool": { - "name": "pan_tool", + "edit": { + "name": "edit", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "payment": { - "name": "payment", + "crop_square": { + "name": "crop_square", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pending": { - "name": "pending", + "19mp": { + "name": "19mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pending_actions": { - "name": "pending_actions", + "timer": { + "name": "timer", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_camera_mic": { - "name": "perm_camera_mic", + "hdr_enhanced_select": { + "name": "hdr_enhanced_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_contact_calendar": { - "name": "perm_contact_calendar", + "flash_off": { + "name": "flash_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_data_setting": { - "name": "perm_data_setting", + "panorama_wide_angle": { + "name": "panorama_wide_angle", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_device_information": { - "name": "perm_device_information", + "thermostat_auto": { + "name": "thermostat_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_identity": { - "name": "perm_identity", + "camera_alt": { + "name": "camera_alt", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_media": { - "name": "perm_media", + "60fps_select": { + "name": "60fps_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_phone_msg": { - "name": "perm_phone_msg", + "style": { + "name": "style", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_scan_wifi": { - "name": "perm_scan_wifi", + "rotate_90_degrees_cw": { + "name": "rotate_90_degrees_cw", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pets": { - "name": "pets", + "panorama": { + "name": "panorama", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "picture_in_picture": { - "name": "picture_in_picture", - "keywords": [ - "action" + "filter_b_and_w": { + "name": "filter_b_and_w", + "keywords": [ + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "picture_in_picture_alt": { - "name": "picture_in_picture_alt", + "mic_external_off": { + "name": "mic_external_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin_end": { - "name": "pin_end", + "looks_one": { + "name": "looks_one", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin_invoke": { - "name": "pin_invoke", + "slideshow": { + "name": "slideshow", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "plagiarism": { - "name": "plagiarism", + "image_aspect_ratio": { + "name": "image_aspect_ratio", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_for_work": { - "name": "play_for_work", + "photo_camera_front": { + "name": "photo_camera_front", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "polymer": { - "name": "polymer", + "crop_5_4": { + "name": "crop_5_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "power_settings_new": { - "name": "power_settings_new", + "control_point": { + "name": "control_point", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pregnant_woman": { - "name": "pregnant_woman", + "brightness_7": { + "name": "brightness_7", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "preview": { - "name": "preview", + "control_point_duplicate": { + "name": "control_point_duplicate", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "print": { - "name": "print", + "exposure_neg_2": { + "name": "exposure_neg_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "privacy_tip": { - "name": "privacy_tip", + "hdr_weak": { + "name": "hdr_weak", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "private_connectivity": { - "name": "private_connectivity", + "grid_on": { + "name": "grid_on", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "production_quantity_limits": { - "name": "production_quantity_limits", + "flash_auto": { + "name": "flash_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "published_with_changes": { - "name": "published_with_changes", + "face_retouching_natural": { + "name": "face_retouching_natural", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "query_builder": { - "name": "query_builder", + "leak_add": { + "name": "leak_add", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "question_answer": { - "name": "question_answer", + "navigate_next": { + "name": "navigate_next", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "quickreply": { - "name": "quickreply", + "colorize": { + "name": "colorize", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "receipt": { - "name": "receipt", + "radio": { + "name": "radio", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "record_voice_over": { - "name": "record_voice_over", + "speed": { + "name": "speed", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "redeem": { - "name": "redeem", + "volume_off": { + "name": "volume_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_done": { - "name": "remove_done", + "shuffle": { + "name": "shuffle", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_shopping_cart": { - "name": "remove_shopping_cart", + "4k": { + "name": "4k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reorder": { - "name": "reorder", + "featured_play_list": { + "name": "featured_play_list", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report_problem": { - "name": "report_problem", + "closed_caption": { + "name": "closed_caption", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "request_page": { - "name": "request_page", + "queue_music": { + "name": "queue_music", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "restore": { - "name": "restore", + "subtitles": { + "name": "subtitles", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restore_from_trash": { - "name": "restore_from_trash", + "art_track": { + "name": "art_track", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restore_page": { - "name": "restore_page", + "album": { + "name": "album", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "room": { - "name": "room", + "replay_circle_filled": { + "name": "replay_circle_filled", "keywords": [ - "action" + "av" ], "heights": { + "36": { + "width": 36, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rounded_corner": { - "name": "rounded_corner", + "hd": { + "name": "hd", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rowing": { - "name": "rowing", + "3k": { + "name": "3k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rule": { - "name": "rule", + "not_interested": { + "name": "not_interested", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "saved_search": { - "name": "saved_search", + "fiber_smart_record": { + "name": "fiber_smart_record", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "savings": { - "name": "savings", + "snooze": { + "name": "snooze", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "schedule": { - "name": "schedule", + "1k_plus": { + "name": "1k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "schedule_send": { - "name": "schedule_send", + "pause_circle_outline": { + "name": "pause_circle_outline", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "search": { - "name": "search", + "airplay": { + "name": "airplay", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "search_off": { - "name": "search_off", + "add_to_queue": { + "name": "add_to_queue", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "segment": { - "name": "segment", + "9k": { + "name": "9k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "send_and_archive": { - "name": "send_and_archive", + "10k": { + "name": "10k", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensors": { - "name": "sensors", + "audio_file": { + "name": "audio_file", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensors_off": { - "name": "sensors_off", + "3k_plus": { + "name": "3k_plus", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings": { - "name": "settings", + "2k": { + "name": "2k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_accessibility": { - "name": "settings_accessibility", + "play_circle_filled": { + "name": "play_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_applications": { - "name": "settings_applications", + "high_quality": { + "name": "high_quality", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_backup_restore": { - "name": "settings_backup_restore", + "new_releases": { + "name": "new_releases", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_bluetooth": { - "name": "settings_bluetooth", + "queue_play_next": { + "name": "queue_play_next", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_brightness": { - "name": "settings_brightness", + "pause_circle": { + "name": "pause_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_cell": { - "name": "settings_cell", + "closed_caption_disabled": { + "name": "closed_caption_disabled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_ethernet": { - "name": "settings_ethernet", + "control_camera": { + "name": "control_camera", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_antenna": { - "name": "settings_input_antenna", + "games": { + "name": "games", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_component": { - "name": "settings_input_component", + "replay": { + "name": "replay", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_composite": { - "name": "settings_input_composite", + "call_to_action": { + "name": "call_to_action", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_hdmi": { - "name": "settings_input_hdmi", + "featured_video": { + "name": "featured_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_svideo": { - "name": "settings_input_svideo", + "volume_mute": { + "name": "volume_mute", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_overscan": { - "name": "settings_overscan", + "music_video": { + "name": "music_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_phone": { - "name": "settings_phone", + "mic_none": { + "name": "mic_none", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_power": { - "name": "settings_power", + "playlist_add_circle": { + "name": "playlist_add_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_remote": { - "name": "settings_remote", + "remove_from_queue": { + "name": "remove_from_queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_voice": { - "name": "settings_voice", + "web_asset": { + "name": "web_asset", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shop": { - "name": "shop", + "sort_by_alpha": { + "name": "sort_by_alpha", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shopping_bag": { - "name": "shopping_bag", + "6k": { + "name": "6k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shopping_basket": { - "name": "shopping_basket", + "7k_plus": { + "name": "7k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shopping_cart": { - "name": "shopping_cart", + "playlist_add_check": { + "name": "playlist_add_check", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shop_2": { - "name": "shop_2", + "fiber_pin": { + "name": "fiber_pin", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shop_two": { - "name": "shop_two", + "fiber_dvr": { + "name": "fiber_dvr", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_button": { - "name": "smart_button", + "5k": { + "name": "5k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "source": { - "name": "source", + "4k_plus": { + "name": "4k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "space_dashboard": { - "name": "space_dashboard", + "sd": { + "name": "sd", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_notes": { - "name": "speaker_notes", + "replay_10": { + "name": "replay_10", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_notes_off": { - "name": "speaker_notes_off", + "volume_down_alt": { + "name": "volume_down_alt", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "spellcheck": { - "name": "spellcheck", + "8k": { + "name": "8k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stars": { - "name": "stars", + "stop": { + "name": "stop", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star_rate": { - "name": "star_rate", + "play_arrow": { + "name": "play_arrow", "keywords": [ - "action" + "av" ], "heights": { - "18": { - "width": 18, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sticky_note_2": { - "name": "sticky_note_2", + "9k_plus": { + "name": "9k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "store": { - "name": "store", + "av_timer": { + "name": "av_timer", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subject": { - "name": "subject", + "note": { + "name": "note", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subtitles_off": { - "name": "subtitles_off", + "repeat_one_on": { + "name": "repeat_one_on", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "supervised_user_circle": { - "name": "supervised_user_circle", + "video_label": { + "name": "video_label", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "supervisor_account": { - "name": "supervisor_account", + "fiber_manual_record": { + "name": "fiber_manual_record", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "support": { - "name": "support", + "explicit": { + "name": "explicit", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_horiz": { - "name": "swap_horiz", + "repeat": { + "name": "repeat", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_horizontal_circle": { - "name": "swap_horizontal_circle", + "forward_30": { + "name": "forward_30", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_vert": { - "name": "swap_vert", + "equalizer": { + "name": "equalizer", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_vertical_circle": { - "name": "swap_vertical_circle", + "play_circle_outline": { + "name": "play_circle_outline", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swipe": { - "name": "swipe", - "keywords": [ - "action" + "shuffle_on": { + "name": "shuffle_on", + "keywords": [ + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync_alt": { - "name": "sync_alt", + "playlist_play": { + "name": "playlist_play", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_update_alt": { - "name": "system_update_alt", + "mic": { + "name": "mic", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tab": { - "name": "tab", + "6k_plus": { + "name": "6k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "table_view": { - "name": "table_view", + "7k": { + "name": "7k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tab_unselected": { - "name": "tab_unselected", + "play_circle": { + "name": "play_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "task_alt": { - "name": "task_alt", + "subscriptions": { + "name": "subscriptions", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotate_up": { - "name": "text_rotate_up", + "queue": { + "name": "queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotate_vertical": { - "name": "text_rotate_vertical", + "stop_circle": { + "name": "stop_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_angledown": { - "name": "text_rotation_angledown", + "5k_plus": { + "name": "5k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_angleup": { - "name": "text_rotation_angleup", + "video_file": { + "name": "video_file", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_down": { - "name": "text_rotation_down", + "branding_watermark": { + "name": "branding_watermark", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_none": { - "name": "text_rotation_none", + "replay_30": { + "name": "replay_30", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "theaters": { - "name": "theaters", + "recent_actors": { + "name": "recent_actors", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumbs_up_down": { - "name": "thumbs_up_down", + "fast_rewind": { + "name": "fast_rewind", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_down": { - "name": "thumb_down", + "play_disabled": { + "name": "play_disabled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_down_off_alt": { - "name": "thumb_down_off_alt", + "forward_5": { + "name": "forward_5", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_up": { - "name": "thumb_up", + "slow_motion_video": { + "name": "slow_motion_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_up_off_alt": { - "name": "thumb_up_off_alt", + "repeat_one": { + "name": "repeat_one", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timeline": { - "name": "timeline", + "playlist_add_check_circle": { + "name": "playlist_add_check_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tips_and_updates": { - "name": "tips_and_updates", + "fiber_new": { + "name": "fiber_new", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "toc": { - "name": "toc", + "video_library": { + "name": "video_library", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "today": { - "name": "today", + "video_settings": { + "name": "video_settings", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "toll": { - "name": "toll", + "forward_10": { + "name": "forward_10", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "touch_app": { - "name": "touch_app", + "playlist_remove": { + "name": "playlist_remove", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tour": { - "name": "tour", + "video_call": { + "name": "video_call", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "track_changes": { - "name": "track_changes", + "library_add_check": { + "name": "library_add_check", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "translate": { - "name": "translate", + "hearing": { + "name": "hearing", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "trending_down": { - "name": "trending_down", + "movie": { + "name": "movie", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "trending_flat": { - "name": "trending_flat", - "keywords": [ - "action" + "5g": { + "name": "5g", + "keywords": [ + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "trending_up": { - "name": "trending_up", + "fast_forward": { + "name": "fast_forward", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "try": { - "name": "try", + "closed_caption_off": { + "name": "closed_caption_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "turned_in": { - "name": "turned_in", + "hearing_disabled": { + "name": "hearing_disabled", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "turned_in_not": { - "name": "turned_in_not", + "8k_plus": { + "name": "8k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unpublished": { - "name": "unpublished", + "2k_plus": { + "name": "2k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "update": { - "name": "update", + "skip_next": { + "name": "skip_next", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "update_disabled": { - "name": "update_disabled", + "replay_5": { + "name": "replay_5", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "upgrade": { - "name": "upgrade", + "1k": { + "name": "1k", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "verified": { - "name": "verified", + "web": { + "name": "web", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "verified_user": { - "name": "verified_user", + "playlist_add": { + "name": "playlist_add", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_split": { - "name": "vertical_split", + "volume_up": { + "name": "volume_up", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_agenda": { - "name": "view_agenda", + "missed_video_call": { + "name": "missed_video_call", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_array": { - "name": "view_array", + "library_add": { + "name": "library_add", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_carousel": { - "name": "view_carousel", + "surround_sound": { + "name": "surround_sound", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_column": { - "name": "view_column", + "skip_previous": { + "name": "skip_previous", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_day": { - "name": "view_day", + "mic_off": { + "name": "mic_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_headline": { - "name": "view_headline", + "pause_circle_filled": { + "name": "pause_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_in_ar": { - "name": "view_in_ar", + "library_music": { + "name": "library_music", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_list": { - "name": "view_list", + "videocam_off": { + "name": "videocam_off", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_module": { - "name": "view_module", + "repeat_on": { + "name": "repeat_on", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_quilt": { - "name": "view_quilt", + "library_books": { + "name": "library_books", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_sidebar": { - "name": "view_sidebar", + "loop": { + "name": "loop", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_stream": { - "name": "view_stream", + "interpreter_mode": { + "name": "interpreter_mode", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_week": { - "name": "view_week", + "pause": { + "name": "pause", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "visibility": { - "name": "visibility", + "volume_down": { + "name": "volume_down", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "visibility_off": { - "name": "visibility_off", + "videocam": { + "name": "videocam", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "voice_over_off": { - "name": "voice_over_off", + "web_asset_off": { + "name": "web_asset_off", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "watch_later": { - "name": "watch_later", + "foggy": { + "name": "foggy", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_protected_setup": { - "name": "wifi_protected_setup", + "shield_moon": { + "name": "shield_moon", "keywords": [ - "action" + "home" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "work": { - "name": "work", + "sunny_snowing": { + "name": "sunny_snowing", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "work_off": { - "name": "work_off", + "sunny": { + "name": "sunny", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "work_outline": { - "name": "work_outline", + "cloudy_snowing": { + "name": "cloudy_snowing", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wysiwyg": { - "name": "wysiwyg", + "sensor_window": { + "name": "sensor_window", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "youtube_searched_for": { - "name": "youtube_searched_for", + "snowing": { + "name": "snowing", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "zoom_in": { - "name": "zoom_in", + "sensor_door": { + "name": "sensor_door", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "zoom_out": { - "name": "zoom_out", + "calendar_view_month": { + "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_alert": { - "name": "add_alert", + "density_large": { + "name": "density_large", "keywords": [ - "alert" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_delete": { - "name": "auto_delete", + "tips_and_updates": { + "name": "tips_and_updates", "keywords": [ - "alert" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "error": { - "name": "error", + "assignment_returned": { + "name": "assignment_returned", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "error_outline": { - "name": "error_outline", + "query_builder": { + "name": "query_builder", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notification_important": { - "name": "notification_important", + "label_important_outline": { + "name": "label_important_outline", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "warning": { - "name": "warning", + "view_agenda": { + "name": "view_agenda", "keywords": [ - "alert" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "warning_amber": { - "name": "warning_amber", + "assured_workload": { + "name": "assured_workload", "keywords": [ - "alert" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "10k": { - "name": "10k", + "perm_device_information": { + "name": "perm_device_information", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "1k": { - "name": "1k", + "plagiarism": { + "name": "plagiarism", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "1k_plus": { - "name": "1k_plus", + "settings_remote": { + "name": "settings_remote", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "2k": { - "name": "2k", + "record_voice_over": { + "name": "record_voice_over", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "2k_plus": { - "name": "2k_plus", + "swap_horizontal_circle": { + "name": "swap_horizontal_circle", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "3k": { - "name": "3k", + "payment": { + "name": "payment", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "3k_plus": { - "name": "3k_plus", + "flip_to_front": { + "name": "flip_to_front", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4k": { - "name": "4k", + "update": { + "name": "update", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4k_plus": { - "name": "4k_plus", + "segment": { + "name": "segment", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "5g": { - "name": "5g", + "open_in_full": { + "name": "open_in_full", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "5k": { - "name": "5k", - "keywords": [ - "av" + "cached": { + "name": "cached", + "keywords": [ + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "5k_plus": { - "name": "5k_plus", + "upgrade": { + "name": "upgrade", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "6k": { - "name": "6k", + "api": { + "name": "api", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6k_plus": { - "name": "6k_plus", + "book": { + "name": "book", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "7k": { - "name": "7k", + "view_sidebar": { + "name": "view_sidebar", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "7k_plus": { - "name": "7k_plus", + "accessibility_new": { + "name": "accessibility_new", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "8k": { - "name": "8k", + "highlight_off": { + "name": "highlight_off", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "8k_plus": { - "name": "8k_plus", + "perm_phone_msg": { + "name": "perm_phone_msg", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "9k": { - "name": "9k", + "g_translate": { + "name": "g_translate", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "9k_plus": { - "name": "9k_plus", + "lock_open": { + "name": "lock_open", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_queue": { - "name": "add_to_queue", + "redeem": { + "name": "redeem", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplay": { - "name": "airplay", + "feedback": { + "name": "feedback", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "album": { - "name": "album", + "dns": { + "name": "dns", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "art_track": { - "name": "art_track", + "mediation": { + "name": "mediation", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "av_timer": { - "name": "av_timer", + "view_compact_alt": { + "name": "view_compact_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "branding_watermark": { - "name": "branding_watermark", + "label_important": { + "name": "label_important", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_to_action": { - "name": "call_to_action", + "token": { + "name": "token", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "closed_caption": { - "name": "closed_caption", + "extension": { + "name": "extension", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "closed_caption_disabled": { - "name": "closed_caption_disabled", + "settings_cell": { + "name": "settings_cell", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "closed_caption_off": { - "name": "closed_caption_off", + "display_settings": { + "name": "display_settings", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "control_camera": { - "name": "control_camera", + "task_alt": { + "name": "task_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "equalizer": { - "name": "equalizer", + "http": { + "name": "http", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "explicit": { - "name": "explicit", + "today": { + "name": "today", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fast_forward": { - "name": "fast_forward", + "settings_input_svideo": { + "name": "settings_input_svideo", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fast_rewind": { - "name": "fast_rewind", + "input": { + "name": "input", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "featured_play_list": { - "name": "featured_play_list", + "commute": { + "name": "commute", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "featured_video": { - "name": "featured_video", + "view_quilt": { + "name": "view_quilt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_dvr": { - "name": "fiber_dvr", + "store": { + "name": "store", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_manual_record": { - "name": "fiber_manual_record", + "play_for_work": { + "name": "play_for_work", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_new": { - "name": "fiber_new", + "rounded_corner": { + "name": "rounded_corner", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_pin": { - "name": "fiber_pin", + "track_changes": { + "name": "track_changes", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_smart_record": { - "name": "fiber_smart_record", + "zoom_in": { + "name": "zoom_in", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_10": { - "name": "forward_10", + "thumb_down": { + "name": "thumb_down", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_30": { - "name": "forward_30", + "disabled_by_default": { + "name": "disabled_by_default", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_5": { - "name": "forward_5", + "account_balance": { + "name": "account_balance", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "games": { - "name": "games", + "flutter_dash": { + "name": "flutter_dash", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hd": { - "name": "hd", + "accessible_forward": { + "name": "accessible_forward", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hearing": { - "name": "hearing", + "text_rotation_angleup": { + "name": "text_rotation_angleup", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hearing_disabled": { - "name": "hearing_disabled", + "all_inbox": { + "name": "all_inbox", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "high_quality": { - "name": "high_quality", + "saved_search": { + "name": "saved_search", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_add": { - "name": "library_add", + "switch_access_shortcut": { + "name": "switch_access_shortcut", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_add_check": { - "name": "library_add_check", + "card_travel": { + "name": "card_travel", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_books": { - "name": "library_books", + "perm_data_setting": { + "name": "perm_data_setting", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_music": { - "name": "library_music", + "check_circle": { + "name": "check_circle", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "loop": { - "name": "loop", + "perm_scan_wifi": { + "name": "perm_scan_wifi", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic": { - "name": "mic", + "perm_camera_mic": { + "name": "perm_camera_mic", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_none": { - "name": "mic_none", + "php": { + "name": "php", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_off": { - "name": "mic_off", + "swap_horiz": { + "name": "swap_horiz", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "missed_video_call": { - "name": "missed_video_call", + "search_off": { + "name": "search_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "movie": { - "name": "movie", + "exit_to_app": { + "name": "exit_to_app", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "music_video": { - "name": "music_video", + "send_and_archive": { + "name": "send_and_archive", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "new_releases": { - "name": "new_releases", + "outlet": { + "name": "outlet", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "note": { - "name": "note", + "hide_source": { + "name": "hide_source", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_interested": { - "name": "not_interested", + "autorenew": { + "name": "autorenew", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause": { - "name": "pause", + "offline_pin": { + "name": "offline_pin", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_circle": { - "name": "pause_circle", + "restore": { + "name": "restore", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_circle_filled": { - "name": "pause_circle_filled", + "donut_large": { + "name": "donut_large", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_circle_outline": { - "name": "pause_circle_outline", + "open_with": { + "name": "open_with", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "playlist_add": { - "name": "playlist_add", + "hls_off": { + "name": "hls_off", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "playlist_add_check": { - "name": "playlist_add_check", + "history": { + "name": "history", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "playlist_play": { - "name": "playlist_play", + "percent": { + "name": "percent", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_arrow": { - "name": "play_arrow", + "comment_bank": { + "name": "comment_bank", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_circle": { - "name": "play_circle", + "sync_alt": { + "name": "sync_alt", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_circle_filled": { - "name": "play_circle_filled", + "alarm_on": { + "name": "alarm_on", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_circle_outline": { - "name": "play_circle_outline", + "text_rotate_up": { + "name": "text_rotate_up", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_disabled": { - "name": "play_disabled", + "settings_power": { + "name": "settings_power", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "queue": { - "name": "queue", + "manage_accounts": { + "name": "manage_accounts", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "queue_music": { - "name": "queue_music", + "swipe_down_alt": { + "name": "swipe_down_alt", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "queue_play_next": { - "name": "queue_play_next", + "open_in_new_off": { + "name": "open_in_new_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "radio": { - "name": "radio", + "settings_input_component": { + "name": "settings_input_component", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "recent_actors": { - "name": "recent_actors", + "arrow_right_alt": { + "name": "arrow_right_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_from_queue": { - "name": "remove_from_queue", + "no_accounts": { + "name": "no_accounts", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat": { - "name": "repeat", + "css": { + "name": "css", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat_on": { - "name": "repeat_on", + "highlight_alt": { + "name": "highlight_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat_one": { - "name": "repeat_one", + "pets": { + "name": "pets", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat_one_on": { - "name": "repeat_one_on", + "done_outline": { + "name": "done_outline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay": { - "name": "replay", + "date_range": { + "name": "date_range", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_10": { - "name": "replay_10", + "thumb_up_off_alt": { + "name": "thumb_up_off_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_30": { - "name": "replay_30", + "speaker_notes_off": { + "name": "speaker_notes_off", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_5": { - "name": "replay_5", + "home": { + "name": "home", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_circle_filled": { - "name": "replay_circle_filled", + "done": { + "name": "done", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" - }, - "36": { - "width": 36, - "path": "" + "path": "" } } }, - "sd": { - "name": "sd", + "assignment_return": { + "name": "assignment_return", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shuffle": { - "name": "shuffle", + "swipe_left": { + "name": "swipe_left", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shuffle_on": { - "name": "shuffle_on", + "donut_small": { + "name": "donut_small", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "skip_next": { - "name": "skip_next", + "settings_applications": { + "name": "settings_applications", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "skip_previous": { - "name": "skip_previous", + "speaker_notes": { + "name": "speaker_notes", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "slow_motion_video": { - "name": "slow_motion_video", + "work_outline": { + "name": "work_outline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "snooze": { - "name": "snooze", + "webhook": { + "name": "webhook", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sort_by_alpha": { - "name": "sort_by_alpha", + "cancel_schedule_send": { + "name": "cancel_schedule_send", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speed": { - "name": "speed", + "flip_to_back": { + "name": "flip_to_back", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" - } - } - }, - "stop": { - "name": "stop", - "keywords": [ - "av" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "stop_circle": { - "name": "stop_circle", + "logout": { + "name": "logout", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "subscriptions": { - "name": "subscriptions", + "home_filled": { + "name": "home_filled", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subtitles": { - "name": "subtitles", + "join_right": { + "name": "join_right", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "surround_sound": { - "name": "surround_sound", + "try": { + "name": "try", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videocam": { - "name": "videocam", + "satellite_alt": { + "name": "satellite_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "videocam_off": { - "name": "videocam_off", + "picture_in_picture_alt": { + "name": "picture_in_picture_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_call": { - "name": "video_call", + "calendar_view_day": { + "name": "calendar_view_day", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_label": { - "name": "video_label", + "star_rate": { + "name": "star_rate", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" + }, + "18": { + "width": 18, + "path": "" } } }, - "video_library": { - "name": "video_library", + "translate": { + "name": "translate", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_settings": { - "name": "video_settings", + "offline_bolt": { + "name": "offline_bolt", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_down": { - "name": "volume_down", + "visibility": { + "name": "visibility", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_down_alt": { - "name": "volume_down_alt", + "smart_button": { + "name": "smart_button", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_mute": { - "name": "volume_mute", + "lock": { + "name": "lock", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_off": { - "name": "volume_off", + "view_in_ar": { + "name": "view_in_ar", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_up": { - "name": "volume_up", + "timeline": { + "name": "timeline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "web": { - "name": "web", + "dashboard_customize": { + "name": "dashboard_customize", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "web_asset": { - "name": "web_asset", + "filter_alt_off": { + "name": "filter_alt_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "web_asset_off": { - "name": "web_asset_off", + "flaky": { + "name": "flaky", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "3p": { - "name": "3p", + "pregnant_woman": { + "name": "pregnant_woman", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_ic_call": { - "name": "add_ic_call", + "text_rotate_vertical": { + "name": "text_rotate_vertical", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alternate_email": { - "name": "alternate_email", + "launch": { + "name": "launch", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "app_registration": { - "name": "app_registration", + "switch_access_shortcut_add": { + "name": "switch_access_shortcut_add", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "business": { - "name": "business", + "stars": { + "name": "stars", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call": { - "name": "call", + "subtitles_off": { + "name": "subtitles_off", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_end": { - "name": "call_end", + "report_problem": { + "name": "report_problem", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_made": { - "name": "call_made", + "print": { + "name": "print", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_merge": { - "name": "call_merge", + "view_module": { + "name": "view_module", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_missed": { - "name": "call_missed", + "view_cozy": { + "name": "view_cozy", "keywords": [ - "communication" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "call_missed_outgoing": { - "name": "call_missed_outgoing", - "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_received": { - "name": "call_received", + "update_disabled": { + "name": "update_disabled", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_split": { - "name": "call_split", + "sticky_note_2": { + "name": "sticky_note_2", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cancel_presentation": { - "name": "cancel_presentation", + "perm_media": { + "name": "perm_media", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cell_wifi": { - "name": "cell_wifi", + "add_task": { + "name": "add_task", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chat": { - "name": "chat", + "add_card": { + "name": "add_card", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chat_bubble": { - "name": "chat_bubble", + "line_weight": { + "name": "line_weight", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chat_bubble_outline": { - "name": "chat_bubble_outline", + "support": { + "name": "support", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "clear_all": { - "name": "clear_all", + "settings_bluetooth": { + "name": "settings_bluetooth", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "comment": { - "name": "comment", + "thumbs_up_down": { + "name": "thumbs_up_down", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "contacts": { - "name": "contacts", + "explore": { + "name": "explore", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_mail": { - "name": "contact_mail", + "restore_from_trash": { + "name": "restore_from_trash", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_phone": { - "name": "contact_phone", + "backup_table": { + "name": "backup_table", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "desktop_access_disabled": { - "name": "desktop_access_disabled", + "remove_done": { + "name": "remove_done", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dialer_sip": { - "name": "dialer_sip", + "settings": { + "name": "settings", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dialpad": { - "name": "dialpad", + "done_all": { + "name": "done_all", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "document_scanner": { - "name": "document_scanner", + "data_exploration": { + "name": "data_exploration", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "domain_disabled": { - "name": "domain_disabled", + "outbond": { + "name": "outbond", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "domain_verification": { - "name": "domain_verification", + "card_membership": { + "name": "card_membership", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "duo": { - "name": "duo", + "search": { + "name": "search", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "email": { - "name": "email", + "online_prediction": { + "name": "online_prediction", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "forum": { - "name": "forum", + "power_settings_new": { + "name": "power_settings_new", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_to_inbox": { - "name": "forward_to_inbox", + "perm_contact_calendar": { + "name": "perm_contact_calendar", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_bottom": { - "name": "hourglass_bottom", + "hourglass_full": { + "name": "hourglass_full", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_top": { - "name": "hourglass_top", + "density_medium": { + "name": "density_medium", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "import_contacts": { - "name": "import_contacts", + "chrome_reader_mode": { + "name": "chrome_reader_mode", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "import_export": { - "name": "import_export", + "assignment": { + "name": "assignment", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "invert_colors_off": { - "name": "invert_colors_off", + "hls": { + "name": "hls", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "list_alt": { - "name": "list_alt", + "swap_vert": { + "name": "swap_vert", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "live_help": { - "name": "live_help", + "rocket_launch": { + "name": "rocket_launch", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_off": { - "name": "location_off", + "contact_page": { + "name": "contact_page", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_on": { - "name": "location_on", + "123": { + "name": "123", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mail_outline": { - "name": "mail_outline", + "maximize": { + "name": "maximize", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_chat_read": { - "name": "mark_chat_read", + "voice_over_off": { + "name": "voice_over_off", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_chat_unread": { - "name": "mark_chat_unread", + "hotel_class": { + "name": "hotel_class", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_email_read": { - "name": "mark_email_read", + "turned_in_not": { + "name": "turned_in_not", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_email_unread": { - "name": "mark_email_unread", + "visibility_off": { + "name": "visibility_off", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "message": { - "name": "message", + "supervised_user_circle": { + "name": "supervised_user_circle", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobile_screen_share": { - "name": "mobile_screen_share", + "3d_rotation": { + "name": "3d_rotation", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "more_time": { - "name": "more_time", + "class": { + "name": "class", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nat": { - "name": "nat", + "app_shortcut": { + "name": "app_shortcut", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" - } - } - }, - "no_sim": { - "name": "no_sim", - "keywords": [ - "communication" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "pause_presentation": { - "name": "pause_presentation", + "reorder": { + "name": "reorder", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add_disabled": { - "name": "person_add_disabled", + "swipe": { + "name": "swipe", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_search": { - "name": "person_search", + "view_stream": { + "name": "view_stream", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone": { - "name": "phone", + "event": { + "name": "event", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_erase": { - "name": "phonelink_erase", + "shop_2": { + "name": "shop_2", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_lock": { - "name": "phonelink_lock", + "loyalty": { + "name": "loyalty", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_ring": { - "name": "phonelink_ring", + "outbound": { + "name": "outbound", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_setup": { - "name": "phonelink_setup", + "drag_indicator": { + "name": "drag_indicator", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_disabled": { - "name": "phone_disabled", + "android": { + "name": "android", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_enabled": { - "name": "phone_enabled", + "build_circle": { + "name": "build_circle", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "portable_wifi_off": { - "name": "portable_wifi_off", + "lock_clock": { + "name": "lock_clock", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "present_to_all": { - "name": "present_to_all", + "add_to_drive": { + "name": "add_to_drive", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "print_disabled": { - "name": "print_disabled", - "keywords": [ - "communication" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "qr_code": { - "name": "qr_code", + "view_list": { + "name": "view_list", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "qr_code_2": { - "name": "qr_code_2", + "watch_later": { + "name": "watch_later", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "qr_code_scanner": { - "name": "qr_code_scanner", + "savings": { + "name": "savings", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "read_more": { - "name": "read_more", + "terminal": { + "name": "terminal", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ring_volume": { - "name": "ring_volume", + "remove_shopping_cart": { + "name": "remove_shopping_cart", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rss_feed": { - "name": "rss_feed", + "calendar_today": { + "name": "calendar_today", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rtt": { - "name": "rtt", + "balance": { + "name": "balance", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "ic_dialer_rtt_revised_24px" + "path": "" } } }, - "screen_share": { - "name": "screen_share", + "compare_arrows": { + "name": "compare_arrows", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_satisfied_alt": { - "name": "sentiment_satisfied_alt", + "assessment": { + "name": "assessment", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sip": { - "name": "sip", + "sensors_off": { + "name": "sensors_off", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_phone": { - "name": "speaker_phone", + "settings_input_composite": { + "name": "settings_input_composite", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_current_landscape": { - "name": "stay_current_landscape", + "filter_alt": { + "name": "filter_alt", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_current_portrait": { - "name": "stay_current_portrait", + "aspect_ratio": { + "name": "aspect_ratio", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_primary_landscape": { - "name": "stay_primary_landscape", + "shopping_cart_checkout": { + "name": "shopping_cart_checkout", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_primary_portrait": { - "name": "stay_primary_portrait", + "line_style": { + "name": "line_style", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stop_screen_share": { - "name": "stop_screen_share", + "view_carousel": { + "name": "view_carousel", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_calls": { - "name": "swap_calls", + "swipe_left_alt": { + "name": "swipe_left_alt", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "textsms": { - "name": "textsms", + "label_off": { + "name": "label_off", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unsubscribe": { - "name": "unsubscribe", + "html": { + "name": "html", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "voicemail": { - "name": "voicemail", + "work": { + "name": "work", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vpn_key": { - "name": "vpn_key", + "help": { + "name": "help", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_calling": { - "name": "wifi_calling", + "pageview": { + "name": "pageview", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add": { - "name": "add", + "minimize": { + "name": "minimize", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_box": { - "name": "add_box", + "assignment_late": { + "name": "assignment_late", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_circle": { - "name": "add_circle", + "bookmark_add": { + "name": "bookmark_add", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_circle_outline": { - "name": "add_circle_outline", + "description": { + "name": "description", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_link": { - "name": "add_link", + "face": { + "name": "face", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "amp_stories": { - "name": "amp_stories", + "open_in_new": { + "name": "open_in_new", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "archive": { - "name": "archive", + "account_circle": { + "name": "account_circle", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attribution": { - "name": "attribution", + "text_rotation_down": { + "name": "text_rotation_down", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "backspace": { - "name": "backspace", + "youtube_searched_for": { + "name": "youtube_searched_for", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ballot": { - "name": "ballot", + "settings_backup_restore": { + "name": "settings_backup_restore", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "biotech": { - "name": "biotech", + "settings_phone": { + "name": "settings_phone", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "block": { - "name": "block", + "https": { + "name": "https", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "block_flipped": { - "name": "block_flipped", + "bookmark_added": { + "name": "bookmark_added", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bolt": { - "name": "bolt", + "settings_input_hdmi": { + "name": "settings_input_hdmi", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calculate": { - "name": "calculate", + "event_repeat": { + "name": "event_repeat", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "change_circle": { - "name": "change_circle", + "trending_flat": { + "name": "trending_flat", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "clear": { - "name": "clear", + "build": { + "name": "build", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_copy": { - "name": "content_copy", + "preview": { + "name": "preview", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_cut": { - "name": "content_cut", + "shopping_bag": { + "name": "shopping_bag", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_paste": { - "name": "content_paste", + "anchor": { + "name": "anchor", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_paste_off": { - "name": "content_paste_off", + "explore_off": { + "name": "explore_off", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "copy_all": { - "name": "copy_all", + "all_out": { + "name": "all_out", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "create": { - "name": "create", + "accessibility": { + "name": "accessibility", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete_sweep": { - "name": "delete_sweep", + "assignment_turned_in": { + "name": "assignment_turned_in", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drafts": { - "name": "drafts", + "dashboard": { + "name": "dashboard", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dynamic_feed": { - "name": "dynamic_feed", + "system_update_alt": { + "name": "system_update_alt", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_copy": { - "name": "file_copy", + "pinch": { + "name": "pinch", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_list": { - "name": "filter_list", + "help_outline": { + "name": "help_outline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flag": { - "name": "flag", + "text_rotation_none": { + "name": "text_rotation_none", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "font_download": { - "name": "font_download", + "account_balance_wallet": { + "name": "account_balance_wallet", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "font_download_off": { - "name": "font_download_off", + "markunread_mailbox": { + "name": "markunread_mailbox", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward": { - "name": "forward", + "spellcheck": { + "name": "spellcheck", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gesture": { - "name": "gesture", + "fingerprint": { + "name": "fingerprint", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "how_to_reg": { - "name": "how_to_reg", + "open_in_browser": { + "name": "open_in_browser", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "how_to_vote": { - "name": "how_to_vote", - "keywords": [ - "content" + "outgoing_mail": { + "name": "outgoing_mail", + "keywords": [ + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "inbox": { - "name": "inbox", + "ads_click": { + "name": "ads_click", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "insights": { - "name": "insights", + "book_online": { + "name": "book_online", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "inventory": { - "name": "inventory", + "subject": { + "name": "subject", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "inventory_2": { - "name": "inventory_2", + "swipe_right": { + "name": "swipe_right", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "link": { - "name": "link", + "swipe_down": { + "name": "swipe_down", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "link_off": { - "name": "link_off", + "arrow_circle_up": { + "name": "arrow_circle_up", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "low_priority": { - "name": "low_priority", + "install_desktop": { + "name": "install_desktop", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mail": { - "name": "mail", + "lightbulb_outline": { + "name": "lightbulb_outline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "markunread": { - "name": "markunread", + "polymer": { + "name": "polymer", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "move_to_inbox": { - "name": "move_to_inbox", + "code_off": { + "name": "code_off", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "next_week": { - "name": "next_week", + "edit_calendar": { + "name": "edit_calendar", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "outlined_flag": { - "name": "outlined_flag", + "list": { + "name": "list", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "policy": { - "name": "policy", + "euro_symbol": { + "name": "euro_symbol", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "push_pin": { - "name": "push_pin", + "shopping_basket": { + "name": "shopping_basket", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "redo": { - "name": "redo", + "hourglass_empty": { + "name": "hourglass_empty", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove": { - "name": "remove", + "grade": { + "name": "grade", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_circle": { - "name": "remove_circle", + "data_thresholding": { + "name": "data_thresholding", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_circle_outline": { - "name": "remove_circle_outline", + "login": { + "name": "login", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "reply": { - "name": "reply", + "new_label": { + "name": "new_label", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "reply_all": { - "name": "reply_all", + "lock_outline": { + "name": "lock_outline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report": { - "name": "report", + "view_column": { + "name": "view_column", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "report_gmailerrorred": { - "name": "report_gmailerrorred", + "privacy_tip": { + "name": "privacy_tip", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "report_off": { - "name": "report_off", + "tab_unselected": { + "name": "tab_unselected", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "save": { - "name": "save", + "join_left": { + "name": "join_left", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "save_alt": { - "name": "save_alt", + "nightlight_round": { + "name": "nightlight_round", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "select_all": { - "name": "select_all", - "keywords": [ - "content" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "send": { - "name": "send", + "change_history": { + "name": "change_history", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shield": { - "name": "shield", + "view_headline": { + "name": "view_headline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sort": { - "name": "sort", + "alarm_off": { + "name": "alarm_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "square_foot": { - "name": "square_foot", + "trending_up": { + "name": "trending_up", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "stacked_bar_chart": { - "name": "stacked_bar_chart", + "alarm_add": { + "name": "alarm_add", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stream": { - "name": "stream", + "add_shopping_cart": { + "name": "add_shopping_cart", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tag": { - "name": "tag", + "article": { + "name": "article", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_format": { - "name": "text_format", + "info": { + "name": "info", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unarchive": { - "name": "unarchive", + "dynamic_form": { + "name": "dynamic_form", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "undo": { - "name": "undo", + "paid": { + "name": "paid", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "upcoming": { - "name": "upcoming", + "edit_off": { + "name": "edit_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "ic_edit_off_24px" } } }, - "waves": { - "name": "waves", + "history_toggle_off": { + "name": "history_toggle_off", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "web_stories": { - "name": "web_stories", + "swipe_up_alt": { + "name": "swipe_up_alt", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "weekend": { - "name": "weekend", + "bookmarks": { + "name": "bookmarks", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "where_to_vote": { - "name": "where_to_vote", + "verified": { + "name": "verified", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "1x_mobiledata": { - "name": "1x_mobiledata", + "lock_reset": { + "name": "lock_reset", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "30fps": { - "name": "30fps", + "settings_overscan": { + "name": "settings_overscan", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "3g_mobiledata": { - "name": "3g_mobiledata", + "eject": { + "name": "eject", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4g_mobiledata": { - "name": "4g_mobiledata", + "trending_down": { + "name": "trending_down", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4g_plus_mobiledata": { - "name": "4g_plus_mobiledata", + "question_answer": { + "name": "question_answer", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "60fps": { - "name": "60fps", + "turned_in": { + "name": "turned_in", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_alarm": { - "name": "access_alarm", + "settings_input_antenna": { + "name": "settings_input_antenna", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_alarms": { - "name": "access_alarms", + "request_page": { + "name": "request_page", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_time": { - "name": "access_time", + "private_connectivity": { + "name": "private_connectivity", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_time_filled": { - "name": "access_time_filled", + "fax": { + "name": "fax", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_alarm": { - "name": "add_alarm", + "table_view": { + "name": "table_view", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_home_screen": { - "name": "add_to_home_screen", + "swipe_right_alt": { + "name": "swipe_right_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ad_units": { - "name": "ad_units", + "integration_instructions": { + "name": "integration_instructions", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "air": { - "name": "air", + "swipe_up": { + "name": "swipe_up", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplanemode_active": { - "name": "airplanemode_active", + "generating_tokens": { + "name": "generating_tokens", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplanemode_inactive": { - "name": "airplanemode_inactive", + "opacity": { + "name": "opacity", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplane_ticket": { - "name": "airplane_ticket", + "favorite": { + "name": "favorite", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "aod": { - "name": "aod", + "question_mark": { + "name": "question_mark", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_alert": { - "name": "battery_alert", + "pin_end": { + "name": "pin_end", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_charging_full": { - "name": "battery_charging_full", + "source": { + "name": "source", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_full": { - "name": "battery_full", + "info_outline": { + "name": "info_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_saver": { - "name": "battery_saver", + "accessible": { + "name": "accessible", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_std": { - "name": "battery_std", + "lightbulb": { + "name": "lightbulb", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_unknown": { - "name": "battery_unknown", + "close_fullscreen": { + "name": "close_fullscreen", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bloodtype": { - "name": "bloodtype", + "copyright": { + "name": "copyright", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth": { - "name": "bluetooth", + "zoom_out": { + "name": "zoom_out", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_connected": { - "name": "bluetooth_connected", + "vertical_split": { + "name": "vertical_split", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_disabled": { - "name": "bluetooth_disabled", + "code": { + "name": "code", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_drive": { - "name": "bluetooth_drive", + "group_work": { + "name": "group_work", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_searching": { - "name": "bluetooth_searching", + "receipt": { + "name": "receipt", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_auto": { - "name": "brightness_auto", + "restore_page": { + "name": "restore_page", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_high": { - "name": "brightness_high", + "leaderboard": { + "name": "leaderboard", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_low": { - "name": "brightness_low", + "view_timeline": { + "name": "view_timeline", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_medium": { - "name": "brightness_medium", + "bug_report": { + "name": "bug_report", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cable": { - "name": "cable", + "settings_voice": { + "name": "settings_voice", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cameraswitch": { - "name": "cameraswitch", + "abc": { + "name": "abc", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "credit_score": { - "name": "credit_score", + "shopping_cart": { + "name": "shopping_cart", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dark_mode": { - "name": "dark_mode", + "javascript": { + "name": "javascript", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_saver_off": { - "name": "data_saver_off", + "commit": { + "name": "commit", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_saver_on": { - "name": "data_saver_on", + "bookmark_remove": { + "name": "bookmark_remove", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_usage": { - "name": "data_usage", + "install_mobile": { + "name": "install_mobile", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "developer_mode": { - "name": "developer_mode", + "text_rotation_angledown": { + "name": "text_rotation_angledown", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "devices": { - "name": "devices", + "fact_check": { + "name": "fact_check", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "device_thermostat": { - "name": "device_thermostat", + "favorite_border": { + "name": "favorite_border", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_on_total_silence": { - "name": "do_not_disturb_on_total_silence", + "compress": { + "name": "compress", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dvr": { - "name": "dvr", + "important_devices": { + "name": "important_devices", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edgesensor_high": { - "name": "edgesensor_high", + "swap_vertical_circle": { + "name": "swap_vertical_circle", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edgesensor_low": { - "name": "edgesensor_low", + "pending_actions": { + "name": "pending_actions", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "e_mobiledata": { - "name": "e_mobiledata", + "sensors": { + "name": "sensors", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flashlight_off": { - "name": "flashlight_off", + "work_off": { + "name": "work_off", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flashlight_on": { - "name": "flashlight_on", + "wifi_protected_setup": { + "name": "wifi_protected_setup", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flourescent": { - "name": "flourescent", + "card_giftcard": { + "name": "card_giftcard", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fmd_bad": { - "name": "fmd_bad", + "pan_tool_alt": { + "name": "pan_tool_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fmd_good": { - "name": "fmd_good", + "credit_card_off": { + "name": "credit_card_off", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gpp_bad": { - "name": "gpp_bad", + "tab": { + "name": "tab", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gpp_good": { - "name": "gpp_good", + "tour": { + "name": "tour", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gpp_maybe": { - "name": "gpp_maybe", + "next_plan": { + "name": "next_plan", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gps_fixed": { - "name": "gps_fixed", + "flight_land": { + "name": "flight_land", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gps_not_fixed": { - "name": "gps_not_fixed", + "rocket": { + "name": "rocket", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gps_off": { - "name": "gps_off", + "shop": { + "name": "shop", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "graphic_eq": { - "name": "graphic_eq", + "model_training": { + "name": "model_training", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_3x3": { - "name": "grid_3x3", + "circle_notifications": { + "name": "circle_notifications", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_4x4": { - "name": "grid_4x4", + "rowing": { + "name": "rowing", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_goldenratio": { - "name": "grid_goldenratio", + "admin_panel_settings": { + "name": "admin_panel_settings", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "g_mobiledata": { - "name": "g_mobiledata", + "fit_screen": { + "name": "fit_screen", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_auto": { - "name": "hdr_auto", + "settings_accessibility": { + "name": "settings_accessibility", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_auto_select": { - "name": "hdr_auto_select", + "expand": { + "name": "expand", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_off_select": { - "name": "hdr_off_select", + "room": { + "name": "room", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_on_select": { - "name": "hdr_on_select", + "bookmark": { + "name": "bookmark", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "h_mobiledata": { - "name": "h_mobiledata", + "touch_app": { + "name": "touch_app", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "h_plus_mobiledata": { - "name": "h_plus_mobiledata", + "bookmark_border": { + "name": "bookmark_border", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lens_blur": { - "name": "lens_blur", + "event_seat": { + "name": "event_seat", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "light_mode": { - "name": "light_mode", + "view_kanban": { + "name": "view_kanban", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_disabled": { - "name": "location_disabled", + "arrow_circle_right": { + "name": "arrow_circle_right", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_searching": { - "name": "location_searching", + "supervisor_account": { + "name": "supervisor_account", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lte_mobiledata": { - "name": "lte_mobiledata", + "rule": { + "name": "rule", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lte_plus_mobiledata": { - "name": "lte_plus_mobiledata", + "help_center": { + "name": "help_center", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "media_bluetooth_off": { - "name": "media_bluetooth_off", + "assignment_ind": { + "name": "assignment_ind", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "media_bluetooth_on": { - "name": "media_bluetooth_on", + "view_comfy_alt": { + "name": "view_comfy_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "medication": { - "name": "medication", + "pin_invoke": { + "name": "pin_invoke", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobiledata_off": { - "name": "mobiledata_off", + "delete_outline": { + "name": "delete_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobile_friendly": { - "name": "mobile_friendly", + "not_started": { + "name": "not_started", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobile_off": { - "name": "mobile_off", + "outbox": { + "name": "outbox", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_night": { - "name": "mode_night", + "delete_forever": { + "name": "delete_forever", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_standby": { - "name": "mode_standby", + "app_blocking": { + "name": "app_blocking", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "monitor_weight": { - "name": "monitor_weight", + "quickreply": { + "name": "quickreply", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nearby_error": { - "name": "nearby_error", + "arrow_circle_left": { + "name": "arrow_circle_left", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nearby_off": { - "name": "nearby_off", + "alarm": { + "name": "alarm", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_cell": { - "name": "network_cell", + "schedule": { + "name": "schedule", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_wifi": { - "name": "network_wifi", + "density_small": { + "name": "density_small", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nfc": { - "name": "nfc", + "gif": { + "name": "gif", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nightlight": { - "name": "nightlight", + "contact_support": { + "name": "contact_support", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "note_alt": { - "name": "note_alt", + "swipe_vertical": { + "name": "swipe_vertical", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "password": { - "name": "password", + "production_quantity_limits": { + "name": "production_quantity_limits", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pattern": { - "name": "pattern", + "verified_user": { + "name": "verified_user", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin": { - "name": "pin", + "get_app": { + "name": "get_app", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_lesson": { - "name": "play_lesson", + "published_with_changes": { + "name": "published_with_changes", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "price_change": { - "name": "price_change", + "note_add": { + "name": "note_add", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "price_check": { - "name": "price_check", + "not_accessible": { + "name": "not_accessible", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "quiz": { - "name": "quiz", + "credit_card": { + "name": "credit_card", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radar": { - "name": "radar", + "thumb_up": { + "name": "thumb_up", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remember_me": { - "name": "remember_me", + "shop_two": { + "name": "shop_two", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reset_tv": { - "name": "reset_tv", + "dangerous": { + "name": "dangerous", "keywords": [ - "device" + "action" ], "heights": { - "24": { + "20": { + "width": 20, + "path": "" + }, + "24": { "width": 24, - "path": "" + "path": "" } } }, - "restart_alt": { - "name": "restart_alt", + "backup": { + "name": "backup", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reviews": { - "name": "reviews", + "theaters": { + "name": "theaters", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rsvp": { - "name": "rsvp", + "analytics": { + "name": "analytics", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "r_mobiledata": { - "name": "r_mobiledata", + "camera_enhance": { + "name": "camera_enhance", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screenshot": { - "name": "screenshot", + "disabled_visible": { + "name": "disabled_visible", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_lock_landscape": { - "name": "screen_lock_landscape", + "account_box": { + "name": "account_box", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_lock_portrait": { - "name": "screen_lock_portrait", + "find_in_page": { + "name": "find_in_page", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_lock_rotation": { - "name": "screen_lock_rotation", + "grading": { + "name": "grading", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_rotation": { - "name": "screen_rotation", + "toll": { + "name": "toll", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_search_desktop": { - "name": "screen_search_desktop", + "label_outline": { + "name": "label_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd_storage": { - "name": "sd_storage", + "file_present": { + "name": "file_present", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "security_update": { - "name": "security_update", + "pending": { + "name": "pending", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "security_update_good": { - "name": "security_update_good", + "calendar_view_week": { + "name": "calendar_view_week", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "security_update_warning": { - "name": "security_update_warning", + "filter_list_alt": { + "name": "filter_list_alt", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sell": { - "name": "sell", + "thumb_down_off_alt": { + "name": "thumb_down_off_alt", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "send_to_mobile": { - "name": "send_to_mobile", + "arrow_circle_down": { + "name": "arrow_circle_down", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_suggest": { - "name": "settings_suggest", + "unpublished": { + "name": "unpublished", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_system_daydream": { - "name": "settings_system_daydream", + "view_day": { + "name": "view_day", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "share_location": { - "name": "share_location", + "addchart": { + "name": "addchart", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shortcut": { - "name": "shortcut", + "extension_off": { + "name": "extension_off", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_0_bar": { - "name": "signal_cellular_0_bar", + "view_array": { + "name": "view_array", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_4_bar": { - "name": "signal_cellular_4_bar", + "gavel": { + "name": "gavel", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_alt": { - "name": "signal_cellular_alt", + "pan_tool": { + "name": "pan_tool", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_connected_no_internet_0_bar": { - "name": "signal_cellular_connected_no_internet_0_bar", + "invert_colors": { + "name": "invert_colors", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_connected_no_internet_4_bar": { - "name": "signal_cellular_connected_no_internet_4_bar", + "picture_in_picture": { + "name": "picture_in_picture", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_nodata": { - "name": "signal_cellular_nodata", + "flight_takeoff": { + "name": "flight_takeoff", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_no_sim": { - "name": "signal_cellular_no_sim", + "announcement": { + "name": "announcement", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_null": { - "name": "signal_cellular_null", - "keywords": [ - "device" + "language": { + "name": "language", + "keywords": [ + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_off": { - "name": "signal_cellular_off", + "hourglass_disabled": { + "name": "hourglass_disabled", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_0_bar": { - "name": "signal_wifi_0_bar", + "mark_as_unread": { + "name": "mark_as_unread", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_4_bar": { - "name": "signal_wifi_4_bar", + "view_week": { + "name": "view_week", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_4_bar_lock": { - "name": "signal_wifi_4_bar_lock", + "wysiwyg": { + "name": "wysiwyg", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_bad": { - "name": "signal_wifi_bad", + "settings_brightness": { + "name": "settings_brightness", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_connected_no_internet_4": { - "name": "signal_wifi_connected_no_internet_4", + "currency_exchange": { + "name": "currency_exchange", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_off": { - "name": "signal_wifi_off", + "space_dashboard": { + "name": "space_dashboard", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_4_bar": { - "name": "signal_wifi_statusbar_4_bar", + "settings_ethernet": { + "name": "settings_ethernet", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_connected_no_internet_4": { - "name": "signal_wifi_statusbar_connected_no_internet_4", + "eco": { + "name": "eco", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_null": { - "name": "signal_wifi_statusbar_null", + "find_replace": { + "name": "find_replace", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sim_card_download": { - "name": "sim_card_download", + "delete": { + "name": "delete", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "splitscreen": { - "name": "splitscreen", + "gif_box": { + "name": "gif_box", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_score": { - "name": "sports_score", + "toc": { + "name": "toc", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "storage": { - "name": "storage", + "perm_identity": { + "name": "perm_identity", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "storm": { - "name": "storm", + "label": { + "name": "label", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "summarize": { - "name": "summarize", + "batch_prediction": { + "name": "batch_prediction", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_security_update": { - "name": "system_security_update", + "horizontal_split": { + "name": "horizontal_split", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_security_update_good": { - "name": "system_security_update_good", + "contactless": { + "name": "contactless", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_security_update_warning": { - "name": "system_security_update_warning", + "join_full": { + "name": "join_full", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "task": { - "name": "task", + "join_inner": { + "name": "join_inner", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "thermostat": { - "name": "thermostat", + "check_circle_outline": { + "name": "check_circle_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_10_select": { - "name": "timer_10_select", + "schedule_send": { + "name": "schedule_send", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_3_select": { - "name": "timer_3_select", + "free_cancellation": { + "name": "free_cancellation", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tungsten": { - "name": "tungsten", + "door_front": { + "name": "door_front", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "usb": { - "name": "usb", + "window": { + "name": "window", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "usb_off": { - "name": "usb_off", + "living": { + "name": "living", "keywords": [ - "device" + "search" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wallpaper": { - "name": "wallpaper", - "keywords": [ - "device" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "water": { - "name": "water", + "shower": { + "name": "shower", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "widgets": { - "name": "widgets", + "manage_search": { + "name": "manage_search", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_calling_3": { - "name": "wifi_calling_3", + "blender": { + "name": "blender", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_lock": { - "name": "wifi_lock", + "coffee": { + "name": "coffee", "keywords": [ - "device" + "search" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_tethering": { - "name": "wifi_tethering", + "chair": { + "name": "chair", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_tethering_error_rounded": { - "name": "wifi_tethering_error_rounded", + "door_back": { + "name": "door_back", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_tethering_off": { - "name": "wifi_tethering_off", + "light": { + "name": "light", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_chart": { - "name": "add_chart", + "feed": { + "name": "feed", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_comment": { - "name": "add_comment", + "dining": { + "name": "dining", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_horizontal_center": { - "name": "align_horizontal_center", + "bedroom_child": { + "name": "bedroom_child", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_horizontal_left": { - "name": "align_horizontal_left", + "door_sliding": { + "name": "door_sliding", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_horizontal_right": { - "name": "align_horizontal_right", + "yard": { + "name": "yard", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_vertical_bottom": { - "name": "align_vertical_bottom", + "bedroom_parent": { + "name": "bedroom_parent", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_vertical_center": { - "name": "align_vertical_center", + "camera_outdoor": { + "name": "camera_outdoor", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_vertical_top": { - "name": "align_vertical_top", + "bed": { + "name": "bed", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "area_chart": { - "name": "area_chart", + "camera_indoor": { + "name": "camera_indoor", "keywords": [ - "editor" + "search" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "attach_file": { - "name": "attach_file", + "bedroom_baby": { + "name": "bedroom_baby", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attach_money": { - "name": "attach_money", + "garage": { + "name": "garage", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_graph": { - "name": "auto_graph", + "table_bar": { + "name": "table_bar", "keywords": [ - "editor" + "search" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bar_chart": { - "name": "bar_chart", + "flatware": { + "name": "flatware", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_all": { - "name": "border_all", + "coffee_maker": { + "name": "coffee_maker", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_bottom": { - "name": "border_bottom", + "bathroom": { + "name": "bathroom", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_clear": { - "name": "border_clear", + "podcasts": { + "name": "podcasts", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_color": { - "name": "border_color", + "table_restaurant": { + "name": "table_restaurant", "keywords": [ - "editor" + "search" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_horizontal": { - "name": "border_horizontal", + "chair_alt": { + "name": "chair_alt", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_inner": { - "name": "border_inner", + "doorbell": { + "name": "doorbell", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_left": { - "name": "border_left", + "nightlight": { + "name": "nightlight", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_outer": { - "name": "border_outer", + "security_update": { + "name": "security_update", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_right": { - "name": "border_right", + "signal_wifi_4_bar": { + "name": "signal_wifi_4_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_style": { - "name": "border_style", + "medication": { + "name": "medication", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_top": { - "name": "border_top", + "devices": { + "name": "devices", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_vertical": { - "name": "border_vertical", + "bloodtype": { + "name": "bloodtype", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bubble_chart": { - "name": "bubble_chart", + "battery_alert": { + "name": "battery_alert", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "checklist": { - "name": "checklist", + "shortcut": { + "name": "shortcut", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "checklist_rtl": { - "name": "checklist_rtl", + "screenshot": { + "name": "screenshot", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "drag_handle": { - "name": "drag_handle", + "brightness_high": { + "name": "brightness_high", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "draw": { - "name": "draw", + "network_wifi": { + "name": "network_wifi", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_note": { - "name": "edit_note", + "lte_plus_mobiledata": { + "name": "lte_plus_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_center": { - "name": "format_align_center", + "play_lesson": { + "name": "play_lesson", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_justify": { - "name": "format_align_justify", + "wifi_tethering": { + "name": "wifi_tethering", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_left": { - "name": "format_align_left", + "share_location": { + "name": "share_location", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_right": { - "name": "format_align_right", + "aod": { + "name": "aod", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_bold": { - "name": "format_bold", + "quiz": { + "name": "quiz", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_clear": { - "name": "format_clear", + "developer_mode": { + "name": "developer_mode", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_color_fill": { - "name": "format_color_fill", + "do_not_disturb_on_total_silence": { + "name": "do_not_disturb_on_total_silence", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_color_reset": { - "name": "format_color_reset", + "e_mobiledata": { + "name": "e_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_color_text": { - "name": "format_color_text", + "mobiledata_off": { + "name": "mobiledata_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_indent_decrease": { - "name": "format_indent_decrease", + "data_usage": { + "name": "data_usage", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_indent_increase": { - "name": "format_indent_increase", + "storm": { + "name": "storm", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_italic": { - "name": "format_italic", + "60fps": { + "name": "60fps", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_line_spacing": { - "name": "format_line_spacing", + "gpp_good": { + "name": "gpp_good", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_list_bulleted": { - "name": "format_list_bulleted", + "screen_lock_landscape": { + "name": "screen_lock_landscape", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_list_numbered": { - "name": "format_list_numbered", + "graphic_eq": { + "name": "graphic_eq", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_list_numbered_rtl": { - "name": "format_list_numbered_rtl", + "nearby_error": { + "name": "nearby_error", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_paint": { - "name": "format_paint", + "bluetooth_searching": { + "name": "bluetooth_searching", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_quote": { - "name": "format_quote", + "sd_storage": { + "name": "sd_storage", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_shapes": { - "name": "format_shapes", + "mobile_off": { + "name": "mobile_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_size": { - "name": "format_size", + "signal_wifi_statusbar_connected_no_internet_4": { + "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_strikethrough": { - "name": "format_strikethrough", + "hdr_auto_select": { + "name": "hdr_auto_select", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_textdirection_l_to_r": { - "name": "format_textdirection_l_to_r", + "battery_std": { + "name": "battery_std", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_textdirection_r_to_l": { - "name": "format_textdirection_r_to_l", + "screen_lock_portrait": { + "name": "screen_lock_portrait", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_underlined": { - "name": "format_underlined", + "task": { + "name": "task", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "functions": { - "name": "functions", + "wifi_lock": { + "name": "wifi_lock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "height": { - "name": "height", + "water": { + "name": "water", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "highlight": { - "name": "highlight", + "grid_4x4": { + "name": "grid_4x4", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "horizontal_distribute": { - "name": "horizontal_distribute", + "gps_off": { + "name": "gps_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "horizontal_rule": { - "name": "horizontal_rule", + "phishing": { + "name": "phishing", "keywords": [ - "editor" + "device" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_chart": { - "name": "insert_chart", + "cable": { + "name": "cable", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_chart_outlined": { - "name": "insert_chart_outlined", + "fmd_bad": { + "name": "fmd_bad", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_comment": { - "name": "insert_comment", + "brightness_medium": { + "name": "brightness_medium", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_drive_file": { - "name": "insert_drive_file", + "airplanemode_active": { + "name": "airplanemode_active", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_emoticon": { - "name": "insert_emoticon", + "gps_not_fixed": { + "name": "gps_not_fixed", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_invitation": { - "name": "insert_invitation", + "widgets": { + "name": "widgets", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_link": { - "name": "insert_link", + "access_time": { + "name": "access_time", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_photo": { - "name": "insert_photo", + "wifi_tethering_error_rounded": { + "name": "wifi_tethering_error_rounded", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "linear_scale": { - "name": "linear_scale", + "tungsten": { + "name": "tungsten", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "margin": { - "name": "margin", + "3g_mobiledata": { + "name": "3g_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "merge_type": { - "name": "merge_type", + "bluetooth_connected": { + "name": "bluetooth_connected", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode": { - "name": "mode", + "punch_clock": { + "name": "punch_clock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_comment": { - "name": "mode_comment", + "g_mobiledata": { + "name": "g_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_edit": { - "name": "mode_edit", + "storage": { + "name": "storage", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_edit_outline": { - "name": "mode_edit_outline", + "media_bluetooth_on": { + "name": "media_bluetooth_on", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "monetization_on": { - "name": "monetization_on", + "reviews": { + "name": "reviews", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "money_off": { - "name": "money_off", + "signal_cellular_alt": { + "name": "signal_cellular_alt", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "money_off_csred": { - "name": "money_off_csred", + "usb": { + "name": "usb", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "multiline_chart": { - "name": "multiline_chart", + "mode_standby": { + "name": "mode_standby", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notes": { - "name": "notes", + "signal_wifi_off": { + "name": "signal_wifi_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "padding": { - "name": "padding", + "bluetooth_disabled": { + "name": "bluetooth_disabled", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pie_chart": { - "name": "pie_chart", + "nfc": { + "name": "nfc", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pie_chart_outline": { - "name": "pie_chart_outline", - "keywords": [ - "editor" + "signal_cellular_connected_no_internet_4_bar": { + "name": "signal_cellular_connected_no_internet_4_bar", + "keywords": [ + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pie_chart_outlined": { - "name": "pie_chart_outlined", + "system_security_update_good": { + "name": "system_security_update_good", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "post_add": { - "name": "post_add", + "radar": { + "name": "radar", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "publish": { - "name": "publish", + "network_cell": { + "name": "network_cell", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "query_stats": { - "name": "query_stats", + "system_security_update": { + "name": "system_security_update", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "scatter_plot": { - "name": "scatter_plot", + "reset_tv": { + "name": "reset_tv", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "schema": { - "name": "schema", + "brightness_low": { + "name": "brightness_low", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "score": { - "name": "score", + "signal_wifi_4_bar_lock": { + "name": "signal_wifi_4_bar_lock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "short_text": { - "name": "short_text", + "hdr_auto": { + "name": "hdr_auto", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "show_chart": { - "name": "show_chart", + "battery_unknown": { + "name": "battery_unknown", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "space_bar": { - "name": "space_bar", + "location_disabled": { + "name": "location_disabled", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stacked_line_chart": { - "name": "stacked_line_chart", + "pattern": { + "name": "pattern", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "strikethrough_s": { - "name": "strikethrough_s", + "dvr": { + "name": "dvr", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subscript": { - "name": "subscript", + "light_mode": { + "name": "light_mode", "keywords": [ - "editor" + "device" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "superscript": { - "name": "superscript", + "pin": { + "name": "pin", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "table_chart": { - "name": "table_chart", + "signal_cellular_0_bar": { + "name": "signal_cellular_0_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "table_rows": { - "name": "table_rows", + "rsvp": { + "name": "rsvp", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_fields": { - "name": "text_fields", + "location_searching": { + "name": "location_searching", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "title": { - "name": "title", + "signal_cellular_4_bar": { + "name": "signal_cellular_4_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_align_bottom": { - "name": "vertical_align_bottom", + "security_update_warning": { + "name": "security_update_warning", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_align_center": { - "name": "vertical_align_center", + "grid_goldenratio": { + "name": "grid_goldenratio", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_align_top": { - "name": "vertical_align_top", + "wallpaper": { + "name": "wallpaper", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_distribute": { - "name": "vertical_distribute", + "sports_score": { + "name": "sports_score", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wrap_text": { - "name": "wrap_text", + "media_bluetooth_off": { + "name": "media_bluetooth_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "approval": { - "name": "approval", + "screen_lock_rotation": { + "name": "screen_lock_rotation", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attachment": { - "name": "attachment", + "gpp_maybe": { + "name": "gpp_maybe", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attach_email": { - "name": "attach_email", + "battery_charging_full": { + "name": "battery_charging_full", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud": { - "name": "cloud", + "dark_mode": { + "name": "dark_mode", "keywords": [ - "file" + "device" ], "heights": { - "24": { + "20": { + "width": 20, + "path": "" + }, + "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_circle": { - "name": "cloud_circle", + "wifi_tethering_off": { + "name": "wifi_tethering_off", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_done": { - "name": "cloud_done", + "signal_cellular_connected_no_internet_0_bar": { + "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_download": { - "name": "cloud_download", + "settings_suggest": { + "name": "settings_suggest", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_off": { - "name": "cloud_off", + "signal_wifi_bad": { + "name": "signal_wifi_bad", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_queue": { - "name": "cloud_queue", + "medication_liquid": { + "name": "medication_liquid", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_upload": { - "name": "cloud_upload", + "wifi_password": { + "name": "wifi_password", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "create_new_folder": { - "name": "create_new_folder", + "1x_mobiledata": { + "name": "1x_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "download": { - "name": "download", + "brightness_auto": { + "name": "brightness_auto", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "downloading": { - "name": "downloading", + "usb_off": { + "name": "usb_off", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "download_done": { - "name": "download_done", + "mobile_friendly": { + "name": "mobile_friendly", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "download_for_offline": { - "name": "download_for_offline", + "send_to_mobile": { + "name": "send_to_mobile", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_move": { - "name": "drive_file_move", + "wifi_calling_3": { + "name": "wifi_calling_3", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_move_outline": { - "name": "drive_file_move_outline", + "wifi_channel": { + "name": "wifi_channel", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_move_rtl": { - "name": "drive_file_move_rtl", + "data_saver_on": { + "name": "data_saver_on", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_rename_outline": { - "name": "drive_file_rename_outline", + "fmd_good": { + "name": "fmd_good", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_folder_upload": { - "name": "drive_folder_upload", + "r_mobiledata": { + "name": "r_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_download": { - "name": "file_download", + "signal_wifi_statusbar_null": { + "name": "signal_wifi_statusbar_null", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_download_done": { - "name": "file_download_done", + "timer_3_select": { + "name": "timer_3_select", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_download_off": { - "name": "file_download_off", + "edgesensor_high": { + "name": "edgesensor_high", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_upload": { - "name": "file_upload", + "4g_mobiledata": { + "name": "4g_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder": { - "name": "folder", + "bluetooth_drive": { + "name": "bluetooth_drive", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder_open": { - "name": "folder_open", + "hdr_off_select": { + "name": "hdr_off_select", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder_shared": { - "name": "folder_shared", + "credit_score": { + "name": "credit_score", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_view": { - "name": "grid_view", + "sell": { + "name": "sell", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "request_quote": { - "name": "request_quote", + "gps_fixed": { + "name": "gps_fixed", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rule_folder": { - "name": "rule_folder", + "access_alarm": { + "name": "access_alarm", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "snippet_folder": { - "name": "snippet_folder", + "h_mobiledata": { + "name": "h_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_snippet": { - "name": "text_snippet", + "data_saver_off": { + "name": "data_saver_off", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "topic": { - "name": "topic", + "price_check": { + "name": "price_check", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "upload": { - "name": "upload", + "h_plus_mobiledata": { + "name": "h_plus_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "upload_file": { - "name": "upload_file", + "airplanemode_inactive": { + "name": "airplanemode_inactive", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "workspaces": { - "name": "workspaces", + "splitscreen": { + "name": "splitscreen", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "workspaces_filled": { - "name": "workspaces_filled", + "signal_cellular_null": { + "name": "signal_cellular_null", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "workspaces_outline": { - "name": "workspaces_outline", + "gpp_bad": { + "name": "gpp_bad", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "browser_not_supported": { - "name": "browser_not_supported", + "edgesensor_low": { + "name": "edgesensor_low", "keywords": [ - "hardware" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cast": { - "name": "cast", + "flashlight_on": { + "name": "flashlight_on", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cast_connected": { - "name": "cast_connected", + "ad_units": { + "name": "ad_units", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cast_for_education": { - "name": "cast_for_education", + "mode_night": { + "name": "mode_night", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "computer": { - "name": "computer", + "flashlight_off": { + "name": "flashlight_off", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "connected_tv": { - "name": "connected_tv", + "ssid_chart": { + "name": "ssid_chart", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "desktop_mac": { - "name": "desktop_mac", + "monitor_weight": { + "name": "monitor_weight", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "desktop_windows": { - "name": "desktop_windows", + "summarize": { + "name": "summarize", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "developer_board": { - "name": "developer_board", + "airplane_ticket": { + "name": "airplane_ticket", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "developer_board_off": { - "name": "developer_board_off", + "system_security_update_warning": { + "name": "system_security_update_warning", "keywords": [ - "hardware" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "devices_other": { - "name": "devices_other", + "remember_me": { + "name": "remember_me", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "device_hub": { - "name": "device_hub", + "lan": { + "name": "lan", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "device_unknown": { - "name": "device_unknown", + "monitor_heart": { + "name": "monitor_heart", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dock": { - "name": "dock", + "signal_cellular_no_sim": { + "name": "signal_cellular_no_sim", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "earbuds": { - "name": "earbuds", + "signal_wifi_connected_no_internet_4": { + "name": "signal_wifi_connected_no_internet_4", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "earbuds_battery": { - "name": "earbuds_battery", + "note_alt": { + "name": "note_alt", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gamepad": { - "name": "gamepad", + "timer_10_select": { + "name": "timer_10_select", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headphones": { - "name": "headphones", + "screen_rotation": { + "name": "screen_rotation", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headphones_battery": { - "name": "headphones_battery", + "settings_system_daydream": { + "name": "settings_system_daydream", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headset": { - "name": "headset", + "price_change": { + "name": "price_change", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headset_mic": { - "name": "headset_mic", + "cameraswitch": { + "name": "cameraswitch", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headset_off": { - "name": "headset_off", + "bluetooth": { + "name": "bluetooth", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_max": { - "name": "home_max", + "30fps": { + "name": "30fps", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_mini": { - "name": "home_mini", + "add_alarm": { + "name": "add_alarm", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard": { - "name": "keyboard", + "sim_card_download": { + "name": "sim_card_download", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_alt": { - "name": "keyboard_alt", + "thermostat": { + "name": "thermostat", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_down": { - "name": "keyboard_arrow_down", + "battery_saver": { + "name": "battery_saver", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_left": { - "name": "keyboard_arrow_left", + "signal_cellular_nodata": { + "name": "signal_cellular_nodata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_right": { - "name": "keyboard_arrow_right", + "security_update_good": { + "name": "security_update_good", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_up": { - "name": "keyboard_arrow_up", + "screen_search_desktop": { + "name": "screen_search_desktop", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_backspace": { - "name": "keyboard_backspace", + "lte_mobiledata": { + "name": "lte_mobiledata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_capslock": { - "name": "keyboard_capslock", + "4g_plus_mobiledata": { + "name": "4g_plus_mobiledata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_hide": { - "name": "keyboard_hide", + "wifi_tethering_error": { + "name": "wifi_tethering_error", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_return": { - "name": "keyboard_return", + "air": { + "name": "air", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_tab": { - "name": "keyboard_tab", + "signal_wifi_0_bar": { + "name": "signal_wifi_0_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_voice": { - "name": "keyboard_voice", + "flourescent": { + "name": "flourescent", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop": { - "name": "laptop", + "access_alarms": { + "name": "access_alarms", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop_chromebook": { - "name": "laptop_chromebook", + "access_time_filled": { + "name": "access_time_filled", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop_mac": { - "name": "laptop_mac", + "signal_wifi_statusbar_4_bar": { + "name": "signal_wifi_statusbar_4_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop_windows": { - "name": "laptop_windows", + "wifi_find": { + "name": "wifi_find", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "memory": { - "name": "memory", + "battery_full": { + "name": "battery_full", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "monitor": { - "name": "monitor", + "add_to_home_screen": { + "name": "add_to_home_screen", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mouse": { - "name": "mouse", + "lens_blur": { + "name": "lens_blur", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink": { - "name": "phonelink", + "hdr_on_select": { + "name": "hdr_on_select", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_off": { - "name": "phonelink_off", + "signal_cellular_off": { + "name": "signal_cellular_off", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_android": { - "name": "phone_android", + "restart_alt": { + "name": "restart_alt", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_iphone": { - "name": "phone_iphone", + "device_thermostat": { + "name": "device_thermostat", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "point_of_sale": { - "name": "point_of_sale", + "nearby_off": { + "name": "nearby_off", "keywords": [ - "hardware" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "power_input": { - "name": "power_input", + "grid_3x3": { + "name": "grid_3x3", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "router": { - "name": "router", + "password": { + "name": "password", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "scanner": { - "name": "scanner", + "stroller": { + "name": "stroller", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "security": { - "name": "security", + "fence": { + "name": "fence", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sim_card": { - "name": "sim_card", + "do_not_touch": { + "name": "do_not_touch", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smartphone": { - "name": "smartphone", + "houseboat": { + "name": "houseboat", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_display": { - "name": "smart_display", + "grass": { + "name": "grass", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_screen": { - "name": "smart_screen", + "storefront": { + "name": "storefront", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_toy": { - "name": "smart_toy", + "apartment": { + "name": "apartment", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker": { - "name": "speaker", + "house_siding": { + "name": "house_siding", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_group": { - "name": "speaker_group", + "gite": { + "name": "gite", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tablet": { - "name": "tablet", + "casino": { + "name": "casino", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tablet_android": { - "name": "tablet_android", + "bungalow": { + "name": "bungalow", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tablet_mac": { - "name": "tablet_mac", + "no_drinks": { + "name": "no_drinks", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "toys": { - "name": "toys", + "elevator": { + "name": "elevator", "keywords": [ - "hardware" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tv": { - "name": "tv", + "child_friendly": { + "name": "child_friendly", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videogame_asset": { - "name": "videogame_asset", + "fitness_center": { + "name": "fitness_center", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videogame_asset_off": { - "name": "videogame_asset_off", + "smoke_free": { + "name": "smoke_free", "keywords": [ - "hardware" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "watch": { - "name": "watch", + "smoking_rooms": { + "name": "smoking_rooms", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensor_door": { - "name": "sensor_door", + "tapas": { + "name": "tapas", "keywords": [ - "home" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensor_window": { - "name": "sensor_window", + "microwave": { + "name": "microwave", "keywords": [ - "home" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "10mp": { - "name": "10mp", + "foundation": { + "name": "foundation", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "11mp": { - "name": "11mp", + "no_meeting_room": { + "name": "no_meeting_room", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "12mp": { - "name": "12mp", + "spa": { + "name": "spa", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "13mp": { - "name": "13mp", + "other_houses": { + "name": "other_houses", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "14mp": { - "name": "14mp", + "roofing": { + "name": "roofing", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "15mp": { - "name": "15mp", + "pool": { + "name": "pool", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "16mp": { - "name": "16mp", + "food_bank": { + "name": "food_bank", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "17mp": { - "name": "17mp", + "stairs": { + "name": "stairs", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "18mp": { - "name": "18mp", + "no_stroller": { + "name": "no_stroller", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "19mp": { - "name": "19mp", + "meeting_room": { + "name": "meeting_room", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "20mp": { - "name": "20mp", + "fire_extinguisher": { + "name": "fire_extinguisher", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "21mp": { - "name": "21mp", + "no_cell": { + "name": "no_cell", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "22mp": { - "name": "22mp", + "all_inclusive": { + "name": "all_inclusive", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "23mp": { - "name": "23mp", + "charging_station": { + "name": "charging_station", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "24mp": { - "name": "24mp", + "dry": { + "name": "dry", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "2mp": { - "name": "2mp", + "countertops": { + "name": "countertops", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "30fps_select": { - "name": "30fps_select", + "child_care": { + "name": "child_care", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "3mp": { - "name": "3mp", + "beach_access": { + "name": "beach_access", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4mp": { - "name": "4mp", + "no_photography": { + "name": "no_photography", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "5mp": { - "name": "5mp", + "ac_unit": { + "name": "ac_unit", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "60fps_select": { - "name": "60fps_select", + "rv_hookup": { + "name": "rv_hookup", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6mp": { - "name": "6mp", + "holiday_village": { + "name": "holiday_village", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "7mp": { - "name": "7mp", + "family_restroom": { + "name": "family_restroom", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "8mp": { - "name": "8mp", + "wheelchair_pickup": { + "name": "wheelchair_pickup", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "9mp": { - "name": "9mp", + "room_preferences": { + "name": "room_preferences", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_a_photo": { - "name": "add_a_photo", + "no_backpack": { + "name": "no_backpack", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_photo_alternate": { - "name": "add_photo_alternate", + "business_center": { + "name": "business_center", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_photos": { - "name": "add_to_photos", + "tty": { + "name": "tty", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "adjust": { - "name": "adjust", + "airport_shuttle": { + "name": "airport_shuttle", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "animation": { - "name": "animation", + "cottage": { + "name": "cottage", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "assistant": { - "name": "assistant", + "rice_bowl": { + "name": "rice_bowl", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assistant_photo": { - "name": "assistant_photo", + "soap": { + "name": "soap", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "audiotrack": { - "name": "audiotrack", + "chalet": { + "name": "chalet", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "autofps_select": { - "name": "autofps_select", + "do_not_step": { + "name": "do_not_step", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_awesome": { - "name": "auto_awesome", + "checkroom": { + "name": "checkroom", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_awesome_mosaic": { - "name": "auto_awesome_mosaic", + "backpack": { + "name": "backpack", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_awesome_motion": { - "name": "auto_awesome_motion", + "sports_bar": { + "name": "sports_bar", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_fix_high": { - "name": "auto_fix_high", + "hot_tub": { + "name": "hot_tub", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_fix_normal": { - "name": "auto_fix_normal", + "iron": { + "name": "iron", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_fix_off": { - "name": "auto_fix_off", + "bathtub": { + "name": "bathtub", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_stories": { - "name": "auto_stories", + "umbrella": { + "name": "umbrella", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedtime": { - "name": "bedtime", + "baby_changing_station": { + "name": "baby_changing_station", "keywords": [ - "image" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_circular": { - "name": "blur_circular", + "crib": { + "name": "crib", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_linear": { - "name": "blur_linear", + "golf_course": { + "name": "golf_course", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_off": { - "name": "blur_off", + "wash": { + "name": "wash", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_on": { - "name": "blur_on", + "no_flash": { + "name": "no_flash", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_1": { - "name": "brightness_1", + "carpenter": { + "name": "carpenter", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_2": { - "name": "brightness_2", + "balcony": { + "name": "balcony", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_3": { - "name": "brightness_3", + "kitchen": { + "name": "kitchen", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_4": { - "name": "brightness_4", + "escalator_warning": { + "name": "escalator_warning", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_5": { - "name": "brightness_5", + "house": { + "name": "house", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_6": { - "name": "brightness_6", + "escalator": { + "name": "escalator", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_7": { - "name": "brightness_7", + "free_breakfast": { + "name": "free_breakfast", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "broken_image": { - "name": "broken_image", + "corporate_fare": { + "name": "corporate_fare", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brush": { - "name": "brush", + "no_food": { + "name": "no_food", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "burst_mode": { - "name": "burst_mode", + "night_shelter": { + "name": "night_shelter", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera": { - "name": "camera", + "bento": { + "name": "bento", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_alt": { - "name": "camera_alt", + "cabin": { + "name": "cabin", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_front": { - "name": "camera_front", + "water_damage": { + "name": "water_damage", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_rear": { - "name": "camera_rear", + "room_service": { + "name": "room_service", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_roll": { - "name": "camera_roll", + "villa": { + "name": "villa", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cases": { - "name": "cases", + "mood": { + "name": "mood", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "center_focus_strong": { - "name": "center_focus_strong", + "snowboarding": { + "name": "snowboarding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "center_focus_weak": { - "name": "center_focus_weak", + "whatsapp": { + "name": "whatsapp", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "circle": { - "name": "circle", + "safety_divider": { + "name": "safety_divider", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "collections": { - "name": "collections", + "people": { + "name": "people", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "collections_bookmark": { - "name": "collections_bookmark", + "history_edu": { + "name": "history_edu", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "colorize": { - "name": "colorize", + "pages": { + "name": "pages", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "color_lens": { - "name": "color_lens", + "groups": { + "name": "groups", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "compare": { - "name": "compare", + "sentiment_neutral": { + "name": "sentiment_neutral", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "control_point": { - "name": "control_point", + "cookie": { + "name": "cookie", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "control_point_duplicate": { - "name": "control_point_duplicate", + "sports_hockey": { + "name": "sports_hockey", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop": { - "name": "crop", + "workspace_premium": { + "name": "workspace_premium", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_16_9": { - "name": "crop_16_9", + "sentiment_very_dissatisfied": { + "name": "sentiment_very_dissatisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_3_2": { - "name": "crop_3_2", + "sports_soccer": { + "name": "sports_soccer", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_5_4": { - "name": "crop_5_4", + "sledding": { + "name": "sledding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_7_5": { - "name": "crop_7_5", + "emoji_symbols": { + "name": "emoji_symbols", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_din": { - "name": "crop_din", + "emoji_nature": { + "name": "emoji_nature", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_free": { - "name": "crop_free", + "sports_handball": { + "name": "sports_handball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_landscape": { - "name": "crop_landscape", + "follow_the_signs": { + "name": "follow_the_signs", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_original": { - "name": "crop_original", + "sports_basketball": { + "name": "sports_basketball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_portrait": { - "name": "crop_portrait", + "pix": { + "name": "pix", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_rotate": { - "name": "crop_rotate", + "hiking": { + "name": "hiking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_square": { - "name": "crop_square", + "sports_martial_arts": { + "name": "sports_martial_arts", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dehaze": { - "name": "dehaze", + "construction": { + "name": "construction", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "details": { - "name": "details", + "public_off": { + "name": "public_off", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dirty_lens": { - "name": "dirty_lens", + "sports_tennis": { + "name": "sports_tennis", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit": { - "name": "edit", + "group_add": { + "name": "group_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "euro": { - "name": "euro", + "poll": { + "name": "poll", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure": { - "name": "exposure", + "military_tech": { + "name": "military_tech", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_neg_1": { - "name": "exposure_neg_1", + "connect_without_contact": { + "name": "connect_without_contact", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_neg_2": { - "name": "exposure_neg_2", + "recommend": { + "name": "recommend", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "ic_recommend_24px" } } }, - "exposure_plus_1": { - "name": "exposure_plus_1", + "king_bed": { + "name": "king_bed", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_plus_2": { - "name": "exposure_plus_2", + "skateboarding": { + "name": "skateboarding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_zero": { - "name": "exposure_zero", + "facebook": { + "name": "facebook", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "face_retouching_natural": { - "name": "face_retouching_natural", + "man": { + "name": "man", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "face_retouching_off": { - "name": "face_retouching_off", + "school": { + "name": "school", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter": { - "name": "filter", + "female": { + "name": "female", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_1": { - "name": "filter_1", + "notifications": { + "name": "notifications", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_2": { - "name": "filter_2", + "notifications_paused": { + "name": "notifications_paused", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_3": { - "name": "filter_3", + "reduce_capacity": { + "name": "reduce_capacity", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_4": { - "name": "filter_4", + "sports_esports": { + "name": "sports_esports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_5": { - "name": "filter_5", + "thumb_down_alt": { + "name": "thumb_down_alt", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_6": { - "name": "filter_6", + "ios_share": { + "name": "ios_share", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_7": { - "name": "filter_7", + "sports_volleyball": { + "name": "sports_volleyball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_8": { - "name": "filter_8", + "sports_golf": { + "name": "sports_golf", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_9": { - "name": "filter_9", + "sentiment_satisfied": { + "name": "sentiment_satisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_9_plus": { - "name": "filter_9_plus", + "kitesurfing": { + "name": "kitesurfing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_b_and_w": { - "name": "filter_b_and_w", + "add_moderator": { + "name": "add_moderator", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_center_focus": { - "name": "filter_center_focus", + "emoji_events": { + "name": "emoji_events", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_drama": { - "name": "filter_drama", + "psychology": { + "name": "psychology", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_frames": { - "name": "filter_frames", + "outdoor_grill": { + "name": "outdoor_grill", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_hdr": { - "name": "filter_hdr", + "heart_broken": { + "name": "heart_broken", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_none": { - "name": "filter_none", + "sentiment_very_satisfied": { + "name": "sentiment_very_satisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_tilt_shift": { - "name": "filter_tilt_shift", + "fitbit": { + "name": "fitbit", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_vintage": { - "name": "filter_vintage", + "transgender": { + "name": "transgender", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flare": { - "name": "flare", + "piano": { + "name": "piano", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flash_auto": { - "name": "flash_auto", + "whatshot": { + "name": "whatshot", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flash_off": { - "name": "flash_off", + "sanitizer": { + "name": "sanitizer", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flash_on": { - "name": "flash_on", + "person_add": { + "name": "person_add", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip": { - "name": "flip", + "share": { + "name": "share", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_camera_android": { - "name": "flip_camera_android", + "emoji_objects": { + "name": "emoji_objects", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_camera_ios": { - "name": "flip_camera_ios", + "male": { + "name": "male", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gradient": { - "name": "gradient", + "piano_off": { + "name": "piano_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grain": { - "name": "grain", + "architecture": { + "name": "architecture", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_off": { - "name": "grid_off", + "science": { + "name": "science", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_on": { - "name": "grid_on", + "surfing": { + "name": "surfing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_enhanced_select": { - "name": "hdr_enhanced_select", + "person_add_alt_1": { + "name": "person_add_alt_1", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_off": { - "name": "hdr_off", + "co2": { + "name": "co2", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_on": { - "name": "hdr_on", + "public": { + "name": "public", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_plus": { - "name": "hdr_plus", + "luggage": { + "name": "luggage", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_strong": { - "name": "hdr_strong", + "emoji_food_beverage": { + "name": "emoji_food_beverage", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_weak": { - "name": "hdr_weak", + "personal_injury": { + "name": "personal_injury", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "healing": { - "name": "healing", + "person_add_alt": { + "name": "person_add_alt", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hevc": { - "name": "hevc", + "person_remove_alt_1": { + "name": "person_remove_alt_1", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hide_image": { - "name": "hide_image", + "engineering": { + "name": "engineering", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "image": { - "name": "image", + "group_remove": { + "name": "group_remove", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "image_aspect_ratio": { - "name": "image_aspect_ratio", + "party_mode": { + "name": "party_mode", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "image_not_supported": { - "name": "image_not_supported", + "sports_football": { + "name": "sports_football", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "image_search": { - "name": "image_search", + "downhill_skiing": { + "name": "downhill_skiing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "incomplete_circle": { - "name": "incomplete_circle", + "coronavirus": { + "name": "coronavirus", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "iso": { - "name": "iso", + "thumb_up_alt": { + "name": "thumb_up_alt", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "landscape": { - "name": "landscape", + "people_outline": { + "name": "people_outline", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "leak_add": { - "name": "leak_add", + "south_america": { + "name": "south_america", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "leak_remove": { - "name": "leak_remove", + "paragliding": { + "name": "paragliding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lens": { - "name": "lens", + "single_bed": { + "name": "single_bed", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "linked_camera": { - "name": "linked_camera", + "boy": { + "name": "boy", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks": { - "name": "looks", + "person_remove": { + "name": "person_remove", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_3": { - "name": "looks_3", + "front_hand": { + "name": "front_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_4": { - "name": "looks_4", + "sick": { + "name": "sick", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_5": { - "name": "looks_5", + "elderly": { + "name": "elderly", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_6": { - "name": "looks_6", + "girl": { + "name": "girl", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_one": { - "name": "looks_one", + "kayaking": { + "name": "kayaking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_two": { - "name": "looks_two", + "add_reaction": { + "name": "add_reaction", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "loupe": { - "name": "loupe", + "sports_kabaddi": { + "name": "sports_kabaddi", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_external_off": { - "name": "mic_external_off", + "recycling": { + "name": "recycling", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_external_on": { - "name": "mic_external_on", + "nordic_walking": { + "name": "nordic_walking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "monochrome_photos": { - "name": "monochrome_photos", + "sentiment_dissatisfied": { + "name": "sentiment_dissatisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_auto": { - "name": "motion_photos_auto", + "fireplace": { + "name": "fireplace", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_off": { - "name": "motion_photos_off", + "person_off": { + "name": "person_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_on": { - "name": "motion_photos_on", + "masks": { + "name": "masks", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_pause": { - "name": "motion_photos_pause", + "back_hand": { + "name": "back_hand", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_paused": { - "name": "motion_photos_paused", + "compost": { + "name": "compost", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "movie_creation": { - "name": "movie_creation", + "water_drop": { + "name": "water_drop", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "movie_filter": { - "name": "movie_filter", + "catching_pokemon": { + "name": "catching_pokemon", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mp": { - "name": "mp", + "sports_cricket": { + "name": "sports_cricket", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "music_note": { - "name": "music_note", + "location_city": { + "name": "location_city", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "music_off": { - "name": "music_off", + "person_outline": { + "name": "person_outline", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nature": { - "name": "nature", + "plus_one": { + "name": "plus_one", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nature_people": { - "name": "nature_people", + "nights_stay": { + "name": "nights_stay", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "navigate_before": { - "name": "navigate_before", + "notifications_off": { + "name": "notifications_off", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "navigate_next": { - "name": "navigate_next", + "emoji_transportation": { + "name": "emoji_transportation", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "palette": { - "name": "palette", + "notifications_active": { + "name": "notifications_active", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama": { - "name": "panorama", + "ice_skating": { + "name": "ice_skating", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_fish_eye": { - "name": "panorama_fish_eye", + "sports_rugby": { + "name": "sports_rugby", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_horizontal": { - "name": "panorama_horizontal", + "woman": { + "name": "woman", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_horizontal_select": { - "name": "panorama_horizontal_select", + "group": { + "name": "group", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_photosphere": { - "name": "panorama_photosphere", + "group_off": { + "name": "group_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_photosphere_select": { - "name": "panorama_photosphere_select", + "scale": { + "name": "scale", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_vertical": { - "name": "panorama_vertical", + "no_luggage": { + "name": "no_luggage", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_vertical_select": { - "name": "panorama_vertical_select", + "clean_hands": { + "name": "clean_hands", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_wide_angle": { - "name": "panorama_wide_angle", + "real_estate_agent": { + "name": "real_estate_agent", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_wide_angle_select": { - "name": "panorama_wide_angle_select", + "waving_hand": { + "name": "waving_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo": { - "name": "photo", + "vaccines": { + "name": "vaccines", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_album": { - "name": "photo_album", + "switch_account": { + "name": "switch_account", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_camera": { - "name": "photo_camera", + "snowshoeing": { + "name": "snowshoeing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_camera_back": { - "name": "photo_camera_back", + "sports_motorsports": { + "name": "sports_motorsports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_camera_front": { - "name": "photo_camera_front", + "travel_explore": { + "name": "travel_explore", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_filter": { - "name": "photo_filter", + "cruelty_free": { + "name": "cruelty_free", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_library": { - "name": "photo_library", + "notifications_none": { + "name": "notifications_none", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_size_select_actual": { - "name": "photo_size_select_actual", + "precision_manufacturing": { + "name": "precision_manufacturing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_size_select_large": { - "name": "photo_size_select_large", + "elderly_woman": { + "name": "elderly_woman", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_size_select_small": { - "name": "photo_size_select_small", + "social_distance": { + "name": "social_distance", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "picture_as_pdf": { - "name": "picture_as_pdf", + "cake": { + "name": "cake", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "portrait": { - "name": "portrait", + "interests": { + "name": "interests", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "raw_off": { - "name": "raw_off", + "edit_notifications": { + "name": "edit_notifications", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "raw_on": { - "name": "raw_on", + "emoji_emotions": { + "name": "emoji_emotions", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "receipt_long": { - "name": "receipt_long", + "notification_add": { + "name": "notification_add", "keywords": [ - "image" + "social" ], "heights": { - "24": { - "width": 24, - "path": "" + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" } } }, - "remove_red_eye": { - "name": "remove_red_eye", + "mood_bad": { + "name": "mood_bad", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rotate_90_degrees_ccw": { - "name": "rotate_90_degrees_ccw", + "person": { + "name": "person", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rotate_left": { - "name": "rotate_left", + "remove_moderator": { + "name": "remove_moderator", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rotate_right": { - "name": "rotate_right", + "6_ft_apart": { + "name": "6_ft_apart", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shutter_speed": { - "name": "shutter_speed", + "deck": { + "name": "deck", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "slideshow": { - "name": "slideshow", + "sports": { + "name": "sports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "straighten": { - "name": "straighten", + "sports_baseball": { + "name": "sports_baseball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "style": { - "name": "style", + "people_alt": { + "name": "people_alt", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_camera": { - "name": "switch_camera", + "hive": { + "name": "hive", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_video": { - "name": "switch_video", + "self_improvement": { + "name": "self_improvement", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tag_faces": { - "name": "tag_faces", + "domain_add": { + "name": "domain_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "texture": { - "name": "texture", + "health_and_safety": { + "name": "health_and_safety", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thermostat_auto": { - "name": "thermostat_auto", + "emoji_flags": { + "name": "emoji_flags", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "timelapse": { - "name": "timelapse", + "domain": { + "name": "domain", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer": { - "name": "timer", + "sports_mma": { + "name": "sports_mma", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_10": { - "name": "timer_10", + "emoji_people": { + "name": "emoji_people", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_3": { - "name": "timer_3", + "unsubscribe": { + "name": "unsubscribe", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_off": { - "name": "timer_off", + "rss_feed": { + "name": "rss_feed", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tonality": { - "name": "tonality", + "forum": { + "name": "forum", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "transform": { - "name": "transform", + "call_received": { + "name": "call_received", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tune": { - "name": "tune", + "wifi_calling": { + "name": "wifi_calling", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_camera_back": { - "name": "video_camera_back", + "portable_wifi_off": { + "name": "portable_wifi_off", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_camera_front": { - "name": "video_camera_front", + "key_off": { + "name": "key_off", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_stable": { - "name": "video_stable", + "domain_disabled": { + "name": "domain_disabled", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_comfy": { - "name": "view_comfy", + "alternate_email": { + "name": "alternate_email", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_compact": { - "name": "view_compact", + "key": { + "name": "key", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vignette": { - "name": "vignette", + "call_missed": { + "name": "call_missed", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vrpano": { - "name": "vrpano", + "sentiment_satisfied_alt": { + "name": "sentiment_satisfied_alt", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_auto": { - "name": "wb_auto", + "chat_bubble_outline": { + "name": "chat_bubble_outline", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_cloudy": { - "name": "wb_cloudy", + "phonelink_lock": { + "name": "phonelink_lock", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_incandescent": { - "name": "wb_incandescent", + "email": { + "name": "email", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_iridescent": { - "name": "wb_iridescent", + "chat_bubble": { + "name": "chat_bubble", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_shade": { - "name": "wb_shade", + "mark_email_unread": { + "name": "mark_email_unread", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_sunny": { - "name": "wb_sunny", + "stay_current_landscape": { + "name": "stay_current_landscape", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_twighlight": { - "name": "wb_twighlight", + "person_search": { + "name": "person_search", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_twilight": { - "name": "wb_twilight", + "mobile_screen_share": { + "name": "mobile_screen_share", "keywords": [ - "image" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "360": { - "name": "360", + "dialpad": { + "name": "dialpad", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_business": { - "name": "add_business", + "hourglass_top": { + "name": "hourglass_top", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_location": { - "name": "add_location", + "swap_calls": { + "name": "swap_calls", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_location_alt": { - "name": "add_location_alt", + "desktop_access_disabled": { + "name": "desktop_access_disabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_road": { - "name": "add_road", + "mark_chat_read": { + "name": "mark_chat_read", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "agriculture": { - "name": "agriculture", + "hub": { + "name": "hub", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "alt_route": { - "name": "alt_route", + "location_on": { + "name": "location_on", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "atm": { - "name": "atm", + "rtt": { + "name": "rtt", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "ic_dialer_rtt_revised_24px" } } }, - "attractions": { - "name": "attractions", + "read_more": { + "name": "read_more", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "badge": { - "name": "badge", + "contact_phone": { + "name": "contact_phone", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bakery_dining": { - "name": "bakery_dining", + "list_alt": { + "name": "list_alt", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "beenhere": { - "name": "beenhere", + "phone_enabled": { + "name": "phone_enabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bike_scooter": { - "name": "bike_scooter", + "app_registration": { + "name": "app_registration", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "breakfast_dining": { - "name": "breakfast_dining", + "present_to_all": { + "name": "present_to_all", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brunch_dining": { - "name": "brunch_dining", + "comment": { + "name": "comment", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bus_alert": { - "name": "bus_alert", + "cancel_presentation": { + "name": "cancel_presentation", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "car_rental": { - "name": "car_rental", + "sip": { + "name": "sip", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "car_repair": { - "name": "car_repair", + "location_off": { + "name": "location_off", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "category": { - "name": "category", + "invert_colors_off": { + "name": "invert_colors_off", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "celebration": { - "name": "celebration", + "cell_wifi": { + "name": "cell_wifi", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cleaning_services": { - "name": "cleaning_services", + "message": { + "name": "message", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "compass_calibration": { - "name": "compass_calibration", + "chat": { + "name": "chat", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delivery_dining": { - "name": "delivery_dining", + "qr_code": { + "name": "qr_code", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "departure_board": { - "name": "departure_board", + "no_sim": { + "name": "no_sim", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "design_services": { - "name": "design_services", + "dialer_sip": { + "name": "dialer_sip", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dinner_dining": { - "name": "dinner_dining", + "phone": { + "name": "phone", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions": { - "name": "directions", + "speaker_phone": { + "name": "speaker_phone", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_bike": { - "name": "directions_bike", + "document_scanner": { + "name": "document_scanner", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_boat": { - "name": "directions_boat", + "cell_tower": { + "name": "cell_tower", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_boat_filled": { - "name": "directions_boat_filled", + "ring_volume": { + "name": "ring_volume", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_bus": { - "name": "directions_bus", + "more_time": { + "name": "more_time", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_bus_filled": { - "name": "directions_bus_filled", + "send_time_extension": { + "name": "send_time_extension", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_car": { - "name": "directions_car", + "mail_outline": { + "name": "mail_outline", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_car_filled": { - "name": "directions_car_filled", + "qr_code_2": { + "name": "qr_code_2", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_railway": { - "name": "directions_railway", + "call": { + "name": "call", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_railway_filled": { - "name": "directions_railway_filled", + "live_help": { + "name": "live_help", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_run": { - "name": "directions_run", + "stay_current_portrait": { + "name": "stay_current_portrait", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_subway": { - "name": "directions_subway", + "clear_all": { + "name": "clear_all", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_subway_filled": { - "name": "directions_subway_filled", + "stay_primary_landscape": { + "name": "stay_primary_landscape", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_transit": { - "name": "directions_transit", + "domain_verification": { + "name": "domain_verification", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_transit_filled": { - "name": "directions_transit_filled", + "3p": { + "name": "3p", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_walk": { - "name": "directions_walk", + "import_export": { + "name": "import_export", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dry_cleaning": { - "name": "dry_cleaning", + "stop_screen_share": { + "name": "stop_screen_share", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_attributes": { - "name": "edit_attributes", + "comments_disabled": { + "name": "comments_disabled", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_location": { - "name": "edit_location", - "keywords": [ - "maps" + "phonelink_setup": { + "name": "phonelink_setup", + "keywords": [ + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_location_alt": { - "name": "edit_location_alt", + "contacts": { + "name": "contacts", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_road": { - "name": "edit_road", + "import_contacts": { + "name": "import_contacts", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electrical_services": { - "name": "electrical_services", + "call_made": { + "name": "call_made", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_bike": { - "name": "electric_bike", + "hourglass_bottom": { + "name": "hourglass_bottom", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_car": { - "name": "electric_car", + "phonelink_ring": { + "name": "phonelink_ring", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_moped": { - "name": "electric_moped", + "call_missed_outgoing": { + "name": "call_missed_outgoing", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_rickshaw": { - "name": "electric_rickshaw", + "textsms": { + "name": "textsms", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_scooter": { - "name": "electric_scooter", + "mark_email_read": { + "name": "mark_email_read", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emergency": { - "name": "emergency", + "nat": { + "name": "nat", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" - } - } - }, - "ev_station": { - "name": "ev_station", - "keywords": [ - "maps" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "fastfood": { - "name": "fastfood", + "voicemail": { + "name": "voicemail", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "festival": { - "name": "festival", + "stay_primary_portrait": { + "name": "stay_primary_portrait", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flight": { - "name": "flight", + "add_ic_call": { + "name": "add_ic_call", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hail": { - "name": "hail", + "pause_presentation": { + "name": "pause_presentation", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "handyman": { - "name": "handyman", + "vpn_key_off": { + "name": "vpn_key_off", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hardware": { - "name": "hardware", + "co_present": { + "name": "co_present", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_repair_service": { - "name": "home_repair_service", + "person_add_disabled": { + "name": "person_add_disabled", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hotel": { - "name": "hotel", + "business": { + "name": "business", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hvac": { - "name": "hvac", + "duo": { + "name": "duo", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "icecream": { - "name": "icecream", + "call_merge": { + "name": "call_merge", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "layers": { - "name": "layers", + "qr_code_scanner": { + "name": "qr_code_scanner", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "layers_clear": { - "name": "layers_clear", + "call_split": { + "name": "call_split", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "liquor": { - "name": "liquor", + "mark_unread_chat_alt": { + "name": "mark_unread_chat_alt", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_activity": { - "name": "local_activity", + "vpn_key": { + "name": "vpn_key", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_airport": { - "name": "local_airport", + "phone_disabled": { + "name": "phone_disabled", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_atm": { - "name": "local_atm", + "forward_to_inbox": { + "name": "forward_to_inbox", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_bar": { - "name": "local_bar", + "print_disabled": { + "name": "print_disabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_cafe": { - "name": "local_cafe", + "spoke": { + "name": "spoke", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_car_wash": { - "name": "local_car_wash", + "screen_share": { + "name": "screen_share", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_convenience_store": { - "name": "local_convenience_store", + "mark_chat_unread": { + "name": "mark_chat_unread", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_dining": { - "name": "local_dining", + "phonelink_erase": { + "name": "phonelink_erase", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_drink": { - "name": "local_drink", + "call_end": { + "name": "call_end", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_fire_department": { - "name": "local_fire_department", + "contact_mail": { + "name": "contact_mail", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_florist": { - "name": "local_florist", + "electrical_services": { + "name": "electrical_services", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_gas_station": { - "name": "local_gas_station", + "taxi_alert": { + "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_grocery_store": { - "name": "local_grocery_store", + "zoom_out_map": { + "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_hospital": { - "name": "local_hospital", + "edit_attributes": { + "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_hotel": { - "name": "local_hotel", + "local_florist": { + "name": "local_florist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_laundry_service": { - "name": "local_laundry_service", + "home_repair_service": { + "name": "home_repair_service", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_library": { - "name": "local_library", + "pest_control": { + "name": "pest_control", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_mall": { - "name": "local_mall", + "person_pin": { + "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_movies": { - "name": "local_movies", + "temple_buddhist": { + "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_offer": { - "name": "local_offer", + "money": { + "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_parking": { - "name": "local_parking", + "directions_railway_filled": { + "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_pharmacy": { - "name": "local_pharmacy", + "electric_bike": { + "name": "electric_bike", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_phone": { - "name": "local_phone", + "alt_route": { + "name": "alt_route", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_pizza": { - "name": "local_pizza", + "local_post_office": { + "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_play": { - "name": "local_play", + "two_wheeler": { + "name": "two_wheeler", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_police": { - "name": "local_police", + "icecream": { + "name": "icecream", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_post_office": { - "name": "local_post_office", + "add_location_alt": { + "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_printshop": { - "name": "local_printshop", + "directions_boat": { + "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_see": { - "name": "local_see", + "menu_book": { + "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_shipping": { - "name": "local_shipping", + "360": { + "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_taxi": { - "name": "local_taxi", + "moving": { + "name": "moving", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_pin": { - "name": "location_pin", + "turn_right": { + "name": "turn_right", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lunch_dining": { - "name": "lunch_dining", + "satellite": { + "name": "satellite", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "map": { - "name": "map", + "train": { + "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "maps_ugc": { - "name": "maps_ugc", + "local_cafe": { + "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "medical_services": { - "name": "medical_services", + "roundabout_left": { + "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "menu_book": { - "name": "menu_book", + "agriculture": { + "name": "agriculture", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "miscellaneous_services": { - "name": "miscellaneous_services", + "attractions": { + "name": "attractions", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "money": { - "name": "money", + "my_location": { + "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "moped": { - "name": "moped", + "local_police": { + "name": "local_police", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "moving": { - "name": "moving", + "local_convenience_store": { + "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "multiple_stop": { - "name": "multiple_stop", + "restaurant": { + "name": "restaurant", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "museum": { - "name": "museum", + "synagogue": { + "name": "synagogue", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "my_location": { - "name": "my_location", + "railway_alert": { + "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "navigation": { - "name": "navigation", + "wrong_location": { + "name": "wrong_location", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "near_me": { - "name": "near_me", + "turn_slight_right": { + "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "near_me_disabled": { - "name": "near_me_disabled", + "pin_drop": { + "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nightlife": { - "name": "nightlife", + "medical_services": { + "name": "medical_services", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_listed_location": { - "name": "not_listed_location", + "signpost": { + "name": "signpost", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_meals": { - "name": "no_meals", + "park": { + "name": "park", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_meals_ouline": { - "name": "no_meals_ouline", + "ev_station": { + "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_transfer": { - "name": "no_transfer", + "breakfast_dining": { + "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "park": { - "name": "park", + "handyman": { + "name": "handyman", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pedal_bike": { - "name": "pedal_bike", + "forest": { + "name": "forest", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_pin": { - "name": "person_pin", + "place": { + "name": "place", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_pin_circle": { - "name": "person_pin_circle", + "subway": { + "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pest_control": { - "name": "pest_control", + "local_play": { + "name": "local_play", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pest_control_rodent": { - "name": "pest_control_rodent", + "person_pin_circle": { + "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin_drop": { - "name": "pin_drop", + "wine_bar": { + "name": "wine_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "place": { - "name": "place", + "bakery_dining": { + "name": "bakery_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "plumbing": { - "name": "plumbing", + "u_turn_left": { + "name": "u_turn_left", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "railway_alert": { - "name": "railway_alert", + "miscellaneous_services": { + "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ramen_dining": { - "name": "ramen_dining", + "local_phone": { + "name": "local_phone", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rate_review": { - "name": "rate_review", + "layers_clear": { + "name": "layers_clear", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restaurant": { - "name": "restaurant", + "local_movies": { + "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restaurant_menu": { - "name": "restaurant_menu", + "local_grocery_store": { + "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "run_circle": { - "name": "run_circle", + "mosque": { + "name": "mosque", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sailing": { - "name": "sailing", + "add_road": { + "name": "add_road", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "satellite": { - "name": "satellite", + "set_meal": { + "name": "set_meal", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "set_meal": { - "name": "set_meal", + "add_location": { + "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "snowmobile": { - "name": "snowmobile", + "stadium": { + "name": "stadium", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "store_mall_directory": { - "name": "store_mall_directory", + "zoom_in_map": { + "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "streetview": { - "name": "streetview", + "map": { + "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subway": { - "name": "subway", + "directions_bus_filled": { + "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "takeout_dining": { - "name": "takeout_dining", + "local_see": { + "name": "local_see", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "taxi_alert": { - "name": "taxi_alert", + "local_activity": { + "name": "local_activity", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "terrain": { - "name": "terrain", + "local_atm": { + "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "theater_comedy": { - "name": "theater_comedy", + "brunch_dining": { + "name": "brunch_dining", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "traffic": { - "name": "traffic", + "pest_control_rodent": { + "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "train": { - "name": "train", + "moped": { + "name": "moped", + "keywords": [ + "maps" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "layers": { + "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tram": { - "name": "tram", + "directions_run": { + "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -18071,4871 +18639,7679 @@ } } }, - "transit_enterexit": { - "name": "transit_enterexit", + "local_mall": { + "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "trip_origin": { - "name": "trip_origin", + "local_shipping": { + "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "two_wheeler": { - "name": "two_wheeler", + "local_drink": { + "name": "local_drink", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "volunteer_activism": { - "name": "volunteer_activism", + "ramp_left": { + "name": "ramp_left", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wine_bar": { - "name": "wine_bar", + "not_listed_location": { + "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wrong_location": { - "name": "wrong_location", + "near_me": { + "name": "near_me", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "zoom_out_map": { - "name": "zoom_out_map", + "directions_subway": { + "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "apps": { - "name": "apps", + "flight_class": { + "name": "flight_class", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "app_settings_alt": { - "name": "app_settings_alt", + "atm": { + "name": "atm", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_back": { - "name": "arrow_back", + "snowmobile": { + "name": "snowmobile", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_back_ios": { - "name": "arrow_back_ios", + "emergency": { + "name": "emergency", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_back_ios_new": { - "name": "arrow_back_ios_new", + "cleaning_services": { + "name": "cleaning_services", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_downward": { - "name": "arrow_downward", + "store_mall_directory": { + "name": "store_mall_directory", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_drop_down": { - "name": "arrow_drop_down", + "turn_sharp_left": { + "name": "turn_sharp_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_drop_down_circle": { - "name": "arrow_drop_down_circle", + "turn_slight_left": { + "name": "turn_slight_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_drop_up": { - "name": "arrow_drop_up", + "directions_boat_filled": { + "name": "directions_boat_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_forward": { - "name": "arrow_forward", + "festival": { + "name": "festival", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_forward_ios": { - "name": "arrow_forward_ios", + "lunch_dining": { + "name": "lunch_dining", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_left": { - "name": "arrow_left", + "directions_transit_filled": { + "name": "directions_transit_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_right": { - "name": "arrow_right", + "design_services": { + "name": "design_services", "keywords": [ - "navigation" + "maps" ], "heights": { - "24": { - "width": 24, - "path": "" + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" } } }, - "arrow_upward": { - "name": "arrow_upward", + "bus_alert": { + "name": "bus_alert", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assistant_direction": { - "name": "assistant_direction", + "warehouse": { + "name": "warehouse", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "Asset 1" + "path": "" } } }, - "assistant_navigation": { - "name": "assistant_navigation", + "turn_sharp_right": { + "name": "turn_sharp_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "campaign": { - "name": "campaign", + "liquor": { + "name": "liquor", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cancel": { - "name": "cancel", + "no_meals_ouline": { + "name": "no_meals_ouline", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "check": { - "name": "check", + "electric_scooter": { + "name": "electric_scooter", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chevron_left": { - "name": "chevron_left", + "pedal_bike": { + "name": "pedal_bike", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chevron_right": { - "name": "chevron_right", + "local_taxi": { + "name": "local_taxi", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "close": { - "name": "close", + "local_parking": { + "name": "local_parking", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "double_arrow": { - "name": "double_arrow", + "near_me_disabled": { + "name": "near_me_disabled", "keywords": [ - "navigation" + "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "east": { - "name": "east", + "category": { + "name": "category", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "expand_less": { - "name": "expand_less", + "turn_left": { + "name": "turn_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "expand_more": { - "name": "expand_more", + "local_hotel": { + "name": "local_hotel", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "first_page": { - "name": "first_page", + "egg": { + "name": "egg", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fullscreen": { - "name": "fullscreen", + "local_airport": { + "name": "local_airport", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fullscreen_exit": { - "name": "fullscreen_exit", + "ramp_right": { + "name": "ramp_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_work": { - "name": "home_work", + "local_bar": { + "name": "local_bar", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "last_page": { - "name": "last_page", + "castle": { + "name": "castle", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "legend_toggle": { - "name": "legend_toggle", + "kebab_dining": { + "name": "kebab_dining", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "maps_home_work": { - "name": "maps_home_work", + "location_pin": { + "name": "location_pin", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "menu": { - "name": "menu", + "no_transfer": { + "name": "no_transfer", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "menu_open": { - "name": "menu_open", + "roundabout_right": { + "name": "roundabout_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "more_horiz": { - "name": "more_horiz", + "directions": { + "name": "directions", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "more_vert": { - "name": "more_vert", + "terrain": { + "name": "terrain", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "north": { - "name": "north", + "local_offer": { + "name": "local_offer", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "north_east": { - "name": "north_east", + "merge": { + "name": "merge", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "north_west": { - "name": "north_west", + "mode_of_travel": { + "name": "mode_of_travel", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "offline_share": { - "name": "offline_share", + "multiple_stop": { + "name": "multiple_stop", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "payments": { - "name": "payments", + "diamond": { + "name": "diamond", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pivot_table_chart": { - "name": "pivot_table_chart", + "local_hospital": { + "name": "local_hospital", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "refresh": { - "name": "refresh", + "edit_location": { + "name": "edit_location", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "south": { - "name": "south", + "sailing": { + "name": "sailing", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "south_east": { - "name": "south_east", + "airlines": { + "name": "airlines", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "south_west": { - "name": "south_west", + "car_rental": { + "name": "car_rental", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "subdirectory_arrow_left": { - "name": "subdirectory_arrow_left", + "directions_bike": { + "name": "directions_bike", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subdirectory_arrow_right": { - "name": "subdirectory_arrow_right", + "hvac": { + "name": "hvac", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_left": { - "name": "switch_left", + "badge": { + "name": "badge", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_right": { - "name": "switch_right", + "directions_car_filled": { + "name": "directions_car_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unfold_less": { - "name": "unfold_less", + "directions_railway": { + "name": "directions_railway", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unfold_more": { - "name": "unfold_more", + "u_turn_right": { + "name": "u_turn_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "waterfall_chart": { - "name": "waterfall_chart", + "electric_rickshaw": { + "name": "electric_rickshaw", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "west": { - "name": "west", + "hardware": { + "name": "hardware", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_tree": { - "name": "account_tree", + "local_gas_station": { + "name": "local_gas_station", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "adb": { - "name": "adb", + "fork_right": { + "name": "fork_right", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_call": { - "name": "add_call", + "departure_board": { + "name": "departure_board", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_flat": { - "name": "airline_seat_flat", + "restaurant_menu": { + "name": "restaurant_menu", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_flat_angled": { - "name": "airline_seat_flat_angled", + "soup_kitchen": { + "name": "soup_kitchen", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_individual_suite": { - "name": "airline_seat_individual_suite", + "navigation": { + "name": "navigation", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_legroom_extra": { - "name": "airline_seat_legroom_extra", + "temple_hindu": { + "name": "temple_hindu", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_legroom_normal": { - "name": "airline_seat_legroom_normal", + "flight": { + "name": "flight", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_legroom_reduced": { - "name": "airline_seat_legroom_reduced", + "egg_alt": { + "name": "egg_alt", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_recline_extra": { - "name": "airline_seat_recline_extra", + "edit_location_alt": { + "name": "edit_location_alt", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_recline_normal": { - "name": "airline_seat_recline_normal", + "ramen_dining": { + "name": "ramen_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_audio": { - "name": "bluetooth_audio", + "car_repair": { + "name": "car_repair", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "confirmation_number": { - "name": "confirmation_number", + "run_circle": { + "name": "run_circle", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_off": { - "name": "directions_off", + "takeout_dining": { + "name": "takeout_dining", "keywords": [ - "notification" + "maps" ], "heights": { - "24": { + "20": { + "width": 20, + "path": "" + }, + "24": { "width": 24, - "path": "" + "path": "" } } }, - "disc_full": { - "name": "disc_full", + "fastfood": { + "name": "fastfood", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb": { - "name": "do_disturb", + "theater_comedy": { + "name": "theater_comedy", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb_alt": { - "name": "do_disturb_alt", + "connecting_airports": { + "name": "connecting_airports", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb_off": { - "name": "do_disturb_off", + "fort": { + "name": "fort", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb_on": { - "name": "do_disturb_on", + "church": { + "name": "church", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb": { - "name": "do_not_disturb", + "directions_car": { + "name": "directions_car", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_alt": { - "name": "do_not_disturb_alt", + "rate_review": { + "name": "rate_review", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_off": { - "name": "do_not_disturb_off", + "add_business": { + "name": "add_business", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_on": { - "name": "do_not_disturb_on", + "transit_enterexit": { + "name": "transit_enterexit", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_eta": { - "name": "drive_eta", + "celebration": { + "name": "celebration", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "enhanced_encryption": { - "name": "enhanced_encryption", + "airline_stops": { + "name": "airline_stops", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_available": { - "name": "event_available", + "directions_bus": { + "name": "directions_bus", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_busy": { - "name": "event_busy", + "streetview": { + "name": "streetview", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_note": { - "name": "event_note", + "tram": { + "name": "tram", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder_special": { - "name": "folder_special", + "fork_left": { + "name": "fork_left", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "imagesearch_roller": { - "name": "imagesearch_roller", + "hotel": { + "name": "hotel", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "live_tv": { - "name": "live_tv", + "compass_calibration": { + "name": "compass_calibration", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mms": { - "name": "mms", + "factory": { + "name": "factory", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "more": { - "name": "more", + "dinner_dining": { + "name": "dinner_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_check": { - "name": "network_check", + "edit_road": { + "name": "edit_road", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_locked": { - "name": "network_locked", + "local_library": { + "name": "local_library", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_encryption": { - "name": "no_encryption", + "plumbing": { + "name": "plumbing", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_encryption_gmailerrorred": { - "name": "no_encryption_gmailerrorred", + "local_pizza": { + "name": "local_pizza", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ondemand_video": { - "name": "ondemand_video", + "no_meals": { + "name": "no_meals", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "personal_video": { - "name": "personal_video", + "local_fire_department": { + "name": "local_fire_department", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_bluetooth_speaker": { - "name": "phone_bluetooth_speaker", + "bike_scooter": { + "name": "bike_scooter", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_callback": { - "name": "phone_callback", + "hail": { + "name": "hail", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_forwarded": { - "name": "phone_forwarded", + "local_pharmacy": { + "name": "local_pharmacy", "keywords": [ - "notification" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "phone_in_talk": { - "name": "phone_in_talk", - "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_locked": { - "name": "phone_locked", + "traffic": { + "name": "traffic", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_missed": { - "name": "phone_missed", + "dry_cleaning": { + "name": "dry_cleaning", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_paused": { - "name": "phone_paused", + "local_dining": { + "name": "local_dining", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "power": { - "name": "power", + "trip_origin": { + "name": "trip_origin", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "power_off": { - "name": "power_off", + "delivery_dining": { + "name": "delivery_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "priority_high": { - "name": "priority_high", + "directions_walk": { + "name": "directions_walk", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "running_with_errors": { - "name": "running_with_errors", + "electric_car": { + "name": "electric_car", "keywords": [ - "notification" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd_card": { - "name": "sd_card", + "route": { + "name": "route", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd_card_alert": { - "name": "sd_card_alert", + "museum": { + "name": "museum", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sim_card_alert": { - "name": "sim_card_alert", + "straight": { + "name": "straight", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sms": { - "name": "sms", + "directions_subway_filled": { + "name": "directions_subway_filled", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sms_failed": { - "name": "sms_failed", + "directions_transit": { + "name": "directions_transit", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "support_agent": { - "name": "support_agent", + "nightlife": { + "name": "nightlife", "keywords": [ - "notification" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync": { - "name": "sync", + "maps_ugc": { + "name": "maps_ugc", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync_disabled": { - "name": "sync_disabled", + "local_car_wash": { + "name": "local_car_wash", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync_problem": { - "name": "sync_problem", + "electric_moped": { + "name": "electric_moped", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_update": { - "name": "system_update", + "local_laundry_service": { + "name": "local_laundry_service", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tap_and_play": { - "name": "tap_and_play", + "local_printshop": { + "name": "local_printshop", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "time_to_leave": { - "name": "time_to_leave", + "beenhere": { + "name": "beenhere", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tv_off": { - "name": "tv_off", + "volunteer_activism": { + "name": "volunteer_activism", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vibration": { - "name": "vibration", + "sort": { + "name": "sort", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "voice_chat": { - "name": "voice_chat", + "create": { + "name": "create", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vpn_lock": { - "name": "vpn_lock", + "stacked_bar_chart": { + "name": "stacked_bar_chart", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wc": { - "name": "wc", + "add_link": { + "name": "add_link", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi": { - "name": "wifi", + "redo": { + "name": "redo", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_off": { - "name": "wifi_off", + "content_paste_go": { + "name": "content_paste_go", "keywords": [ - "notification" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ac_unit": { - "name": "ac_unit", + "clear": { + "name": "clear", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airport_shuttle": { - "name": "airport_shuttle", + "web_stories": { + "name": "web_stories", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "all_inclusive": { - "name": "all_inclusive", + "next_week": { + "name": "next_week", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "apartment": { - "name": "apartment", + "amp_stories": { + "name": "amp_stories", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" - } - } - }, - "baby_changing_station": { - "name": "baby_changing_station", - "keywords": [ - "places" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "backpack": { - "name": "backpack", + "flag": { + "name": "flag", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "balcony": { - "name": "balcony", + "dynamic_feed": { + "name": "dynamic_feed", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bathtub": { - "name": "bathtub", + "drafts": { + "name": "drafts", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "beach_access": { - "name": "beach_access", + "select_all": { + "name": "select_all", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bento": { - "name": "bento", + "block_flipped": { + "name": "block_flipped", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bungalow": { - "name": "bungalow", + "deselect": { + "name": "deselect", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "business_center": { - "name": "business_center", + "font_download": { + "name": "font_download", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cabin": { - "name": "cabin", + "add_box": { + "name": "add_box", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "carpenter": { - "name": "carpenter", + "add": { + "name": "add", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "casino": { - "name": "casino", + "outlined_flag": { + "name": "outlined_flag", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chalet": { - "name": "chalet", + "calculate": { + "name": "calculate", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "charging_station": { - "name": "charging_station", + "push_pin": { + "name": "push_pin", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "checkroom": { - "name": "checkroom", + "filter_list": { + "name": "filter_list", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "child_care": { - "name": "child_care", + "filter_list_off": { + "name": "filter_list_off", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "child_friendly": { - "name": "child_friendly", + "link": { + "name": "link", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "corporate_fare": { - "name": "corporate_fare", + "how_to_vote": { + "name": "how_to_vote", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cottage": { - "name": "cottage", + "add_circle_outline": { + "name": "add_circle_outline", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "countertops": { - "name": "countertops", + "markunread": { + "name": "markunread", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crib": { - "name": "crib", + "attribution": { + "name": "attribution", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_step": { - "name": "do_not_step", + "shield": { + "name": "shield", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_touch": { - "name": "do_not_touch", + "font_download_off": { + "name": "font_download_off", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dry": { - "name": "dry", + "content_copy": { + "name": "content_copy", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "elevator": { - "name": "elevator", + "low_priority": { + "name": "low_priority", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "escalator": { - "name": "escalator", + "unarchive": { + "name": "unarchive", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "escalator_warning": { - "name": "escalator_warning", + "inventory_2": { + "name": "inventory_2", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "family_restroom": { - "name": "family_restroom", + "move_to_inbox": { + "name": "move_to_inbox", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fence": { - "name": "fence", + "undo": { + "name": "undo", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fire_extinguisher": { - "name": "fire_extinguisher", + "text_format": { + "name": "text_format", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fitness_center": { - "name": "fitness_center", + "waves": { + "name": "waves", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "food_bank": { - "name": "food_bank", + "file_copy": { + "name": "file_copy", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "foundation": { - "name": "foundation", + "link_off": { + "name": "link_off", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "free_breakfast": { - "name": "free_breakfast", + "content_paste": { + "name": "content_paste", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gite": { - "name": "gite", + "reply_all": { + "name": "reply_all", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "golf_course": { - "name": "golf_course", + "copy_all": { + "name": "copy_all", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grass": { - "name": "grass", + "weekend": { + "name": "weekend", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "holiday_village": { - "name": "holiday_village", + "save_as": { + "name": "save_as", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hot_tub": { - "name": "hot_tub", + "remove_circle_outline": { + "name": "remove_circle_outline", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "house": { - "name": "house", + "content_paste_off": { + "name": "content_paste_off", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "houseboat": { - "name": "houseboat", + "report_off": { + "name": "report_off", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "house_siding": { - "name": "house_siding", + "report_gmailerrorred": { + "name": "report_gmailerrorred", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "iron": { - "name": "iron", + "save": { + "name": "save", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "kitchen": { - "name": "kitchen", + "bolt": { + "name": "bolt", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "meeting_room": { - "name": "meeting_room", + "content_cut": { + "name": "content_cut", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "microwave": { - "name": "microwave", + "flag_circle": { + "name": "flag_circle", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "night_shelter": { - "name": "night_shelter", + "block": { + "name": "block", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_backpack": { - "name": "no_backpack", + "remove_circle": { + "name": "remove_circle", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_cell": { - "name": "no_cell", + "square_foot": { + "name": "square_foot", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_drinks": { - "name": "no_drinks", + "archive": { + "name": "archive", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_flash": { - "name": "no_flash", + "add_circle": { + "name": "add_circle", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_food": { - "name": "no_food", + "tag": { + "name": "tag", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_meeting_room": { - "name": "no_meeting_room", + "remove": { + "name": "remove", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_photography": { - "name": "no_photography", + "gesture": { + "name": "gesture", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_stroller": { - "name": "no_stroller", + "inventory": { + "name": "inventory", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "other_houses": { - "name": "other_houses", + "where_to_vote": { + "name": "where_to_vote", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pool": { - "name": "pool", + "how_to_reg": { + "name": "how_to_reg", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rice_bowl": { - "name": "rice_bowl", + "delete_sweep": { + "name": "delete_sweep", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "roofing": { - "name": "roofing", + "report": { + "name": "report", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "room_preferences": { - "name": "room_preferences", + "inbox": { + "name": "inbox", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "room_service": { - "name": "room_service", + "upcoming": { + "name": "upcoming", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rv_hookup": { - "name": "rv_hookup", + "stream": { + "name": "stream", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smoke_free": { - "name": "smoke_free", + "save_alt": { + "name": "save_alt", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smoking_rooms": { - "name": "smoking_rooms", + "insights": { + "name": "insights", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "soap": { - "name": "soap", + "backspace": { + "name": "backspace", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "spa": { - "name": "spa", + "reply": { + "name": "reply", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_bar": { - "name": "sports_bar", + "mail": { + "name": "mail", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stairs": { - "name": "stairs", + "change_circle": { + "name": "change_circle", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "storefront": { - "name": "storefront", + "send": { + "name": "send", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stroller": { - "name": "stroller", + "ballot": { + "name": "ballot", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tapas": { - "name": "tapas", + "forward": { + "name": "forward", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tty": { - "name": "tty", + "policy": { + "name": "policy", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "umbrella": { - "name": "umbrella", + "content_paste_search": { + "name": "content_paste_search", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "villa": { - "name": "villa", + "biotech": { + "name": "biotech", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wash": { - "name": "wash", + "attach_money": { + "name": "attach_money", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "water_damage": { - "name": "water_damage", + "bar_chart": { + "name": "bar_chart", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wheelchair_pickup": { - "name": "wheelchair_pickup", + "border_clear": { + "name": "border_clear", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bathroom": { - "name": "bathroom", + "title": { + "name": "title", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bed": { - "name": "bed", + "format_align_justify": { + "name": "format_align_justify", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedroom_baby": { - "name": "bedroom_baby", + "move_down": { + "name": "move_down", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedroom_child": { - "name": "bedroom_child", + "format_size": { + "name": "format_size", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedroom_parent": { - "name": "bedroom_parent", + "insert_chart": { + "name": "insert_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "blender": { - "name": "blender", + "scatter_plot": { + "name": "scatter_plot", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_indoor": { - "name": "camera_indoor", + "align_vertical_top": { + "name": "align_vertical_top", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_outdoor": { - "name": "camera_outdoor", + "border_all": { + "name": "border_all", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chair": { - "name": "chair", + "move_up": { + "name": "move_up", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chair_alt": { - "name": "chair_alt", + "polyline": { + "name": "polyline", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "coffee": { - "name": "coffee", + "format_list_numbered": { + "name": "format_list_numbered", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "coffee_maker": { - "name": "coffee_maker", + "format_underlined": { + "name": "format_underlined", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dining": { - "name": "dining", + "format_strikethrough": { + "name": "format_strikethrough", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "doorbell": { - "name": "doorbell", + "schema": { + "name": "schema", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "door_back": { - "name": "door_back", + "border_outer": { + "name": "border_outer", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "door_front": { - "name": "door_front", + "short_text": { + "name": "short_text", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "door_sliding": { - "name": "door_sliding", + "border_style": { + "name": "border_style", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "feed": { - "name": "feed", + "subscript": { + "name": "subscript", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flatware": { - "name": "flatware", + "border_right": { + "name": "border_right", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "garage": { - "name": "garage", + "add_chart": { + "name": "add_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "light": { - "name": "light", + "format_align_center": { + "name": "format_align_center", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "living": { - "name": "living", + "format_clear": { + "name": "format_clear", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "manage_search": { - "name": "manage_search", + "margin": { + "name": "margin", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "podcasts": { - "name": "podcasts", + "format_list_bulleted": { + "name": "format_list_bulleted", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shower": { - "name": "shower", + "checklist_rtl": { + "name": "checklist_rtl", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "window": { - "name": "window", + "data_array": { + "name": "data_array", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "yard": { - "name": "yard", + "pie_chart_outlined": { + "name": "pie_chart_outlined", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6_ft_apart": { - "name": "6_ft_apart", + "bubble_chart": { + "name": "bubble_chart", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_moderator": { - "name": "add_moderator", + "border_color": { + "name": "border_color", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_reaction": { - "name": "add_reaction", + "vertical_align_bottom": { + "name": "vertical_align_bottom", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "architecture": { - "name": "architecture", + "vertical_distribute": { + "name": "vertical_distribute", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "back_hand": { - "name": "back_hand", + "data_object": { + "name": "data_object", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cake": { - "name": "cake", + "mode": { + "name": "mode", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "catching_pokemon": { - "name": "catching_pokemon", + "text_fields": { + "name": "text_fields", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "clean_hands": { - "name": "clean_hands", + "insert_emoticon": { + "name": "insert_emoticon", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "compost": { - "name": "compost", + "horizontal_distribute": { + "name": "horizontal_distribute", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "connect_without_contact": { - "name": "connect_without_contact", + "money_off_csred": { + "name": "money_off_csred", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "construction": { - "name": "construction", + "border_horizontal": { + "name": "border_horizontal", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "coronavirus": { - "name": "coronavirus", + "functions": { + "name": "functions", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cruelty_free": { - "name": "cruelty_free", + "format_align_left": { + "name": "format_align_left", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "deck": { - "name": "deck", + "multiline_chart": { + "name": "multiline_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "domain": { - "name": "domain", + "stacked_line_chart": { + "name": "stacked_line_chart", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "downhill_skiing": { - "name": "downhill_skiing", + "money_off": { + "name": "money_off", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_notifications": { - "name": "edit_notifications", + "format_list_numbered_rtl": { + "name": "format_list_numbered_rtl", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "elderly": { - "name": "elderly", + "align_horizontal_center": { + "name": "align_horizontal_center", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_emotions": { - "name": "emoji_emotions", + "pentagon": { + "name": "pentagon", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_events": { - "name": "emoji_events", + "format_indent_increase": { + "name": "format_indent_increase", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_flags": { - "name": "emoji_flags", + "table_rows": { + "name": "table_rows", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_food_beverage": { - "name": "emoji_food_beverage", + "query_stats": { + "name": "query_stats", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_nature": { - "name": "emoji_nature", + "pie_chart_outline": { + "name": "pie_chart_outline", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_objects": { - "name": "emoji_objects", + "square": { + "name": "square", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_people": { - "name": "emoji_people", + "format_color_text": { + "name": "format_color_text", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_symbols": { - "name": "emoji_symbols", + "candlestick_chart": { + "name": "candlestick_chart", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_transportation": { - "name": "emoji_transportation", + "mode_comment": { + "name": "mode_comment", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "engineering": { - "name": "engineering", + "checklist": { + "name": "checklist", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "facebook": { - "name": "facebook", + "pie_chart": { + "name": "pie_chart", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "female": { - "name": "female", + "format_textdirection_l_to_r": { + "name": "format_textdirection_l_to_r", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fireplace": { - "name": "fireplace", + "format_align_right": { + "name": "format_align_right", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "follow_the_signs": { - "name": "follow_the_signs", + "align_vertical_bottom": { + "name": "align_vertical_bottom", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "front_hand": { - "name": "front_hand", + "notes": { + "name": "notes", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "group": { - "name": "group", + "insert_comment": { + "name": "insert_comment", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "groups": { - "name": "groups", + "height": { + "name": "height", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "group_add": { - "name": "group_add", + "format_shapes": { + "name": "format_shapes", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "group_off": { - "name": "group_off", + "hexagon": { + "name": "hexagon", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "health_and_safety": { - "name": "health_and_safety", + "align_horizontal_right": { + "name": "align_horizontal_right", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hiking": { - "name": "hiking", + "merge_type": { + "name": "merge_type", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "history_edu": { - "name": "history_edu", + "vertical_align_top": { + "name": "vertical_align_top", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ice_skating": { - "name": "ice_skating", + "text_increase": { + "name": "text_increase", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ios_share": { - "name": "ios_share", + "border_vertical": { + "name": "border_vertical", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "kayaking": { - "name": "kayaking", + "format_bold": { + "name": "format_bold", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "king_bed": { - "name": "king_bed", + "format_textdirection_r_to_l": { + "name": "format_textdirection_r_to_l", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "kitesurfing": { - "name": "kitesurfing", + "format_paint": { + "name": "format_paint", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_city": { - "name": "location_city", + "drag_handle": { + "name": "drag_handle", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "luggage": { - "name": "luggage", + "space_bar": { + "name": "space_bar", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "male": { - "name": "male", + "format_color_reset": { + "name": "format_color_reset", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "masks": { - "name": "masks", + "post_add": { + "name": "post_add", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "military_tech": { - "name": "military_tech", + "border_top": { + "name": "border_top", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mood": { - "name": "mood", + "border_bottom": { + "name": "border_bottom", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mood_bad": { - "name": "mood_bad", + "insert_photo": { + "name": "insert_photo", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nights_stay": { - "name": "nights_stay", + "insert_page_break": { + "name": "insert_page_break", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nordic_walking": { - "name": "nordic_walking", + "attach_file": { + "name": "attach_file", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications": { - "name": "notifications", + "text_decrease": { + "name": "text_decrease", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_active": { - "name": "notifications_active", + "horizontal_rule": { + "name": "horizontal_rule", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_none": { - "name": "notifications_none", + "score": { + "name": "score", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_off": { - "name": "notifications_off", + "format_indent_decrease": { + "name": "format_indent_decrease", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_paused": { - "name": "notifications_paused", + "monetization_on": { + "name": "monetization_on", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notification_add": { - "name": "notification_add", + "padding": { + "name": "padding", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_luggage": { - "name": "no_luggage", + "format_quote": { + "name": "format_quote", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outdoor_grill": { - "name": "outdoor_grill", + "vertical_align_center": { + "name": "vertical_align_center", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pages": { - "name": "pages", + "mode_edit_outline": { + "name": "mode_edit_outline", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "paragliding": { - "name": "paragliding", + "insert_chart_outlined": { + "name": "insert_chart_outlined", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "party_mode": { - "name": "party_mode", + "add_comment": { + "name": "add_comment", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "people": { - "name": "people", + "border_left": { + "name": "border_left", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "people_alt": { - "name": "people_alt", + "linear_scale": { + "name": "linear_scale", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "people_outline": { - "name": "people_outline", + "align_horizontal_left": { + "name": "align_horizontal_left", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person": { - "name": "person", + "align_vertical_center": { + "name": "align_vertical_center", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "personal_injury": { - "name": "personal_injury", + "line_axis": { + "name": "line_axis", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add": { - "name": "person_add", + "format_color_fill": { + "name": "format_color_fill", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add_alt": { - "name": "person_add_alt", + "area_chart": { + "name": "area_chart", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add_alt_1": { - "name": "person_add_alt_1", + "format_italic": { + "name": "format_italic", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_off": { - "name": "person_off", + "numbers": { + "name": "numbers", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_outline": { - "name": "person_outline", + "format_line_spacing": { + "name": "format_line_spacing", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_remove": { - "name": "person_remove", + "superscript": { + "name": "superscript", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_remove_alt_1": { - "name": "person_remove_alt_1", + "mode_edit": { + "name": "mode_edit", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "piano": { - "name": "piano", + "edit_note": { + "name": "edit_note", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "piano_off": { - "name": "piano_off", + "auto_graph": { + "name": "auto_graph", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "plus_one": { - "name": "plus_one", + "show_chart": { + "name": "show_chart", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "poll": { - "name": "poll", + "draw": { + "name": "draw", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "precision_manufacturing": { - "name": "precision_manufacturing", + "wrap_text": { + "name": "wrap_text", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "psychology": { - "name": "psychology", + "table_chart": { + "name": "table_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "public": { - "name": "public", + "highlight": { + "name": "highlight", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "public_off": { - "name": "public_off", + "insert_invitation": { + "name": "insert_invitation", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "real_estate_agent": { - "name": "real_estate_agent", + "insert_link": { + "name": "insert_link", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "recommend": { - "name": "recommend", + "publish": { + "name": "publish", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "ic_recommend_24px" + "path": "" } } }, - "recycling": { - "name": "recycling", + "border_inner": { + "name": "border_inner", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "reduce_capacity": { - "name": "reduce_capacity", + "rectangle": { + "name": "rectangle", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_moderator": { - "name": "remove_moderator", + "insert_drive_file": { + "name": "insert_drive_file", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "safety_divider": { - "name": "safety_divider", + "strikethrough_s": { + "name": "strikethrough_s", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sanitizer": { - "name": "sanitizer", + "home_max": { + "name": "home_max", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "school": { - "name": "school", + "speaker": { + "name": "speaker", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "science": { - "name": "science", + "keyboard_arrow_down": { + "name": "keyboard_arrow_down", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "self_improvement": { - "name": "self_improvement", + "keyboard_arrow_up": { + "name": "keyboard_arrow_up", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_dissatisfied": { - "name": "sentiment_dissatisfied", + "desktop_mac": { + "name": "desktop_mac", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_neutral": { - "name": "sentiment_neutral", + "earbuds": { + "name": "earbuds", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_satisfied": { - "name": "sentiment_satisfied", + "laptop_chromebook": { + "name": "laptop_chromebook", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_very_dissatisfied": { - "name": "sentiment_very_dissatisfied", + "computer": { + "name": "computer", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_very_satisfied": { - "name": "sentiment_very_satisfied", + "keyboard_return": { + "name": "keyboard_return", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "share": { - "name": "share", + "headset": { + "name": "headset", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sick": { - "name": "sick", + "keyboard_double_arrow_left": { + "name": "keyboard_double_arrow_left", "keywords": [ - "social" + "hardware" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "single_bed": { - "name": "single_bed", + "adf_scanner": { + "name": "adf_scanner", "keywords": [ - "social" + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "skateboarding": { - "name": "skateboarding", + "smart_display": { + "name": "smart_display", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sledding": { - "name": "sledding", + "browser_updated": { + "name": "browser_updated", "keywords": [ - "social" + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snowboarding": { - "name": "snowboarding", + "device_hub": { + "name": "device_hub", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snowshoeing": { - "name": "snowshoeing", + "smart_toy": { + "name": "smart_toy", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "social_distance": { - "name": "social_distance", + "watch": { + "name": "watch", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports": { - "name": "sports", + "keyboard_alt": { + "name": "keyboard_alt", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_baseball": { - "name": "sports_baseball", + "headset_off": { + "name": "headset_off", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_basketball": { - "name": "sports_basketball", + "gamepad": { + "name": "gamepad", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_cricket": { - "name": "sports_cricket", + "dock": { + "name": "dock", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_esports": { - "name": "sports_esports", + "scanner": { + "name": "scanner", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_football": { - "name": "sports_football", + "phonelink": { + "name": "phonelink", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_golf": { - "name": "sports_golf", + "smartphone": { + "name": "smartphone", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_left": { + "name": "keyboard_arrow_left", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_for_education": { + "name": "cast_for_education", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_option_key": { + "name": "keyboard_option_key", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_handball": { - "name": "sports_handball", + "headphones_battery": { + "name": "headphones_battery", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "start": { + "name": "start", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard": { + "name": "keyboard", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_iphone": { + "name": "phone_iphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor": { + "name": "monitor", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_windows": { + "name": "laptop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "browser_not_supported": { + "name": "browser_not_supported", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card": { + "name": "sim_card", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_control_key": { + "name": "keyboard_control_key", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "earbuds_battery": { + "name": "earbuds_battery", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset_off": { + "name": "videogame_asset_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "memory": { + "name": "memory", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop": { + "name": "laptop", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_mac": { + "name": "laptop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_connected": { + "name": "cast_connected", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet": { + "name": "tablet", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset": { + "name": "videogame_asset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_double_arrow_down": { + "name": "keyboard_double_arrow_down", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" + } + } + }, + "keyboard_capslock": { + "name": "keyboard_capslock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_double_arrow_up": { + "name": "keyboard_double_arrow_up", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cast": { + "name": "cast", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_voice": { + "name": "keyboard_voice", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_backspace": { + "name": "keyboard_backspace", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "point_of_sale": { + "name": "point_of_sale", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "watch_off": { + "name": "watch_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board_off": { + "name": "developer_board_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_double_arrow_right": { + "name": "keyboard_double_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet_android": { + "name": "tablet_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_command_key": { + "name": "keyboard_command_key", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_mic": { + "name": "headset_mic", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_windows": { + "name": "desktop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet_mac": { + "name": "tablet_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_input": { + "name": "power_input", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv": { + "name": "tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_android": { + "name": "phone_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security": { + "name": "security", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_right": { + "name": "keyboard_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_group": { + "name": "speaker_group", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_screen": { + "name": "smart_screen", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_tab": { + "name": "keyboard_tab", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_off": { + "name": "phonelink_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_hide": { + "name": "keyboard_hide", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "connected_tv": { + "name": "connected_tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board": { + "name": "developer_board", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toys": { + "name": "toys", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "router": { + "name": "router", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_mini": { + "name": "home_mini", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_unknown": { + "name": "device_unknown", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones": { + "name": "headphones", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mouse": { + "name": "mouse", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "devices_other": { + "name": "devices_other", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_share": { + "name": "offline_share", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_vert": { + "name": "more_vert", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_settings_alt": { + "name": "app_settings_alt", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pivot_table_chart": { + "name": "pivot_table_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fullscreen": { + "name": "fullscreen", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close": { + "name": "close", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps_outage": { + "name": "apps_outage", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home_work": { + "name": "home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back": { + "name": "arrow_back", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu": { + "name": "menu", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios": { + "name": "arrow_back_ios", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "last_page": { + "name": "last_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "double_arrow": { + "name": "double_arrow", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "legend_toggle": { + "name": "legend_toggle", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_left": { + "name": "switch_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_right": { + "name": "subdirectory_arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_right": { + "name": "chevron_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_left": { + "name": "arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north": { + "name": "north", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_horiz": { + "name": "more_horiz", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps": { + "name": "apps", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_navigation": { + "name": "assistant_navigation", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "west": { + "name": "west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_home_work": { + "name": "maps_home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel": { + "name": "cancel", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "first_page": { + "name": "first_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "east": { + "name": "east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_upward": { + "name": "arrow_upward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check": { + "name": "check", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_left": { + "name": "chevron_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_open": { + "name": "menu_open", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_downward": { + "name": "arrow_downward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payments": { + "name": "payments", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios_new": { + "name": "arrow_back_ios_new", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_up": { + "name": "arrow_drop_up", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_more": { + "name": "unfold_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_east": { + "name": "south_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down_circle": { + "name": "arrow_drop_down_circle", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_more": { + "name": "expand_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_east": { + "name": "north_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward_ios": { + "name": "arrow_forward_ios", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "south": { + "name": "south", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_less": { + "name": "expand_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right": { + "name": "arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "campaign": { + "name": "campaign", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fullscreen_exit": { + "name": "fullscreen_exit", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down": { + "name": "arrow_drop_down", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward": { + "name": "arrow_forward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_circle_down": { + "name": "expand_circle_down", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_right": { + "name": "switch_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "refresh": { + "name": "refresh", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_left": { + "name": "subdirectory_arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_less": { + "name": "unfold_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waterfall_chart": { + "name": "waterfall_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_west": { + "name": "south_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_west": { + "name": "north_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_direction": { + "name": "assistant_direction", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "Asset 1" + } + } + }, + "drive_file_rename_outline": { + "name": "drive_file_rename_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_quote": { + "name": "request_quote", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_for_offline": { + "name": "download_for_offline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "approval": { + "name": "approval", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attachment": { + "name": "attachment", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_done": { + "name": "file_download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder": { + "name": "folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_done": { + "name": "download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_snippet": { + "name": "text_snippet", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_view": { + "name": "grid_view", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_upload": { + "name": "file_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "create_new_folder": { + "name": "create_new_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download": { + "name": "file_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "topic": { + "name": "topic", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces_filled": { + "name": "workspaces_filled", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_zip": { + "name": "folder_zip", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_off": { + "name": "cloud_off", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_sync": { + "name": "cloud_sync", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_shared": { + "name": "folder_shared", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_open": { + "name": "file_open", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_download": { + "name": "cloud_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_overline": { + "name": "format_overline", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snippet_folder": { + "name": "snippet_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_email": { + "name": "attach_email", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_off": { + "name": "folder_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_move_outline": { + "name": "drive_file_move_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "newspaper": { + "name": "newspaper", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "difference": { + "name": "difference", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "downloading": { + "name": "downloading", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_circle": { + "name": "cloud_circle", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces": { + "name": "workspaces", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_move_rtl": { + "name": "drive_file_move_rtl", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "download": { + "name": "download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload": { + "name": "upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_delete": { + "name": "folder_delete", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_done": { + "name": "cloud_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_queue": { + "name": "cloud_queue", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_off": { + "name": "file_download_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud": { + "name": "cloud", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_move": { + "name": "drive_file_move", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule_folder": { + "name": "rule_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_open": { + "name": "folder_open", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_upload": { + "name": "cloud_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_folder_upload": { + "name": "drive_folder_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces_outline": { + "name": "workspaces_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload_file": { + "name": "upload_file", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "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": "" + } + } + }, + "warning_amber": { + "name": "warning_amber", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "warning": { + "name": "warning", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_delete": { + "name": "auto_delete", + "keywords": [ + "alert" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alert": { + "name": "add_alert", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "error": { + "name": "error", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update": { + "name": "system_update", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tap_and_play": { + "name": "tap_and_play", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption": { + "name": "no_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_normal": { + "name": "airline_seat_legroom_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_audio": { + "name": "bluetooth_audio", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_off": { + "name": "wifi_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_disabled": { + "name": "sync_disabled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mms": { + "name": "mms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_lock": { + "name": "sync_lock", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_alt": { + "name": "do_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_paused": { + "name": "phone_paused", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wc": { + "name": "wc", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv_off": { + "name": "tv_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_problem": { + "name": "sync_problem", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_locked": { + "name": "phone_locked", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "power_off": { + "name": "power_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption_gmailerrorred": { + "name": "no_encryption_gmailerrorred", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_eta": { + "name": "drive_eta", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_special": { + "name": "folder_special", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_alert": { + "name": "sim_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on": { + "name": "do_not_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_video": { + "name": "personal_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "running_with_errors": { + "name": "running_with_errors", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_extra": { + "name": "airline_seat_recline_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "add_call": { + "name": "add_call", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat_angled": { + "name": "airline_seat_flat_angled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_chat": { + "name": "voice_chat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms": { + "name": "sms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_note": { + "name": "event_note", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_missed": { + "name": "phone_missed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_alt": { + "name": "do_not_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more": { + "name": "more", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card_alert": { + "name": "sd_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power": { + "name": "power", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_callback": { + "name": "phone_callback", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb": { + "name": "do_not_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disc_full": { + "name": "disc_full", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_in_talk": { + "name": "phone_in_talk", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_available": { + "name": "event_available", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_tv": { + "name": "live_tv", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_off": { + "name": "do_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ondemand_video": { + "name": "ondemand_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_normal": { + "name": "airline_seat_recline_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_check": { + "name": "network_check", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card": { + "name": "sd_card", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adb": { + "name": "adb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms_failed": { + "name": "sms_failed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_individual_suite": { + "name": "airline_seat_individual_suite", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "time_to_leave": { + "name": "time_to_leave", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat": { + "name": "airline_seat_flat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb": { + "name": "do_disturb", + "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": "" + } + } + }, + "enhanced_encryption": { + "name": "enhanced_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_tree": { + "name": "account_tree", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" } } }, - "sports_hockey": { - "name": "sports_hockey", + "network_locked": { + "name": "network_locked", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_kabaddi": { - "name": "sports_kabaddi", + "sync": { + "name": "sync", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_mma": { - "name": "sports_mma", + "priority_high": { + "name": "priority_high", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_motorsports": { - "name": "sports_motorsports", + "event_busy": { + "name": "event_busy", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_rugby": { - "name": "sports_rugby", + "phone_bluetooth_speaker": { + "name": "phone_bluetooth_speaker", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_soccer": { - "name": "sports_soccer", + "airline_seat_legroom_reduced": { + "name": "airline_seat_legroom_reduced", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_tennis": { - "name": "sports_tennis", + "support_agent": { + "name": "support_agent", "keywords": [ - "social" + "notification" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_volleyball": { - "name": "sports_volleyball", + "phone_forwarded": { + "name": "phone_forwarded", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "surfing": { - "name": "surfing", + "do_disturb_on": { + "name": "do_disturb_on", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_account": { - "name": "switch_account", + "do_not_disturb_off": { + "name": "do_not_disturb_off", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_down_alt": { - "name": "thumb_down_alt", + "directions_off": { + "name": "directions_off", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_up_alt": { - "name": "thumb_up_alt", + "vibration": { + "name": "vibration", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "transgender": { - "name": "transgender", + "vpn_lock": { + "name": "vpn_lock", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "travel_explore": { - "name": "travel_explore", + "imagesearch_roller": { + "name": "imagesearch_roller", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "water_drop": { - "name": "water_drop", + "airline_seat_legroom_extra": { + "name": "airline_seat_legroom_extra", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "waving_hand": { - "name": "waving_hand", + "star_border": { + "name": "star_border", "keywords": [ - "social" + "toggle" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "whatshot": { - "name": "whatshot", + "radio_button_unchecked": { + "name": "radio_button_unchecked", "keywords": [ - "social" + "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "check_box": { - "name": "check_box", + "star": { + "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -22951,63 +26327,63 @@ } } }, - "indeterminate_check_box": { - "name": "indeterminate_check_box", + "toggle_on": { + "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radio_button_checked": { - "name": "radio_button_checked", + "indeterminate_check_box": { + "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radio_button_unchecked": { - "name": "radio_button_unchecked", + "star_purple500": { + "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star": { - "name": "star", + "toggle_off": { + "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star_border": { - "name": "star_border", + "check_box": { + "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -23047,40 +26423,16 @@ } } }, - "star_purple500": { - "name": "star_purple500", - "keywords": [ - "toggle" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "toggle_off": { - "name": "toggle_off", - "keywords": [ - "toggle" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "toggle_on": { - "name": "toggle_on", + "radio_button_checked": { + "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } } -} +} \ No newline at end of file diff --git a/sphinx_design/compiled/material_round.json b/sphinx_design/compiled/material_round.json index ede63b3..d4caec2 100644 --- a/sphinx_design/compiled/material_round.json +++ b/sphinx_design/compiled/material_round.json @@ -1,16997 +1,17549 @@ { - "3d_rotation": { - "name": "3d_rotation", + "view_comfy": { + "name": "view_comfy", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "accessibility": { - "name": "accessibility", + "crop_din": { + "name": "crop_din", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "accessibility_new": { - "name": "accessibility_new", + "brightness_5": { + "name": "brightness_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "accessible": { - "name": "accessible", + "broken_image": { + "name": "broken_image", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "accessible_forward": { - "name": "accessible_forward", + "crop_7_5": { + "name": "crop_7_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_balance": { - "name": "account_balance", + "brightness_1": { + "name": "brightness_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_balance_wallet": { - "name": "account_balance_wallet", + "13mp": { + "name": "13mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_box": { - "name": "account_box", + "wb_iridescent": { + "name": "wb_iridescent", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_circle": { - "name": "account_circle", + "wb_sunny": { + "name": "wb_sunny", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "addchart": { - "name": "addchart", + "23mp": { + "name": "23mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_shopping_cart": { - "name": "add_shopping_cart", + "vrpano": { + "name": "vrpano", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_task": { - "name": "add_task", + "bedtime": { + "name": "bedtime", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_drive": { - "name": "add_to_drive", + "cases": { + "name": "cases", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "admin_panel_settings": { - "name": "admin_panel_settings", + "euro": { + "name": "euro", "keywords": [ - "action" + "image" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ads_click": { - "name": "ads_click", + "straighten": { + "name": "straighten", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "alarm": { - "name": "alarm", + "panorama_photosphere_select": { + "name": "panorama_photosphere_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alarm_add": { - "name": "alarm_add", + "leak_remove": { + "name": "leak_remove", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alarm_off": { - "name": "alarm_off", + "animation": { + "name": "animation", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alarm_on": { - "name": "alarm_on", + "timer_off": { + "name": "timer_off", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "all_inbox": { - "name": "all_inbox", + "currency_pound": { + "name": "currency_pound", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "all_out": { - "name": "all_out", + "20mp": { + "name": "20mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "analytics": { - "name": "analytics", + "filter_9": { + "name": "filter_9", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "anchor": { - "name": "anchor", + "brightness_3": { + "name": "brightness_3", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "android": { - "name": "android", + "filter_hdr": { + "name": "filter_hdr", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "announcement": { - "name": "announcement", + "14mp": { + "name": "14mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "api": { - "name": "api", + "lens": { + "name": "lens", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "app_blocking": { - "name": "app_blocking", + "auto_fix_high": { + "name": "auto_fix_high", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_circle_down": { - "name": "arrow_circle_down", + "10mp": { + "name": "10mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_circle_up": { - "name": "arrow_circle_up", + "iso": { + "name": "iso", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_right_alt": { - "name": "arrow_right_alt", + "photo_camera": { + "name": "photo_camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "article": { - "name": "article", + "motion_photos_on": { + "name": "motion_photos_on", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "aspect_ratio": { - "name": "aspect_ratio", + "bedtime_off": { + "name": "bedtime_off", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "assessment": { - "name": "assessment", + "image": { + "name": "image", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment": { - "name": "assignment", + "21mp": { + "name": "21mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_ind": { - "name": "assignment_ind", + "assistant_photo": { + "name": "assistant_photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_late": { - "name": "assignment_late", + "hdr_off": { + "name": "hdr_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_return": { - "name": "assignment_return", + "3mp": { + "name": "3mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_returned": { - "name": "assignment_returned", + "filter_8": { + "name": "filter_8", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_turned_in": { - "name": "assignment_turned_in", + "filter_center_focus": { + "name": "filter_center_focus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "autorenew": { - "name": "autorenew", + "burst_mode": { + "name": "burst_mode", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "backup": { - "name": "backup", + "6mp": { + "name": "6mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "backup_table": { - "name": "backup_table", + "adjust": { + "name": "adjust", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "batch_prediction": { - "name": "batch_prediction", + "hevc": { + "name": "hevc", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "book": { - "name": "book", + "camera_roll": { + "name": "camera_roll", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark": { - "name": "bookmark", + "switch_video": { + "name": "switch_video", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmarks": { - "name": "bookmarks", + "camera": { + "name": "camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark_add": { - "name": "bookmark_add", + "video_stable": { + "name": "video_stable", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark_added": { - "name": "bookmark_added", + "filter_frames": { + "name": "filter_frames", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark_border": { - "name": "bookmark_border", + "dirty_lens": { + "name": "dirty_lens", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark_remove": { - "name": "bookmark_remove", + "5mp": { + "name": "5mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "book_online": { - "name": "book_online", + "exposure": { + "name": "exposure", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bug_report": { - "name": "bug_report", + "photo_camera_back": { + "name": "photo_camera_back", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "build": { - "name": "build", + "transform": { + "name": "transform", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "build_circle": { - "name": "build_circle", + "color_lens": { + "name": "color_lens", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cached": { - "name": "cached", + "16mp": { + "name": "16mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calendar_today": { - "name": "calendar_today", + "currency_lira": { + "name": "currency_lira", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "calendar_view_day": { - "name": "calendar_view_day", + "crop_16_9": { + "name": "crop_16_9", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calendar_view_month": { - "name": "calendar_view_month", + "crop_original": { + "name": "crop_original", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calendar_view_week": { - "name": "calendar_view_week", + "filter_4": { + "name": "filter_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_enhance": { - "name": "camera_enhance", + "filter_vintage": { + "name": "filter_vintage", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cancel_schedule_send": { - "name": "cancel_schedule_send", + "nature_people": { + "name": "nature_people", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "card_giftcard": { - "name": "card_giftcard", + "navigate_before": { + "name": "navigate_before", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "card_membership": { - "name": "card_membership", + "add_photo_alternate": { + "name": "add_photo_alternate", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "card_travel": { - "name": "card_travel", + "12mp": { + "name": "12mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "change_history": { - "name": "change_history", + "filter_drama": { + "name": "filter_drama", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "check_circle": { - "name": "check_circle", + "brightness_2": { + "name": "brightness_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "check_circle_outline": { - "name": "check_circle_outline", + "video_camera_back": { + "name": "video_camera_back", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chrome_reader_mode": { - "name": "chrome_reader_mode", + "add_a_photo": { + "name": "add_a_photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "circle_notifications": { - "name": "circle_notifications", + "nature": { + "name": "nature", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "class": { - "name": "class", + "image_not_supported": { + "name": "image_not_supported", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "close_fullscreen": { - "name": "close_fullscreen", + "currency_franc": { + "name": "currency_franc", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "code": { - "name": "code", + "tune": { + "name": "tune", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "code_off": { - "name": "code_off", + "face_retouching_off": { + "name": "face_retouching_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "comment_bank": { - "name": "comment_bank", + "crop_3_2": { + "name": "crop_3_2", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "commute": { - "name": "commute", + "mic_external_on": { + "name": "mic_external_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "compare_arrows": { - "name": "compare_arrows", + "panorama_photosphere": { + "name": "panorama_photosphere", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "compress": { - "name": "compress", + "currency_ruble": { + "name": "currency_ruble", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "contactless": { - "name": "contactless", + "mp": { + "name": "mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_page": { - "name": "contact_page", + "auto_awesome_mosaic": { + "name": "auto_awesome_mosaic", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_support": { - "name": "contact_support", + "raw_off": { + "name": "raw_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "copyright": { - "name": "copyright", + "portrait": { + "name": "portrait", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "credit_card": { - "name": "credit_card", + "photo_size_select_small": { + "name": "photo_size_select_small", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "credit_card_off": { - "name": "credit_card_off", + "auto_fix_off": { + "name": "auto_fix_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dangerous": { - "name": "dangerous", + "22mp": { + "name": "22mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dashboard": { - "name": "dashboard", + "blur_off": { + "name": "blur_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dashboard_customize": { - "name": "dashboard_customize", + "looks_6": { + "name": "looks_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_exploration": { - "name": "data_exploration", + "tag_faces": { + "name": "tag_faces", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "date_range": { - "name": "date_range", + "looks": { + "name": "looks", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete": { - "name": "delete", + "motion_photos_auto": { + "name": "motion_photos_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete_forever": { - "name": "delete_forever", + "details": { + "name": "details", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete_outline": { - "name": "delete_outline", + "filter_3": { + "name": "filter_3", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "description": { - "name": "description", + "auto_awesome": { + "name": "auto_awesome", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "disabled_by_default": { - "name": "disabled_by_default", + "auto_fix_normal": { + "name": "auto_fix_normal", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "disabled_visible": { - "name": "disabled_visible", + "gradient": { + "name": "gradient", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dns": { - "name": "dns", + "wb_incandescent": { + "name": "wb_incandescent", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "done": { - "name": "done", + "landscape": { + "name": "landscape", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "done_all": { - "name": "done_all", + "incomplete_circle": { + "name": "incomplete_circle", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "done_outline": { - "name": "done_outline", + "hdr_on": { + "name": "hdr_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "donut_large": { - "name": "donut_large", + "contrast": { + "name": "contrast", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "donut_small": { - "name": "donut_small", + "blur_circular": { + "name": "blur_circular", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drag_indicator": { - "name": "drag_indicator", + "wb_twilight": { + "name": "wb_twilight", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dynamic_form": { - "name": "dynamic_form", + "crop": { + "name": "crop", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "eco": { - "name": "eco", + "blur_linear": { + "name": "blur_linear", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_calendar": { - "name": "edit_calendar", + "switch_camera": { + "name": "switch_camera", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_off": { - "name": "edit_off", + "photo_album": { + "name": "photo_album", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "eject": { - "name": "eject", + "deblur": { + "name": "deblur", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "euro_symbol": { - "name": "euro_symbol", + "currency_yen": { + "name": "currency_yen", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "event": { - "name": "event", + "panorama_horizontal": { + "name": "panorama_horizontal", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_seat": { - "name": "event_seat", + "filter_1": { + "name": "filter_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exit_to_app": { - "name": "exit_to_app", + "compare": { + "name": "compare", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "expand": { - "name": "expand", + "grain": { + "name": "grain", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "explore": { - "name": "explore", + "17mp": { + "name": "17mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "explore_off": { - "name": "explore_off", + "looks_4": { + "name": "looks_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "extension": { - "name": "extension", + "monochrome_photos": { + "name": "monochrome_photos", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "extension_off": { - "name": "extension_off", + "looks_two": { + "name": "looks_two", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "face": { - "name": "face", + "auto_stories": { + "name": "auto_stories", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "face_unlock": { - "name": "face_unlock", + "view_compact": { + "name": "view_compact", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fact_check": { - "name": "fact_check", + "camera_front": { + "name": "camera_front", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "favorite": { - "name": "favorite", + "8mp": { + "name": "8mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "favorite_border": { - "name": "favorite_border", + "blur_on": { + "name": "blur_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "feedback": { - "name": "feedback", + "image_search": { + "name": "image_search", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_present": { - "name": "file_present", + "shutter_speed": { + "name": "shutter_speed", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_alt": { - "name": "filter_alt", + "hdr_plus": { + "name": "hdr_plus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "find_in_page": { - "name": "find_in_page", + "panorama_wide_angle_select": { + "name": "panorama_wide_angle_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "find_replace": { - "name": "find_replace", + "timelapse": { + "name": "timelapse", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fingerprint": { - "name": "fingerprint", + "photo_size_select_large": { + "name": "photo_size_select_large", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fit_screen": { - "name": "fit_screen", + "panorama_horizontal_select": { + "name": "panorama_horizontal_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flaky": { - "name": "flaky", + "timer_3": { + "name": "timer_3", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flight_land": { - "name": "flight_land", + "center_focus_weak": { + "name": "center_focus_weak", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flight_takeoff": { - "name": "flight_takeoff", + "center_focus_strong": { + "name": "center_focus_strong", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_to_back": { - "name": "flip_to_back", + "auto_awesome_motion": { + "name": "auto_awesome_motion", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_to_front": { - "name": "flip_to_front", + "filter_5": { + "name": "filter_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flutter_dash": { - "name": "flutter_dash", + "exposure_plus_1": { + "name": "exposure_plus_1", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "free_cancellation": { - "name": "free_cancellation", + "audiotrack": { + "name": "audiotrack", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gavel": { - "name": "gavel", + "wb_cloudy": { + "name": "wb_cloudy", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "generating_tokens": { - "name": "generating_tokens", + "music_note": { + "name": "music_note", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "get_app": { - "name": "get_app", + "brush": { + "name": "brush", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gif": { - "name": "gif", + "photo": { + "name": "photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grade": { - "name": "grade", + "18mp": { + "name": "18mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grading": { - "name": "grading", + "loupe": { + "name": "loupe", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "group_work": { - "name": "group_work", + "currency_rupee": { + "name": "currency_rupee", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "g_translate": { - "name": "g_translate", + "flip": { + "name": "flip", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "help": { - "name": "help", + "remove_red_eye": { + "name": "remove_red_eye", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "help_center": { - "name": "help_center", + "texture": { + "name": "texture", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "help_outline": { - "name": "help_outline", + "flash_on": { + "name": "flash_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hide_source": { - "name": "hide_source", + "7mp": { + "name": "7mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "highlight_alt": { - "name": "highlight_alt", + "wb_shade": { + "name": "wb_shade", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "highlight_off": { - "name": "highlight_off", + "receipt_long": { + "name": "receipt_long", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "history": { - "name": "history", + "rotate_right": { + "name": "rotate_right", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "history_toggle_off": { - "name": "history_toggle_off", + "crop_rotate": { + "name": "crop_rotate", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "home": { - "name": "home", + "2mp": { + "name": "2mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "horizontal_split": { - "name": "horizontal_split", + "raw_on": { + "name": "raw_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hotel_class": { - "name": "hotel_class", + "rotate_left": { + "name": "rotate_left", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_disabled": { - "name": "hourglass_disabled", + "crop_portrait": { + "name": "crop_portrait", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_empty": { - "name": "hourglass_empty", + "flip_camera_android": { + "name": "flip_camera_android", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_full": { - "name": "hourglass_full", + "rotate_90_degrees_ccw": { + "name": "rotate_90_degrees_ccw", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "http": { - "name": "http", + "photo_filter": { + "name": "photo_filter", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "https": { - "name": "https", + "exposure_plus_2": { + "name": "exposure_plus_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "important_devices": { - "name": "important_devices", + "motion_photos_pause": { + "name": "motion_photos_pause", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "info": { - "name": "info", + "assistant": { + "name": "assistant", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "info_outline": { - "name": "info_outline", + "flare": { + "name": "flare", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "input": { - "name": "input", + "picture_as_pdf": { + "name": "picture_as_pdf", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "integration_instructions": { - "name": "integration_instructions", + "brightness_4": { + "name": "brightness_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "invert_colors": { - "name": "invert_colors", + "camera_rear": { + "name": "camera_rear", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "label": { - "name": "label", + "circle": { + "name": "circle", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_important": { - "name": "label_important", + "dehaze": { + "name": "dehaze", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_important_outline": { - "name": "label_important_outline", + "filter_6": { + "name": "filter_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_off": { - "name": "label_off", + "motion_photos_paused": { + "name": "motion_photos_paused", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_outline": { - "name": "label_outline", + "crop_landscape": { + "name": "crop_landscape", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "language": { - "name": "language", + "linked_camera": { + "name": "linked_camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "launch": { - "name": "launch", + "24mp": { + "name": "24mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "leaderboard": { - "name": "leaderboard", + "logo_dev": { + "name": "logo_dev", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lightbulb": { - "name": "lightbulb", + "15mp": { + "name": "15mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lightbulb_outline": { - "name": "lightbulb_outline", + "panorama_vertical": { + "name": "panorama_vertical", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "line_style": { - "name": "line_style", + "motion_photos_off": { + "name": "motion_photos_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "line_weight": { - "name": "line_weight", + "panorama_vertical_select": { + "name": "panorama_vertical_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "list": { - "name": "list", + "grid_off": { + "name": "grid_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock": { - "name": "lock", + "panorama_fish_eye": { + "name": "panorama_fish_eye", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock_clock": { - "name": "lock_clock", + "autofps_select": { + "name": "autofps_select", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock_open": { - "name": "lock_open", + "photo_size_select_actual": { + "name": "photo_size_select_actual", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock_outline": { - "name": "lock_outline", + "9mp": { + "name": "9mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "login": { - "name": "login", + "filter_7": { + "name": "filter_7", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "logout": { - "name": "logout", + "flip_camera_ios": { + "name": "flip_camera_ios", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "loyalty": { - "name": "loyalty", + "currency_yuan": { + "name": "currency_yuan", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "manage_accounts": { - "name": "manage_accounts", + "video_camera_front": { + "name": "video_camera_front", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "markunread_mailbox": { - "name": "markunread_mailbox", + "movie_filter": { + "name": "movie_filter", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_as_unread": { - "name": "mark_as_unread", + "collections": { + "name": "collections", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "maximize": { - "name": "maximize", + "tonality": { + "name": "tonality", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mediation": { - "name": "mediation", + "music_off": { + "name": "music_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "minimize": { - "name": "minimize", + "photo_library": { + "name": "photo_library", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "model_training": { - "name": "model_training", + "filter_none": { + "name": "filter_none", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "new_label": { - "name": "new_label", + "vignette": { + "name": "vignette", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "next_plan": { - "name": "next_plan", + "hide_image": { + "name": "hide_image", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nightlight_round": { - "name": "nightlight_round", + "4mp": { + "name": "4mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "note_add": { - "name": "note_add", + "30fps_select": { + "name": "30fps_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_accessible": { - "name": "not_accessible", + "looks_5": { + "name": "looks_5", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_started": { - "name": "not_started", + "exposure_zero": { + "name": "exposure_zero", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_accounts": { - "name": "no_accounts", + "11mp": { + "name": "11mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "offline_bolt": { - "name": "offline_bolt", + "healing": { + "name": "healing", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "offline_pin": { - "name": "offline_pin", + "exposure_neg_1": { + "name": "exposure_neg_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "online_prediction": { - "name": "online_prediction", + "filter": { + "name": "filter", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "opacity": { - "name": "opacity", + "filter_9_plus": { + "name": "filter_9_plus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_browser": { - "name": "open_in_browser", + "movie_creation": { + "name": "movie_creation", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_full": { - "name": "open_in_full", + "add_to_photos": { + "name": "add_to_photos", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_new": { - "name": "open_in_new", + "crop_free": { + "name": "crop_free", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_new_off": { - "name": "open_in_new_off", + "filter_tilt_shift": { + "name": "filter_tilt_shift", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_with": { - "name": "open_with", + "hdr_strong": { + "name": "hdr_strong", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outbond": { - "name": "outbond", + "wb_auto": { + "name": "wb_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outbound": { - "name": "outbound", + "filter_2": { + "name": "filter_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outbox": { - "name": "outbox", + "looks_3": { + "name": "looks_3", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "outlet": { - "name": "outlet", + "collections_bookmark": { + "name": "collections_bookmark", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pageview": { - "name": "pageview", + "brightness_6": { + "name": "brightness_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "paid": { - "name": "paid", + "timer_10": { + "name": "timer_10", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pan_tool": { - "name": "pan_tool", + "palette": { + "name": "palette", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "payment": { - "name": "payment", + "edit": { + "name": "edit", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pending": { - "name": "pending", + "crop_square": { + "name": "crop_square", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pending_actions": { - "name": "pending_actions", + "19mp": { + "name": "19mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_camera_mic": { - "name": "perm_camera_mic", + "timer": { + "name": "timer", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_contact_calendar": { - "name": "perm_contact_calendar", + "hdr_enhanced_select": { + "name": "hdr_enhanced_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_data_setting": { - "name": "perm_data_setting", + "flash_off": { + "name": "flash_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_device_information": { - "name": "perm_device_information", + "panorama_wide_angle": { + "name": "panorama_wide_angle", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_identity": { - "name": "perm_identity", + "thermostat_auto": { + "name": "thermostat_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_media": { - "name": "perm_media", + "camera_alt": { + "name": "camera_alt", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_phone_msg": { - "name": "perm_phone_msg", + "60fps_select": { + "name": "60fps_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_scan_wifi": { - "name": "perm_scan_wifi", + "style": { + "name": "style", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pets": { - "name": "pets", + "rotate_90_degrees_cw": { + "name": "rotate_90_degrees_cw", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "picture_in_picture": { - "name": "picture_in_picture", + "panorama": { + "name": "panorama", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "picture_in_picture_alt": { - "name": "picture_in_picture_alt", + "filter_b_and_w": { + "name": "filter_b_and_w", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin_end": { - "name": "pin_end", + "mic_external_off": { + "name": "mic_external_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin_invoke": { - "name": "pin_invoke", + "looks_one": { + "name": "looks_one", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "plagiarism": { - "name": "plagiarism", + "slideshow": { + "name": "slideshow", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_for_work": { - "name": "play_for_work", + "image_aspect_ratio": { + "name": "image_aspect_ratio", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "polymer": { - "name": "polymer", + "photo_camera_front": { + "name": "photo_camera_front", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "power_settings_new": { - "name": "power_settings_new", + "crop_5_4": { + "name": "crop_5_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pregnant_woman": { - "name": "pregnant_woman", + "control_point": { + "name": "control_point", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "preview": { - "name": "preview", + "brightness_7": { + "name": "brightness_7", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "print": { - "name": "print", + "control_point_duplicate": { + "name": "control_point_duplicate", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "privacy_tip": { - "name": "privacy_tip", + "exposure_neg_2": { + "name": "exposure_neg_2", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "private_connectivity": { - "name": "private_connectivity", + "hdr_weak": { + "name": "hdr_weak", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "production_quantity_limits": { - "name": "production_quantity_limits", + "grid_on": { + "name": "grid_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "published_with_changes": { - "name": "published_with_changes", + "flash_auto": { + "name": "flash_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "query_builder": { - "name": "query_builder", + "face_retouching_natural": { + "name": "face_retouching_natural", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "question_answer": { - "name": "question_answer", + "leak_add": { + "name": "leak_add", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "quickreply": { - "name": "quickreply", + "navigate_next": { + "name": "navigate_next", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "receipt": { - "name": "receipt", + "colorize": { + "name": "colorize", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "record_voice_over": { - "name": "record_voice_over", + "radio": { + "name": "radio", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "redeem": { - "name": "redeem", + "speed": { + "name": "speed", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_done": { - "name": "remove_done", + "volume_off": { + "name": "volume_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_shopping_cart": { - "name": "remove_shopping_cart", + "shuffle": { + "name": "shuffle", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reorder": { - "name": "reorder", + "4k": { + "name": "4k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report_problem": { - "name": "report_problem", + "featured_play_list": { + "name": "featured_play_list", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "request_page": { - "name": "request_page", + "closed_caption": { + "name": "closed_caption", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restore": { - "name": "restore", + "queue_music": { + "name": "queue_music", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "restore_from_trash": { - "name": "restore_from_trash", + "subtitles": { + "name": "subtitles", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restore_page": { - "name": "restore_page", + "art_track": { + "name": "art_track", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "room": { - "name": "room", + "album": { + "name": "album", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rounded_corner": { - "name": "rounded_corner", + "replay_circle_filled": { + "name": "replay_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rowing": { - "name": "rowing", + "hd": { + "name": "hd", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rule": { - "name": "rule", + "3k": { + "name": "3k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "saved_search": { - "name": "saved_search", + "not_interested": { + "name": "not_interested", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "savings": { - "name": "savings", + "fiber_smart_record": { + "name": "fiber_smart_record", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "schedule": { - "name": "schedule", + "snooze": { + "name": "snooze", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "schedule_send": { - "name": "schedule_send", + "1k_plus": { + "name": "1k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "search": { - "name": "search", + "pause_circle_outline": { + "name": "pause_circle_outline", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "search_off": { - "name": "search_off", + "airplay": { + "name": "airplay", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "segment": { - "name": "segment", + "add_to_queue": { + "name": "add_to_queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "send_and_archive": { - "name": "send_and_archive", + "9k": { + "name": "9k", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensors": { - "name": "sensors", + "10k": { + "name": "10k", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensors_off": { - "name": "sensors_off", + "audio_file": { + "name": "audio_file", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings": { - "name": "settings", + "3k_plus": { + "name": "3k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_accessibility": { - "name": "settings_accessibility", + "2k": { + "name": "2k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_applications": { - "name": "settings_applications", + "play_circle_filled": { + "name": "play_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_backup_restore": { - "name": "settings_backup_restore", + "high_quality": { + "name": "high_quality", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_bluetooth": { - "name": "settings_bluetooth", + "new_releases": { + "name": "new_releases", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_brightness": { - "name": "settings_brightness", + "queue_play_next": { + "name": "queue_play_next", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_cell": { - "name": "settings_cell", + "pause_circle": { + "name": "pause_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_ethernet": { - "name": "settings_ethernet", + "closed_caption_disabled": { + "name": "closed_caption_disabled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_antenna": { - "name": "settings_input_antenna", + "control_camera": { + "name": "control_camera", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_component": { - "name": "settings_input_component", + "games": { + "name": "games", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_composite": { - "name": "settings_input_composite", + "replay": { + "name": "replay", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_hdmi": { - "name": "settings_input_hdmi", + "call_to_action": { + "name": "call_to_action", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_svideo": { - "name": "settings_input_svideo", + "featured_video": { + "name": "featured_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_overscan": { - "name": "settings_overscan", + "volume_mute": { + "name": "volume_mute", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_phone": { - "name": "settings_phone", + "music_video": { + "name": "music_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_power": { - "name": "settings_power", + "mic_none": { + "name": "mic_none", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_remote": { - "name": "settings_remote", + "playlist_add_circle": { + "name": "playlist_add_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_voice": { - "name": "settings_voice", + "remove_from_queue": { + "name": "remove_from_queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shop": { - "name": "shop", + "web_asset": { + "name": "web_asset", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shopping_bag": { - "name": "shopping_bag", + "sort_by_alpha": { + "name": "sort_by_alpha", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shopping_basket": { - "name": "shopping_basket", + "6k": { + "name": "6k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shopping_cart": { - "name": "shopping_cart", + "7k_plus": { + "name": "7k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shop_2": { - "name": "shop_2", + "playlist_add_check": { + "name": "playlist_add_check", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shop_two": { - "name": "shop_two", + "fiber_pin": { + "name": "fiber_pin", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_button": { - "name": "smart_button", + "fiber_dvr": { + "name": "fiber_dvr", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "source": { - "name": "source", + "5k": { + "name": "5k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "space_dashboard": { - "name": "space_dashboard", + "4k_plus": { + "name": "4k_plus", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_notes": { - "name": "speaker_notes", + "sd": { + "name": "sd", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_notes_off": { - "name": "speaker_notes_off", + "replay_10": { + "name": "replay_10", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "spellcheck": { - "name": "spellcheck", + "8k": { + "name": "8k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stars": { - "name": "stars", + "stop": { + "name": "stop", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star_rate": { - "name": "star_rate", + "play_arrow": { + "name": "play_arrow", "keywords": [ - "action" + "av" ], "heights": { - "18": { - "width": 18, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sticky_note_2": { - "name": "sticky_note_2", + "9k_plus": { + "name": "9k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "store": { - "name": "store", + "av_timer": { + "name": "av_timer", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subject": { - "name": "subject", + "note": { + "name": "note", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subtitles_off": { - "name": "subtitles_off", + "repeat_one_on": { + "name": "repeat_one_on", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "supervised_user_circle": { - "name": "supervised_user_circle", + "video_label": { + "name": "video_label", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "supervisor_account": { - "name": "supervisor_account", + "fiber_manual_record": { + "name": "fiber_manual_record", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "support": { - "name": "support", + "explicit": { + "name": "explicit", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_horiz": { - "name": "swap_horiz", + "repeat": { + "name": "repeat", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_horizontal_circle": { - "name": "swap_horizontal_circle", + "forward_30": { + "name": "forward_30", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_vert": { - "name": "swap_vert", + "equalizer": { + "name": "equalizer", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_vertical_circle": { - "name": "swap_vertical_circle", + "play_circle_outline": { + "name": "play_circle_outline", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swipe": { - "name": "swipe", + "shuffle_on": { + "name": "shuffle_on", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync_alt": { - "name": "sync_alt", + "playlist_play": { + "name": "playlist_play", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_update_alt": { - "name": "system_update_alt", + "mic": { + "name": "mic", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tab": { - "name": "tab", + "6k_plus": { + "name": "6k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "table_view": { - "name": "table_view", + "7k": { + "name": "7k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tab_unselected": { - "name": "tab_unselected", + "play_circle": { + "name": "play_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "task_alt": { - "name": "task_alt", + "subscriptions": { + "name": "subscriptions", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotate_up": { - "name": "text_rotate_up", + "queue": { + "name": "queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotate_vertical": { - "name": "text_rotate_vertical", + "stop_circle": { + "name": "stop_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_angledown": { - "name": "text_rotation_angledown", + "5k_plus": { + "name": "5k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_angleup": { - "name": "text_rotation_angleup", + "video_file": { + "name": "video_file", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_down": { - "name": "text_rotation_down", + "branding_watermark": { + "name": "branding_watermark", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_none": { - "name": "text_rotation_none", + "replay_30": { + "name": "replay_30", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "theaters": { - "name": "theaters", + "recent_actors": { + "name": "recent_actors", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumbs_up_down": { - "name": "thumbs_up_down", + "fast_rewind": { + "name": "fast_rewind", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_down": { - "name": "thumb_down", + "play_disabled": { + "name": "play_disabled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_down_off_alt": { - "name": "thumb_down_off_alt", + "forward_5": { + "name": "forward_5", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_up": { - "name": "thumb_up", + "slow_motion_video": { + "name": "slow_motion_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_up_off_alt": { - "name": "thumb_up_off_alt", + "repeat_one": { + "name": "repeat_one", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timeline": { - "name": "timeline", + "playlist_add_check_circle": { + "name": "playlist_add_check_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tips_and_updates": { - "name": "tips_and_updates", + "fiber_new": { + "name": "fiber_new", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "toc": { - "name": "toc", + "video_library": { + "name": "video_library", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "today": { - "name": "today", + "video_settings": { + "name": "video_settings", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "toll": { - "name": "toll", + "forward_10": { + "name": "forward_10", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "touch_app": { - "name": "touch_app", + "playlist_remove": { + "name": "playlist_remove", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tour": { - "name": "tour", + "video_call": { + "name": "video_call", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "track_changes": { - "name": "track_changes", + "library_add_check": { + "name": "library_add_check", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "translate": { - "name": "translate", + "hearing": { + "name": "hearing", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "trending_down": { - "name": "trending_down", + "movie": { + "name": "movie", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "trending_flat": { - "name": "trending_flat", + "5g": { + "name": "5g", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "trending_up": { - "name": "trending_up", + "fast_forward": { + "name": "fast_forward", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "try": { - "name": "try", + "closed_caption_off": { + "name": "closed_caption_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "turned_in": { - "name": "turned_in", + "hearing_disabled": { + "name": "hearing_disabled", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "turned_in_not": { - "name": "turned_in_not", + "8k_plus": { + "name": "8k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unpublished": { - "name": "unpublished", + "2k_plus": { + "name": "2k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "update": { - "name": "update", + "skip_next": { + "name": "skip_next", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "update_disabled": { - "name": "update_disabled", + "replay_5": { + "name": "replay_5", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "upgrade": { - "name": "upgrade", + "1k": { + "name": "1k", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "verified": { - "name": "verified", + "web": { + "name": "web", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "verified_user": { - "name": "verified_user", + "playlist_add": { + "name": "playlist_add", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_split": { - "name": "vertical_split", + "volume_up": { + "name": "volume_up", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_agenda": { - "name": "view_agenda", + "missed_video_call": { + "name": "missed_video_call", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_array": { - "name": "view_array", + "library_add": { + "name": "library_add", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_carousel": { - "name": "view_carousel", + "surround_sound": { + "name": "surround_sound", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_column": { - "name": "view_column", + "skip_previous": { + "name": "skip_previous", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_day": { - "name": "view_day", + "mic_off": { + "name": "mic_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_headline": { - "name": "view_headline", + "pause_circle_filled": { + "name": "pause_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_in_ar": { - "name": "view_in_ar", + "library_music": { + "name": "library_music", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_list": { - "name": "view_list", + "videocam_off": { + "name": "videocam_off", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_module": { - "name": "view_module", + "repeat_on": { + "name": "repeat_on", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_quilt": { - "name": "view_quilt", + "library_books": { + "name": "library_books", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_sidebar": { - "name": "view_sidebar", + "loop": { + "name": "loop", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_stream": { - "name": "view_stream", + "interpreter_mode": { + "name": "interpreter_mode", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_week": { - "name": "view_week", + "pause": { + "name": "pause", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "visibility": { - "name": "visibility", + "volume_down": { + "name": "volume_down", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "visibility_off": { - "name": "visibility_off", + "videocam": { + "name": "videocam", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "voice_over_off": { - "name": "voice_over_off", + "web_asset_off": { + "name": "web_asset_off", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "watch_later": { - "name": "watch_later", + "shield_moon": { + "name": "shield_moon", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_protected_setup": { - "name": "wifi_protected_setup", + "sensor_window": { + "name": "sensor_window", "keywords": [ - "action" + "home" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "work": { - "name": "work", + "sensor_door": { + "name": "sensor_door", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "work_off": { - "name": "work_off", + "calendar_view_month": { + "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "work_outline": { - "name": "work_outline", + "density_large": { + "name": "density_large", "keywords": [ "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wysiwyg": { - "name": "wysiwyg", + "tips_and_updates": { + "name": "tips_and_updates", "keywords": [ "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "youtube_searched_for": { - "name": "youtube_searched_for", + "assignment_returned": { + "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "zoom_in": { - "name": "zoom_in", + "query_builder": { + "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "zoom_out": { - "name": "zoom_out", + "label_important_outline": { + "name": "label_important_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_alert": { - "name": "add_alert", + "view_agenda": { + "name": "view_agenda", "keywords": [ - "alert" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_delete": { - "name": "auto_delete", + "assured_workload": { + "name": "assured_workload", "keywords": [ - "alert" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "error": { - "name": "error", + "perm_device_information": { + "name": "perm_device_information", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "error_outline": { - "name": "error_outline", + "plagiarism": { + "name": "plagiarism", "keywords": [ - "alert" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "notification_important": { - "name": "notification_important", + "settings_remote": { + "name": "settings_remote", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "warning": { - "name": "warning", + "record_voice_over": { + "name": "record_voice_over", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "warning_amber": { - "name": "warning_amber", + "swap_horizontal_circle": { + "name": "swap_horizontal_circle", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "10k": { - "name": "10k", + "payment": { + "name": "payment", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "1k": { - "name": "1k", + "flip_to_front": { + "name": "flip_to_front", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "1k_plus": { - "name": "1k_plus", + "update": { + "name": "update", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "2k": { - "name": "2k", + "segment": { + "name": "segment", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "2k_plus": { - "name": "2k_plus", + "open_in_full": { + "name": "open_in_full", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "3k": { - "name": "3k", + "cached": { + "name": "cached", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "3k_plus": { - "name": "3k_plus", + "upgrade": { + "name": "upgrade", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "4k": { - "name": "4k", + "api": { + "name": "api", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4k_plus": { - "name": "4k_plus", + "book": { + "name": "book", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "5g": { - "name": "5g", + "view_sidebar": { + "name": "view_sidebar", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "5k": { - "name": "5k", + "accessibility_new": { + "name": "accessibility_new", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "5k_plus": { - "name": "5k_plus", + "highlight_off": { + "name": "highlight_off", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6k": { - "name": "6k", + "perm_phone_msg": { + "name": "perm_phone_msg", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6k_plus": { - "name": "6k_plus", + "g_translate": { + "name": "g_translate", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "7k": { - "name": "7k", + "lock_open": { + "name": "lock_open", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "7k_plus": { - "name": "7k_plus", + "redeem": { + "name": "redeem", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "8k": { - "name": "8k", + "feedback": { + "name": "feedback", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "8k_plus": { - "name": "8k_plus", + "dns": { + "name": "dns", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "9k": { - "name": "9k", + "mediation": { + "name": "mediation", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "9k_plus": { - "name": "9k_plus", + "view_compact_alt": { + "name": "view_compact_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_queue": { - "name": "add_to_queue", + "label_important": { + "name": "label_important", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplay": { - "name": "airplay", + "token": { + "name": "token", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "album": { - "name": "album", + "extension": { + "name": "extension", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "art_track": { - "name": "art_track", + "settings_cell": { + "name": "settings_cell", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "av_timer": { - "name": "av_timer", + "display_settings": { + "name": "display_settings", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "branding_watermark": { - "name": "branding_watermark", + "task_alt": { + "name": "task_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_to_action": { - "name": "call_to_action", + "http": { + "name": "http", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "closed_caption": { - "name": "closed_caption", + "today": { + "name": "today", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "closed_caption_disabled": { - "name": "closed_caption_disabled", + "settings_input_svideo": { + "name": "settings_input_svideo", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "closed_caption_off": { - "name": "closed_caption_off", + "input": { + "name": "input", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "control_camera": { - "name": "control_camera", + "commute": { + "name": "commute", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "equalizer": { - "name": "equalizer", + "view_quilt": { + "name": "view_quilt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "explicit": { - "name": "explicit", + "store": { + "name": "store", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fast_forward": { - "name": "fast_forward", + "play_for_work": { + "name": "play_for_work", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fast_rewind": { - "name": "fast_rewind", + "rounded_corner": { + "name": "rounded_corner", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "featured_play_list": { - "name": "featured_play_list", + "track_changes": { + "name": "track_changes", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "featured_video": { - "name": "featured_video", + "zoom_in": { + "name": "zoom_in", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_dvr": { - "name": "fiber_dvr", + "thumb_down": { + "name": "thumb_down", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_manual_record": { - "name": "fiber_manual_record", + "disabled_by_default": { + "name": "disabled_by_default", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_new": { - "name": "fiber_new", + "account_balance": { + "name": "account_balance", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_pin": { - "name": "fiber_pin", + "flutter_dash": { + "name": "flutter_dash", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_smart_record": { - "name": "fiber_smart_record", + "accessible_forward": { + "name": "accessible_forward", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_10": { - "name": "forward_10", + "text_rotation_angleup": { + "name": "text_rotation_angleup", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_30": { - "name": "forward_30", + "all_inbox": { + "name": "all_inbox", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_5": { - "name": "forward_5", + "saved_search": { + "name": "saved_search", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "games": { - "name": "games", + "switch_access_shortcut": { + "name": "switch_access_shortcut", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hd": { - "name": "hd", + "card_travel": { + "name": "card_travel", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hearing": { - "name": "hearing", + "perm_data_setting": { + "name": "perm_data_setting", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hearing_disabled": { - "name": "hearing_disabled", + "check_circle": { + "name": "check_circle", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "high_quality": { - "name": "high_quality", + "perm_scan_wifi": { + "name": "perm_scan_wifi", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_add": { - "name": "library_add", + "perm_camera_mic": { + "name": "perm_camera_mic", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_add_check": { - "name": "library_add_check", + "php": { + "name": "php", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_books": { - "name": "library_books", + "swap_horiz": { + "name": "swap_horiz", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_music": { - "name": "library_music", + "search_off": { + "name": "search_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "loop": { - "name": "loop", + "exit_to_app": { + "name": "exit_to_app", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic": { - "name": "mic", + "send_and_archive": { + "name": "send_and_archive", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_none": { - "name": "mic_none", + "outlet": { + "name": "outlet", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_off": { - "name": "mic_off", + "hide_source": { + "name": "hide_source", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "missed_video_call": { - "name": "missed_video_call", + "autorenew": { + "name": "autorenew", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "movie": { - "name": "movie", + "offline_pin": { + "name": "offline_pin", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "music_video": { - "name": "music_video", + "restore": { + "name": "restore", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "new_releases": { - "name": "new_releases", + "donut_large": { + "name": "donut_large", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "note": { - "name": "note", + "open_with": { + "name": "open_with", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_interested": { - "name": "not_interested", + "hls_off": { + "name": "hls_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause": { - "name": "pause", + "history": { + "name": "history", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_circle": { - "name": "pause_circle", + "percent": { + "name": "percent", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_circle_filled": { - "name": "pause_circle_filled", + "comment_bank": { + "name": "comment_bank", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_circle_outline": { - "name": "pause_circle_outline", + "sync_alt": { + "name": "sync_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "playlist_add": { - "name": "playlist_add", + "alarm_on": { + "name": "alarm_on", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "playlist_add_check": { - "name": "playlist_add_check", + "text_rotate_up": { + "name": "text_rotate_up", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "playlist_play": { - "name": "playlist_play", + "settings_power": { + "name": "settings_power", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_arrow": { - "name": "play_arrow", + "manage_accounts": { + "name": "manage_accounts", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_circle": { - "name": "play_circle", + "swipe_down_alt": { + "name": "swipe_down_alt", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_circle_filled": { - "name": "play_circle_filled", + "open_in_new_off": { + "name": "open_in_new_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_circle_outline": { - "name": "play_circle_outline", + "settings_input_component": { + "name": "settings_input_component", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_disabled": { - "name": "play_disabled", + "arrow_right_alt": { + "name": "arrow_right_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "queue": { - "name": "queue", + "no_accounts": { + "name": "no_accounts", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "queue_music": { - "name": "queue_music", + "css": { + "name": "css", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "queue_play_next": { - "name": "queue_play_next", + "highlight_alt": { + "name": "highlight_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radio": { - "name": "radio", + "pets": { + "name": "pets", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "recent_actors": { - "name": "recent_actors", + "done_outline": { + "name": "done_outline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_from_queue": { - "name": "remove_from_queue", + "date_range": { + "name": "date_range", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat": { - "name": "repeat", + "thumb_up_off_alt": { + "name": "thumb_up_off_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat_on": { - "name": "repeat_on", + "speaker_notes_off": { + "name": "speaker_notes_off", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat_one": { - "name": "repeat_one", + "home": { + "name": "home", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat_one_on": { - "name": "repeat_one_on", + "done": { + "name": "done", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay": { - "name": "replay", + "assignment_return": { + "name": "assignment_return", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_10": { - "name": "replay_10", + "swipe_left": { + "name": "swipe_left", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_30": { - "name": "replay_30", + "donut_small": { + "name": "donut_small", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_5": { - "name": "replay_5", + "settings_applications": { + "name": "settings_applications", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_circle_filled": { - "name": "replay_circle_filled", + "speaker_notes": { + "name": "speaker_notes", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd": { - "name": "sd", + "work_outline": { + "name": "work_outline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shuffle": { - "name": "shuffle", + "webhook": { + "name": "webhook", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shuffle_on": { - "name": "shuffle_on", + "cancel_schedule_send": { + "name": "cancel_schedule_send", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "skip_next": { - "name": "skip_next", + "flip_to_back": { + "name": "flip_to_back", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "skip_previous": { - "name": "skip_previous", + "logout": { + "name": "logout", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "slow_motion_video": { - "name": "slow_motion_video", + "join_right": { + "name": "join_right", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snooze": { - "name": "snooze", + "try": { + "name": "try", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sort_by_alpha": { - "name": "sort_by_alpha", + "satellite_alt": { + "name": "satellite_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speed": { - "name": "speed", + "picture_in_picture_alt": { + "name": "picture_in_picture_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stop": { - "name": "stop", + "calendar_view_day": { + "name": "calendar_view_day", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stop_circle": { - "name": "stop_circle", + "star_rate": { + "name": "star_rate", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" + }, + "18": { + "width": 18, + "path": "" } } }, - "subscriptions": { - "name": "subscriptions", + "translate": { + "name": "translate", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subtitles": { - "name": "subtitles", + "offline_bolt": { + "name": "offline_bolt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "surround_sound": { - "name": "surround_sound", + "visibility": { + "name": "visibility", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videocam": { - "name": "videocam", + "smart_button": { + "name": "smart_button", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videocam_off": { - "name": "videocam_off", + "lock": { + "name": "lock", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_call": { - "name": "video_call", + "view_in_ar": { + "name": "view_in_ar", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_label": { - "name": "video_label", + "timeline": { + "name": "timeline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_library": { - "name": "video_library", + "dashboard_customize": { + "name": "dashboard_customize", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_settings": { - "name": "video_settings", + "filter_alt_off": { + "name": "filter_alt_off", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_down": { - "name": "volume_down", + "flaky": { + "name": "flaky", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_mute": { - "name": "volume_mute", + "pregnant_woman": { + "name": "pregnant_woman", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_off": { - "name": "volume_off", + "text_rotate_vertical": { + "name": "text_rotate_vertical", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_up": { - "name": "volume_up", + "launch": { + "name": "launch", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "web": { - "name": "web", + "switch_access_shortcut_add": { + "name": "switch_access_shortcut_add", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "web_asset": { - "name": "web_asset", + "stars": { + "name": "stars", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "web_asset_off": { - "name": "web_asset_off", + "subtitles_off": { + "name": "subtitles_off", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "3p": { - "name": "3p", + "report_problem": { + "name": "report_problem", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_ic_call": { - "name": "add_ic_call", + "print": { + "name": "print", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alternate_email": { - "name": "alternate_email", + "view_module": { + "name": "view_module", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "app_registration": { - "name": "app_registration", + "view_cozy": { + "name": "view_cozy", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "business": { - "name": "business", + "update_disabled": { + "name": "update_disabled", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call": { - "name": "call", + "sticky_note_2": { + "name": "sticky_note_2", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_end": { - "name": "call_end", + "perm_media": { + "name": "perm_media", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_made": { - "name": "call_made", + "add_task": { + "name": "add_task", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_merge": { - "name": "call_merge", + "add_card": { + "name": "add_card", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_missed": { - "name": "call_missed", + "line_weight": { + "name": "line_weight", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_missed_outgoing": { - "name": "call_missed_outgoing", + "support": { + "name": "support", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_received": { - "name": "call_received", + "settings_bluetooth": { + "name": "settings_bluetooth", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_split": { - "name": "call_split", + "thumbs_up_down": { + "name": "thumbs_up_down", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cancel_presentation": { - "name": "cancel_presentation", + "explore": { + "name": "explore", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cell_wifi": { - "name": "cell_wifi", + "restore_from_trash": { + "name": "restore_from_trash", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chat": { - "name": "chat", + "backup_table": { + "name": "backup_table", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chat_bubble": { - "name": "chat_bubble", + "remove_done": { + "name": "remove_done", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chat_bubble_outline": { - "name": "chat_bubble_outline", + "settings": { + "name": "settings", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "clear_all": { - "name": "clear_all", + "done_all": { + "name": "done_all", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "comment": { - "name": "comment", + "data_exploration": { + "name": "data_exploration", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "contacts": { - "name": "contacts", + "outbond": { + "name": "outbond", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_mail": { - "name": "contact_mail", + "face_unlock": { + "name": "face_unlock", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_phone": { - "name": "contact_phone", + "card_membership": { + "name": "card_membership", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "desktop_access_disabled": { - "name": "desktop_access_disabled", + "search": { + "name": "search", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dialer_sip": { - "name": "dialer_sip", + "online_prediction": { + "name": "online_prediction", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dialpad": { - "name": "dialpad", + "power_settings_new": { + "name": "power_settings_new", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "document_scanner": { - "name": "document_scanner", + "perm_contact_calendar": { + "name": "perm_contact_calendar", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "domain_disabled": { - "name": "domain_disabled", + "hourglass_full": { + "name": "hourglass_full", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "domain_verification": { - "name": "domain_verification", + "density_medium": { + "name": "density_medium", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "duo": { - "name": "duo", + "chrome_reader_mode": { + "name": "chrome_reader_mode", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "email": { - "name": "email", + "assignment": { + "name": "assignment", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forum": { - "name": "forum", + "hls": { + "name": "hls", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_to_inbox": { - "name": "forward_to_inbox", + "swap_vert": { + "name": "swap_vert", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_bottom": { - "name": "hourglass_bottom", + "rocket_launch": { + "name": "rocket_launch", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_top": { - "name": "hourglass_top", + "contact_page": { + "name": "contact_page", "keywords": [ - "communication" + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "123": { + "name": "123", + "keywords": [ + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "import_contacts": { - "name": "import_contacts", + "maximize": { + "name": "maximize", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "import_export": { - "name": "import_export", + "voice_over_off": { + "name": "voice_over_off", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "invert_colors_off": { - "name": "invert_colors_off", + "hotel_class": { + "name": "hotel_class", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "list_alt": { - "name": "list_alt", + "turned_in_not": { + "name": "turned_in_not", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "live_help": { - "name": "live_help", + "visibility_off": { + "name": "visibility_off", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_off": { - "name": "location_off", + "supervised_user_circle": { + "name": "supervised_user_circle", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_on": { - "name": "location_on", + "3d_rotation": { + "name": "3d_rotation", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mail_outline": { - "name": "mail_outline", + "class": { + "name": "class", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_chat_read": { - "name": "mark_chat_read", + "app_shortcut": { + "name": "app_shortcut", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_chat_unread": { - "name": "mark_chat_unread", + "reorder": { + "name": "reorder", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_email_read": { - "name": "mark_email_read", + "swipe": { + "name": "swipe", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_email_unread": { - "name": "mark_email_unread", + "view_stream": { + "name": "view_stream", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "message": { - "name": "message", + "event": { + "name": "event", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobile_screen_share": { - "name": "mobile_screen_share", + "shop_2": { + "name": "shop_2", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "more_time": { - "name": "more_time", + "loyalty": { + "name": "loyalty", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nat": { - "name": "nat", + "outbound": { + "name": "outbound", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_sim": { - "name": "no_sim", + "drag_indicator": { + "name": "drag_indicator", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_presentation": { - "name": "pause_presentation", + "android": { + "name": "android", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add_disabled": { - "name": "person_add_disabled", + "build_circle": { + "name": "build_circle", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_search": { - "name": "person_search", + "lock_clock": { + "name": "lock_clock", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone": { - "name": "phone", + "add_to_drive": { + "name": "add_to_drive", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_erase": { - "name": "phonelink_erase", + "view_list": { + "name": "view_list", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_lock": { - "name": "phonelink_lock", + "watch_later": { + "name": "watch_later", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_ring": { - "name": "phonelink_ring", + "savings": { + "name": "savings", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_setup": { - "name": "phonelink_setup", + "terminal": { + "name": "terminal", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_disabled": { - "name": "phone_disabled", + "remove_shopping_cart": { + "name": "remove_shopping_cart", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_enabled": { - "name": "phone_enabled", + "calendar_today": { + "name": "calendar_today", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "portable_wifi_off": { - "name": "portable_wifi_off", + "balance": { + "name": "balance", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "present_to_all": { - "name": "present_to_all", + "compare_arrows": { + "name": "compare_arrows", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "print_disabled": { - "name": "print_disabled", + "assessment": { + "name": "assessment", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "qr_code": { - "name": "qr_code", + "sensors_off": { + "name": "sensors_off", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "qr_code_2": { - "name": "qr_code_2", + "settings_input_composite": { + "name": "settings_input_composite", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "qr_code_scanner": { - "name": "qr_code_scanner", + "filter_alt": { + "name": "filter_alt", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "read_more": { - "name": "read_more", + "aspect_ratio": { + "name": "aspect_ratio", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ring_volume": { - "name": "ring_volume", + "shopping_cart_checkout": { + "name": "shopping_cart_checkout", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rss_feed": { - "name": "rss_feed", + "line_style": { + "name": "line_style", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rtt": { - "name": "rtt", + "view_carousel": { + "name": "view_carousel", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_share": { - "name": "screen_share", + "swipe_left_alt": { + "name": "swipe_left_alt", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_satisfied_alt": { - "name": "sentiment_satisfied_alt", + "label_off": { + "name": "label_off", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sip": { - "name": "sip", + "html": { + "name": "html", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_phone": { - "name": "speaker_phone", + "work": { + "name": "work", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_current_landscape": { - "name": "stay_current_landscape", + "help": { + "name": "help", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_current_portrait": { - "name": "stay_current_portrait", + "pageview": { + "name": "pageview", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_primary_landscape": { - "name": "stay_primary_landscape", + "minimize": { + "name": "minimize", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_primary_portrait": { - "name": "stay_primary_portrait", + "assignment_late": { + "name": "assignment_late", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stop_screen_share": { - "name": "stop_screen_share", + "bookmark_add": { + "name": "bookmark_add", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_calls": { - "name": "swap_calls", + "description": { + "name": "description", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "textsms": { - "name": "textsms", + "face": { + "name": "face", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unsubscribe": { - "name": "unsubscribe", + "open_in_new": { + "name": "open_in_new", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "voicemail": { - "name": "voicemail", + "account_circle": { + "name": "account_circle", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vpn_key": { - "name": "vpn_key", + "text_rotation_down": { + "name": "text_rotation_down", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_calling": { - "name": "wifi_calling", + "youtube_searched_for": { + "name": "youtube_searched_for", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add": { - "name": "add", + "settings_backup_restore": { + "name": "settings_backup_restore", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_box": { - "name": "add_box", + "settings_phone": { + "name": "settings_phone", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_circle": { - "name": "add_circle", + "https": { + "name": "https", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_circle_outline": { - "name": "add_circle_outline", + "bookmark_added": { + "name": "bookmark_added", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_link": { - "name": "add_link", + "settings_input_hdmi": { + "name": "settings_input_hdmi", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "amp_stories": { - "name": "amp_stories", + "event_repeat": { + "name": "event_repeat", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "archive": { - "name": "archive", + "trending_flat": { + "name": "trending_flat", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attribution": { - "name": "attribution", + "build": { + "name": "build", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "backspace": { - "name": "backspace", + "preview": { + "name": "preview", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ballot": { - "name": "ballot", + "shopping_bag": { + "name": "shopping_bag", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "biotech": { - "name": "biotech", + "anchor": { + "name": "anchor", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "block": { - "name": "block", + "explore_off": { + "name": "explore_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bolt": { - "name": "bolt", + "all_out": { + "name": "all_out", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calculate": { - "name": "calculate", + "accessibility": { + "name": "accessibility", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "change_circle": { - "name": "change_circle", + "assignment_turned_in": { + "name": "assignment_turned_in", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "clear": { - "name": "clear", + "dashboard": { + "name": "dashboard", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_copy": { - "name": "content_copy", + "system_update_alt": { + "name": "system_update_alt", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_cut": { - "name": "content_cut", + "pinch": { + "name": "pinch", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_paste": { - "name": "content_paste", + "help_outline": { + "name": "help_outline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_paste_off": { - "name": "content_paste_off", + "text_rotation_none": { + "name": "text_rotation_none", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "copy_all": { - "name": "copy_all", + "account_balance_wallet": { + "name": "account_balance_wallet", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "create": { - "name": "create", + "markunread_mailbox": { + "name": "markunread_mailbox", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete_sweep": { - "name": "delete_sweep", + "spellcheck": { + "name": "spellcheck", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drafts": { - "name": "drafts", + "fingerprint": { + "name": "fingerprint", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dynamic_feed": { - "name": "dynamic_feed", + "open_in_browser": { + "name": "open_in_browser", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_copy": { - "name": "file_copy", + "ads_click": { + "name": "ads_click", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_list": { - "name": "filter_list", + "book_online": { + "name": "book_online", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flag": { - "name": "flag", + "subject": { + "name": "subject", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "font_download": { - "name": "font_download", + "swipe_right": { + "name": "swipe_right", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "font_download_off": { - "name": "font_download_off", + "swipe_down": { + "name": "swipe_down", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward": { - "name": "forward", + "arrow_circle_up": { + "name": "arrow_circle_up", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gesture": { - "name": "gesture", + "install_desktop": { + "name": "install_desktop", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "how_to_reg": { - "name": "how_to_reg", + "lightbulb_outline": { + "name": "lightbulb_outline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "how_to_vote": { - "name": "how_to_vote", + "polymer": { + "name": "polymer", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "inbox": { - "name": "inbox", + "code_off": { + "name": "code_off", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "insights": { - "name": "insights", + "edit_calendar": { + "name": "edit_calendar", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "inventory": { - "name": "inventory", + "list": { + "name": "list", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "inventory_2": { - "name": "inventory_2", + "euro_symbol": { + "name": "euro_symbol", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "link": { - "name": "link", + "shopping_basket": { + "name": "shopping_basket", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "link_off": { - "name": "link_off", + "hourglass_empty": { + "name": "hourglass_empty", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "low_priority": { - "name": "low_priority", + "grade": { + "name": "grade", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mail": { - "name": "mail", + "data_thresholding": { + "name": "data_thresholding", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "markunread": { - "name": "markunread", + "login": { + "name": "login", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "move_to_inbox": { - "name": "move_to_inbox", + "new_label": { + "name": "new_label", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "next_week": { - "name": "next_week", - "keywords": [ - "content" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "outlined_flag": { - "name": "outlined_flag", + "lock_outline": { + "name": "lock_outline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "policy": { - "name": "policy", + "view_column": { + "name": "view_column", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "push_pin": { - "name": "push_pin", + "privacy_tip": { + "name": "privacy_tip", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "redo": { - "name": "redo", + "tab_unselected": { + "name": "tab_unselected", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove": { - "name": "remove", + "join_left": { + "name": "join_left", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_circle": { - "name": "remove_circle", + "nightlight_round": { + "name": "nightlight_round", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_circle_outline": { - "name": "remove_circle_outline", + "change_history": { + "name": "change_history", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reply": { - "name": "reply", + "view_headline": { + "name": "view_headline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reply_all": { - "name": "reply_all", + "alarm_off": { + "name": "alarm_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report": { - "name": "report", + "trending_up": { + "name": "trending_up", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report_gmailerrorred": { - "name": "report_gmailerrorred", + "alarm_add": { + "name": "alarm_add", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report_off": { - "name": "report_off", + "add_shopping_cart": { + "name": "add_shopping_cart", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "save": { - "name": "save", + "article": { + "name": "article", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "save_alt": { - "name": "save_alt", + "info": { + "name": "info", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "select_all": { - "name": "select_all", + "dynamic_form": { + "name": "dynamic_form", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "send": { - "name": "send", + "paid": { + "name": "paid", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shield": { - "name": "shield", + "edit_off": { + "name": "edit_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sort": { - "name": "sort", + "history_toggle_off": { + "name": "history_toggle_off", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "square_foot": { - "name": "square_foot", + "swipe_up_alt": { + "name": "swipe_up_alt", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "stacked_bar_chart": { - "name": "stacked_bar_chart", + "bookmarks": { + "name": "bookmarks", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stream": { - "name": "stream", + "verified": { + "name": "verified", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tag": { - "name": "tag", + "lock_reset": { + "name": "lock_reset", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_format": { - "name": "text_format", + "settings_overscan": { + "name": "settings_overscan", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unarchive": { - "name": "unarchive", + "eject": { + "name": "eject", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "undo": { - "name": "undo", + "trending_down": { + "name": "trending_down", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "upcoming": { - "name": "upcoming", + "question_answer": { + "name": "question_answer", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "waves": { - "name": "waves", + "turned_in": { + "name": "turned_in", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "weekend": { - "name": "weekend", + "settings_input_antenna": { + "name": "settings_input_antenna", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "where_to_vote": { - "name": "where_to_vote", + "request_page": { + "name": "request_page", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "1x_mobiledata": { - "name": "1x_mobiledata", + "private_connectivity": { + "name": "private_connectivity", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "30fps": { - "name": "30fps", + "fax": { + "name": "fax", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "3g_mobiledata": { - "name": "3g_mobiledata", + "table_view": { + "name": "table_view", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4g_mobiledata": { - "name": "4g_mobiledata", + "swipe_right_alt": { + "name": "swipe_right_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "4g_plus_mobiledata": { - "name": "4g_plus_mobiledata", + "integration_instructions": { + "name": "integration_instructions", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "60fps": { - "name": "60fps", + "swipe_up": { + "name": "swipe_up", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_alarm": { - "name": "access_alarm", + "generating_tokens": { + "name": "generating_tokens", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_alarms": { - "name": "access_alarms", + "opacity": { + "name": "opacity", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_time": { - "name": "access_time", + "favorite": { + "name": "favorite", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_time_filled": { - "name": "access_time_filled", + "question_mark": { + "name": "question_mark", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_alarm": { - "name": "add_alarm", + "pin_end": { + "name": "pin_end", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_home_screen": { - "name": "add_to_home_screen", + "source": { + "name": "source", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ad_units": { - "name": "ad_units", + "info_outline": { + "name": "info_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "air": { - "name": "air", + "accessible": { + "name": "accessible", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplanemode_active": { - "name": "airplanemode_active", + "lightbulb": { + "name": "lightbulb", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplanemode_inactive": { - "name": "airplanemode_inactive", + "close_fullscreen": { + "name": "close_fullscreen", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplane_ticket": { - "name": "airplane_ticket", + "copyright": { + "name": "copyright", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "aod": { - "name": "aod", + "zoom_out": { + "name": "zoom_out", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_alert": { - "name": "battery_alert", + "vertical_split": { + "name": "vertical_split", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_charging_full": { - "name": "battery_charging_full", + "code": { + "name": "code", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_full": { - "name": "battery_full", + "group_work": { + "name": "group_work", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_saver": { - "name": "battery_saver", + "receipt": { + "name": "receipt", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_std": { - "name": "battery_std", + "restore_page": { + "name": "restore_page", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_unknown": { - "name": "battery_unknown", + "leaderboard": { + "name": "leaderboard", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bloodtype": { - "name": "bloodtype", + "view_timeline": { + "name": "view_timeline", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth": { - "name": "bluetooth", + "bug_report": { + "name": "bug_report", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_connected": { - "name": "bluetooth_connected", + "settings_voice": { + "name": "settings_voice", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_disabled": { - "name": "bluetooth_disabled", + "abc": { + "name": "abc", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_drive": { - "name": "bluetooth_drive", + "shopping_cart": { + "name": "shopping_cart", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_searching": { - "name": "bluetooth_searching", + "javascript": { + "name": "javascript", "keywords": [ - "device" + "action" ], "heights": { - "24": { - "width": 24, - "path": "" + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" } } }, - "brightness_auto": { - "name": "brightness_auto", + "commit": { + "name": "commit", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_high": { - "name": "brightness_high", + "bookmark_remove": { + "name": "bookmark_remove", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_low": { - "name": "brightness_low", + "install_mobile": { + "name": "install_mobile", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_medium": { - "name": "brightness_medium", + "text_rotation_angledown": { + "name": "text_rotation_angledown", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cable": { - "name": "cable", + "fact_check": { + "name": "fact_check", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cameraswitch": { - "name": "cameraswitch", + "favorite_border": { + "name": "favorite_border", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "credit_score": { - "name": "credit_score", + "compress": { + "name": "compress", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dark_mode": { - "name": "dark_mode", + "important_devices": { + "name": "important_devices", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_saver_off": { - "name": "data_saver_off", + "swap_vertical_circle": { + "name": "swap_vertical_circle", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_saver_on": { - "name": "data_saver_on", + "pending_actions": { + "name": "pending_actions", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_usage": { - "name": "data_usage", + "sensors": { + "name": "sensors", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "developer_mode": { - "name": "developer_mode", + "work_off": { + "name": "work_off", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "devices": { - "name": "devices", + "wifi_protected_setup": { + "name": "wifi_protected_setup", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "device_thermostat": { - "name": "device_thermostat", + "card_giftcard": { + "name": "card_giftcard", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_on_total_silence": { - "name": "do_not_disturb_on_total_silence", + "pan_tool_alt": { + "name": "pan_tool_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dvr": { - "name": "dvr", + "credit_card_off": { + "name": "credit_card_off", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edgesensor_high": { - "name": "edgesensor_high", + "tab": { + "name": "tab", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edgesensor_low": { - "name": "edgesensor_low", + "tour": { + "name": "tour", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "e_mobiledata": { - "name": "e_mobiledata", + "next_plan": { + "name": "next_plan", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flashlight_off": { - "name": "flashlight_off", + "flight_land": { + "name": "flight_land", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flashlight_on": { - "name": "flashlight_on", + "rocket": { + "name": "rocket", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flourescent": { - "name": "flourescent", + "shop": { + "name": "shop", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fmd_bad": { - "name": "fmd_bad", + "model_training": { + "name": "model_training", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fmd_good": { - "name": "fmd_good", + "circle_notifications": { + "name": "circle_notifications", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gpp_bad": { - "name": "gpp_bad", + "rowing": { + "name": "rowing", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gpp_good": { - "name": "gpp_good", + "admin_panel_settings": { + "name": "admin_panel_settings", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gpp_maybe": { - "name": "gpp_maybe", + "fit_screen": { + "name": "fit_screen", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gps_fixed": { - "name": "gps_fixed", + "settings_accessibility": { + "name": "settings_accessibility", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gps_not_fixed": { - "name": "gps_not_fixed", + "expand": { + "name": "expand", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gps_off": { - "name": "gps_off", + "room": { + "name": "room", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "graphic_eq": { - "name": "graphic_eq", + "bookmark": { + "name": "bookmark", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_3x3": { - "name": "grid_3x3", + "touch_app": { + "name": "touch_app", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_4x4": { - "name": "grid_4x4", + "bookmark_border": { + "name": "bookmark_border", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_goldenratio": { - "name": "grid_goldenratio", + "event_seat": { + "name": "event_seat", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "g_mobiledata": { - "name": "g_mobiledata", + "view_kanban": { + "name": "view_kanban", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_auto": { - "name": "hdr_auto", + "arrow_circle_right": { + "name": "arrow_circle_right", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_auto_select": { - "name": "hdr_auto_select", + "supervisor_account": { + "name": "supervisor_account", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_off_select": { - "name": "hdr_off_select", + "rule": { + "name": "rule", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_on_select": { - "name": "hdr_on_select", + "help_center": { + "name": "help_center", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "h_mobiledata": { - "name": "h_mobiledata", + "assignment_ind": { + "name": "assignment_ind", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "h_plus_mobiledata": { - "name": "h_plus_mobiledata", + "view_comfy_alt": { + "name": "view_comfy_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lens_blur": { - "name": "lens_blur", + "pin_invoke": { + "name": "pin_invoke", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "light_mode": { - "name": "light_mode", + "delete_outline": { + "name": "delete_outline", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_disabled": { - "name": "location_disabled", + "not_started": { + "name": "not_started", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_searching": { - "name": "location_searching", + "outbox": { + "name": "outbox", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lte_mobiledata": { - "name": "lte_mobiledata", + "delete_forever": { + "name": "delete_forever", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lte_plus_mobiledata": { - "name": "lte_plus_mobiledata", + "app_blocking": { + "name": "app_blocking", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "media_bluetooth_off": { - "name": "media_bluetooth_off", + "quickreply": { + "name": "quickreply", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "media_bluetooth_on": { - "name": "media_bluetooth_on", + "arrow_circle_left": { + "name": "arrow_circle_left", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "medication": { - "name": "medication", + "alarm": { + "name": "alarm", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobiledata_off": { - "name": "mobiledata_off", + "schedule": { + "name": "schedule", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobile_friendly": { - "name": "mobile_friendly", + "density_small": { + "name": "density_small", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobile_off": { - "name": "mobile_off", + "gif": { + "name": "gif", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_night": { - "name": "mode_night", + "contact_support": { + "name": "contact_support", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_standby": { - "name": "mode_standby", + "swipe_vertical": { + "name": "swipe_vertical", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "monitor_weight": { - "name": "monitor_weight", + "production_quantity_limits": { + "name": "production_quantity_limits", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nearby_error": { - "name": "nearby_error", + "verified_user": { + "name": "verified_user", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nearby_off": { - "name": "nearby_off", + "get_app": { + "name": "get_app", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_cell": { - "name": "network_cell", + "published_with_changes": { + "name": "published_with_changes", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_wifi": { - "name": "network_wifi", + "note_add": { + "name": "note_add", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nfc": { - "name": "nfc", + "not_accessible": { + "name": "not_accessible", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nightlight": { - "name": "nightlight", + "credit_card": { + "name": "credit_card", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "note_alt": { - "name": "note_alt", + "thumb_up": { + "name": "thumb_up", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "password": { - "name": "password", + "shop_two": { + "name": "shop_two", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pattern": { - "name": "pattern", + "dangerous": { + "name": "dangerous", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin": { - "name": "pin", + "backup": { + "name": "backup", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_lesson": { - "name": "play_lesson", + "theaters": { + "name": "theaters", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "price_change": { - "name": "price_change", + "analytics": { + "name": "analytics", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "price_check": { - "name": "price_check", + "camera_enhance": { + "name": "camera_enhance", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "quiz": { - "name": "quiz", + "disabled_visible": { + "name": "disabled_visible", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "radar": { - "name": "radar", + "account_box": { + "name": "account_box", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remember_me": { - "name": "remember_me", + "find_in_page": { + "name": "find_in_page", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reset_tv": { - "name": "reset_tv", + "grading": { + "name": "grading", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "restart_alt": { - "name": "restart_alt", + "toll": { + "name": "toll", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reviews": { - "name": "reviews", + "label_outline": { + "name": "label_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rsvp": { - "name": "rsvp", + "file_present": { + "name": "file_present", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "r_mobiledata": { - "name": "r_mobiledata", + "pending": { + "name": "pending", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "screenshot": { - "name": "screenshot", + "calendar_view_week": { + "name": "calendar_view_week", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_lock_landscape": { - "name": "screen_lock_landscape", + "thumb_down_off_alt": { + "name": "thumb_down_off_alt", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_lock_portrait": { - "name": "screen_lock_portrait", + "arrow_circle_down": { + "name": "arrow_circle_down", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_lock_rotation": { - "name": "screen_lock_rotation", + "unpublished": { + "name": "unpublished", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_rotation": { - "name": "screen_rotation", + "view_day": { + "name": "view_day", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_search_desktop": { - "name": "screen_search_desktop", + "addchart": { + "name": "addchart", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd_storage": { - "name": "sd_storage", + "extension_off": { + "name": "extension_off", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "security_update": { - "name": "security_update", + "view_array": { + "name": "view_array", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "security_update_good": { - "name": "security_update_good", + "gavel": { + "name": "gavel", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "security_update_warning": { - "name": "security_update_warning", + "pan_tool": { + "name": "pan_tool", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sell": { - "name": "sell", + "invert_colors": { + "name": "invert_colors", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "send_to_mobile": { - "name": "send_to_mobile", + "picture_in_picture": { + "name": "picture_in_picture", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_suggest": { - "name": "settings_suggest", + "flight_takeoff": { + "name": "flight_takeoff", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_system_daydream": { - "name": "settings_system_daydream", + "announcement": { + "name": "announcement", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "share_location": { - "name": "share_location", + "language": { + "name": "language", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shortcut": { - "name": "shortcut", + "hourglass_disabled": { + "name": "hourglass_disabled", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_0_bar": { - "name": "signal_cellular_0_bar", + "mark_as_unread": { + "name": "mark_as_unread", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_4_bar": { - "name": "signal_cellular_4_bar", + "view_week": { + "name": "view_week", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_alt": { - "name": "signal_cellular_alt", + "wysiwyg": { + "name": "wysiwyg", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_connected_no_internet_0_bar": { - "name": "signal_cellular_connected_no_internet_0_bar", + "settings_brightness": { + "name": "settings_brightness", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_connected_no_internet_4_bar": { - "name": "signal_cellular_connected_no_internet_4_bar", + "currency_exchange": { + "name": "currency_exchange", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_nodata": { - "name": "signal_cellular_nodata", + "space_dashboard": { + "name": "space_dashboard", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_no_sim": { - "name": "signal_cellular_no_sim", + "settings_ethernet": { + "name": "settings_ethernet", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_null": { - "name": "signal_cellular_null", + "eco": { + "name": "eco", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_off": { - "name": "signal_cellular_off", + "find_replace": { + "name": "find_replace", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_0_bar": { - "name": "signal_wifi_0_bar", + "delete": { + "name": "delete", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_4_bar": { - "name": "signal_wifi_4_bar", + "gif_box": { + "name": "gif_box", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_4_bar_lock": { - "name": "signal_wifi_4_bar_lock", + "toc": { + "name": "toc", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_bad": { - "name": "signal_wifi_bad", + "perm_identity": { + "name": "perm_identity", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_connected_no_internet_4": { - "name": "signal_wifi_connected_no_internet_4", + "label": { + "name": "label", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_off": { - "name": "signal_wifi_off", + "batch_prediction": { + "name": "batch_prediction", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_4_bar": { - "name": "signal_wifi_statusbar_4_bar", + "horizontal_split": { + "name": "horizontal_split", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_connected_no_internet_4": { - "name": "signal_wifi_statusbar_connected_no_internet_4", + "contactless": { + "name": "contactless", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_null": { - "name": "signal_wifi_statusbar_null", + "join_full": { + "name": "join_full", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sim_card_download": { - "name": "sim_card_download", + "join_inner": { + "name": "join_inner", "keywords": [ - "device" + "action" ], "heights": { - "24": { - "width": 24, - "path": "" + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" } } }, - "splitscreen": { - "name": "splitscreen", + "check_circle_outline": { + "name": "check_circle_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_score": { - "name": "sports_score", + "schedule_send": { + "name": "schedule_send", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "storage": { - "name": "storage", + "free_cancellation": { + "name": "free_cancellation", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "storm": { - "name": "storm", + "door_front": { + "name": "door_front", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "summarize": { - "name": "summarize", + "window": { + "name": "window", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_security_update": { - "name": "system_security_update", + "living": { + "name": "living", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_security_update_good": { - "name": "system_security_update_good", + "shower": { + "name": "shower", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_security_update_warning": { - "name": "system_security_update_warning", + "manage_search": { + "name": "manage_search", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "task": { - "name": "task", + "blender": { + "name": "blender", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thermostat": { - "name": "thermostat", + "coffee": { + "name": "coffee", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_10_select": { - "name": "timer_10_select", + "chair": { + "name": "chair", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_3_select": { - "name": "timer_3_select", + "door_back": { + "name": "door_back", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tungsten": { - "name": "tungsten", + "light": { + "name": "light", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "usb": { - "name": "usb", + "feed": { + "name": "feed", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "usb_off": { - "name": "usb_off", + "dining": { + "name": "dining", "keywords": [ - "device" + "search" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wallpaper": { - "name": "wallpaper", + "bedroom_child": { + "name": "bedroom_child", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "water": { - "name": "water", + "door_sliding": { + "name": "door_sliding", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "widgets": { - "name": "widgets", + "yard": { + "name": "yard", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_calling_3": { - "name": "wifi_calling_3", + "bedroom_parent": { + "name": "bedroom_parent", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_lock": { - "name": "wifi_lock", + "camera_outdoor": { + "name": "camera_outdoor", "keywords": [ - "device" + "search" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_tethering": { - "name": "wifi_tethering", + "bed": { + "name": "bed", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_tethering_error_rounded": { - "name": "wifi_tethering_error_rounded", + "camera_indoor": { + "name": "camera_indoor", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_tethering_off": { - "name": "wifi_tethering_off", + "bedroom_baby": { + "name": "bedroom_baby", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_chart": { - "name": "add_chart", + "garage": { + "name": "garage", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_comment": { - "name": "add_comment", + "table_bar": { + "name": "table_bar", "keywords": [ - "editor" + "search" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_horizontal_center": { - "name": "align_horizontal_center", + "flatware": { + "name": "flatware", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_horizontal_left": { - "name": "align_horizontal_left", + "coffee_maker": { + "name": "coffee_maker", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_horizontal_right": { - "name": "align_horizontal_right", + "bathroom": { + "name": "bathroom", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_vertical_bottom": { - "name": "align_vertical_bottom", + "podcasts": { + "name": "podcasts", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_vertical_center": { - "name": "align_vertical_center", + "table_restaurant": { + "name": "table_restaurant", "keywords": [ - "editor" + "search" ], "heights": { - "24": { - "width": 24, - "path": "" + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" } } }, - "align_vertical_top": { - "name": "align_vertical_top", + "chair_alt": { + "name": "chair_alt", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "area_chart": { - "name": "area_chart", + "doorbell": { + "name": "doorbell", "keywords": [ - "editor" + "search" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "attach_file": { - "name": "attach_file", + "nightlight": { + "name": "nightlight", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attach_money": { - "name": "attach_money", + "security_update": { + "name": "security_update", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_graph": { - "name": "auto_graph", + "signal_wifi_4_bar": { + "name": "signal_wifi_4_bar", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bar_chart": { - "name": "bar_chart", + "medication": { + "name": "medication", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_all": { - "name": "border_all", + "devices": { + "name": "devices", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_bottom": { - "name": "border_bottom", + "bloodtype": { + "name": "bloodtype", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_clear": { - "name": "border_clear", + "battery_alert": { + "name": "battery_alert", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_color": { - "name": "border_color", + "shortcut": { + "name": "shortcut", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_horizontal": { - "name": "border_horizontal", + "screenshot": { + "name": "screenshot", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_inner": { - "name": "border_inner", + "brightness_high": { + "name": "brightness_high", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_left": { - "name": "border_left", + "network_wifi": { + "name": "network_wifi", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_outer": { - "name": "border_outer", + "lte_plus_mobiledata": { + "name": "lte_plus_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_right": { - "name": "border_right", + "play_lesson": { + "name": "play_lesson", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_style": { - "name": "border_style", + "wifi_tethering": { + "name": "wifi_tethering", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_top": { - "name": "border_top", + "share_location": { + "name": "share_location", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_vertical": { - "name": "border_vertical", + "aod": { + "name": "aod", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bubble_chart": { - "name": "bubble_chart", + "quiz": { + "name": "quiz", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "checklist": { - "name": "checklist", + "developer_mode": { + "name": "developer_mode", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "checklist_rtl": { - "name": "checklist_rtl", + "do_not_disturb_on_total_silence": { + "name": "do_not_disturb_on_total_silence", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "drag_handle": { - "name": "drag_handle", + "e_mobiledata": { + "name": "e_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "draw": { - "name": "draw", + "mobiledata_off": { + "name": "mobiledata_off", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_note": { - "name": "edit_note", + "data_usage": { + "name": "data_usage", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_center": { - "name": "format_align_center", + "storm": { + "name": "storm", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_justify": { - "name": "format_align_justify", + "60fps": { + "name": "60fps", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_left": { - "name": "format_align_left", + "gpp_good": { + "name": "gpp_good", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_right": { - "name": "format_align_right", + "screen_lock_landscape": { + "name": "screen_lock_landscape", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_bold": { - "name": "format_bold", - "keywords": [ - "editor" + "graphic_eq": { + "name": "graphic_eq", + "keywords": [ + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_clear": { - "name": "format_clear", + "nearby_error": { + "name": "nearby_error", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_color_fill": { - "name": "format_color_fill", + "bluetooth_searching": { + "name": "bluetooth_searching", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_color_reset": { - "name": "format_color_reset", + "sd_storage": { + "name": "sd_storage", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_color_text": { - "name": "format_color_text", + "mobile_off": { + "name": "mobile_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_indent_decrease": { - "name": "format_indent_decrease", + "signal_wifi_statusbar_connected_no_internet_4": { + "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_indent_increase": { - "name": "format_indent_increase", + "hdr_auto_select": { + "name": "hdr_auto_select", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_italic": { - "name": "format_italic", + "battery_std": { + "name": "battery_std", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_line_spacing": { - "name": "format_line_spacing", + "screen_lock_portrait": { + "name": "screen_lock_portrait", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_list_bulleted": { - "name": "format_list_bulleted", + "task": { + "name": "task", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_list_numbered": { - "name": "format_list_numbered", + "wifi_lock": { + "name": "wifi_lock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_list_numbered_rtl": { - "name": "format_list_numbered_rtl", + "water": { + "name": "water", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_paint": { - "name": "format_paint", + "grid_4x4": { + "name": "grid_4x4", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_quote": { - "name": "format_quote", + "gps_off": { + "name": "gps_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_shapes": { - "name": "format_shapes", + "phishing": { + "name": "phishing", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_size": { - "name": "format_size", + "cable": { + "name": "cable", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_strikethrough": { - "name": "format_strikethrough", + "fmd_bad": { + "name": "fmd_bad", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_textdirection_l_to_r": { - "name": "format_textdirection_l_to_r", + "brightness_medium": { + "name": "brightness_medium", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_textdirection_r_to_l": { - "name": "format_textdirection_r_to_l", + "airplanemode_active": { + "name": "airplanemode_active", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_underlined": { - "name": "format_underlined", + "gps_not_fixed": { + "name": "gps_not_fixed", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "functions": { - "name": "functions", + "widgets": { + "name": "widgets", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "height": { - "name": "height", + "access_time": { + "name": "access_time", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "highlight": { - "name": "highlight", + "wifi_tethering_error_rounded": { + "name": "wifi_tethering_error_rounded", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "horizontal_distribute": { - "name": "horizontal_distribute", + "tungsten": { + "name": "tungsten", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "horizontal_rule": { - "name": "horizontal_rule", + "3g_mobiledata": { + "name": "3g_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_chart": { - "name": "insert_chart", + "bluetooth_connected": { + "name": "bluetooth_connected", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_chart_outlined": { - "name": "insert_chart_outlined", + "punch_clock": { + "name": "punch_clock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_comment": { - "name": "insert_comment", + "g_mobiledata": { + "name": "g_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_drive_file": { - "name": "insert_drive_file", + "storage": { + "name": "storage", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_emoticon": { - "name": "insert_emoticon", + "media_bluetooth_on": { + "name": "media_bluetooth_on", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_invitation": { - "name": "insert_invitation", + "reviews": { + "name": "reviews", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_link": { - "name": "insert_link", + "signal_cellular_alt": { + "name": "signal_cellular_alt", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_photo": { - "name": "insert_photo", + "usb": { + "name": "usb", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "linear_scale": { - "name": "linear_scale", + "mode_standby": { + "name": "mode_standby", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "margin": { - "name": "margin", + "signal_wifi_off": { + "name": "signal_wifi_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "merge_type": { - "name": "merge_type", + "bluetooth_disabled": { + "name": "bluetooth_disabled", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode": { - "name": "mode", + "nfc": { + "name": "nfc", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_comment": { - "name": "mode_comment", + "signal_cellular_connected_no_internet_4_bar": { + "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_edit": { - "name": "mode_edit", + "system_security_update_good": { + "name": "system_security_update_good", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_edit_outline": { - "name": "mode_edit_outline", + "radar": { + "name": "radar", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "monetization_on": { - "name": "monetization_on", + "network_cell": { + "name": "network_cell", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "money_off": { - "name": "money_off", + "system_security_update": { + "name": "system_security_update", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "money_off_csred": { - "name": "money_off_csred", + "reset_tv": { + "name": "reset_tv", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "multiline_chart": { - "name": "multiline_chart", + "brightness_low": { + "name": "brightness_low", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notes": { - "name": "notes", + "signal_wifi_4_bar_lock": { + "name": "signal_wifi_4_bar_lock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "padding": { - "name": "padding", + "hdr_auto": { + "name": "hdr_auto", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pie_chart": { - "name": "pie_chart", + "battery_unknown": { + "name": "battery_unknown", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pie_chart_outline": { - "name": "pie_chart_outline", + "location_disabled": { + "name": "location_disabled", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "post_add": { - "name": "post_add", + "pattern": { + "name": "pattern", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "publish": { - "name": "publish", + "dvr": { + "name": "dvr", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "query_stats": { - "name": "query_stats", + "light_mode": { + "name": "light_mode", "keywords": [ - "editor" + "device" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "scatter_plot": { - "name": "scatter_plot", + "pin": { + "name": "pin", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "schema": { - "name": "schema", + "signal_cellular_0_bar": { + "name": "signal_cellular_0_bar", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "score": { - "name": "score", + "rsvp": { + "name": "rsvp", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "short_text": { - "name": "short_text", + "location_searching": { + "name": "location_searching", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "show_chart": { - "name": "show_chart", + "signal_cellular_4_bar": { + "name": "signal_cellular_4_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "space_bar": { - "name": "space_bar", + "security_update_warning": { + "name": "security_update_warning", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stacked_line_chart": { - "name": "stacked_line_chart", + "grid_goldenratio": { + "name": "grid_goldenratio", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "strikethrough_s": { - "name": "strikethrough_s", - "keywords": [ - "editor" + "wallpaper": { + "name": "wallpaper", + "keywords": [ + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subscript": { - "name": "subscript", + "sports_score": { + "name": "sports_score", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "superscript": { - "name": "superscript", + "media_bluetooth_off": { + "name": "media_bluetooth_off", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "table_chart": { - "name": "table_chart", + "screen_lock_rotation": { + "name": "screen_lock_rotation", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "table_rows": { - "name": "table_rows", + "gpp_maybe": { + "name": "gpp_maybe", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_fields": { - "name": "text_fields", + "battery_charging_full": { + "name": "battery_charging_full", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "title": { - "name": "title", + "dark_mode": { + "name": "dark_mode", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_align_bottom": { - "name": "vertical_align_bottom", + "wifi_tethering_off": { + "name": "wifi_tethering_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_align_center": { - "name": "vertical_align_center", + "signal_cellular_connected_no_internet_0_bar": { + "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_align_top": { - "name": "vertical_align_top", + "settings_suggest": { + "name": "settings_suggest", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_distribute": { - "name": "vertical_distribute", + "signal_wifi_bad": { + "name": "signal_wifi_bad", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wrap_text": { - "name": "wrap_text", + "medication_liquid": { + "name": "medication_liquid", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "approval": { - "name": "approval", + "wifi_password": { + "name": "wifi_password", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "attachment": { - "name": "attachment", + "1x_mobiledata": { + "name": "1x_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attach_email": { - "name": "attach_email", + "brightness_auto": { + "name": "brightness_auto", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud": { - "name": "cloud", + "usb_off": { + "name": "usb_off", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_circle": { - "name": "cloud_circle", + "mobile_friendly": { + "name": "mobile_friendly", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_done": { - "name": "cloud_done", + "send_to_mobile": { + "name": "send_to_mobile", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_download": { - "name": "cloud_download", + "wifi_calling_3": { + "name": "wifi_calling_3", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_off": { - "name": "cloud_off", + "wifi_channel": { + "name": "wifi_channel", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_queue": { - "name": "cloud_queue", + "data_saver_on": { + "name": "data_saver_on", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_upload": { - "name": "cloud_upload", + "fmd_good": { + "name": "fmd_good", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "create_new_folder": { - "name": "create_new_folder", + "r_mobiledata": { + "name": "r_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "download": { - "name": "download", + "signal_wifi_statusbar_null": { + "name": "signal_wifi_statusbar_null", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "downloading": { - "name": "downloading", + "timer_3_select": { + "name": "timer_3_select", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "download_done": { - "name": "download_done", + "edgesensor_high": { + "name": "edgesensor_high", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "download_for_offline": { - "name": "download_for_offline", + "4g_mobiledata": { + "name": "4g_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_move": { - "name": "drive_file_move", + "bluetooth_drive": { + "name": "bluetooth_drive", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_move_rtl": { - "name": "drive_file_move_rtl", + "hdr_off_select": { + "name": "hdr_off_select", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_rename_outline": { - "name": "drive_file_rename_outline", + "credit_score": { + "name": "credit_score", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_folder_upload": { - "name": "drive_folder_upload", + "sell": { + "name": "sell", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_download": { - "name": "file_download", + "gps_fixed": { + "name": "gps_fixed", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_download_done": { - "name": "file_download_done", + "access_alarm": { + "name": "access_alarm", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_download_off": { - "name": "file_download_off", + "h_mobiledata": { + "name": "h_mobiledata", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_upload": { - "name": "file_upload", + "data_saver_off": { + "name": "data_saver_off", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder": { - "name": "folder", + "price_check": { + "name": "price_check", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder_open": { - "name": "folder_open", + "h_plus_mobiledata": { + "name": "h_plus_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder_shared": { - "name": "folder_shared", + "airplanemode_inactive": { + "name": "airplanemode_inactive", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_view": { - "name": "grid_view", + "splitscreen": { + "name": "splitscreen", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "request_quote": { - "name": "request_quote", + "signal_cellular_null": { + "name": "signal_cellular_null", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rule_folder": { - "name": "rule_folder", + "gpp_bad": { + "name": "gpp_bad", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "snippet_folder": { - "name": "snippet_folder", + "edgesensor_low": { + "name": "edgesensor_low", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_snippet": { - "name": "text_snippet", + "flashlight_on": { + "name": "flashlight_on", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "topic": { - "name": "topic", + "ad_units": { + "name": "ad_units", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "upload": { - "name": "upload", + "mode_night": { + "name": "mode_night", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "upload_file": { - "name": "upload_file", + "flashlight_off": { + "name": "flashlight_off", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "workspaces": { - "name": "workspaces", + "ssid_chart": { + "name": "ssid_chart", "keywords": [ - "file" + "device" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "browser_not_supported": { - "name": "browser_not_supported", + "monitor_weight": { + "name": "monitor_weight", "keywords": [ - "hardware" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cast": { - "name": "cast", + "summarize": { + "name": "summarize", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cast_connected": { - "name": "cast_connected", + "airplane_ticket": { + "name": "airplane_ticket", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cast_for_education": { - "name": "cast_for_education", + "system_security_update_warning": { + "name": "system_security_update_warning", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "computer": { - "name": "computer", + "remember_me": { + "name": "remember_me", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "connected_tv": { - "name": "connected_tv", + "lan": { + "name": "lan", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "desktop_mac": { - "name": "desktop_mac", + "monitor_heart": { + "name": "monitor_heart", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "desktop_windows": { - "name": "desktop_windows", + "signal_cellular_no_sim": { + "name": "signal_cellular_no_sim", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "developer_board": { - "name": "developer_board", + "signal_wifi_connected_no_internet_4": { + "name": "signal_wifi_connected_no_internet_4", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "developer_board_off": { - "name": "developer_board_off", + "note_alt": { + "name": "note_alt", "keywords": [ - "hardware" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "devices_other": { - "name": "devices_other", + "timer_10_select": { + "name": "timer_10_select", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "device_hub": { - "name": "device_hub", - "keywords": [ - "hardware" + "screen_rotation": { + "name": "screen_rotation", + "keywords": [ + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "device_unknown": { - "name": "device_unknown", + "settings_system_daydream": { + "name": "settings_system_daydream", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dock": { - "name": "dock", + "price_change": { + "name": "price_change", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "earbuds": { - "name": "earbuds", + "cameraswitch": { + "name": "cameraswitch", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "earbuds_battery": { - "name": "earbuds_battery", + "bluetooth": { + "name": "bluetooth", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gamepad": { - "name": "gamepad", + "30fps": { + "name": "30fps", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headphones": { - "name": "headphones", + "add_alarm": { + "name": "add_alarm", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headphones_battery": { - "name": "headphones_battery", + "sim_card_download": { + "name": "sim_card_download", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headset": { - "name": "headset", + "thermostat": { + "name": "thermostat", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headset_mic": { - "name": "headset_mic", + "battery_saver": { + "name": "battery_saver", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headset_off": { - "name": "headset_off", + "signal_cellular_nodata": { + "name": "signal_cellular_nodata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_max": { - "name": "home_max", + "security_update_good": { + "name": "security_update_good", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_mini": { - "name": "home_mini", + "screen_search_desktop": { + "name": "screen_search_desktop", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard": { - "name": "keyboard", + "lte_mobiledata": { + "name": "lte_mobiledata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_alt": { - "name": "keyboard_alt", + "4g_plus_mobiledata": { + "name": "4g_plus_mobiledata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_down": { - "name": "keyboard_arrow_down", + "wifi_tethering_error": { + "name": "wifi_tethering_error", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_left": { - "name": "keyboard_arrow_left", + "air": { + "name": "air", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_right": { - "name": "keyboard_arrow_right", + "signal_wifi_0_bar": { + "name": "signal_wifi_0_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_up": { - "name": "keyboard_arrow_up", + "flourescent": { + "name": "flourescent", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_backspace": { - "name": "keyboard_backspace", + "access_alarms": { + "name": "access_alarms", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_capslock": { - "name": "keyboard_capslock", + "access_time_filled": { + "name": "access_time_filled", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_hide": { - "name": "keyboard_hide", + "signal_wifi_statusbar_4_bar": { + "name": "signal_wifi_statusbar_4_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_return": { - "name": "keyboard_return", + "wifi_find": { + "name": "wifi_find", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_tab": { - "name": "keyboard_tab", + "battery_full": { + "name": "battery_full", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_voice": { - "name": "keyboard_voice", + "add_to_home_screen": { + "name": "add_to_home_screen", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop": { - "name": "laptop", + "lens_blur": { + "name": "lens_blur", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop_chromebook": { - "name": "laptop_chromebook", + "hdr_on_select": { + "name": "hdr_on_select", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop_mac": { - "name": "laptop_mac", + "signal_cellular_off": { + "name": "signal_cellular_off", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop_windows": { - "name": "laptop_windows", + "restart_alt": { + "name": "restart_alt", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "memory": { - "name": "memory", + "device_thermostat": { + "name": "device_thermostat", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "monitor": { - "name": "monitor", + "nearby_off": { + "name": "nearby_off", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mouse": { - "name": "mouse", + "grid_3x3": { + "name": "grid_3x3", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink": { - "name": "phonelink", + "password": { + "name": "password", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_off": { - "name": "phonelink_off", + "stroller": { + "name": "stroller", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_android": { - "name": "phone_android", + "fence": { + "name": "fence", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_iphone": { - "name": "phone_iphone", + "do_not_touch": { + "name": "do_not_touch", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "point_of_sale": { - "name": "point_of_sale", + "houseboat": { + "name": "houseboat", "keywords": [ - "hardware" + "places" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "power_input": { - "name": "power_input", + "grass": { + "name": "grass", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "router": { - "name": "router", + "storefront": { + "name": "storefront", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "scanner": { - "name": "scanner", + "apartment": { + "name": "apartment", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "security": { - "name": "security", + "house_siding": { + "name": "house_siding", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sim_card": { - "name": "sim_card", + "gite": { + "name": "gite", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "smartphone": { - "name": "smartphone", + "casino": { + "name": "casino", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_display": { - "name": "smart_display", + "bungalow": { + "name": "bungalow", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_screen": { - "name": "smart_screen", + "no_drinks": { + "name": "no_drinks", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_toy": { - "name": "smart_toy", + "elevator": { + "name": "elevator", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker": { - "name": "speaker", + "child_friendly": { + "name": "child_friendly", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_group": { - "name": "speaker_group", + "fitness_center": { + "name": "fitness_center", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tablet": { - "name": "tablet", + "smoke_free": { + "name": "smoke_free", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tablet_android": { - "name": "tablet_android", + "smoking_rooms": { + "name": "smoking_rooms", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tablet_mac": { - "name": "tablet_mac", + "tapas": { + "name": "tapas", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "toys": { - "name": "toys", + "microwave": { + "name": "microwave", "keywords": [ - "hardware" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tv": { - "name": "tv", + "foundation": { + "name": "foundation", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videogame_asset": { - "name": "videogame_asset", + "no_meeting_room": { + "name": "no_meeting_room", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videogame_asset_off": { - "name": "videogame_asset_off", + "spa": { + "name": "spa", "keywords": [ - "hardware" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "watch": { - "name": "watch", + "other_houses": { + "name": "other_houses", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensor_door": { - "name": "sensor_door", + "roofing": { + "name": "roofing", "keywords": [ - "home" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensor_window": { - "name": "sensor_window", + "pool": { + "name": "pool", "keywords": [ - "home" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "10mp": { - "name": "10mp", + "food_bank": { + "name": "food_bank", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "11mp": { - "name": "11mp", + "stairs": { + "name": "stairs", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "12mp": { - "name": "12mp", + "no_stroller": { + "name": "no_stroller", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "13mp": { - "name": "13mp", + "meeting_room": { + "name": "meeting_room", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "14mp": { - "name": "14mp", + "fire_extinguisher": { + "name": "fire_extinguisher", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "15mp": { - "name": "15mp", + "no_cell": { + "name": "no_cell", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "16mp": { - "name": "16mp", + "all_inclusive": { + "name": "all_inclusive", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "17mp": { - "name": "17mp", + "charging_station": { + "name": "charging_station", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "18mp": { - "name": "18mp", + "dry": { + "name": "dry", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "19mp": { - "name": "19mp", + "countertops": { + "name": "countertops", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "20mp": { - "name": "20mp", + "child_care": { + "name": "child_care", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "21mp": { - "name": "21mp", + "beach_access": { + "name": "beach_access", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "22mp": { - "name": "22mp", + "no_photography": { + "name": "no_photography", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "23mp": { - "name": "23mp", + "ac_unit": { + "name": "ac_unit", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "24mp": { - "name": "24mp", + "rv_hookup": { + "name": "rv_hookup", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "2mp": { - "name": "2mp", + "holiday_village": { + "name": "holiday_village", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "30fps_select": { - "name": "30fps_select", + "family_restroom": { + "name": "family_restroom", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "3mp": { - "name": "3mp", + "wheelchair_pickup": { + "name": "wheelchair_pickup", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4mp": { - "name": "4mp", + "room_preferences": { + "name": "room_preferences", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "5mp": { - "name": "5mp", + "no_backpack": { + "name": "no_backpack", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "60fps_select": { - "name": "60fps_select", + "business_center": { + "name": "business_center", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6mp": { - "name": "6mp", + "tty": { + "name": "tty", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "7mp": { - "name": "7mp", + "airport_shuttle": { + "name": "airport_shuttle", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "8mp": { - "name": "8mp", + "cottage": { + "name": "cottage", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "9mp": { - "name": "9mp", + "rice_bowl": { + "name": "rice_bowl", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_a_photo": { - "name": "add_a_photo", + "soap": { + "name": "soap", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_photo_alternate": { - "name": "add_photo_alternate", + "chalet": { + "name": "chalet", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_photos": { - "name": "add_to_photos", + "do_not_step": { + "name": "do_not_step", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "adjust": { - "name": "adjust", + "checkroom": { + "name": "checkroom", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "animation": { - "name": "animation", + "backpack": { + "name": "backpack", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assistant": { - "name": "assistant", + "sports_bar": { + "name": "sports_bar", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "assistant_photo": { - "name": "assistant_photo", + "hot_tub": { + "name": "hot_tub", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "audiotrack": { - "name": "audiotrack", + "iron": { + "name": "iron", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "autofps_select": { - "name": "autofps_select", + "bathtub": { + "name": "bathtub", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_awesome": { - "name": "auto_awesome", + "umbrella": { + "name": "umbrella", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_awesome_mosaic": { - "name": "auto_awesome_mosaic", + "baby_changing_station": { + "name": "baby_changing_station", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_awesome_motion": { - "name": "auto_awesome_motion", + "crib": { + "name": "crib", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_fix_high": { - "name": "auto_fix_high", + "golf_course": { + "name": "golf_course", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_fix_normal": { - "name": "auto_fix_normal", + "wash": { + "name": "wash", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_fix_off": { - "name": "auto_fix_off", + "no_flash": { + "name": "no_flash", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_stories": { - "name": "auto_stories", + "carpenter": { + "name": "carpenter", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedtime": { - "name": "bedtime", + "balcony": { + "name": "balcony", "keywords": [ - "image" + "places" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_circular": { - "name": "blur_circular", + "kitchen": { + "name": "kitchen", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_linear": { - "name": "blur_linear", + "escalator_warning": { + "name": "escalator_warning", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_off": { - "name": "blur_off", + "house": { + "name": "house", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_on": { - "name": "blur_on", + "escalator": { + "name": "escalator", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_1": { - "name": "brightness_1", + "free_breakfast": { + "name": "free_breakfast", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_2": { - "name": "brightness_2", + "corporate_fare": { + "name": "corporate_fare", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_3": { - "name": "brightness_3", + "no_food": { + "name": "no_food", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_4": { - "name": "brightness_4", + "night_shelter": { + "name": "night_shelter", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_5": { - "name": "brightness_5", + "bento": { + "name": "bento", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_6": { - "name": "brightness_6", + "cabin": { + "name": "cabin", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_7": { - "name": "brightness_7", + "water_damage": { + "name": "water_damage", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "broken_image": { - "name": "broken_image", + "room_service": { + "name": "room_service", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brush": { - "name": "brush", + "villa": { + "name": "villa", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "burst_mode": { - "name": "burst_mode", + "mood": { + "name": "mood", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera": { - "name": "camera", + "snowboarding": { + "name": "snowboarding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_alt": { - "name": "camera_alt", + "whatsapp": { + "name": "whatsapp", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_front": { - "name": "camera_front", + "safety_divider": { + "name": "safety_divider", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_rear": { - "name": "camera_rear", + "people": { + "name": "people", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_roll": { - "name": "camera_roll", - "keywords": [ - "image" + "history_edu": { + "name": "history_edu", + "keywords": [ + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cases": { - "name": "cases", + "pages": { + "name": "pages", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "center_focus_strong": { - "name": "center_focus_strong", + "groups": { + "name": "groups", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "center_focus_weak": { - "name": "center_focus_weak", + "sentiment_neutral": { + "name": "sentiment_neutral", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "circle": { - "name": "circle", + "cookie": { + "name": "cookie", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "collections": { - "name": "collections", + "sports_hockey": { + "name": "sports_hockey", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "collections_bookmark": { - "name": "collections_bookmark", + "workspace_premium": { + "name": "workspace_premium", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "colorize": { - "name": "colorize", + "sentiment_very_dissatisfied": { + "name": "sentiment_very_dissatisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "color_lens": { - "name": "color_lens", + "sports_soccer": { + "name": "sports_soccer", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "compare": { - "name": "compare", + "sledding": { + "name": "sledding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "control_point": { - "name": "control_point", + "emoji_symbols": { + "name": "emoji_symbols", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "control_point_duplicate": { - "name": "control_point_duplicate", + "emoji_nature": { + "name": "emoji_nature", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop": { - "name": "crop", + "sports_handball": { + "name": "sports_handball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_16_9": { - "name": "crop_16_9", + "follow_the_signs": { + "name": "follow_the_signs", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_3_2": { - "name": "crop_3_2", + "sports_basketball": { + "name": "sports_basketball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_5_4": { - "name": "crop_5_4", + "pix": { + "name": "pix", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_7_5": { - "name": "crop_7_5", + "hiking": { + "name": "hiking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_din": { - "name": "crop_din", + "sports_martial_arts": { + "name": "sports_martial_arts", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_free": { - "name": "crop_free", + "construction": { + "name": "construction", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_landscape": { - "name": "crop_landscape", + "public_off": { + "name": "public_off", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_original": { - "name": "crop_original", + "sports_tennis": { + "name": "sports_tennis", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_portrait": { - "name": "crop_portrait", + "group_add": { + "name": "group_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_rotate": { - "name": "crop_rotate", + "poll": { + "name": "poll", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_square": { - "name": "crop_square", + "military_tech": { + "name": "military_tech", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dehaze": { - "name": "dehaze", + "connect_without_contact": { + "name": "connect_without_contact", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "details": { - "name": "details", + "recommend": { + "name": "recommend", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dirty_lens": { - "name": "dirty_lens", + "king_bed": { + "name": "king_bed", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit": { - "name": "edit", + "skateboarding": { + "name": "skateboarding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "euro": { - "name": "euro", + "facebook": { + "name": "facebook", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure": { - "name": "exposure", + "man": { + "name": "man", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_neg_1": { - "name": "exposure_neg_1", + "school": { + "name": "school", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_neg_2": { - "name": "exposure_neg_2", + "female": { + "name": "female", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_plus_1": { - "name": "exposure_plus_1", + "notifications": { + "name": "notifications", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_plus_2": { - "name": "exposure_plus_2", + "notifications_paused": { + "name": "notifications_paused", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_zero": { - "name": "exposure_zero", + "reduce_capacity": { + "name": "reduce_capacity", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "face_retouching_natural": { - "name": "face_retouching_natural", + "sports_esports": { + "name": "sports_esports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "face_retouching_off": { - "name": "face_retouching_off", + "thumb_down_alt": { + "name": "thumb_down_alt", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter": { - "name": "filter", + "ios_share": { + "name": "ios_share", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_1": { - "name": "filter_1", + "sports_volleyball": { + "name": "sports_volleyball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_2": { - "name": "filter_2", + "sports_golf": { + "name": "sports_golf", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_3": { - "name": "filter_3", + "sentiment_satisfied": { + "name": "sentiment_satisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_4": { - "name": "filter_4", + "kitesurfing": { + "name": "kitesurfing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_5": { - "name": "filter_5", + "add_moderator": { + "name": "add_moderator", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_6": { - "name": "filter_6", + "emoji_events": { + "name": "emoji_events", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_7": { - "name": "filter_7", + "psychology": { + "name": "psychology", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_8": { - "name": "filter_8", + "outdoor_grill": { + "name": "outdoor_grill", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_9": { - "name": "filter_9", + "heart_broken": { + "name": "heart_broken", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_9_plus": { - "name": "filter_9_plus", + "sentiment_very_satisfied": { + "name": "sentiment_very_satisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_b_and_w": { - "name": "filter_b_and_w", + "fitbit": { + "name": "fitbit", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_center_focus": { - "name": "filter_center_focus", + "transgender": { + "name": "transgender", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_drama": { - "name": "filter_drama", + "piano": { + "name": "piano", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_frames": { - "name": "filter_frames", - "keywords": [ - "image" + "whatshot": { + "name": "whatshot", + "keywords": [ + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_hdr": { - "name": "filter_hdr", + "sanitizer": { + "name": "sanitizer", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_none": { - "name": "filter_none", + "person_add": { + "name": "person_add", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_tilt_shift": { - "name": "filter_tilt_shift", + "share": { + "name": "share", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_vintage": { - "name": "filter_vintage", + "emoji_objects": { + "name": "emoji_objects", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flare": { - "name": "flare", + "male": { + "name": "male", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flash_auto": { - "name": "flash_auto", + "piano_off": { + "name": "piano_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flash_off": { - "name": "flash_off", + "architecture": { + "name": "architecture", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flash_on": { - "name": "flash_on", + "science": { + "name": "science", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip": { - "name": "flip", + "surfing": { + "name": "surfing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_camera_android": { - "name": "flip_camera_android", + "person_add_alt_1": { + "name": "person_add_alt_1", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_camera_ios": { - "name": "flip_camera_ios", + "co2": { + "name": "co2", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gradient": { - "name": "gradient", + "public": { + "name": "public", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grain": { - "name": "grain", + "luggage": { + "name": "luggage", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_off": { - "name": "grid_off", + "emoji_food_beverage": { + "name": "emoji_food_beverage", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_on": { - "name": "grid_on", + "personal_injury": { + "name": "personal_injury", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_enhanced_select": { - "name": "hdr_enhanced_select", + "person_add_alt": { + "name": "person_add_alt", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_off": { - "name": "hdr_off", + "person_remove_alt_1": { + "name": "person_remove_alt_1", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_on": { - "name": "hdr_on", + "engineering": { + "name": "engineering", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_plus": { - "name": "hdr_plus", + "group_remove": { + "name": "group_remove", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_strong": { - "name": "hdr_strong", + "party_mode": { + "name": "party_mode", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_weak": { - "name": "hdr_weak", + "sports_football": { + "name": "sports_football", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "healing": { - "name": "healing", + "downhill_skiing": { + "name": "downhill_skiing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hevc": { - "name": "hevc", + "coronavirus": { + "name": "coronavirus", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hide_image": { - "name": "hide_image", + "thumb_up_alt": { + "name": "thumb_up_alt", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "image": { - "name": "image", + "people_outline": { + "name": "people_outline", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "image_aspect_ratio": { - "name": "image_aspect_ratio", + "south_america": { + "name": "south_america", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "image_not_supported": { - "name": "image_not_supported", + "paragliding": { + "name": "paragliding", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "image_search": { - "name": "image_search", + "single_bed": { + "name": "single_bed", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "incomplete_circle": { - "name": "incomplete_circle", + "boy": { + "name": "boy", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "iso": { - "name": "iso", + "person_remove": { + "name": "person_remove", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "landscape": { - "name": "landscape", + "front_hand": { + "name": "front_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "leak_add": { - "name": "leak_add", + "sick": { + "name": "sick", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "leak_remove": { - "name": "leak_remove", + "elderly": { + "name": "elderly", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lens": { - "name": "lens", + "girl": { + "name": "girl", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "linked_camera": { - "name": "linked_camera", + "kayaking": { + "name": "kayaking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks": { - "name": "looks", + "add_reaction": { + "name": "add_reaction", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_3": { - "name": "looks_3", + "sports_kabaddi": { + "name": "sports_kabaddi", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_4": { - "name": "looks_4", + "recycling": { + "name": "recycling", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_5": { - "name": "looks_5", + "nordic_walking": { + "name": "nordic_walking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_6": { - "name": "looks_6", + "sentiment_dissatisfied": { + "name": "sentiment_dissatisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_one": { - "name": "looks_one", + "fireplace": { + "name": "fireplace", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_two": { - "name": "looks_two", + "person_off": { + "name": "person_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "loupe": { - "name": "loupe", + "masks": { + "name": "masks", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_external_off": { - "name": "mic_external_off", + "back_hand": { + "name": "back_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_external_on": { - "name": "mic_external_on", + "compost": { + "name": "compost", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "monochrome_photos": { - "name": "monochrome_photos", + "water_drop": { + "name": "water_drop", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_auto": { - "name": "motion_photos_auto", + "catching_pokemon": { + "name": "catching_pokemon", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_off": { - "name": "motion_photos_off", + "sports_cricket": { + "name": "sports_cricket", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_on": { - "name": "motion_photos_on", + "location_city": { + "name": "location_city", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_pause": { - "name": "motion_photos_pause", + "person_outline": { + "name": "person_outline", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_paused": { - "name": "motion_photos_paused", + "plus_one": { + "name": "plus_one", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "movie_creation": { - "name": "movie_creation", + "nights_stay": { + "name": "nights_stay", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "movie_filter": { - "name": "movie_filter", + "notifications_off": { + "name": "notifications_off", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mp": { - "name": "mp", + "emoji_transportation": { + "name": "emoji_transportation", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "music_note": { - "name": "music_note", + "notifications_active": { + "name": "notifications_active", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "music_off": { - "name": "music_off", + "ice_skating": { + "name": "ice_skating", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nature": { - "name": "nature", + "sports_rugby": { + "name": "sports_rugby", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nature_people": { - "name": "nature_people", + "woman": { + "name": "woman", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "navigate_before": { - "name": "navigate_before", + "group": { + "name": "group", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "navigate_next": { - "name": "navigate_next", + "group_off": { + "name": "group_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "palette": { - "name": "palette", + "scale": { + "name": "scale", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama": { - "name": "panorama", + "no_luggage": { + "name": "no_luggage", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_fish_eye": { - "name": "panorama_fish_eye", + "clean_hands": { + "name": "clean_hands", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_horizontal": { - "name": "panorama_horizontal", + "real_estate_agent": { + "name": "real_estate_agent", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_horizontal_select": { - "name": "panorama_horizontal_select", + "waving_hand": { + "name": "waving_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_photosphere": { - "name": "panorama_photosphere", + "vaccines": { + "name": "vaccines", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_photosphere_select": { - "name": "panorama_photosphere_select", + "switch_account": { + "name": "switch_account", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_vertical": { - "name": "panorama_vertical", + "snowshoeing": { + "name": "snowshoeing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_vertical_select": { - "name": "panorama_vertical_select", + "sports_motorsports": { + "name": "sports_motorsports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_wide_angle": { - "name": "panorama_wide_angle", + "travel_explore": { + "name": "travel_explore", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_wide_angle_select": { - "name": "panorama_wide_angle_select", + "cruelty_free": { + "name": "cruelty_free", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo": { - "name": "photo", + "notifications_none": { + "name": "notifications_none", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_album": { - "name": "photo_album", + "precision_manufacturing": { + "name": "precision_manufacturing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_camera": { - "name": "photo_camera", + "elderly_woman": { + "name": "elderly_woman", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_camera_back": { - "name": "photo_camera_back", + "social_distance": { + "name": "social_distance", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_camera_front": { - "name": "photo_camera_front", + "cake": { + "name": "cake", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_filter": { - "name": "photo_filter", + "interests": { + "name": "interests", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_library": { - "name": "photo_library", + "edit_notifications": { + "name": "edit_notifications", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_size_select_actual": { - "name": "photo_size_select_actual", + "emoji_emotions": { + "name": "emoji_emotions", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_size_select_large": { - "name": "photo_size_select_large", + "notification_add": { + "name": "notification_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_size_select_small": { - "name": "photo_size_select_small", + "mood_bad": { + "name": "mood_bad", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "picture_as_pdf": { - "name": "picture_as_pdf", + "person": { + "name": "person", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "portrait": { - "name": "portrait", + "remove_moderator": { + "name": "remove_moderator", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "raw_off": { - "name": "raw_off", + "6_ft_apart": { + "name": "6_ft_apart", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "raw_on": { - "name": "raw_on", + "deck": { + "name": "deck", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "receipt_long": { - "name": "receipt_long", + "sports": { + "name": "sports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_red_eye": { - "name": "remove_red_eye", + "sports_baseball": { + "name": "sports_baseball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rotate_90_degrees_ccw": { - "name": "rotate_90_degrees_ccw", + "people_alt": { + "name": "people_alt", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rotate_left": { - "name": "rotate_left", + "hive": { + "name": "hive", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rotate_right": { - "name": "rotate_right", + "self_improvement": { + "name": "self_improvement", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shutter_speed": { - "name": "shutter_speed", + "domain_add": { + "name": "domain_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "slideshow": { - "name": "slideshow", + "health_and_safety": { + "name": "health_and_safety", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "straighten": { - "name": "straighten", + "emoji_flags": { + "name": "emoji_flags", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "style": { - "name": "style", + "domain": { + "name": "domain", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_camera": { - "name": "switch_camera", + "sports_mma": { + "name": "sports_mma", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_video": { - "name": "switch_video", + "emoji_people": { + "name": "emoji_people", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tag_faces": { - "name": "tag_faces", + "unsubscribe": { + "name": "unsubscribe", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "texture": { - "name": "texture", + "rss_feed": { + "name": "rss_feed", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thermostat_auto": { - "name": "thermostat_auto", + "forum": { + "name": "forum", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timelapse": { - "name": "timelapse", + "call_received": { + "name": "call_received", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer": { - "name": "timer", + "wifi_calling": { + "name": "wifi_calling", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_10": { - "name": "timer_10", + "portable_wifi_off": { + "name": "portable_wifi_off", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_3": { - "name": "timer_3", + "key_off": { + "name": "key_off", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_off": { - "name": "timer_off", + "domain_disabled": { + "name": "domain_disabled", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tonality": { - "name": "tonality", + "alternate_email": { + "name": "alternate_email", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "transform": { - "name": "transform", + "key": { + "name": "key", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tune": { - "name": "tune", + "call_missed": { + "name": "call_missed", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_camera_back": { - "name": "video_camera_back", + "sentiment_satisfied_alt": { + "name": "sentiment_satisfied_alt", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_camera_front": { - "name": "video_camera_front", + "chat_bubble_outline": { + "name": "chat_bubble_outline", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_stable": { - "name": "video_stable", + "phonelink_lock": { + "name": "phonelink_lock", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_comfy": { - "name": "view_comfy", + "email": { + "name": "email", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_compact": { - "name": "view_compact", + "chat_bubble": { + "name": "chat_bubble", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vignette": { - "name": "vignette", + "mark_email_unread": { + "name": "mark_email_unread", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vrpano": { - "name": "vrpano", + "stay_current_landscape": { + "name": "stay_current_landscape", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_auto": { - "name": "wb_auto", + "person_search": { + "name": "person_search", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_cloudy": { - "name": "wb_cloudy", + "mobile_screen_share": { + "name": "mobile_screen_share", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_incandescent": { - "name": "wb_incandescent", + "dialpad": { + "name": "dialpad", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_iridescent": { - "name": "wb_iridescent", + "hourglass_top": { + "name": "hourglass_top", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_shade": { - "name": "wb_shade", + "swap_calls": { + "name": "swap_calls", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_sunny": { - "name": "wb_sunny", + "desktop_access_disabled": { + "name": "desktop_access_disabled", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_twilight": { - "name": "wb_twilight", + "mark_chat_read": { + "name": "mark_chat_read", "keywords": [ - "image" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" - } - } - }, - "360": { - "name": "360", - "keywords": [ - "maps" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "add_business": { - "name": "add_business", + "hub": { + "name": "hub", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_location": { - "name": "add_location", + "location_on": { + "name": "location_on", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_location_alt": { - "name": "add_location_alt", + "rtt": { + "name": "rtt", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_road": { - "name": "add_road", + "read_more": { + "name": "read_more", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "agriculture": { - "name": "agriculture", + "contact_phone": { + "name": "contact_phone", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "alt_route": { - "name": "alt_route", + "list_alt": { + "name": "list_alt", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "atm": { - "name": "atm", + "phone_enabled": { + "name": "phone_enabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attractions": { - "name": "attractions", + "app_registration": { + "name": "app_registration", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "badge": { - "name": "badge", + "present_to_all": { + "name": "present_to_all", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bakery_dining": { - "name": "bakery_dining", + "comment": { + "name": "comment", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "beenhere": { - "name": "beenhere", + "cancel_presentation": { + "name": "cancel_presentation", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bike_scooter": { - "name": "bike_scooter", + "sip": { + "name": "sip", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "breakfast_dining": { - "name": "breakfast_dining", + "location_off": { + "name": "location_off", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brunch_dining": { - "name": "brunch_dining", + "invert_colors_off": { + "name": "invert_colors_off", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" - } - } - }, - "bus_alert": { - "name": "bus_alert", - "keywords": [ - "maps" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "car_rental": { - "name": "car_rental", + "cell_wifi": { + "name": "cell_wifi", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "car_repair": { - "name": "car_repair", + "message": { + "name": "message", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "category": { - "name": "category", + "chat": { + "name": "chat", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "celebration": { - "name": "celebration", + "qr_code": { + "name": "qr_code", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cleaning_services": { - "name": "cleaning_services", + "no_sim": { + "name": "no_sim", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "compass_calibration": { - "name": "compass_calibration", + "dialer_sip": { + "name": "dialer_sip", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delivery_dining": { - "name": "delivery_dining", + "phone": { + "name": "phone", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "departure_board": { - "name": "departure_board", + "speaker_phone": { + "name": "speaker_phone", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "design_services": { - "name": "design_services", + "document_scanner": { + "name": "document_scanner", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dinner_dining": { - "name": "dinner_dining", + "cell_tower": { + "name": "cell_tower", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions": { - "name": "directions", + "ring_volume": { + "name": "ring_volume", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_bike": { - "name": "directions_bike", + "more_time": { + "name": "more_time", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_boat": { - "name": "directions_boat", + "send_time_extension": { + "name": "send_time_extension", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_boat_filled": { - "name": "directions_boat_filled", + "mail_outline": { + "name": "mail_outline", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_bus": { - "name": "directions_bus", + "qr_code_2": { + "name": "qr_code_2", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_bus_filled": { - "name": "directions_bus_filled", + "call": { + "name": "call", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_car": { - "name": "directions_car", + "live_help": { + "name": "live_help", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_car_filled": { - "name": "directions_car_filled", + "stay_current_portrait": { + "name": "stay_current_portrait", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_railway": { - "name": "directions_railway", + "clear_all": { + "name": "clear_all", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_railway_filled": { - "name": "directions_railway_filled", + "stay_primary_landscape": { + "name": "stay_primary_landscape", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_run": { - "name": "directions_run", + "domain_verification": { + "name": "domain_verification", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_subway": { - "name": "directions_subway", + "3p": { + "name": "3p", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_subway_filled": { - "name": "directions_subway_filled", + "import_export": { + "name": "import_export", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_transit": { - "name": "directions_transit", + "stop_screen_share": { + "name": "stop_screen_share", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_transit_filled": { - "name": "directions_transit_filled", + "comments_disabled": { + "name": "comments_disabled", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_walk": { - "name": "directions_walk", + "phonelink_setup": { + "name": "phonelink_setup", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dry_cleaning": { - "name": "dry_cleaning", + "contacts": { + "name": "contacts", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_attributes": { - "name": "edit_attributes", + "import_contacts": { + "name": "import_contacts", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_location": { - "name": "edit_location", + "call_made": { + "name": "call_made", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_location_alt": { - "name": "edit_location_alt", + "hourglass_bottom": { + "name": "hourglass_bottom", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_road": { - "name": "edit_road", + "phonelink_ring": { + "name": "phonelink_ring", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electrical_services": { - "name": "electrical_services", + "call_missed_outgoing": { + "name": "call_missed_outgoing", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_bike": { - "name": "electric_bike", + "textsms": { + "name": "textsms", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_car": { - "name": "electric_car", + "mark_email_read": { + "name": "mark_email_read", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_moped": { - "name": "electric_moped", + "nat": { + "name": "nat", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_rickshaw": { - "name": "electric_rickshaw", + "voicemail": { + "name": "voicemail", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_scooter": { - "name": "electric_scooter", + "stay_primary_portrait": { + "name": "stay_primary_portrait", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emergency": { - "name": "emergency", + "add_ic_call": { + "name": "add_ic_call", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ev_station": { - "name": "ev_station", + "pause_presentation": { + "name": "pause_presentation", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fastfood": { - "name": "fastfood", + "vpn_key_off": { + "name": "vpn_key_off", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "festival": { - "name": "festival", + "co_present": { + "name": "co_present", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flight": { - "name": "flight", + "person_add_disabled": { + "name": "person_add_disabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hail": { - "name": "hail", + "business": { + "name": "business", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "handyman": { - "name": "handyman", + "duo": { + "name": "duo", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hardware": { - "name": "hardware", + "call_merge": { + "name": "call_merge", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_repair_service": { - "name": "home_repair_service", + "qr_code_scanner": { + "name": "qr_code_scanner", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hotel": { - "name": "hotel", + "call_split": { + "name": "call_split", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hvac": { - "name": "hvac", + "mark_unread_chat_alt": { + "name": "mark_unread_chat_alt", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "icecream": { - "name": "icecream", + "vpn_key": { + "name": "vpn_key", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "layers": { - "name": "layers", + "phone_disabled": { + "name": "phone_disabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "layers_clear": { - "name": "layers_clear", + "forward_to_inbox": { + "name": "forward_to_inbox", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "liquor": { - "name": "liquor", + "print_disabled": { + "name": "print_disabled", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_activity": { - "name": "local_activity", + "spoke": { + "name": "spoke", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_airport": { - "name": "local_airport", + "screen_share": { + "name": "screen_share", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_atm": { - "name": "local_atm", + "mark_chat_unread": { + "name": "mark_chat_unread", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_bar": { - "name": "local_bar", + "phonelink_erase": { + "name": "phonelink_erase", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_cafe": { - "name": "local_cafe", + "call_end": { + "name": "call_end", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_car_wash": { - "name": "local_car_wash", + "contact_mail": { + "name": "contact_mail", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_convenience_store": { - "name": "local_convenience_store", + "electrical_services": { + "name": "electrical_services", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_dining": { - "name": "local_dining", + "taxi_alert": { + "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_drink": { - "name": "local_drink", + "zoom_out_map": { + "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_fire_department": { - "name": "local_fire_department", + "edit_attributes": { + "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -17007,891 +17559,931 @@ } } }, - "local_gas_station": { - "name": "local_gas_station", + "home_repair_service": { + "name": "home_repair_service", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_grocery_store": { - "name": "local_grocery_store", + "pest_control": { + "name": "pest_control", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_hospital": { - "name": "local_hospital", + "person_pin": { + "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_hotel": { - "name": "local_hotel", + "temple_buddhist": { + "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_laundry_service": { - "name": "local_laundry_service", + "money": { + "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_library": { - "name": "local_library", + "directions_railway_filled": { + "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_mall": { - "name": "local_mall", + "electric_bike": { + "name": "electric_bike", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_movies": { - "name": "local_movies", + "alt_route": { + "name": "alt_route", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_offer": { - "name": "local_offer", + "local_post_office": { + "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_parking": { - "name": "local_parking", + "two_wheeler": { + "name": "two_wheeler", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_pharmacy": { - "name": "local_pharmacy", + "icecream": { + "name": "icecream", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_phone": { - "name": "local_phone", + "add_location_alt": { + "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_pizza": { - "name": "local_pizza", + "directions_boat": { + "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_play": { - "name": "local_play", + "menu_book": { + "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_police": { - "name": "local_police", + "360": { + "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_post_office": { - "name": "local_post_office", + "moving": { + "name": "moving", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_printshop": { - "name": "local_printshop", + "turn_right": { + "name": "turn_right", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_see": { - "name": "local_see", + "satellite": { + "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_shipping": { - "name": "local_shipping", + "train": { + "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_taxi": { - "name": "local_taxi", + "local_cafe": { + "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lunch_dining": { - "name": "lunch_dining", + "roundabout_left": { + "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" - } - } - }, - "map": { - "name": "map", - "keywords": [ - "maps" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "maps_ugc": { - "name": "maps_ugc", + "agriculture": { + "name": "agriculture", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "medical_services": { - "name": "medical_services", + "attractions": { + "name": "attractions", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "menu_book": { - "name": "menu_book", + "my_location": { + "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "miscellaneous_services": { - "name": "miscellaneous_services", + "local_police": { + "name": "local_police", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "money": { - "name": "money", + "local_convenience_store": { + "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "moped": { - "name": "moped", + "restaurant": { + "name": "restaurant", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "moving": { - "name": "moving", + "synagogue": { + "name": "synagogue", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "multiple_stop": { - "name": "multiple_stop", + "railway_alert": { + "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "museum": { - "name": "museum", + "wrong_location": { + "name": "wrong_location", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "my_location": { - "name": "my_location", + "turn_slight_right": { + "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "navigation": { - "name": "navigation", + "pin_drop": { + "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "near_me": { - "name": "near_me", + "medical_services": { + "name": "medical_services", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "near_me_disabled": { - "name": "near_me_disabled", + "signpost": { + "name": "signpost", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nightlife": { - "name": "nightlife", + "park": { + "name": "park", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_listed_location": { - "name": "not_listed_location", + "ev_station": { + "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_meals": { - "name": "no_meals", + "breakfast_dining": { + "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_transfer": { - "name": "no_transfer", + "handyman": { + "name": "handyman", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "park": { - "name": "park", + "forest": { + "name": "forest", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pedal_bike": { - "name": "pedal_bike", + "place": { + "name": "place", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_pin": { - "name": "person_pin", + "subway": { + "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_pin_circle": { - "name": "person_pin_circle", + "local_play": { + "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pest_control": { - "name": "pest_control", + "person_pin_circle": { + "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pest_control_rodent": { - "name": "pest_control_rodent", + "wine_bar": { + "name": "wine_bar", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin_drop": { - "name": "pin_drop", + "bakery_dining": { + "name": "bakery_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "place": { - "name": "place", + "u_turn_left": { + "name": "u_turn_left", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "plumbing": { - "name": "plumbing", + "miscellaneous_services": { + "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "railway_alert": { - "name": "railway_alert", + "local_phone": { + "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ramen_dining": { - "name": "ramen_dining", + "layers_clear": { + "name": "layers_clear", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rate_review": { - "name": "rate_review", + "local_movies": { + "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restaurant": { - "name": "restaurant", + "local_grocery_store": { + "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restaurant_menu": { - "name": "restaurant_menu", + "mosque": { + "name": "mosque", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "run_circle": { - "name": "run_circle", + "add_road": { + "name": "add_road", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sailing": { - "name": "sailing", + "set_meal": { + "name": "set_meal", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "satellite": { - "name": "satellite", + "add_location": { + "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "set_meal": { - "name": "set_meal", + "stadium": { + "name": "stadium", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snowmobile": { - "name": "snowmobile", + "zoom_in_map": { + "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "store_mall_directory": { - "name": "store_mall_directory", + "map": { + "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "streetview": { - "name": "streetview", + "directions_bus_filled": { + "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subway": { - "name": "subway", + "local_see": { + "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "takeout_dining": { - "name": "takeout_dining", + "local_activity": { + "name": "local_activity", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "taxi_alert": { - "name": "taxi_alert", + "local_atm": { + "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "terrain": { - "name": "terrain", + "brunch_dining": { + "name": "brunch_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "theater_comedy": { - "name": "theater_comedy", + "pest_control_rodent": { + "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "traffic": { - "name": "traffic", + "moped": { + "name": "moped", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "train": { - "name": "train", + "layers": { + "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tram": { - "name": "tram", + "directions_run": { + "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -17907,4847 +18499,7551 @@ } } }, - "transit_enterexit": { - "name": "transit_enterexit", + "local_mall": { + "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "trip_origin": { - "name": "trip_origin", + "local_shipping": { + "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "two_wheeler": { - "name": "two_wheeler", + "local_drink": { + "name": "local_drink", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "volunteer_activism": { - "name": "volunteer_activism", + "ramp_left": { + "name": "ramp_left", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wine_bar": { - "name": "wine_bar", + "not_listed_location": { + "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wrong_location": { - "name": "wrong_location", + "near_me": { + "name": "near_me", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "zoom_out_map": { - "name": "zoom_out_map", + "directions_subway": { + "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "apps": { - "name": "apps", + "flight_class": { + "name": "flight_class", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "app_settings_alt": { - "name": "app_settings_alt", + "atm": { + "name": "atm", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_back": { - "name": "arrow_back", + "snowmobile": { + "name": "snowmobile", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_back_ios": { - "name": "arrow_back_ios", + "emergency": { + "name": "emergency", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_back_ios_new": { - "name": "arrow_back_ios_new", + "cleaning_services": { + "name": "cleaning_services", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_downward": { - "name": "arrow_downward", + "store_mall_directory": { + "name": "store_mall_directory", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_drop_down": { - "name": "arrow_drop_down", + "turn_sharp_left": { + "name": "turn_sharp_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_drop_down_circle": { - "name": "arrow_drop_down_circle", + "turn_slight_left": { + "name": "turn_slight_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_drop_up": { - "name": "arrow_drop_up", + "directions_boat_filled": { + "name": "directions_boat_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_forward": { - "name": "arrow_forward", + "festival": { + "name": "festival", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_forward_ios": { - "name": "arrow_forward_ios", + "lunch_dining": { + "name": "lunch_dining", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_left": { - "name": "arrow_left", + "directions_transit_filled": { + "name": "directions_transit_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_right": { - "name": "arrow_right", + "design_services": { + "name": "design_services", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_upward": { - "name": "arrow_upward", + "bus_alert": { + "name": "bus_alert", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assistant_direction": { - "name": "assistant_direction", + "warehouse": { + "name": "warehouse", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "campaign": { - "name": "campaign", + "turn_sharp_right": { + "name": "turn_sharp_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cancel": { - "name": "cancel", + "liquor": { + "name": "liquor", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "check": { - "name": "check", + "electric_scooter": { + "name": "electric_scooter", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chevron_left": { - "name": "chevron_left", + "pedal_bike": { + "name": "pedal_bike", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chevron_right": { - "name": "chevron_right", + "local_taxi": { + "name": "local_taxi", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "close": { - "name": "close", + "local_parking": { + "name": "local_parking", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "double_arrow": { - "name": "double_arrow", + "near_me_disabled": { + "name": "near_me_disabled", "keywords": [ - "navigation" + "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "east": { - "name": "east", + "category": { + "name": "category", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "expand_less": { - "name": "expand_less", + "turn_left": { + "name": "turn_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "expand_more": { - "name": "expand_more", + "local_hotel": { + "name": "local_hotel", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "first_page": { - "name": "first_page", + "egg": { + "name": "egg", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fullscreen": { - "name": "fullscreen", + "local_airport": { + "name": "local_airport", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fullscreen_exit": { - "name": "fullscreen_exit", + "ramp_right": { + "name": "ramp_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_work": { - "name": "home_work", + "local_bar": { + "name": "local_bar", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "last_page": { - "name": "last_page", + "castle": { + "name": "castle", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "legend_toggle": { - "name": "legend_toggle", + "kebab_dining": { + "name": "kebab_dining", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "maps_home_work": { - "name": "maps_home_work", + "no_transfer": { + "name": "no_transfer", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "menu": { - "name": "menu", + "roundabout_right": { + "name": "roundabout_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "menu_open": { - "name": "menu_open", + "directions": { + "name": "directions", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "more_horiz": { - "name": "more_horiz", + "terrain": { + "name": "terrain", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "more_vert": { - "name": "more_vert", + "local_offer": { + "name": "local_offer", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "north": { - "name": "north", + "merge": { + "name": "merge", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "north_east": { - "name": "north_east", + "mode_of_travel": { + "name": "mode_of_travel", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "north_west": { - "name": "north_west", + "multiple_stop": { + "name": "multiple_stop", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "offline_share": { - "name": "offline_share", + "diamond": { + "name": "diamond", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "payments": { - "name": "payments", + "local_hospital": { + "name": "local_hospital", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pivot_table_chart": { - "name": "pivot_table_chart", + "edit_location": { + "name": "edit_location", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "refresh": { - "name": "refresh", + "sailing": { + "name": "sailing", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "south": { - "name": "south", + "airlines": { + "name": "airlines", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "south_east": { - "name": "south_east", + "car_rental": { + "name": "car_rental", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "south_west": { - "name": "south_west", + "directions_bike": { + "name": "directions_bike", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subdirectory_arrow_left": { - "name": "subdirectory_arrow_left", + "hvac": { + "name": "hvac", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "subdirectory_arrow_right": { - "name": "subdirectory_arrow_right", + "badge": { + "name": "badge", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_left": { - "name": "switch_left", + "directions_car_filled": { + "name": "directions_car_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_right": { - "name": "switch_right", + "directions_railway": { + "name": "directions_railway", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unfold_less": { - "name": "unfold_less", + "u_turn_right": { + "name": "u_turn_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "unfold_more": { - "name": "unfold_more", + "electric_rickshaw": { + "name": "electric_rickshaw", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "waterfall_chart": { - "name": "waterfall_chart", + "hardware": { + "name": "hardware", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "west": { - "name": "west", + "local_gas_station": { + "name": "local_gas_station", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_tree": { - "name": "account_tree", + "fork_right": { + "name": "fork_right", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "adb": { - "name": "adb", + "departure_board": { + "name": "departure_board", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_flat": { - "name": "airline_seat_flat", + "restaurant_menu": { + "name": "restaurant_menu", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_flat_angled": { - "name": "airline_seat_flat_angled", + "soup_kitchen": { + "name": "soup_kitchen", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_individual_suite": { - "name": "airline_seat_individual_suite", + "navigation": { + "name": "navigation", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_legroom_extra": { - "name": "airline_seat_legroom_extra", + "temple_hindu": { + "name": "temple_hindu", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_legroom_normal": { - "name": "airline_seat_legroom_normal", + "flight": { + "name": "flight", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_legroom_reduced": { - "name": "airline_seat_legroom_reduced", + "egg_alt": { + "name": "egg_alt", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_recline_extra": { - "name": "airline_seat_recline_extra", + "edit_location_alt": { + "name": "edit_location_alt", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_recline_normal": { - "name": "airline_seat_recline_normal", + "ramen_dining": { + "name": "ramen_dining", "keywords": [ - "notification" + "maps" ], "heights": { - "24": { - "width": 24, - "path": "" + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" } } }, - "bluetooth_audio": { - "name": "bluetooth_audio", + "car_repair": { + "name": "car_repair", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "confirmation_number": { - "name": "confirmation_number", + "run_circle": { + "name": "run_circle", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_off": { - "name": "directions_off", + "takeout_dining": { + "name": "takeout_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "disc_full": { - "name": "disc_full", + "fastfood": { + "name": "fastfood", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb": { - "name": "do_disturb", + "theater_comedy": { + "name": "theater_comedy", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb_alt": { - "name": "do_disturb_alt", + "connecting_airports": { + "name": "connecting_airports", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb_off": { - "name": "do_disturb_off", + "fort": { + "name": "fort", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb_on": { - "name": "do_disturb_on", + "church": { + "name": "church", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb": { - "name": "do_not_disturb", + "directions_car": { + "name": "directions_car", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_alt": { - "name": "do_not_disturb_alt", + "rate_review": { + "name": "rate_review", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_off": { - "name": "do_not_disturb_off", + "add_business": { + "name": "add_business", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_on": { - "name": "do_not_disturb_on", + "transit_enterexit": { + "name": "transit_enterexit", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_eta": { - "name": "drive_eta", + "celebration": { + "name": "celebration", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "enhanced_encryption": { - "name": "enhanced_encryption", + "airline_stops": { + "name": "airline_stops", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_available": { - "name": "event_available", + "directions_bus": { + "name": "directions_bus", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_busy": { - "name": "event_busy", + "streetview": { + "name": "streetview", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_note": { - "name": "event_note", + "tram": { + "name": "tram", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder_special": { - "name": "folder_special", + "fork_left": { + "name": "fork_left", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "imagesearch_roller": { - "name": "imagesearch_roller", + "hotel": { + "name": "hotel", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "live_tv": { - "name": "live_tv", + "compass_calibration": { + "name": "compass_calibration", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mms": { - "name": "mms", + "factory": { + "name": "factory", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "more": { - "name": "more", + "dinner_dining": { + "name": "dinner_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_check": { - "name": "network_check", + "edit_road": { + "name": "edit_road", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_locked": { - "name": "network_locked", + "local_library": { + "name": "local_library", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_encryption": { - "name": "no_encryption", + "plumbing": { + "name": "plumbing", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_encryption_gmailerrorred": { - "name": "no_encryption_gmailerrorred", + "local_pizza": { + "name": "local_pizza", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ondemand_video": { - "name": "ondemand_video", + "no_meals": { + "name": "no_meals", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "personal_video": { - "name": "personal_video", + "local_fire_department": { + "name": "local_fire_department", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_bluetooth_speaker": { - "name": "phone_bluetooth_speaker", + "bike_scooter": { + "name": "bike_scooter", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_callback": { - "name": "phone_callback", + "hail": { + "name": "hail", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_forwarded": { - "name": "phone_forwarded", + "local_pharmacy": { + "name": "local_pharmacy", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_in_talk": { - "name": "phone_in_talk", + "traffic": { + "name": "traffic", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_locked": { - "name": "phone_locked", + "dry_cleaning": { + "name": "dry_cleaning", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_missed": { - "name": "phone_missed", + "local_dining": { + "name": "local_dining", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_paused": { - "name": "phone_paused", + "trip_origin": { + "name": "trip_origin", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "power": { - "name": "power", + "delivery_dining": { + "name": "delivery_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "power_off": { - "name": "power_off", + "directions_walk": { + "name": "directions_walk", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "priority_high": { - "name": "priority_high", + "electric_car": { + "name": "electric_car", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "running_with_errors": { - "name": "running_with_errors", + "route": { + "name": "route", "keywords": [ - "notification" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd_card": { - "name": "sd_card", + "museum": { + "name": "museum", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd_card_alert": { - "name": "sd_card_alert", + "straight": { + "name": "straight", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sim_card_alert": { - "name": "sim_card_alert", + "directions_subway_filled": { + "name": "directions_subway_filled", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sms": { - "name": "sms", + "directions_transit": { + "name": "directions_transit", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sms_failed": { - "name": "sms_failed", + "nightlife": { + "name": "nightlife", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "support_agent": { - "name": "support_agent", + "maps_ugc": { + "name": "maps_ugc", "keywords": [ - "notification" + "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync": { - "name": "sync", + "local_car_wash": { + "name": "local_car_wash", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync_disabled": { - "name": "sync_disabled", + "electric_moped": { + "name": "electric_moped", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync_problem": { - "name": "sync_problem", + "local_laundry_service": { + "name": "local_laundry_service", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_update": { - "name": "system_update", + "local_printshop": { + "name": "local_printshop", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tap_and_play": { - "name": "tap_and_play", + "beenhere": { + "name": "beenhere", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "time_to_leave": { - "name": "time_to_leave", + "volunteer_activism": { + "name": "volunteer_activism", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tv_off": { - "name": "tv_off", + "sort": { + "name": "sort", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vibration": { - "name": "vibration", + "create": { + "name": "create", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "voice_chat": { - "name": "voice_chat", + "stacked_bar_chart": { + "name": "stacked_bar_chart", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vpn_lock": { - "name": "vpn_lock", + "add_link": { + "name": "add_link", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wc": { - "name": "wc", + "redo": { + "name": "redo", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi": { - "name": "wifi", + "content_paste_go": { + "name": "content_paste_go", "keywords": [ - "notification" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_off": { - "name": "wifi_off", + "clear": { + "name": "clear", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ac_unit": { - "name": "ac_unit", + "next_week": { + "name": "next_week", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airport_shuttle": { - "name": "airport_shuttle", + "amp_stories": { + "name": "amp_stories", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "all_inclusive": { - "name": "all_inclusive", + "flag": { + "name": "flag", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "apartment": { - "name": "apartment", + "dynamic_feed": { + "name": "dynamic_feed", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "baby_changing_station": { - "name": "baby_changing_station", + "drafts": { + "name": "drafts", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "backpack": { - "name": "backpack", + "select_all": { + "name": "select_all", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "balcony": { - "name": "balcony", + "deselect": { + "name": "deselect", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bathtub": { - "name": "bathtub", + "font_download": { + "name": "font_download", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "beach_access": { - "name": "beach_access", + "add_box": { + "name": "add_box", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bento": { - "name": "bento", + "add": { + "name": "add", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bungalow": { - "name": "bungalow", + "outlined_flag": { + "name": "outlined_flag", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "business_center": { - "name": "business_center", + "calculate": { + "name": "calculate", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cabin": { - "name": "cabin", + "push_pin": { + "name": "push_pin", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "carpenter": { - "name": "carpenter", + "filter_list": { + "name": "filter_list", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "casino": { - "name": "casino", + "filter_list_off": { + "name": "filter_list_off", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chalet": { - "name": "chalet", + "link": { + "name": "link", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "charging_station": { - "name": "charging_station", + "how_to_vote": { + "name": "how_to_vote", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "checkroom": { - "name": "checkroom", + "add_circle_outline": { + "name": "add_circle_outline", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "child_care": { - "name": "child_care", + "markunread": { + "name": "markunread", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "child_friendly": { - "name": "child_friendly", + "attribution": { + "name": "attribution", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "corporate_fare": { - "name": "corporate_fare", + "shield": { + "name": "shield", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cottage": { - "name": "cottage", + "font_download_off": { + "name": "font_download_off", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "countertops": { - "name": "countertops", + "content_copy": { + "name": "content_copy", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crib": { - "name": "crib", + "low_priority": { + "name": "low_priority", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_step": { - "name": "do_not_step", + "unarchive": { + "name": "unarchive", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" - } - } - }, - "do_not_touch": { - "name": "do_not_touch", - "keywords": [ - "places" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "dry": { - "name": "dry", + "inventory_2": { + "name": "inventory_2", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "elevator": { - "name": "elevator", + "move_to_inbox": { + "name": "move_to_inbox", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "escalator": { - "name": "escalator", + "undo": { + "name": "undo", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "escalator_warning": { - "name": "escalator_warning", + "text_format": { + "name": "text_format", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "family_restroom": { - "name": "family_restroom", + "waves": { + "name": "waves", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fence": { - "name": "fence", + "file_copy": { + "name": "file_copy", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fire_extinguisher": { - "name": "fire_extinguisher", + "link_off": { + "name": "link_off", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fitness_center": { - "name": "fitness_center", + "content_paste": { + "name": "content_paste", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "food_bank": { - "name": "food_bank", + "reply_all": { + "name": "reply_all", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "foundation": { - "name": "foundation", + "copy_all": { + "name": "copy_all", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "free_breakfast": { - "name": "free_breakfast", + "weekend": { + "name": "weekend", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gite": { - "name": "gite", + "save_as": { + "name": "save_as", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "golf_course": { - "name": "golf_course", + "remove_circle_outline": { + "name": "remove_circle_outline", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grass": { - "name": "grass", + "content_paste_off": { + "name": "content_paste_off", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "holiday_village": { - "name": "holiday_village", + "report_off": { + "name": "report_off", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hot_tub": { - "name": "hot_tub", + "report_gmailerrorred": { + "name": "report_gmailerrorred", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "house": { - "name": "house", + "save": { + "name": "save", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "houseboat": { - "name": "houseboat", + "bolt": { + "name": "bolt", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "house_siding": { - "name": "house_siding", + "content_cut": { + "name": "content_cut", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "iron": { - "name": "iron", + "flag_circle": { + "name": "flag_circle", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "kitchen": { - "name": "kitchen", + "block": { + "name": "block", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "meeting_room": { - "name": "meeting_room", + "remove_circle": { + "name": "remove_circle", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "microwave": { - "name": "microwave", + "square_foot": { + "name": "square_foot", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "night_shelter": { - "name": "night_shelter", + "archive": { + "name": "archive", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_backpack": { - "name": "no_backpack", + "add_circle": { + "name": "add_circle", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_cell": { - "name": "no_cell", + "tag": { + "name": "tag", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_drinks": { - "name": "no_drinks", + "remove": { + "name": "remove", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_flash": { - "name": "no_flash", + "gesture": { + "name": "gesture", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_food": { - "name": "no_food", + "inventory": { + "name": "inventory", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_meeting_room": { - "name": "no_meeting_room", + "where_to_vote": { + "name": "where_to_vote", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_photography": { - "name": "no_photography", + "how_to_reg": { + "name": "how_to_reg", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_stroller": { - "name": "no_stroller", + "delete_sweep": { + "name": "delete_sweep", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "other_houses": { - "name": "other_houses", + "report": { + "name": "report", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pool": { - "name": "pool", + "inbox": { + "name": "inbox", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rice_bowl": { - "name": "rice_bowl", + "upcoming": { + "name": "upcoming", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "roofing": { - "name": "roofing", + "stream": { + "name": "stream", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "room_preferences": { - "name": "room_preferences", + "save_alt": { + "name": "save_alt", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "room_service": { - "name": "room_service", + "insights": { + "name": "insights", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rv_hookup": { - "name": "rv_hookup", + "backspace": { + "name": "backspace", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smoke_free": { - "name": "smoke_free", + "reply": { + "name": "reply", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smoking_rooms": { - "name": "smoking_rooms", + "mail": { + "name": "mail", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "soap": { - "name": "soap", + "change_circle": { + "name": "change_circle", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "spa": { - "name": "spa", + "send": { + "name": "send", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_bar": { - "name": "sports_bar", + "ballot": { + "name": "ballot", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stairs": { - "name": "stairs", + "forward": { + "name": "forward", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "storefront": { - "name": "storefront", + "policy": { + "name": "policy", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "stroller": { - "name": "stroller", + "content_paste_search": { + "name": "content_paste_search", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tapas": { - "name": "tapas", + "biotech": { + "name": "biotech", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tty": { - "name": "tty", + "attach_money": { + "name": "attach_money", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "umbrella": { - "name": "umbrella", + "bar_chart": { + "name": "bar_chart", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "villa": { - "name": "villa", + "border_clear": { + "name": "border_clear", "keywords": [ - "places" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wash": { - "name": "wash", + "title": { + "name": "title", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "water_damage": { - "name": "water_damage", + "format_align_justify": { + "name": "format_align_justify", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wheelchair_pickup": { - "name": "wheelchair_pickup", + "move_down": { + "name": "move_down", "keywords": [ - "places" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bathroom": { - "name": "bathroom", + "format_size": { + "name": "format_size", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bed": { - "name": "bed", + "insert_chart": { + "name": "insert_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedroom_baby": { - "name": "bedroom_baby", + "scatter_plot": { + "name": "scatter_plot", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedroom_child": { - "name": "bedroom_child", + "align_vertical_top": { + "name": "align_vertical_top", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedroom_parent": { - "name": "bedroom_parent", + "border_all": { + "name": "border_all", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "blender": { - "name": "blender", + "move_up": { + "name": "move_up", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_indoor": { - "name": "camera_indoor", + "polyline": { + "name": "polyline", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_outdoor": { - "name": "camera_outdoor", + "format_list_numbered": { + "name": "format_list_numbered", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chair": { - "name": "chair", + "format_underlined": { + "name": "format_underlined", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chair_alt": { - "name": "chair_alt", + "format_strikethrough": { + "name": "format_strikethrough", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "coffee": { - "name": "coffee", + "schema": { + "name": "schema", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "coffee_maker": { - "name": "coffee_maker", + "border_outer": { + "name": "border_outer", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dining": { - "name": "dining", + "short_text": { + "name": "short_text", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "doorbell": { - "name": "doorbell", + "border_style": { + "name": "border_style", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "door_back": { - "name": "door_back", + "subscript": { + "name": "subscript", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "door_front": { - "name": "door_front", + "border_right": { + "name": "border_right", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "door_sliding": { - "name": "door_sliding", + "add_chart": { + "name": "add_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "feed": { - "name": "feed", + "format_align_center": { + "name": "format_align_center", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flatware": { - "name": "flatware", + "format_clear": { + "name": "format_clear", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "garage": { - "name": "garage", + "margin": { + "name": "margin", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "light": { - "name": "light", + "format_list_bulleted": { + "name": "format_list_bulleted", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "living": { - "name": "living", + "checklist_rtl": { + "name": "checklist_rtl", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "manage_search": { - "name": "manage_search", + "data_array": { + "name": "data_array", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "podcasts": { - "name": "podcasts", + "bubble_chart": { + "name": "bubble_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shower": { - "name": "shower", + "border_color": { + "name": "border_color", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "window": { - "name": "window", + "vertical_align_bottom": { + "name": "vertical_align_bottom", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "yard": { - "name": "yard", + "vertical_distribute": { + "name": "vertical_distribute", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6_ft_apart": { - "name": "6_ft_apart", + "data_object": { + "name": "data_object", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_moderator": { - "name": "add_moderator", + "mode": { + "name": "mode", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_reaction": { - "name": "add_reaction", + "text_fields": { + "name": "text_fields", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "architecture": { - "name": "architecture", + "insert_emoticon": { + "name": "insert_emoticon", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "back_hand": { - "name": "back_hand", + "horizontal_distribute": { + "name": "horizontal_distribute", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cake": { - "name": "cake", + "money_off_csred": { + "name": "money_off_csred", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "catching_pokemon": { - "name": "catching_pokemon", + "border_horizontal": { + "name": "border_horizontal", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "clean_hands": { - "name": "clean_hands", + "functions": { + "name": "functions", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "compost": { - "name": "compost", + "format_align_left": { + "name": "format_align_left", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "connect_without_contact": { - "name": "connect_without_contact", + "multiline_chart": { + "name": "multiline_chart", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "construction": { - "name": "construction", + "stacked_line_chart": { + "name": "stacked_line_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "coronavirus": { - "name": "coronavirus", + "money_off": { + "name": "money_off", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cruelty_free": { - "name": "cruelty_free", + "format_list_numbered_rtl": { + "name": "format_list_numbered_rtl", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "deck": { - "name": "deck", + "align_horizontal_center": { + "name": "align_horizontal_center", "keywords": [ - "social" + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pentagon": { + "name": "pentagon", + "keywords": [ + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "domain": { - "name": "domain", + "format_indent_increase": { + "name": "format_indent_increase", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "downhill_skiing": { - "name": "downhill_skiing", + "table_rows": { + "name": "table_rows", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_notifications": { - "name": "edit_notifications", + "query_stats": { + "name": "query_stats", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "elderly": { - "name": "elderly", + "pie_chart_outline": { + "name": "pie_chart_outline", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_emotions": { - "name": "emoji_emotions", + "square": { + "name": "square", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_events": { - "name": "emoji_events", + "format_color_text": { + "name": "format_color_text", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_flags": { - "name": "emoji_flags", + "candlestick_chart": { + "name": "candlestick_chart", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_food_beverage": { - "name": "emoji_food_beverage", + "mode_comment": { + "name": "mode_comment", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_nature": { - "name": "emoji_nature", + "checklist": { + "name": "checklist", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_objects": { - "name": "emoji_objects", + "pie_chart": { + "name": "pie_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_people": { - "name": "emoji_people", + "format_textdirection_l_to_r": { + "name": "format_textdirection_l_to_r", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_symbols": { - "name": "emoji_symbols", + "format_align_right": { + "name": "format_align_right", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_transportation": { - "name": "emoji_transportation", + "align_vertical_bottom": { + "name": "align_vertical_bottom", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "engineering": { - "name": "engineering", + "notes": { + "name": "notes", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "facebook": { - "name": "facebook", + "insert_comment": { + "name": "insert_comment", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "female": { - "name": "female", + "height": { + "name": "height", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fireplace": { - "name": "fireplace", + "format_shapes": { + "name": "format_shapes", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "follow_the_signs": { - "name": "follow_the_signs", + "hexagon": { + "name": "hexagon", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "front_hand": { - "name": "front_hand", + "align_horizontal_right": { + "name": "align_horizontal_right", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "group": { - "name": "group", + "merge_type": { + "name": "merge_type", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "groups": { - "name": "groups", + "vertical_align_top": { + "name": "vertical_align_top", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "group_add": { - "name": "group_add", + "text_increase": { + "name": "text_increase", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "group_off": { - "name": "group_off", + "border_vertical": { + "name": "border_vertical", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "health_and_safety": { - "name": "health_and_safety", + "format_bold": { + "name": "format_bold", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hiking": { - "name": "hiking", + "format_textdirection_r_to_l": { + "name": "format_textdirection_r_to_l", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "history_edu": { - "name": "history_edu", + "format_paint": { + "name": "format_paint", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ice_skating": { - "name": "ice_skating", + "drag_handle": { + "name": "drag_handle", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ios_share": { - "name": "ios_share", + "space_bar": { + "name": "space_bar", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "kayaking": { - "name": "kayaking", + "format_color_reset": { + "name": "format_color_reset", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "king_bed": { - "name": "king_bed", + "post_add": { + "name": "post_add", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "kitesurfing": { - "name": "kitesurfing", + "border_top": { + "name": "border_top", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_city": { - "name": "location_city", + "border_bottom": { + "name": "border_bottom", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "luggage": { - "name": "luggage", + "insert_photo": { + "name": "insert_photo", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "male": { - "name": "male", + "insert_page_break": { + "name": "insert_page_break", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "masks": { - "name": "masks", + "attach_file": { + "name": "attach_file", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "military_tech": { - "name": "military_tech", + "text_decrease": { + "name": "text_decrease", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mood": { - "name": "mood", + "horizontal_rule": { + "name": "horizontal_rule", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mood_bad": { - "name": "mood_bad", + "score": { + "name": "score", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nights_stay": { - "name": "nights_stay", + "format_indent_decrease": { + "name": "format_indent_decrease", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nordic_walking": { - "name": "nordic_walking", + "monetization_on": { + "name": "monetization_on", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications": { - "name": "notifications", + "padding": { + "name": "padding", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_active": { - "name": "notifications_active", + "format_quote": { + "name": "format_quote", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_none": { - "name": "notifications_none", + "vertical_align_center": { + "name": "vertical_align_center", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_off": { - "name": "notifications_off", + "mode_edit_outline": { + "name": "mode_edit_outline", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_paused": { - "name": "notifications_paused", + "insert_chart_outlined": { + "name": "insert_chart_outlined", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notification_add": { - "name": "notification_add", + "add_comment": { + "name": "add_comment", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_luggage": { - "name": "no_luggage", + "border_left": { + "name": "border_left", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outdoor_grill": { - "name": "outdoor_grill", + "linear_scale": { + "name": "linear_scale", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pages": { - "name": "pages", + "align_horizontal_left": { + "name": "align_horizontal_left", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "paragliding": { - "name": "paragliding", + "align_vertical_center": { + "name": "align_vertical_center", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "party_mode": { - "name": "party_mode", + "line_axis": { + "name": "line_axis", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "people": { - "name": "people", + "format_color_fill": { + "name": "format_color_fill", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "people_alt": { - "name": "people_alt", + "area_chart": { + "name": "area_chart", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "people_outline": { - "name": "people_outline", + "format_italic": { + "name": "format_italic", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person": { - "name": "person", + "numbers": { + "name": "numbers", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "personal_injury": { - "name": "personal_injury", + "format_line_spacing": { + "name": "format_line_spacing", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add": { - "name": "person_add", + "superscript": { + "name": "superscript", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add_alt": { - "name": "person_add_alt", + "mode_edit": { + "name": "mode_edit", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add_alt_1": { - "name": "person_add_alt_1", + "edit_note": { + "name": "edit_note", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_off": { - "name": "person_off", + "auto_graph": { + "name": "auto_graph", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_outline": { - "name": "person_outline", + "show_chart": { + "name": "show_chart", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_remove": { - "name": "person_remove", + "draw": { + "name": "draw", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_remove_alt_1": { - "name": "person_remove_alt_1", + "wrap_text": { + "name": "wrap_text", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "piano": { - "name": "piano", + "table_chart": { + "name": "table_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "piano_off": { - "name": "piano_off", + "highlight": { + "name": "highlight", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "plus_one": { - "name": "plus_one", + "insert_invitation": { + "name": "insert_invitation", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "poll": { - "name": "poll", + "insert_link": { + "name": "insert_link", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "precision_manufacturing": { - "name": "precision_manufacturing", + "publish": { + "name": "publish", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "psychology": { - "name": "psychology", + "border_inner": { + "name": "border_inner", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "public": { - "name": "public", + "rectangle": { + "name": "rectangle", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "public_off": { - "name": "public_off", + "insert_drive_file": { + "name": "insert_drive_file", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "real_estate_agent": { - "name": "real_estate_agent", + "strikethrough_s": { + "name": "strikethrough_s", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "recommend": { - "name": "recommend", + "home_max": { + "name": "home_max", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "recycling": { - "name": "recycling", + "speaker": { + "name": "speaker", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "reduce_capacity": { - "name": "reduce_capacity", + "keyboard_arrow_down": { + "name": "keyboard_arrow_down", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_moderator": { - "name": "remove_moderator", + "keyboard_arrow_up": { + "name": "keyboard_arrow_up", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "safety_divider": { - "name": "safety_divider", + "desktop_mac": { + "name": "desktop_mac", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sanitizer": { - "name": "sanitizer", + "earbuds": { + "name": "earbuds", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "school": { - "name": "school", + "laptop_chromebook": { + "name": "laptop_chromebook", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "science": { - "name": "science", + "computer": { + "name": "computer", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "self_improvement": { - "name": "self_improvement", + "keyboard_return": { + "name": "keyboard_return", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_dissatisfied": { - "name": "sentiment_dissatisfied", + "headset": { + "name": "headset", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_neutral": { - "name": "sentiment_neutral", + "keyboard_double_arrow_left": { + "name": "keyboard_double_arrow_left", "keywords": [ - "social" + "hardware" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_satisfied": { - "name": "sentiment_satisfied", + "adf_scanner": { + "name": "adf_scanner", "keywords": [ - "social" + "hardware" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_very_dissatisfied": { - "name": "sentiment_very_dissatisfied", + "smart_display": { + "name": "smart_display", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_very_satisfied": { - "name": "sentiment_very_satisfied", + "browser_updated": { + "name": "browser_updated", "keywords": [ - "social" + "hardware" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "share": { - "name": "share", + "device_hub": { + "name": "device_hub", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sick": { - "name": "sick", + "smart_toy": { + "name": "smart_toy", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "single_bed": { - "name": "single_bed", + "watch": { + "name": "watch", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "skateboarding": { - "name": "skateboarding", + "keyboard_alt": { + "name": "keyboard_alt", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sledding": { - "name": "sledding", + "headset_off": { + "name": "headset_off", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snowboarding": { - "name": "snowboarding", + "gamepad": { + "name": "gamepad", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snowshoeing": { - "name": "snowshoeing", + "dock": { + "name": "dock", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "social_distance": { - "name": "social_distance", + "scanner": { + "name": "scanner", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports": { - "name": "sports", + "phonelink": { + "name": "phonelink", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_baseball": { - "name": "sports_baseball", + "smartphone": { + "name": "smartphone", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_basketball": { - "name": "sports_basketball", + "keyboard_arrow_left": { + "name": "keyboard_arrow_left", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_for_education": { + "name": "cast_for_education", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_option_key": { + "name": "keyboard_option_key", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_cricket": { - "name": "sports_cricket", + "headphones_battery": { + "name": "headphones_battery", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "start": { + "name": "start", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_esports": { - "name": "sports_esports", + "keyboard": { + "name": "keyboard", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_iphone": { + "name": "phone_iphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor": { + "name": "monitor", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_windows": { + "name": "laptop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "browser_not_supported": { + "name": "browser_not_supported", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_football": { - "name": "sports_football", + "sim_card": { + "name": "sim_card", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_control_key": { + "name": "keyboard_control_key", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_golf": { - "name": "sports_golf", + "earbuds_battery": { + "name": "earbuds_battery", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset_off": { + "name": "videogame_asset_off", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_handball": { - "name": "sports_handball", + "memory": { + "name": "memory", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop": { + "name": "laptop", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_mac": { + "name": "laptop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_connected": { + "name": "cast_connected", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet": { + "name": "tablet", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset": { + "name": "videogame_asset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_double_arrow_down": { + "name": "keyboard_double_arrow_down", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" + } + } + }, + "keyboard_capslock": { + "name": "keyboard_capslock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_double_arrow_up": { + "name": "keyboard_double_arrow_up", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cast": { + "name": "cast", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_voice": { + "name": "keyboard_voice", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_backspace": { + "name": "keyboard_backspace", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "point_of_sale": { + "name": "point_of_sale", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "watch_off": { + "name": "watch_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board_off": { + "name": "developer_board_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_double_arrow_right": { + "name": "keyboard_double_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet_android": { + "name": "tablet_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_command_key": { + "name": "keyboard_command_key", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_mic": { + "name": "headset_mic", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_windows": { + "name": "desktop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet_mac": { + "name": "tablet_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_input": { + "name": "power_input", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv": { + "name": "tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_android": { + "name": "phone_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security": { + "name": "security", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_right": { + "name": "keyboard_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_group": { + "name": "speaker_group", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_screen": { + "name": "smart_screen", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_tab": { + "name": "keyboard_tab", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_off": { + "name": "phonelink_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_hide": { + "name": "keyboard_hide", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "connected_tv": { + "name": "connected_tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board": { + "name": "developer_board", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toys": { + "name": "toys", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "router": { + "name": "router", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_mini": { + "name": "home_mini", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_unknown": { + "name": "device_unknown", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones": { + "name": "headphones", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mouse": { + "name": "mouse", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "devices_other": { + "name": "devices_other", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_share": { + "name": "offline_share", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_vert": { + "name": "more_vert", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_settings_alt": { + "name": "app_settings_alt", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pivot_table_chart": { + "name": "pivot_table_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fullscreen": { + "name": "fullscreen", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close": { + "name": "close", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps_outage": { + "name": "apps_outage", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home_work": { + "name": "home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back": { + "name": "arrow_back", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu": { + "name": "menu", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios": { + "name": "arrow_back_ios", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "last_page": { + "name": "last_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "double_arrow": { + "name": "double_arrow", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "legend_toggle": { + "name": "legend_toggle", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_left": { + "name": "switch_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_right": { + "name": "subdirectory_arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_right": { + "name": "chevron_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_left": { + "name": "arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north": { + "name": "north", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_horiz": { + "name": "more_horiz", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps": { + "name": "apps", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "west": { + "name": "west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_home_work": { + "name": "maps_home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel": { + "name": "cancel", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "first_page": { + "name": "first_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "east": { + "name": "east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_upward": { + "name": "arrow_upward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check": { + "name": "check", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_left": { + "name": "chevron_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_open": { + "name": "menu_open", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_downward": { + "name": "arrow_downward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payments": { + "name": "payments", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios_new": { + "name": "arrow_back_ios_new", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_up": { + "name": "arrow_drop_up", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_more": { + "name": "unfold_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_east": { + "name": "south_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down_circle": { + "name": "arrow_drop_down_circle", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_more": { + "name": "expand_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_east": { + "name": "north_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward_ios": { + "name": "arrow_forward_ios", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "south": { + "name": "south", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_less": { + "name": "expand_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right": { + "name": "arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "campaign": { + "name": "campaign", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fullscreen_exit": { + "name": "fullscreen_exit", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down": { + "name": "arrow_drop_down", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward": { + "name": "arrow_forward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_circle_down": { + "name": "expand_circle_down", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_right": { + "name": "switch_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "refresh": { + "name": "refresh", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_left": { + "name": "subdirectory_arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_less": { + "name": "unfold_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waterfall_chart": { + "name": "waterfall_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_west": { + "name": "south_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_west": { + "name": "north_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_direction": { + "name": "assistant_direction", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_rename_outline": { + "name": "drive_file_rename_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_quote": { + "name": "request_quote", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_for_offline": { + "name": "download_for_offline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "approval": { + "name": "approval", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attachment": { + "name": "attachment", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_done": { + "name": "file_download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder": { + "name": "folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_done": { + "name": "download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_snippet": { + "name": "text_snippet", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_view": { + "name": "grid_view", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_upload": { + "name": "file_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "create_new_folder": { + "name": "create_new_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download": { + "name": "file_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "topic": { + "name": "topic", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_zip": { + "name": "folder_zip", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_off": { + "name": "cloud_off", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_sync": { + "name": "cloud_sync", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_shared": { + "name": "folder_shared", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_open": { + "name": "file_open", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_download": { + "name": "cloud_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_overline": { + "name": "format_overline", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snippet_folder": { + "name": "snippet_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_email": { + "name": "attach_email", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_off": { + "name": "folder_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "newspaper": { + "name": "newspaper", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "difference": { + "name": "difference", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "downloading": { + "name": "downloading", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_circle": { + "name": "cloud_circle", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces": { + "name": "workspaces", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_move_rtl": { + "name": "drive_file_move_rtl", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "download": { + "name": "download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload": { + "name": "upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_delete": { + "name": "folder_delete", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_done": { + "name": "cloud_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_queue": { + "name": "cloud_queue", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_off": { + "name": "file_download_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud": { + "name": "cloud", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_move": { + "name": "drive_file_move", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule_folder": { + "name": "rule_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_open": { + "name": "folder_open", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_upload": { + "name": "cloud_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_folder_upload": { + "name": "drive_folder_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload_file": { + "name": "upload_file", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "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": "" + } + } + }, + "warning_amber": { + "name": "warning_amber", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "warning": { + "name": "warning", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_delete": { + "name": "auto_delete", + "keywords": [ + "alert" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alert": { + "name": "add_alert", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "error": { + "name": "error", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update": { + "name": "system_update", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tap_and_play": { + "name": "tap_and_play", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption": { + "name": "no_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_normal": { + "name": "airline_seat_legroom_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_audio": { + "name": "bluetooth_audio", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_off": { + "name": "wifi_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_disabled": { + "name": "sync_disabled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mms": { + "name": "mms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_lock": { + "name": "sync_lock", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_alt": { + "name": "do_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_paused": { + "name": "phone_paused", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wc": { + "name": "wc", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv_off": { + "name": "tv_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_problem": { + "name": "sync_problem", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_locked": { + "name": "phone_locked", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "power_off": { + "name": "power_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption_gmailerrorred": { + "name": "no_encryption_gmailerrorred", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_eta": { + "name": "drive_eta", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_special": { + "name": "folder_special", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_alert": { + "name": "sim_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on": { + "name": "do_not_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_video": { + "name": "personal_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "running_with_errors": { + "name": "running_with_errors", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_extra": { + "name": "airline_seat_recline_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat_angled": { + "name": "airline_seat_flat_angled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_chat": { + "name": "voice_chat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms": { + "name": "sms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_note": { + "name": "event_note", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_missed": { + "name": "phone_missed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_alt": { + "name": "do_not_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more": { + "name": "more", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card_alert": { + "name": "sd_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power": { + "name": "power", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_callback": { + "name": "phone_callback", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb": { + "name": "do_not_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disc_full": { + "name": "disc_full", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_in_talk": { + "name": "phone_in_talk", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_available": { + "name": "event_available", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_tv": { + "name": "live_tv", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_off": { + "name": "do_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ondemand_video": { + "name": "ondemand_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_normal": { + "name": "airline_seat_recline_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_check": { + "name": "network_check", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card": { + "name": "sd_card", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adb": { + "name": "adb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms_failed": { + "name": "sms_failed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_individual_suite": { + "name": "airline_seat_individual_suite", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "time_to_leave": { + "name": "time_to_leave", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat": { + "name": "airline_seat_flat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb": { + "name": "do_disturb", + "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": "" + } + } + }, + "enhanced_encryption": { + "name": "enhanced_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_tree": { + "name": "account_tree", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" } } }, - "sports_hockey": { - "name": "sports_hockey", + "network_locked": { + "name": "network_locked", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_kabaddi": { - "name": "sports_kabaddi", + "sync": { + "name": "sync", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_mma": { - "name": "sports_mma", + "priority_high": { + "name": "priority_high", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_motorsports": { - "name": "sports_motorsports", + "event_busy": { + "name": "event_busy", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_rugby": { - "name": "sports_rugby", + "phone_bluetooth_speaker": { + "name": "phone_bluetooth_speaker", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_soccer": { - "name": "sports_soccer", + "airline_seat_legroom_reduced": { + "name": "airline_seat_legroom_reduced", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_tennis": { - "name": "sports_tennis", + "support_agent": { + "name": "support_agent", "keywords": [ - "social" + "notification" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_volleyball": { - "name": "sports_volleyball", + "phone_forwarded": { + "name": "phone_forwarded", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "surfing": { - "name": "surfing", + "do_disturb_on": { + "name": "do_disturb_on", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_account": { - "name": "switch_account", + "do_not_disturb_off": { + "name": "do_not_disturb_off", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_down_alt": { - "name": "thumb_down_alt", + "directions_off": { + "name": "directions_off", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_up_alt": { - "name": "thumb_up_alt", + "vibration": { + "name": "vibration", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "transgender": { - "name": "transgender", + "vpn_lock": { + "name": "vpn_lock", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "travel_explore": { - "name": "travel_explore", + "imagesearch_roller": { + "name": "imagesearch_roller", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "water_drop": { - "name": "water_drop", + "airline_seat_legroom_extra": { + "name": "airline_seat_legroom_extra", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "waving_hand": { - "name": "waving_hand", + "star_border": { + "name": "star_border", "keywords": [ - "social" + "toggle" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "whatshot": { - "name": "whatshot", + "radio_button_unchecked": { + "name": "radio_button_unchecked", "keywords": [ - "social" + "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "check_box": { - "name": "check_box", + "star": { + "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -22763,63 +26059,63 @@ } } }, - "indeterminate_check_box": { - "name": "indeterminate_check_box", + "toggle_on": { + "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radio_button_checked": { - "name": "radio_button_checked", + "indeterminate_check_box": { + "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radio_button_unchecked": { - "name": "radio_button_unchecked", + "star_purple500": { + "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star": { - "name": "star", + "toggle_off": { + "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star_border": { - "name": "star_border", + "check_box": { + "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -22859,40 +26155,16 @@ } } }, - "star_purple500": { - "name": "star_purple500", - "keywords": [ - "toggle" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "toggle_off": { - "name": "toggle_off", - "keywords": [ - "toggle" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "toggle_on": { - "name": "toggle_on", + "radio_button_checked": { + "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } } -} +} \ No newline at end of file diff --git a/sphinx_design/compiled/material_sharp.json b/sphinx_design/compiled/material_sharp.json index a89c27d..cda7c28 100644 --- a/sphinx_design/compiled/material_sharp.json +++ b/sphinx_design/compiled/material_sharp.json @@ -1,16997 +1,17549 @@ { - "3d_rotation": { - "name": "3d_rotation", + "view_comfy": { + "name": "view_comfy", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "accessibility": { - "name": "accessibility", + "crop_din": { + "name": "crop_din", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "accessibility_new": { - "name": "accessibility_new", + "brightness_5": { + "name": "brightness_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "accessible": { - "name": "accessible", + "broken_image": { + "name": "broken_image", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "accessible_forward": { - "name": "accessible_forward", + "crop_7_5": { + "name": "crop_7_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_balance": { - "name": "account_balance", + "brightness_1": { + "name": "brightness_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_balance_wallet": { - "name": "account_balance_wallet", + "13mp": { + "name": "13mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_box": { - "name": "account_box", + "wb_iridescent": { + "name": "wb_iridescent", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_circle": { - "name": "account_circle", + "wb_sunny": { + "name": "wb_sunny", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "addchart": { - "name": "addchart", + "23mp": { + "name": "23mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_shopping_cart": { - "name": "add_shopping_cart", + "vrpano": { + "name": "vrpano", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_task": { - "name": "add_task", + "bedtime": { + "name": "bedtime", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_drive": { - "name": "add_to_drive", + "cases": { + "name": "cases", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "admin_panel_settings": { - "name": "admin_panel_settings", + "euro": { + "name": "euro", "keywords": [ - "action" + "image" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ads_click": { - "name": "ads_click", + "straighten": { + "name": "straighten", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "alarm": { - "name": "alarm", + "panorama_photosphere_select": { + "name": "panorama_photosphere_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alarm_add": { - "name": "alarm_add", + "leak_remove": { + "name": "leak_remove", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alarm_off": { - "name": "alarm_off", + "animation": { + "name": "animation", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alarm_on": { - "name": "alarm_on", + "timer_off": { + "name": "timer_off", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "all_inbox": { - "name": "all_inbox", + "currency_pound": { + "name": "currency_pound", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "all_out": { - "name": "all_out", + "20mp": { + "name": "20mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "analytics": { - "name": "analytics", + "filter_9": { + "name": "filter_9", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "anchor": { - "name": "anchor", + "brightness_3": { + "name": "brightness_3", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "android": { - "name": "android", + "filter_hdr": { + "name": "filter_hdr", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "announcement": { - "name": "announcement", + "14mp": { + "name": "14mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "api": { - "name": "api", + "lens": { + "name": "lens", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "app_blocking": { - "name": "app_blocking", + "auto_fix_high": { + "name": "auto_fix_high", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_circle_down": { - "name": "arrow_circle_down", + "10mp": { + "name": "10mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_circle_up": { - "name": "arrow_circle_up", + "iso": { + "name": "iso", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_right_alt": { - "name": "arrow_right_alt", + "photo_camera": { + "name": "photo_camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "article": { - "name": "article", + "motion_photos_on": { + "name": "motion_photos_on", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "aspect_ratio": { - "name": "aspect_ratio", + "bedtime_off": { + "name": "bedtime_off", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "assessment": { - "name": "assessment", + "image": { + "name": "image", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment": { - "name": "assignment", + "21mp": { + "name": "21mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_ind": { - "name": "assignment_ind", + "assistant_photo": { + "name": "assistant_photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_late": { - "name": "assignment_late", + "hdr_off": { + "name": "hdr_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_return": { - "name": "assignment_return", + "3mp": { + "name": "3mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_returned": { - "name": "assignment_returned", + "filter_8": { + "name": "filter_8", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_turned_in": { - "name": "assignment_turned_in", + "filter_center_focus": { + "name": "filter_center_focus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "autorenew": { - "name": "autorenew", + "burst_mode": { + "name": "burst_mode", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "backup": { - "name": "backup", + "6mp": { + "name": "6mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "backup_table": { - "name": "backup_table", + "adjust": { + "name": "adjust", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "batch_prediction": { - "name": "batch_prediction", + "hevc": { + "name": "hevc", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "book": { - "name": "book", + "camera_roll": { + "name": "camera_roll", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark": { - "name": "bookmark", + "switch_video": { + "name": "switch_video", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmarks": { - "name": "bookmarks", + "camera": { + "name": "camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark_add": { - "name": "bookmark_add", + "video_stable": { + "name": "video_stable", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark_added": { - "name": "bookmark_added", + "filter_frames": { + "name": "filter_frames", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark_border": { - "name": "bookmark_border", + "dirty_lens": { + "name": "dirty_lens", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark_remove": { - "name": "bookmark_remove", + "5mp": { + "name": "5mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "book_online": { - "name": "book_online", + "exposure": { + "name": "exposure", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bug_report": { - "name": "bug_report", + "photo_camera_back": { + "name": "photo_camera_back", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "build": { - "name": "build", + "transform": { + "name": "transform", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "build_circle": { - "name": "build_circle", + "color_lens": { + "name": "color_lens", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cached": { - "name": "cached", + "16mp": { + "name": "16mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calendar_today": { - "name": "calendar_today", + "currency_lira": { + "name": "currency_lira", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "calendar_view_day": { - "name": "calendar_view_day", + "crop_16_9": { + "name": "crop_16_9", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calendar_view_month": { - "name": "calendar_view_month", + "crop_original": { + "name": "crop_original", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calendar_view_week": { - "name": "calendar_view_week", + "filter_4": { + "name": "filter_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_enhance": { - "name": "camera_enhance", + "filter_vintage": { + "name": "filter_vintage", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cancel_schedule_send": { - "name": "cancel_schedule_send", + "nature_people": { + "name": "nature_people", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "card_giftcard": { - "name": "card_giftcard", + "navigate_before": { + "name": "navigate_before", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "card_membership": { - "name": "card_membership", + "add_photo_alternate": { + "name": "add_photo_alternate", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "card_travel": { - "name": "card_travel", + "12mp": { + "name": "12mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "change_history": { - "name": "change_history", + "filter_drama": { + "name": "filter_drama", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "check_circle": { - "name": "check_circle", + "brightness_2": { + "name": "brightness_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "check_circle_outline": { - "name": "check_circle_outline", + "video_camera_back": { + "name": "video_camera_back", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chrome_reader_mode": { - "name": "chrome_reader_mode", + "add_a_photo": { + "name": "add_a_photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "circle_notifications": { - "name": "circle_notifications", + "nature": { + "name": "nature", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "class": { - "name": "class", + "image_not_supported": { + "name": "image_not_supported", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "close_fullscreen": { - "name": "close_fullscreen", + "currency_franc": { + "name": "currency_franc", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "code": { - "name": "code", + "tune": { + "name": "tune", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "code_off": { - "name": "code_off", + "face_retouching_off": { + "name": "face_retouching_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "comment_bank": { - "name": "comment_bank", + "crop_3_2": { + "name": "crop_3_2", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "commute": { - "name": "commute", + "mic_external_on": { + "name": "mic_external_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "compare_arrows": { - "name": "compare_arrows", + "panorama_photosphere": { + "name": "panorama_photosphere", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "compress": { - "name": "compress", + "currency_ruble": { + "name": "currency_ruble", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "contactless": { - "name": "contactless", + "mp": { + "name": "mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_page": { - "name": "contact_page", + "auto_awesome_mosaic": { + "name": "auto_awesome_mosaic", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_support": { - "name": "contact_support", + "raw_off": { + "name": "raw_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "copyright": { - "name": "copyright", + "portrait": { + "name": "portrait", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "credit_card": { - "name": "credit_card", + "photo_size_select_small": { + "name": "photo_size_select_small", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "credit_card_off": { - "name": "credit_card_off", + "auto_fix_off": { + "name": "auto_fix_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dangerous": { - "name": "dangerous", + "22mp": { + "name": "22mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dashboard": { - "name": "dashboard", + "blur_off": { + "name": "blur_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dashboard_customize": { - "name": "dashboard_customize", + "looks_6": { + "name": "looks_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_exploration": { - "name": "data_exploration", + "tag_faces": { + "name": "tag_faces", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "date_range": { - "name": "date_range", + "looks": { + "name": "looks", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete": { - "name": "delete", + "motion_photos_auto": { + "name": "motion_photos_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete_forever": { - "name": "delete_forever", + "details": { + "name": "details", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete_outline": { - "name": "delete_outline", + "filter_3": { + "name": "filter_3", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "description": { - "name": "description", + "auto_awesome": { + "name": "auto_awesome", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "disabled_by_default": { - "name": "disabled_by_default", + "auto_fix_normal": { + "name": "auto_fix_normal", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "disabled_visible": { - "name": "disabled_visible", + "gradient": { + "name": "gradient", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dns": { - "name": "dns", + "wb_incandescent": { + "name": "wb_incandescent", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "done": { - "name": "done", + "landscape": { + "name": "landscape", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "done_all": { - "name": "done_all", + "incomplete_circle": { + "name": "incomplete_circle", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "done_outline": { - "name": "done_outline", + "hdr_on": { + "name": "hdr_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "donut_large": { - "name": "donut_large", + "contrast": { + "name": "contrast", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "donut_small": { - "name": "donut_small", + "blur_circular": { + "name": "blur_circular", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drag_indicator": { - "name": "drag_indicator", + "wb_twilight": { + "name": "wb_twilight", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dynamic_form": { - "name": "dynamic_form", + "crop": { + "name": "crop", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "eco": { - "name": "eco", + "blur_linear": { + "name": "blur_linear", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_calendar": { - "name": "edit_calendar", + "switch_camera": { + "name": "switch_camera", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_off": { - "name": "edit_off", + "photo_album": { + "name": "photo_album", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "eject": { - "name": "eject", + "deblur": { + "name": "deblur", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "euro_symbol": { - "name": "euro_symbol", + "currency_yen": { + "name": "currency_yen", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "event": { - "name": "event", + "panorama_horizontal": { + "name": "panorama_horizontal", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_seat": { - "name": "event_seat", + "filter_1": { + "name": "filter_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exit_to_app": { - "name": "exit_to_app", + "compare": { + "name": "compare", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "expand": { - "name": "expand", + "grain": { + "name": "grain", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "explore": { - "name": "explore", + "17mp": { + "name": "17mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "explore_off": { - "name": "explore_off", + "looks_4": { + "name": "looks_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "extension": { - "name": "extension", + "monochrome_photos": { + "name": "monochrome_photos", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "extension_off": { - "name": "extension_off", + "looks_two": { + "name": "looks_two", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "face": { - "name": "face", + "auto_stories": { + "name": "auto_stories", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "face_unlock": { - "name": "face_unlock", + "view_compact": { + "name": "view_compact", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fact_check": { - "name": "fact_check", + "camera_front": { + "name": "camera_front", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "favorite": { - "name": "favorite", + "8mp": { + "name": "8mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "favorite_border": { - "name": "favorite_border", + "blur_on": { + "name": "blur_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "feedback": { - "name": "feedback", + "image_search": { + "name": "image_search", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_present": { - "name": "file_present", + "shutter_speed": { + "name": "shutter_speed", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_alt": { - "name": "filter_alt", + "hdr_plus": { + "name": "hdr_plus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "find_in_page": { - "name": "find_in_page", + "panorama_wide_angle_select": { + "name": "panorama_wide_angle_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "find_replace": { - "name": "find_replace", + "timelapse": { + "name": "timelapse", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fingerprint": { - "name": "fingerprint", + "photo_size_select_large": { + "name": "photo_size_select_large", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fit_screen": { - "name": "fit_screen", + "panorama_horizontal_select": { + "name": "panorama_horizontal_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flaky": { - "name": "flaky", + "timer_3": { + "name": "timer_3", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flight_land": { - "name": "flight_land", + "center_focus_weak": { + "name": "center_focus_weak", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flight_takeoff": { - "name": "flight_takeoff", + "center_focus_strong": { + "name": "center_focus_strong", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_to_back": { - "name": "flip_to_back", + "auto_awesome_motion": { + "name": "auto_awesome_motion", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_to_front": { - "name": "flip_to_front", + "filter_5": { + "name": "filter_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flutter_dash": { - "name": "flutter_dash", + "exposure_plus_1": { + "name": "exposure_plus_1", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "free_cancellation": { - "name": "free_cancellation", + "audiotrack": { + "name": "audiotrack", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gavel": { - "name": "gavel", + "wb_cloudy": { + "name": "wb_cloudy", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "generating_tokens": { - "name": "generating_tokens", + "music_note": { + "name": "music_note", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "get_app": { - "name": "get_app", + "brush": { + "name": "brush", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gif": { - "name": "gif", + "photo": { + "name": "photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grade": { - "name": "grade", + "18mp": { + "name": "18mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grading": { - "name": "grading", + "loupe": { + "name": "loupe", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "group_work": { - "name": "group_work", + "currency_rupee": { + "name": "currency_rupee", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "g_translate": { - "name": "g_translate", + "flip": { + "name": "flip", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "help": { - "name": "help", + "remove_red_eye": { + "name": "remove_red_eye", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "help_center": { - "name": "help_center", - "keywords": [ - "action" + "texture": { + "name": "texture", + "keywords": [ + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "help_outline": { - "name": "help_outline", + "flash_on": { + "name": "flash_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hide_source": { - "name": "hide_source", + "7mp": { + "name": "7mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "highlight_alt": { - "name": "highlight_alt", + "wb_shade": { + "name": "wb_shade", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "highlight_off": { - "name": "highlight_off", + "receipt_long": { + "name": "receipt_long", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "history": { - "name": "history", + "rotate_right": { + "name": "rotate_right", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "history_toggle_off": { - "name": "history_toggle_off", + "crop_rotate": { + "name": "crop_rotate", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "home": { - "name": "home", + "2mp": { + "name": "2mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "horizontal_split": { - "name": "horizontal_split", + "raw_on": { + "name": "raw_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hotel_class": { - "name": "hotel_class", + "rotate_left": { + "name": "rotate_left", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_disabled": { - "name": "hourglass_disabled", + "crop_portrait": { + "name": "crop_portrait", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_empty": { - "name": "hourglass_empty", + "flip_camera_android": { + "name": "flip_camera_android", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_full": { - "name": "hourglass_full", + "rotate_90_degrees_ccw": { + "name": "rotate_90_degrees_ccw", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "http": { - "name": "http", + "photo_filter": { + "name": "photo_filter", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "https": { - "name": "https", + "exposure_plus_2": { + "name": "exposure_plus_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "important_devices": { - "name": "important_devices", + "motion_photos_pause": { + "name": "motion_photos_pause", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "info": { - "name": "info", + "assistant": { + "name": "assistant", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "info_outline": { - "name": "info_outline", + "flare": { + "name": "flare", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "input": { - "name": "input", + "picture_as_pdf": { + "name": "picture_as_pdf", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "integration_instructions": { - "name": "integration_instructions", + "brightness_4": { + "name": "brightness_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "invert_colors": { - "name": "invert_colors", + "camera_rear": { + "name": "camera_rear", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "label": { - "name": "label", + "circle": { + "name": "circle", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_important": { - "name": "label_important", + "dehaze": { + "name": "dehaze", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_important_outline": { - "name": "label_important_outline", + "filter_6": { + "name": "filter_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_off": { - "name": "label_off", + "motion_photos_paused": { + "name": "motion_photos_paused", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_outline": { - "name": "label_outline", + "crop_landscape": { + "name": "crop_landscape", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "language": { - "name": "language", + "linked_camera": { + "name": "linked_camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "launch": { - "name": "launch", + "24mp": { + "name": "24mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "leaderboard": { - "name": "leaderboard", + "logo_dev": { + "name": "logo_dev", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lightbulb": { - "name": "lightbulb", + "15mp": { + "name": "15mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lightbulb_outline": { - "name": "lightbulb_outline", + "panorama_vertical": { + "name": "panorama_vertical", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "line_style": { - "name": "line_style", + "motion_photos_off": { + "name": "motion_photos_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "line_weight": { - "name": "line_weight", + "panorama_vertical_select": { + "name": "panorama_vertical_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "list": { - "name": "list", + "grid_off": { + "name": "grid_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock": { - "name": "lock", + "panorama_fish_eye": { + "name": "panorama_fish_eye", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock_clock": { - "name": "lock_clock", + "autofps_select": { + "name": "autofps_select", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock_open": { - "name": "lock_open", + "photo_size_select_actual": { + "name": "photo_size_select_actual", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock_outline": { - "name": "lock_outline", + "9mp": { + "name": "9mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "login": { - "name": "login", + "filter_7": { + "name": "filter_7", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "logout": { - "name": "logout", + "flip_camera_ios": { + "name": "flip_camera_ios", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "loyalty": { - "name": "loyalty", + "currency_yuan": { + "name": "currency_yuan", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "manage_accounts": { - "name": "manage_accounts", + "video_camera_front": { + "name": "video_camera_front", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "markunread_mailbox": { - "name": "markunread_mailbox", + "movie_filter": { + "name": "movie_filter", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_as_unread": { - "name": "mark_as_unread", + "collections": { + "name": "collections", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "maximize": { - "name": "maximize", + "tonality": { + "name": "tonality", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mediation": { - "name": "mediation", + "music_off": { + "name": "music_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "minimize": { - "name": "minimize", + "photo_library": { + "name": "photo_library", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "model_training": { - "name": "model_training", + "filter_none": { + "name": "filter_none", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "new_label": { - "name": "new_label", + "vignette": { + "name": "vignette", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "next_plan": { - "name": "next_plan", + "hide_image": { + "name": "hide_image", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nightlight_round": { - "name": "nightlight_round", + "4mp": { + "name": "4mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "note_add": { - "name": "note_add", + "30fps_select": { + "name": "30fps_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_accessible": { - "name": "not_accessible", + "looks_5": { + "name": "looks_5", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_started": { - "name": "not_started", + "exposure_zero": { + "name": "exposure_zero", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_accounts": { - "name": "no_accounts", + "11mp": { + "name": "11mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "offline_bolt": { - "name": "offline_bolt", + "healing": { + "name": "healing", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "offline_pin": { - "name": "offline_pin", + "exposure_neg_1": { + "name": "exposure_neg_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "online_prediction": { - "name": "online_prediction", + "filter": { + "name": "filter", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "opacity": { - "name": "opacity", + "filter_9_plus": { + "name": "filter_9_plus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_browser": { - "name": "open_in_browser", + "movie_creation": { + "name": "movie_creation", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_full": { - "name": "open_in_full", + "add_to_photos": { + "name": "add_to_photos", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_new": { - "name": "open_in_new", + "crop_free": { + "name": "crop_free", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_new_off": { - "name": "open_in_new_off", + "filter_tilt_shift": { + "name": "filter_tilt_shift", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_with": { - "name": "open_with", + "hdr_strong": { + "name": "hdr_strong", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outbond": { - "name": "outbond", + "wb_auto": { + "name": "wb_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outbound": { - "name": "outbound", + "filter_2": { + "name": "filter_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outbox": { - "name": "outbox", + "looks_3": { + "name": "looks_3", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "outlet": { - "name": "outlet", + "collections_bookmark": { + "name": "collections_bookmark", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pageview": { - "name": "pageview", + "brightness_6": { + "name": "brightness_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "paid": { - "name": "paid", + "timer_10": { + "name": "timer_10", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pan_tool": { - "name": "pan_tool", + "palette": { + "name": "palette", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "payment": { - "name": "payment", + "edit": { + "name": "edit", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pending": { - "name": "pending", + "crop_square": { + "name": "crop_square", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pending_actions": { - "name": "pending_actions", + "19mp": { + "name": "19mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_camera_mic": { - "name": "perm_camera_mic", + "timer": { + "name": "timer", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_contact_calendar": { - "name": "perm_contact_calendar", + "hdr_enhanced_select": { + "name": "hdr_enhanced_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_data_setting": { - "name": "perm_data_setting", + "flash_off": { + "name": "flash_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_device_information": { - "name": "perm_device_information", + "panorama_wide_angle": { + "name": "panorama_wide_angle", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_identity": { - "name": "perm_identity", + "thermostat_auto": { + "name": "thermostat_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_media": { - "name": "perm_media", + "camera_alt": { + "name": "camera_alt", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_phone_msg": { - "name": "perm_phone_msg", + "60fps_select": { + "name": "60fps_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_scan_wifi": { - "name": "perm_scan_wifi", + "style": { + "name": "style", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pets": { - "name": "pets", + "rotate_90_degrees_cw": { + "name": "rotate_90_degrees_cw", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "picture_in_picture": { - "name": "picture_in_picture", + "panorama": { + "name": "panorama", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "picture_in_picture_alt": { - "name": "picture_in_picture_alt", + "filter_b_and_w": { + "name": "filter_b_and_w", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin_end": { - "name": "pin_end", + "mic_external_off": { + "name": "mic_external_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin_invoke": { - "name": "pin_invoke", + "looks_one": { + "name": "looks_one", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "plagiarism": { - "name": "plagiarism", + "slideshow": { + "name": "slideshow", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_for_work": { - "name": "play_for_work", + "image_aspect_ratio": { + "name": "image_aspect_ratio", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "polymer": { - "name": "polymer", + "photo_camera_front": { + "name": "photo_camera_front", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "power_settings_new": { - "name": "power_settings_new", + "crop_5_4": { + "name": "crop_5_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pregnant_woman": { - "name": "pregnant_woman", + "control_point": { + "name": "control_point", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "preview": { - "name": "preview", + "brightness_7": { + "name": "brightness_7", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "print": { - "name": "print", + "control_point_duplicate": { + "name": "control_point_duplicate", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "privacy_tip": { - "name": "privacy_tip", + "exposure_neg_2": { + "name": "exposure_neg_2", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "private_connectivity": { - "name": "private_connectivity", + "hdr_weak": { + "name": "hdr_weak", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "production_quantity_limits": { - "name": "production_quantity_limits", + "grid_on": { + "name": "grid_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "published_with_changes": { - "name": "published_with_changes", + "flash_auto": { + "name": "flash_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "query_builder": { - "name": "query_builder", + "face_retouching_natural": { + "name": "face_retouching_natural", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "question_answer": { - "name": "question_answer", + "leak_add": { + "name": "leak_add", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "quickreply": { - "name": "quickreply", + "navigate_next": { + "name": "navigate_next", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "receipt": { - "name": "receipt", + "colorize": { + "name": "colorize", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "record_voice_over": { - "name": "record_voice_over", + "radio": { + "name": "radio", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "redeem": { - "name": "redeem", + "speed": { + "name": "speed", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_done": { - "name": "remove_done", + "volume_off": { + "name": "volume_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_shopping_cart": { - "name": "remove_shopping_cart", + "shuffle": { + "name": "shuffle", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reorder": { - "name": "reorder", + "4k": { + "name": "4k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report_problem": { - "name": "report_problem", + "featured_play_list": { + "name": "featured_play_list", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "request_page": { - "name": "request_page", + "closed_caption": { + "name": "closed_caption", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restore": { - "name": "restore", + "queue_music": { + "name": "queue_music", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "restore_from_trash": { - "name": "restore_from_trash", + "subtitles": { + "name": "subtitles", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restore_page": { - "name": "restore_page", + "art_track": { + "name": "art_track", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "room": { - "name": "room", + "album": { + "name": "album", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rounded_corner": { - "name": "rounded_corner", + "replay_circle_filled": { + "name": "replay_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rowing": { - "name": "rowing", - "keywords": [ - "action" + "hd": { + "name": "hd", + "keywords": [ + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rule": { - "name": "rule", + "3k": { + "name": "3k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "saved_search": { - "name": "saved_search", + "not_interested": { + "name": "not_interested", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "savings": { - "name": "savings", + "fiber_smart_record": { + "name": "fiber_smart_record", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "schedule": { - "name": "schedule", + "snooze": { + "name": "snooze", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "schedule_send": { - "name": "schedule_send", + "1k_plus": { + "name": "1k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "search": { - "name": "search", + "pause_circle_outline": { + "name": "pause_circle_outline", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "search_off": { - "name": "search_off", + "airplay": { + "name": "airplay", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "segment": { - "name": "segment", + "add_to_queue": { + "name": "add_to_queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "send_and_archive": { - "name": "send_and_archive", + "9k": { + "name": "9k", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensors": { - "name": "sensors", + "10k": { + "name": "10k", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensors_off": { - "name": "sensors_off", + "audio_file": { + "name": "audio_file", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings": { - "name": "settings", + "3k_plus": { + "name": "3k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_accessibility": { - "name": "settings_accessibility", + "2k": { + "name": "2k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_applications": { - "name": "settings_applications", + "play_circle_filled": { + "name": "play_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_backup_restore": { - "name": "settings_backup_restore", + "high_quality": { + "name": "high_quality", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_bluetooth": { - "name": "settings_bluetooth", + "new_releases": { + "name": "new_releases", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_brightness": { - "name": "settings_brightness", + "queue_play_next": { + "name": "queue_play_next", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_cell": { - "name": "settings_cell", + "pause_circle": { + "name": "pause_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_ethernet": { - "name": "settings_ethernet", + "closed_caption_disabled": { + "name": "closed_caption_disabled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_antenna": { - "name": "settings_input_antenna", + "control_camera": { + "name": "control_camera", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_component": { - "name": "settings_input_component", + "games": { + "name": "games", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_composite": { - "name": "settings_input_composite", + "replay": { + "name": "replay", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_hdmi": { - "name": "settings_input_hdmi", + "call_to_action": { + "name": "call_to_action", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_svideo": { - "name": "settings_input_svideo", + "featured_video": { + "name": "featured_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_overscan": { - "name": "settings_overscan", + "volume_mute": { + "name": "volume_mute", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_phone": { - "name": "settings_phone", + "music_video": { + "name": "music_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_power": { - "name": "settings_power", + "mic_none": { + "name": "mic_none", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_remote": { - "name": "settings_remote", + "playlist_add_circle": { + "name": "playlist_add_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_voice": { - "name": "settings_voice", + "remove_from_queue": { + "name": "remove_from_queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shop": { - "name": "shop", + "web_asset": { + "name": "web_asset", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shopping_bag": { - "name": "shopping_bag", + "sort_by_alpha": { + "name": "sort_by_alpha", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shopping_basket": { - "name": "shopping_basket", + "6k": { + "name": "6k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shopping_cart": { - "name": "shopping_cart", + "7k_plus": { + "name": "7k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shop_2": { - "name": "shop_2", + "playlist_add_check": { + "name": "playlist_add_check", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shop_two": { - "name": "shop_two", + "fiber_pin": { + "name": "fiber_pin", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_button": { - "name": "smart_button", + "fiber_dvr": { + "name": "fiber_dvr", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "source": { - "name": "source", + "5k": { + "name": "5k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "space_dashboard": { - "name": "space_dashboard", + "4k_plus": { + "name": "4k_plus", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_notes": { - "name": "speaker_notes", + "sd": { + "name": "sd", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_notes_off": { - "name": "speaker_notes_off", + "replay_10": { + "name": "replay_10", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "spellcheck": { - "name": "spellcheck", + "8k": { + "name": "8k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stars": { - "name": "stars", + "stop": { + "name": "stop", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star_rate": { - "name": "star_rate", + "play_arrow": { + "name": "play_arrow", "keywords": [ - "action" + "av" ], "heights": { - "18": { - "width": 18, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sticky_note_2": { - "name": "sticky_note_2", + "9k_plus": { + "name": "9k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "store": { - "name": "store", + "av_timer": { + "name": "av_timer", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subject": { - "name": "subject", + "note": { + "name": "note", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subtitles_off": { - "name": "subtitles_off", + "repeat_one_on": { + "name": "repeat_one_on", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "supervised_user_circle": { - "name": "supervised_user_circle", + "video_label": { + "name": "video_label", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "supervisor_account": { - "name": "supervisor_account", + "fiber_manual_record": { + "name": "fiber_manual_record", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "support": { - "name": "support", + "explicit": { + "name": "explicit", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_horiz": { - "name": "swap_horiz", + "repeat": { + "name": "repeat", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_horizontal_circle": { - "name": "swap_horizontal_circle", + "forward_30": { + "name": "forward_30", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_vert": { - "name": "swap_vert", + "equalizer": { + "name": "equalizer", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_vertical_circle": { - "name": "swap_vertical_circle", + "play_circle_outline": { + "name": "play_circle_outline", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swipe": { - "name": "swipe", + "shuffle_on": { + "name": "shuffle_on", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync_alt": { - "name": "sync_alt", + "playlist_play": { + "name": "playlist_play", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_update_alt": { - "name": "system_update_alt", + "mic": { + "name": "mic", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tab": { - "name": "tab", + "6k_plus": { + "name": "6k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "table_view": { - "name": "table_view", + "7k": { + "name": "7k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tab_unselected": { - "name": "tab_unselected", + "play_circle": { + "name": "play_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "task_alt": { - "name": "task_alt", + "subscriptions": { + "name": "subscriptions", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotate_up": { - "name": "text_rotate_up", + "queue": { + "name": "queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotate_vertical": { - "name": "text_rotate_vertical", + "stop_circle": { + "name": "stop_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_angledown": { - "name": "text_rotation_angledown", + "5k_plus": { + "name": "5k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_angleup": { - "name": "text_rotation_angleup", + "video_file": { + "name": "video_file", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_down": { - "name": "text_rotation_down", + "branding_watermark": { + "name": "branding_watermark", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_none": { - "name": "text_rotation_none", + "replay_30": { + "name": "replay_30", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "theaters": { - "name": "theaters", + "recent_actors": { + "name": "recent_actors", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumbs_up_down": { - "name": "thumbs_up_down", + "fast_rewind": { + "name": "fast_rewind", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_down": { - "name": "thumb_down", + "play_disabled": { + "name": "play_disabled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_down_off_alt": { - "name": "thumb_down_off_alt", + "forward_5": { + "name": "forward_5", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_up": { - "name": "thumb_up", + "slow_motion_video": { + "name": "slow_motion_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_up_off_alt": { - "name": "thumb_up_off_alt", + "repeat_one": { + "name": "repeat_one", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timeline": { - "name": "timeline", + "playlist_add_check_circle": { + "name": "playlist_add_check_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tips_and_updates": { - "name": "tips_and_updates", + "fiber_new": { + "name": "fiber_new", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "toc": { - "name": "toc", + "video_library": { + "name": "video_library", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "today": { - "name": "today", + "video_settings": { + "name": "video_settings", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "toll": { - "name": "toll", + "forward_10": { + "name": "forward_10", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "touch_app": { - "name": "touch_app", + "playlist_remove": { + "name": "playlist_remove", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tour": { - "name": "tour", + "video_call": { + "name": "video_call", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "track_changes": { - "name": "track_changes", + "library_add_check": { + "name": "library_add_check", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "translate": { - "name": "translate", + "hearing": { + "name": "hearing", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "trending_down": { - "name": "trending_down", + "movie": { + "name": "movie", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "trending_flat": { - "name": "trending_flat", + "5g": { + "name": "5g", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "trending_up": { - "name": "trending_up", + "fast_forward": { + "name": "fast_forward", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "try": { - "name": "try", + "closed_caption_off": { + "name": "closed_caption_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "turned_in": { - "name": "turned_in", + "hearing_disabled": { + "name": "hearing_disabled", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "turned_in_not": { - "name": "turned_in_not", + "8k_plus": { + "name": "8k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unpublished": { - "name": "unpublished", + "2k_plus": { + "name": "2k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "update": { - "name": "update", + "skip_next": { + "name": "skip_next", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "update_disabled": { - "name": "update_disabled", + "replay_5": { + "name": "replay_5", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "upgrade": { - "name": "upgrade", + "1k": { + "name": "1k", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "verified": { - "name": "verified", + "web": { + "name": "web", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "verified_user": { - "name": "verified_user", + "playlist_add": { + "name": "playlist_add", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_split": { - "name": "vertical_split", + "volume_up": { + "name": "volume_up", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_agenda": { - "name": "view_agenda", + "missed_video_call": { + "name": "missed_video_call", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_array": { - "name": "view_array", + "library_add": { + "name": "library_add", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_carousel": { - "name": "view_carousel", + "surround_sound": { + "name": "surround_sound", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_column": { - "name": "view_column", + "skip_previous": { + "name": "skip_previous", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_day": { - "name": "view_day", + "mic_off": { + "name": "mic_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_headline": { - "name": "view_headline", + "pause_circle_filled": { + "name": "pause_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_in_ar": { - "name": "view_in_ar", + "library_music": { + "name": "library_music", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_list": { - "name": "view_list", + "videocam_off": { + "name": "videocam_off", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_module": { - "name": "view_module", + "repeat_on": { + "name": "repeat_on", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_quilt": { - "name": "view_quilt", + "library_books": { + "name": "library_books", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_sidebar": { - "name": "view_sidebar", + "loop": { + "name": "loop", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_stream": { - "name": "view_stream", + "interpreter_mode": { + "name": "interpreter_mode", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_week": { - "name": "view_week", + "pause": { + "name": "pause", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "visibility": { - "name": "visibility", + "volume_down": { + "name": "volume_down", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "visibility_off": { - "name": "visibility_off", + "videocam": { + "name": "videocam", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "voice_over_off": { - "name": "voice_over_off", + "web_asset_off": { + "name": "web_asset_off", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "watch_later": { - "name": "watch_later", + "shield_moon": { + "name": "shield_moon", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_protected_setup": { - "name": "wifi_protected_setup", + "sensor_window": { + "name": "sensor_window", "keywords": [ - "action" + "home" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "work": { - "name": "work", + "sensor_door": { + "name": "sensor_door", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "work_off": { - "name": "work_off", + "calendar_view_month": { + "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "work_outline": { - "name": "work_outline", + "density_large": { + "name": "density_large", "keywords": [ "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wysiwyg": { - "name": "wysiwyg", + "tips_and_updates": { + "name": "tips_and_updates", "keywords": [ "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "youtube_searched_for": { - "name": "youtube_searched_for", + "assignment_returned": { + "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "zoom_in": { - "name": "zoom_in", + "query_builder": { + "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "zoom_out": { - "name": "zoom_out", + "label_important_outline": { + "name": "label_important_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_alert": { - "name": "add_alert", + "view_agenda": { + "name": "view_agenda", "keywords": [ - "alert" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_delete": { - "name": "auto_delete", + "assured_workload": { + "name": "assured_workload", "keywords": [ - "alert" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "error": { - "name": "error", + "perm_device_information": { + "name": "perm_device_information", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "error_outline": { - "name": "error_outline", + "plagiarism": { + "name": "plagiarism", "keywords": [ - "alert" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "notification_important": { - "name": "notification_important", + "settings_remote": { + "name": "settings_remote", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "warning": { - "name": "warning", + "record_voice_over": { + "name": "record_voice_over", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "warning_amber": { - "name": "warning_amber", + "swap_horizontal_circle": { + "name": "swap_horizontal_circle", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "10k": { - "name": "10k", + "payment": { + "name": "payment", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "1k": { - "name": "1k", + "flip_to_front": { + "name": "flip_to_front", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "1k_plus": { - "name": "1k_plus", + "update": { + "name": "update", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "2k": { - "name": "2k", + "segment": { + "name": "segment", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "2k_plus": { - "name": "2k_plus", + "open_in_full": { + "name": "open_in_full", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "3k": { - "name": "3k", + "cached": { + "name": "cached", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "3k_plus": { - "name": "3k_plus", + "upgrade": { + "name": "upgrade", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "4k": { - "name": "4k", + "api": { + "name": "api", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4k_plus": { - "name": "4k_plus", + "book": { + "name": "book", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "5g": { - "name": "5g", + "view_sidebar": { + "name": "view_sidebar", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "5k": { - "name": "5k", + "accessibility_new": { + "name": "accessibility_new", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "5k_plus": { - "name": "5k_plus", + "highlight_off": { + "name": "highlight_off", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6k": { - "name": "6k", + "perm_phone_msg": { + "name": "perm_phone_msg", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6k_plus": { - "name": "6k_plus", + "g_translate": { + "name": "g_translate", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "7k": { - "name": "7k", + "lock_open": { + "name": "lock_open", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "7k_plus": { - "name": "7k_plus", + "redeem": { + "name": "redeem", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "8k": { - "name": "8k", + "feedback": { + "name": "feedback", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "8k_plus": { - "name": "8k_plus", + "dns": { + "name": "dns", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "9k": { - "name": "9k", + "mediation": { + "name": "mediation", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "9k_plus": { - "name": "9k_plus", + "view_compact_alt": { + "name": "view_compact_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_queue": { - "name": "add_to_queue", + "label_important": { + "name": "label_important", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplay": { - "name": "airplay", + "token": { + "name": "token", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "album": { - "name": "album", + "extension": { + "name": "extension", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "art_track": { - "name": "art_track", + "settings_cell": { + "name": "settings_cell", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "av_timer": { - "name": "av_timer", + "display_settings": { + "name": "display_settings", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "branding_watermark": { - "name": "branding_watermark", + "task_alt": { + "name": "task_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_to_action": { - "name": "call_to_action", + "http": { + "name": "http", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "closed_caption": { - "name": "closed_caption", + "today": { + "name": "today", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "closed_caption_disabled": { - "name": "closed_caption_disabled", + "settings_input_svideo": { + "name": "settings_input_svideo", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "closed_caption_off": { - "name": "closed_caption_off", + "input": { + "name": "input", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "control_camera": { - "name": "control_camera", + "commute": { + "name": "commute", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "equalizer": { - "name": "equalizer", + "view_quilt": { + "name": "view_quilt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "explicit": { - "name": "explicit", + "store": { + "name": "store", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fast_forward": { - "name": "fast_forward", + "play_for_work": { + "name": "play_for_work", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fast_rewind": { - "name": "fast_rewind", + "rounded_corner": { + "name": "rounded_corner", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "featured_play_list": { - "name": "featured_play_list", + "track_changes": { + "name": "track_changes", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "featured_video": { - "name": "featured_video", + "zoom_in": { + "name": "zoom_in", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_dvr": { - "name": "fiber_dvr", + "thumb_down": { + "name": "thumb_down", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_manual_record": { - "name": "fiber_manual_record", + "disabled_by_default": { + "name": "disabled_by_default", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_new": { - "name": "fiber_new", + "account_balance": { + "name": "account_balance", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_pin": { - "name": "fiber_pin", + "flutter_dash": { + "name": "flutter_dash", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_smart_record": { - "name": "fiber_smart_record", + "accessible_forward": { + "name": "accessible_forward", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_10": { - "name": "forward_10", + "text_rotation_angleup": { + "name": "text_rotation_angleup", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_30": { - "name": "forward_30", + "all_inbox": { + "name": "all_inbox", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_5": { - "name": "forward_5", + "saved_search": { + "name": "saved_search", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "games": { - "name": "games", + "switch_access_shortcut": { + "name": "switch_access_shortcut", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hd": { - "name": "hd", + "card_travel": { + "name": "card_travel", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hearing": { - "name": "hearing", + "perm_data_setting": { + "name": "perm_data_setting", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hearing_disabled": { - "name": "hearing_disabled", + "check_circle": { + "name": "check_circle", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "high_quality": { - "name": "high_quality", + "perm_scan_wifi": { + "name": "perm_scan_wifi", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_add": { - "name": "library_add", + "perm_camera_mic": { + "name": "perm_camera_mic", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_add_check": { - "name": "library_add_check", + "php": { + "name": "php", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_books": { - "name": "library_books", + "swap_horiz": { + "name": "swap_horiz", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_music": { - "name": "library_music", + "search_off": { + "name": "search_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "loop": { - "name": "loop", + "exit_to_app": { + "name": "exit_to_app", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic": { - "name": "mic", + "send_and_archive": { + "name": "send_and_archive", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_none": { - "name": "mic_none", + "outlet": { + "name": "outlet", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_off": { - "name": "mic_off", + "hide_source": { + "name": "hide_source", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "missed_video_call": { - "name": "missed_video_call", + "autorenew": { + "name": "autorenew", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "movie": { - "name": "movie", + "offline_pin": { + "name": "offline_pin", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "music_video": { - "name": "music_video", + "restore": { + "name": "restore", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "new_releases": { - "name": "new_releases", + "donut_large": { + "name": "donut_large", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "note": { - "name": "note", + "open_with": { + "name": "open_with", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_interested": { - "name": "not_interested", + "hls_off": { + "name": "hls_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause": { - "name": "pause", + "history": { + "name": "history", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_circle": { - "name": "pause_circle", + "percent": { + "name": "percent", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_circle_filled": { - "name": "pause_circle_filled", + "comment_bank": { + "name": "comment_bank", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_circle_outline": { - "name": "pause_circle_outline", + "sync_alt": { + "name": "sync_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "playlist_add": { - "name": "playlist_add", + "alarm_on": { + "name": "alarm_on", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "playlist_add_check": { - "name": "playlist_add_check", + "text_rotate_up": { + "name": "text_rotate_up", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "playlist_play": { - "name": "playlist_play", + "settings_power": { + "name": "settings_power", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_arrow": { - "name": "play_arrow", + "manage_accounts": { + "name": "manage_accounts", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_circle": { - "name": "play_circle", + "swipe_down_alt": { + "name": "swipe_down_alt", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_circle_filled": { - "name": "play_circle_filled", + "open_in_new_off": { + "name": "open_in_new_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_circle_outline": { - "name": "play_circle_outline", + "settings_input_component": { + "name": "settings_input_component", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_disabled": { - "name": "play_disabled", + "arrow_right_alt": { + "name": "arrow_right_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "queue": { - "name": "queue", + "no_accounts": { + "name": "no_accounts", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "queue_music": { - "name": "queue_music", + "css": { + "name": "css", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "queue_play_next": { - "name": "queue_play_next", + "highlight_alt": { + "name": "highlight_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radio": { - "name": "radio", + "pets": { + "name": "pets", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "recent_actors": { - "name": "recent_actors", + "done_outline": { + "name": "done_outline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_from_queue": { - "name": "remove_from_queue", + "date_range": { + "name": "date_range", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat": { - "name": "repeat", + "thumb_up_off_alt": { + "name": "thumb_up_off_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat_on": { - "name": "repeat_on", + "speaker_notes_off": { + "name": "speaker_notes_off", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat_one": { - "name": "repeat_one", + "home": { + "name": "home", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat_one_on": { - "name": "repeat_one_on", + "done": { + "name": "done", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay": { - "name": "replay", + "assignment_return": { + "name": "assignment_return", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_10": { - "name": "replay_10", + "swipe_left": { + "name": "swipe_left", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_30": { - "name": "replay_30", + "donut_small": { + "name": "donut_small", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_5": { - "name": "replay_5", + "settings_applications": { + "name": "settings_applications", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_circle_filled": { - "name": "replay_circle_filled", + "speaker_notes": { + "name": "speaker_notes", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd": { - "name": "sd", + "work_outline": { + "name": "work_outline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shuffle": { - "name": "shuffle", + "webhook": { + "name": "webhook", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shuffle_on": { - "name": "shuffle_on", + "cancel_schedule_send": { + "name": "cancel_schedule_send", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "skip_next": { - "name": "skip_next", + "flip_to_back": { + "name": "flip_to_back", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "skip_previous": { - "name": "skip_previous", + "logout": { + "name": "logout", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "slow_motion_video": { - "name": "slow_motion_video", + "join_right": { + "name": "join_right", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snooze": { - "name": "snooze", + "try": { + "name": "try", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sort_by_alpha": { - "name": "sort_by_alpha", + "satellite_alt": { + "name": "satellite_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speed": { - "name": "speed", + "picture_in_picture_alt": { + "name": "picture_in_picture_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stop": { - "name": "stop", + "calendar_view_day": { + "name": "calendar_view_day", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stop_circle": { - "name": "stop_circle", + "star_rate": { + "name": "star_rate", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" + }, + "18": { + "width": 18, + "path": "" } } }, - "subscriptions": { - "name": "subscriptions", + "translate": { + "name": "translate", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subtitles": { - "name": "subtitles", + "offline_bolt": { + "name": "offline_bolt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "surround_sound": { - "name": "surround_sound", + "visibility": { + "name": "visibility", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videocam": { - "name": "videocam", + "smart_button": { + "name": "smart_button", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videocam_off": { - "name": "videocam_off", + "lock": { + "name": "lock", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_call": { - "name": "video_call", + "view_in_ar": { + "name": "view_in_ar", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_label": { - "name": "video_label", + "timeline": { + "name": "timeline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_library": { - "name": "video_library", + "dashboard_customize": { + "name": "dashboard_customize", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_settings": { - "name": "video_settings", + "filter_alt_off": { + "name": "filter_alt_off", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_down": { - "name": "volume_down", + "flaky": { + "name": "flaky", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_mute": { - "name": "volume_mute", + "pregnant_woman": { + "name": "pregnant_woman", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_off": { - "name": "volume_off", + "text_rotate_vertical": { + "name": "text_rotate_vertical", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_up": { - "name": "volume_up", + "launch": { + "name": "launch", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "web": { - "name": "web", + "switch_access_shortcut_add": { + "name": "switch_access_shortcut_add", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "web_asset": { - "name": "web_asset", + "stars": { + "name": "stars", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "web_asset_off": { - "name": "web_asset_off", + "subtitles_off": { + "name": "subtitles_off", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "3p": { - "name": "3p", + "report_problem": { + "name": "report_problem", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_ic_call": { - "name": "add_ic_call", + "print": { + "name": "print", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alternate_email": { - "name": "alternate_email", + "view_module": { + "name": "view_module", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "app_registration": { - "name": "app_registration", + "view_cozy": { + "name": "view_cozy", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "business": { - "name": "business", + "update_disabled": { + "name": "update_disabled", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call": { - "name": "call", + "sticky_note_2": { + "name": "sticky_note_2", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_end": { - "name": "call_end", + "perm_media": { + "name": "perm_media", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_made": { - "name": "call_made", + "add_task": { + "name": "add_task", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_merge": { - "name": "call_merge", + "add_card": { + "name": "add_card", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_missed": { - "name": "call_missed", + "line_weight": { + "name": "line_weight", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_missed_outgoing": { - "name": "call_missed_outgoing", + "support": { + "name": "support", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_received": { - "name": "call_received", + "settings_bluetooth": { + "name": "settings_bluetooth", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_split": { - "name": "call_split", + "thumbs_up_down": { + "name": "thumbs_up_down", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cancel_presentation": { - "name": "cancel_presentation", + "explore": { + "name": "explore", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cell_wifi": { - "name": "cell_wifi", + "restore_from_trash": { + "name": "restore_from_trash", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chat": { - "name": "chat", + "backup_table": { + "name": "backup_table", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chat_bubble": { - "name": "chat_bubble", + "remove_done": { + "name": "remove_done", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chat_bubble_outline": { - "name": "chat_bubble_outline", + "settings": { + "name": "settings", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "clear_all": { - "name": "clear_all", - "keywords": [ - "communication" + "done_all": { + "name": "done_all", + "keywords": [ + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "comment": { - "name": "comment", + "data_exploration": { + "name": "data_exploration", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "contacts": { - "name": "contacts", + "outbond": { + "name": "outbond", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_mail": { - "name": "contact_mail", + "face_unlock": { + "name": "face_unlock", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_phone": { - "name": "contact_phone", + "card_membership": { + "name": "card_membership", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "desktop_access_disabled": { - "name": "desktop_access_disabled", + "search": { + "name": "search", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dialer_sip": { - "name": "dialer_sip", + "online_prediction": { + "name": "online_prediction", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dialpad": { - "name": "dialpad", + "power_settings_new": { + "name": "power_settings_new", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "document_scanner": { - "name": "document_scanner", + "perm_contact_calendar": { + "name": "perm_contact_calendar", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "domain_disabled": { - "name": "domain_disabled", + "hourglass_full": { + "name": "hourglass_full", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "domain_verification": { - "name": "domain_verification", + "density_medium": { + "name": "density_medium", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "duo": { - "name": "duo", + "chrome_reader_mode": { + "name": "chrome_reader_mode", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "email": { - "name": "email", + "assignment": { + "name": "assignment", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forum": { - "name": "forum", + "hls": { + "name": "hls", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_to_inbox": { - "name": "forward_to_inbox", + "swap_vert": { + "name": "swap_vert", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_bottom": { - "name": "hourglass_bottom", + "rocket_launch": { + "name": "rocket_launch", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_top": { - "name": "hourglass_top", + "contact_page": { + "name": "contact_page", "keywords": [ - "communication" + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "123": { + "name": "123", + "keywords": [ + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "import_contacts": { - "name": "import_contacts", + "maximize": { + "name": "maximize", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "import_export": { - "name": "import_export", + "voice_over_off": { + "name": "voice_over_off", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "invert_colors_off": { - "name": "invert_colors_off", + "hotel_class": { + "name": "hotel_class", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "list_alt": { - "name": "list_alt", + "turned_in_not": { + "name": "turned_in_not", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "live_help": { - "name": "live_help", + "visibility_off": { + "name": "visibility_off", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_off": { - "name": "location_off", + "supervised_user_circle": { + "name": "supervised_user_circle", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_on": { - "name": "location_on", + "3d_rotation": { + "name": "3d_rotation", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mail_outline": { - "name": "mail_outline", + "class": { + "name": "class", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_chat_read": { - "name": "mark_chat_read", + "app_shortcut": { + "name": "app_shortcut", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_chat_unread": { - "name": "mark_chat_unread", + "reorder": { + "name": "reorder", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_email_read": { - "name": "mark_email_read", + "swipe": { + "name": "swipe", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_email_unread": { - "name": "mark_email_unread", + "view_stream": { + "name": "view_stream", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "message": { - "name": "message", + "event": { + "name": "event", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobile_screen_share": { - "name": "mobile_screen_share", + "shop_2": { + "name": "shop_2", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "more_time": { - "name": "more_time", + "loyalty": { + "name": "loyalty", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nat": { - "name": "nat", + "outbound": { + "name": "outbound", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_sim": { - "name": "no_sim", + "drag_indicator": { + "name": "drag_indicator", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_presentation": { - "name": "pause_presentation", + "android": { + "name": "android", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add_disabled": { - "name": "person_add_disabled", + "build_circle": { + "name": "build_circle", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_search": { - "name": "person_search", + "lock_clock": { + "name": "lock_clock", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone": { - "name": "phone", + "add_to_drive": { + "name": "add_to_drive", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_erase": { - "name": "phonelink_erase", + "view_list": { + "name": "view_list", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_lock": { - "name": "phonelink_lock", + "watch_later": { + "name": "watch_later", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_ring": { - "name": "phonelink_ring", + "savings": { + "name": "savings", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_setup": { - "name": "phonelink_setup", + "terminal": { + "name": "terminal", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_disabled": { - "name": "phone_disabled", + "remove_shopping_cart": { + "name": "remove_shopping_cart", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_enabled": { - "name": "phone_enabled", + "calendar_today": { + "name": "calendar_today", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "portable_wifi_off": { - "name": "portable_wifi_off", + "balance": { + "name": "balance", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "present_to_all": { - "name": "present_to_all", + "compare_arrows": { + "name": "compare_arrows", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "print_disabled": { - "name": "print_disabled", + "assessment": { + "name": "assessment", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "qr_code": { - "name": "qr_code", + "sensors_off": { + "name": "sensors_off", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "qr_code_2": { - "name": "qr_code_2", + "settings_input_composite": { + "name": "settings_input_composite", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "qr_code_scanner": { - "name": "qr_code_scanner", + "filter_alt": { + "name": "filter_alt", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "read_more": { - "name": "read_more", + "aspect_ratio": { + "name": "aspect_ratio", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ring_volume": { - "name": "ring_volume", + "shopping_cart_checkout": { + "name": "shopping_cart_checkout", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rss_feed": { - "name": "rss_feed", + "line_style": { + "name": "line_style", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rtt": { - "name": "rtt", + "view_carousel": { + "name": "view_carousel", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_share": { - "name": "screen_share", + "swipe_left_alt": { + "name": "swipe_left_alt", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_satisfied_alt": { - "name": "sentiment_satisfied_alt", + "label_off": { + "name": "label_off", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sip": { - "name": "sip", + "html": { + "name": "html", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_phone": { - "name": "speaker_phone", + "work": { + "name": "work", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_current_landscape": { - "name": "stay_current_landscape", + "help": { + "name": "help", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_current_portrait": { - "name": "stay_current_portrait", + "pageview": { + "name": "pageview", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_primary_landscape": { - "name": "stay_primary_landscape", + "minimize": { + "name": "minimize", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_primary_portrait": { - "name": "stay_primary_portrait", + "assignment_late": { + "name": "assignment_late", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stop_screen_share": { - "name": "stop_screen_share", + "bookmark_add": { + "name": "bookmark_add", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_calls": { - "name": "swap_calls", + "description": { + "name": "description", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "textsms": { - "name": "textsms", + "face": { + "name": "face", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unsubscribe": { - "name": "unsubscribe", + "open_in_new": { + "name": "open_in_new", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "voicemail": { - "name": "voicemail", + "account_circle": { + "name": "account_circle", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vpn_key": { - "name": "vpn_key", + "text_rotation_down": { + "name": "text_rotation_down", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_calling": { - "name": "wifi_calling", + "youtube_searched_for": { + "name": "youtube_searched_for", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add": { - "name": "add", + "settings_backup_restore": { + "name": "settings_backup_restore", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_box": { - "name": "add_box", + "settings_phone": { + "name": "settings_phone", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_circle": { - "name": "add_circle", + "https": { + "name": "https", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_circle_outline": { - "name": "add_circle_outline", + "bookmark_added": { + "name": "bookmark_added", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_link": { - "name": "add_link", + "settings_input_hdmi": { + "name": "settings_input_hdmi", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "amp_stories": { - "name": "amp_stories", + "event_repeat": { + "name": "event_repeat", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "archive": { - "name": "archive", + "trending_flat": { + "name": "trending_flat", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attribution": { - "name": "attribution", + "build": { + "name": "build", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "backspace": { - "name": "backspace", + "preview": { + "name": "preview", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ballot": { - "name": "ballot", + "shopping_bag": { + "name": "shopping_bag", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "biotech": { - "name": "biotech", + "anchor": { + "name": "anchor", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "block": { - "name": "block", + "explore_off": { + "name": "explore_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bolt": { - "name": "bolt", + "all_out": { + "name": "all_out", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calculate": { - "name": "calculate", + "accessibility": { + "name": "accessibility", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "change_circle": { - "name": "change_circle", + "assignment_turned_in": { + "name": "assignment_turned_in", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "clear": { - "name": "clear", + "dashboard": { + "name": "dashboard", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_copy": { - "name": "content_copy", + "system_update_alt": { + "name": "system_update_alt", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_cut": { - "name": "content_cut", + "pinch": { + "name": "pinch", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_paste": { - "name": "content_paste", + "help_outline": { + "name": "help_outline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_paste_off": { - "name": "content_paste_off", + "text_rotation_none": { + "name": "text_rotation_none", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "copy_all": { - "name": "copy_all", + "account_balance_wallet": { + "name": "account_balance_wallet", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "create": { - "name": "create", + "markunread_mailbox": { + "name": "markunread_mailbox", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete_sweep": { - "name": "delete_sweep", + "spellcheck": { + "name": "spellcheck", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drafts": { - "name": "drafts", + "fingerprint": { + "name": "fingerprint", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dynamic_feed": { - "name": "dynamic_feed", + "open_in_browser": { + "name": "open_in_browser", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_copy": { - "name": "file_copy", + "ads_click": { + "name": "ads_click", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_list": { - "name": "filter_list", + "book_online": { + "name": "book_online", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flag": { - "name": "flag", + "subject": { + "name": "subject", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "font_download": { - "name": "font_download", + "swipe_right": { + "name": "swipe_right", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "font_download_off": { - "name": "font_download_off", + "swipe_down": { + "name": "swipe_down", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward": { - "name": "forward", + "arrow_circle_up": { + "name": "arrow_circle_up", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gesture": { - "name": "gesture", + "install_desktop": { + "name": "install_desktop", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "how_to_reg": { - "name": "how_to_reg", + "lightbulb_outline": { + "name": "lightbulb_outline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "how_to_vote": { - "name": "how_to_vote", + "polymer": { + "name": "polymer", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "inbox": { - "name": "inbox", + "code_off": { + "name": "code_off", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "insights": { - "name": "insights", + "edit_calendar": { + "name": "edit_calendar", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "inventory": { - "name": "inventory", + "list": { + "name": "list", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "inventory_2": { - "name": "inventory_2", + "euro_symbol": { + "name": "euro_symbol", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "link": { - "name": "link", + "shopping_basket": { + "name": "shopping_basket", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "link_off": { - "name": "link_off", + "hourglass_empty": { + "name": "hourglass_empty", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "low_priority": { - "name": "low_priority", + "grade": { + "name": "grade", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mail": { - "name": "mail", + "data_thresholding": { + "name": "data_thresholding", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "markunread": { - "name": "markunread", + "login": { + "name": "login", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "move_to_inbox": { - "name": "move_to_inbox", + "new_label": { + "name": "new_label", "keywords": [ - "content" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "next_week": { - "name": "next_week", - "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "outlined_flag": { - "name": "outlined_flag", + "lock_outline": { + "name": "lock_outline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "policy": { - "name": "policy", + "view_column": { + "name": "view_column", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "push_pin": { - "name": "push_pin", + "privacy_tip": { + "name": "privacy_tip", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "redo": { - "name": "redo", + "tab_unselected": { + "name": "tab_unselected", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove": { - "name": "remove", + "join_left": { + "name": "join_left", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_circle": { - "name": "remove_circle", + "nightlight_round": { + "name": "nightlight_round", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_circle_outline": { - "name": "remove_circle_outline", + "change_history": { + "name": "change_history", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reply": { - "name": "reply", + "view_headline": { + "name": "view_headline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reply_all": { - "name": "reply_all", + "alarm_off": { + "name": "alarm_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report": { - "name": "report", + "trending_up": { + "name": "trending_up", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report_gmailerrorred": { - "name": "report_gmailerrorred", + "alarm_add": { + "name": "alarm_add", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report_off": { - "name": "report_off", + "add_shopping_cart": { + "name": "add_shopping_cart", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "save": { - "name": "save", + "article": { + "name": "article", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "save_alt": { - "name": "save_alt", + "info": { + "name": "info", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "select_all": { - "name": "select_all", + "dynamic_form": { + "name": "dynamic_form", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "send": { - "name": "send", + "paid": { + "name": "paid", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shield": { - "name": "shield", + "edit_off": { + "name": "edit_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sort": { - "name": "sort", + "history_toggle_off": { + "name": "history_toggle_off", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "square_foot": { - "name": "square_foot", + "swipe_up_alt": { + "name": "swipe_up_alt", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "stacked_bar_chart": { - "name": "stacked_bar_chart", + "bookmarks": { + "name": "bookmarks", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stream": { - "name": "stream", + "verified": { + "name": "verified", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tag": { - "name": "tag", + "lock_reset": { + "name": "lock_reset", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_format": { - "name": "text_format", + "settings_overscan": { + "name": "settings_overscan", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unarchive": { - "name": "unarchive", + "eject": { + "name": "eject", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "undo": { - "name": "undo", + "trending_down": { + "name": "trending_down", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "upcoming": { - "name": "upcoming", + "question_answer": { + "name": "question_answer", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "waves": { - "name": "waves", + "turned_in": { + "name": "turned_in", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "weekend": { - "name": "weekend", + "settings_input_antenna": { + "name": "settings_input_antenna", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "where_to_vote": { - "name": "where_to_vote", - "keywords": [ - "content" + "request_page": { + "name": "request_page", + "keywords": [ + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "1x_mobiledata": { - "name": "1x_mobiledata", + "private_connectivity": { + "name": "private_connectivity", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "30fps": { - "name": "30fps", + "fax": { + "name": "fax", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "3g_mobiledata": { - "name": "3g_mobiledata", + "table_view": { + "name": "table_view", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4g_mobiledata": { - "name": "4g_mobiledata", + "swipe_right_alt": { + "name": "swipe_right_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "4g_plus_mobiledata": { - "name": "4g_plus_mobiledata", + "integration_instructions": { + "name": "integration_instructions", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "60fps": { - "name": "60fps", + "swipe_up": { + "name": "swipe_up", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_alarm": { - "name": "access_alarm", + "generating_tokens": { + "name": "generating_tokens", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_alarms": { - "name": "access_alarms", + "opacity": { + "name": "opacity", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_time": { - "name": "access_time", + "favorite": { + "name": "favorite", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_time_filled": { - "name": "access_time_filled", + "question_mark": { + "name": "question_mark", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_alarm": { - "name": "add_alarm", + "pin_end": { + "name": "pin_end", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_home_screen": { - "name": "add_to_home_screen", + "source": { + "name": "source", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ad_units": { - "name": "ad_units", + "info_outline": { + "name": "info_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "air": { - "name": "air", + "accessible": { + "name": "accessible", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplanemode_active": { - "name": "airplanemode_active", + "lightbulb": { + "name": "lightbulb", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplanemode_inactive": { - "name": "airplanemode_inactive", + "close_fullscreen": { + "name": "close_fullscreen", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplane_ticket": { - "name": "airplane_ticket", + "copyright": { + "name": "copyright", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "aod": { - "name": "aod", + "zoom_out": { + "name": "zoom_out", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_alert": { - "name": "battery_alert", + "vertical_split": { + "name": "vertical_split", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_charging_full": { - "name": "battery_charging_full", + "code": { + "name": "code", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_full": { - "name": "battery_full", + "group_work": { + "name": "group_work", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_saver": { - "name": "battery_saver", + "receipt": { + "name": "receipt", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_std": { - "name": "battery_std", + "restore_page": { + "name": "restore_page", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_unknown": { - "name": "battery_unknown", + "leaderboard": { + "name": "leaderboard", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bloodtype": { - "name": "bloodtype", + "view_timeline": { + "name": "view_timeline", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth": { - "name": "bluetooth", + "bug_report": { + "name": "bug_report", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_connected": { - "name": "bluetooth_connected", + "settings_voice": { + "name": "settings_voice", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_disabled": { - "name": "bluetooth_disabled", + "abc": { + "name": "abc", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_drive": { - "name": "bluetooth_drive", + "shopping_cart": { + "name": "shopping_cart", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_searching": { - "name": "bluetooth_searching", + "javascript": { + "name": "javascript", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_auto": { - "name": "brightness_auto", + "commit": { + "name": "commit", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_high": { - "name": "brightness_high", + "bookmark_remove": { + "name": "bookmark_remove", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_low": { - "name": "brightness_low", + "install_mobile": { + "name": "install_mobile", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_medium": { - "name": "brightness_medium", + "text_rotation_angledown": { + "name": "text_rotation_angledown", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cable": { - "name": "cable", + "fact_check": { + "name": "fact_check", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cameraswitch": { - "name": "cameraswitch", + "favorite_border": { + "name": "favorite_border", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "credit_score": { - "name": "credit_score", + "compress": { + "name": "compress", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dark_mode": { - "name": "dark_mode", + "important_devices": { + "name": "important_devices", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_saver_off": { - "name": "data_saver_off", + "swap_vertical_circle": { + "name": "swap_vertical_circle", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_saver_on": { - "name": "data_saver_on", + "pending_actions": { + "name": "pending_actions", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_usage": { - "name": "data_usage", + "sensors": { + "name": "sensors", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "developer_mode": { - "name": "developer_mode", + "work_off": { + "name": "work_off", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "devices": { - "name": "devices", + "wifi_protected_setup": { + "name": "wifi_protected_setup", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "device_thermostat": { - "name": "device_thermostat", + "card_giftcard": { + "name": "card_giftcard", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_on_total_silence": { - "name": "do_not_disturb_on_total_silence", + "pan_tool_alt": { + "name": "pan_tool_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dvr": { - "name": "dvr", + "credit_card_off": { + "name": "credit_card_off", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edgesensor_high": { - "name": "edgesensor_high", + "tab": { + "name": "tab", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edgesensor_low": { - "name": "edgesensor_low", + "tour": { + "name": "tour", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "e_mobiledata": { - "name": "e_mobiledata", + "next_plan": { + "name": "next_plan", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flashlight_off": { - "name": "flashlight_off", + "flight_land": { + "name": "flight_land", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flashlight_on": { - "name": "flashlight_on", + "rocket": { + "name": "rocket", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flourescent": { - "name": "flourescent", + "shop": { + "name": "shop", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fmd_bad": { - "name": "fmd_bad", + "model_training": { + "name": "model_training", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fmd_good": { - "name": "fmd_good", + "circle_notifications": { + "name": "circle_notifications", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gpp_bad": { - "name": "gpp_bad", + "rowing": { + "name": "rowing", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gpp_good": { - "name": "gpp_good", + "admin_panel_settings": { + "name": "admin_panel_settings", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gpp_maybe": { - "name": "gpp_maybe", + "fit_screen": { + "name": "fit_screen", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gps_fixed": { - "name": "gps_fixed", + "settings_accessibility": { + "name": "settings_accessibility", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gps_not_fixed": { - "name": "gps_not_fixed", + "expand": { + "name": "expand", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gps_off": { - "name": "gps_off", + "room": { + "name": "room", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "graphic_eq": { - "name": "graphic_eq", + "bookmark": { + "name": "bookmark", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_3x3": { - "name": "grid_3x3", + "touch_app": { + "name": "touch_app", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_4x4": { - "name": "grid_4x4", + "bookmark_border": { + "name": "bookmark_border", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_goldenratio": { - "name": "grid_goldenratio", + "event_seat": { + "name": "event_seat", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "g_mobiledata": { - "name": "g_mobiledata", + "view_kanban": { + "name": "view_kanban", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_auto": { - "name": "hdr_auto", + "arrow_circle_right": { + "name": "arrow_circle_right", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_auto_select": { - "name": "hdr_auto_select", + "supervisor_account": { + "name": "supervisor_account", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_off_select": { - "name": "hdr_off_select", + "rule": { + "name": "rule", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_on_select": { - "name": "hdr_on_select", + "help_center": { + "name": "help_center", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "h_mobiledata": { - "name": "h_mobiledata", + "assignment_ind": { + "name": "assignment_ind", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "h_plus_mobiledata": { - "name": "h_plus_mobiledata", + "view_comfy_alt": { + "name": "view_comfy_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lens_blur": { - "name": "lens_blur", + "pin_invoke": { + "name": "pin_invoke", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "light_mode": { - "name": "light_mode", + "delete_outline": { + "name": "delete_outline", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_disabled": { - "name": "location_disabled", + "not_started": { + "name": "not_started", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_searching": { - "name": "location_searching", + "outbox": { + "name": "outbox", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lte_mobiledata": { - "name": "lte_mobiledata", + "delete_forever": { + "name": "delete_forever", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lte_plus_mobiledata": { - "name": "lte_plus_mobiledata", + "app_blocking": { + "name": "app_blocking", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "media_bluetooth_off": { - "name": "media_bluetooth_off", + "quickreply": { + "name": "quickreply", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "media_bluetooth_on": { - "name": "media_bluetooth_on", + "arrow_circle_left": { + "name": "arrow_circle_left", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "medication": { - "name": "medication", + "alarm": { + "name": "alarm", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobiledata_off": { - "name": "mobiledata_off", + "schedule": { + "name": "schedule", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobile_friendly": { - "name": "mobile_friendly", + "density_small": { + "name": "density_small", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobile_off": { - "name": "mobile_off", + "gif": { + "name": "gif", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_night": { - "name": "mode_night", + "contact_support": { + "name": "contact_support", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_standby": { - "name": "mode_standby", + "swipe_vertical": { + "name": "swipe_vertical", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "monitor_weight": { - "name": "monitor_weight", + "production_quantity_limits": { + "name": "production_quantity_limits", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nearby_error": { - "name": "nearby_error", + "verified_user": { + "name": "verified_user", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nearby_off": { - "name": "nearby_off", + "get_app": { + "name": "get_app", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_cell": { - "name": "network_cell", + "published_with_changes": { + "name": "published_with_changes", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_wifi": { - "name": "network_wifi", + "note_add": { + "name": "note_add", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nfc": { - "name": "nfc", + "not_accessible": { + "name": "not_accessible", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nightlight": { - "name": "nightlight", + "credit_card": { + "name": "credit_card", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "note_alt": { - "name": "note_alt", + "thumb_up": { + "name": "thumb_up", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "password": { - "name": "password", + "shop_two": { + "name": "shop_two", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pattern": { - "name": "pattern", + "dangerous": { + "name": "dangerous", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin": { - "name": "pin", + "backup": { + "name": "backup", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_lesson": { - "name": "play_lesson", + "theaters": { + "name": "theaters", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "price_change": { - "name": "price_change", + "analytics": { + "name": "analytics", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "price_check": { - "name": "price_check", + "camera_enhance": { + "name": "camera_enhance", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "quiz": { - "name": "quiz", + "disabled_visible": { + "name": "disabled_visible", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "radar": { - "name": "radar", + "account_box": { + "name": "account_box", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remember_me": { - "name": "remember_me", + "find_in_page": { + "name": "find_in_page", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reset_tv": { - "name": "reset_tv", + "grading": { + "name": "grading", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "restart_alt": { - "name": "restart_alt", + "toll": { + "name": "toll", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reviews": { - "name": "reviews", + "label_outline": { + "name": "label_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rsvp": { - "name": "rsvp", + "file_present": { + "name": "file_present", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "r_mobiledata": { - "name": "r_mobiledata", + "pending": { + "name": "pending", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "screenshot": { - "name": "screenshot", + "calendar_view_week": { + "name": "calendar_view_week", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_lock_landscape": { - "name": "screen_lock_landscape", + "thumb_down_off_alt": { + "name": "thumb_down_off_alt", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_lock_portrait": { - "name": "screen_lock_portrait", + "arrow_circle_down": { + "name": "arrow_circle_down", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_lock_rotation": { - "name": "screen_lock_rotation", + "unpublished": { + "name": "unpublished", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_rotation": { - "name": "screen_rotation", + "view_day": { + "name": "view_day", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_search_desktop": { - "name": "screen_search_desktop", + "addchart": { + "name": "addchart", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd_storage": { - "name": "sd_storage", + "extension_off": { + "name": "extension_off", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "security_update": { - "name": "security_update", + "view_array": { + "name": "view_array", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "security_update_good": { - "name": "security_update_good", + "gavel": { + "name": "gavel", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "security_update_warning": { - "name": "security_update_warning", + "pan_tool": { + "name": "pan_tool", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sell": { - "name": "sell", + "invert_colors": { + "name": "invert_colors", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "send_to_mobile": { - "name": "send_to_mobile", + "picture_in_picture": { + "name": "picture_in_picture", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_suggest": { - "name": "settings_suggest", + "flight_takeoff": { + "name": "flight_takeoff", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_system_daydream": { - "name": "settings_system_daydream", + "announcement": { + "name": "announcement", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "share_location": { - "name": "share_location", + "language": { + "name": "language", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shortcut": { - "name": "shortcut", + "hourglass_disabled": { + "name": "hourglass_disabled", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_0_bar": { - "name": "signal_cellular_0_bar", + "mark_as_unread": { + "name": "mark_as_unread", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_4_bar": { - "name": "signal_cellular_4_bar", + "view_week": { + "name": "view_week", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_alt": { - "name": "signal_cellular_alt", + "wysiwyg": { + "name": "wysiwyg", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_connected_no_internet_0_bar": { - "name": "signal_cellular_connected_no_internet_0_bar", + "settings_brightness": { + "name": "settings_brightness", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_connected_no_internet_4_bar": { - "name": "signal_cellular_connected_no_internet_4_bar", + "currency_exchange": { + "name": "currency_exchange", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_nodata": { - "name": "signal_cellular_nodata", + "space_dashboard": { + "name": "space_dashboard", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_no_sim": { - "name": "signal_cellular_no_sim", + "settings_ethernet": { + "name": "settings_ethernet", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_null": { - "name": "signal_cellular_null", + "eco": { + "name": "eco", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_off": { - "name": "signal_cellular_off", + "find_replace": { + "name": "find_replace", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_0_bar": { - "name": "signal_wifi_0_bar", + "delete": { + "name": "delete", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_4_bar": { - "name": "signal_wifi_4_bar", + "gif_box": { + "name": "gif_box", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_4_bar_lock": { - "name": "signal_wifi_4_bar_lock", + "toc": { + "name": "toc", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_bad": { - "name": "signal_wifi_bad", + "perm_identity": { + "name": "perm_identity", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_connected_no_internet_4": { - "name": "signal_wifi_connected_no_internet_4", + "label": { + "name": "label", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_off": { - "name": "signal_wifi_off", + "batch_prediction": { + "name": "batch_prediction", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_4_bar": { - "name": "signal_wifi_statusbar_4_bar", + "horizontal_split": { + "name": "horizontal_split", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_connected_no_internet_4": { - "name": "signal_wifi_statusbar_connected_no_internet_4", + "contactless": { + "name": "contactless", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_null": { - "name": "signal_wifi_statusbar_null", + "join_full": { + "name": "join_full", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sim_card_download": { - "name": "sim_card_download", + "join_inner": { + "name": "join_inner", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "splitscreen": { - "name": "splitscreen", + "check_circle_outline": { + "name": "check_circle_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_score": { - "name": "sports_score", + "schedule_send": { + "name": "schedule_send", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "storage": { - "name": "storage", + "free_cancellation": { + "name": "free_cancellation", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "storm": { - "name": "storm", + "door_front": { + "name": "door_front", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "summarize": { - "name": "summarize", + "window": { + "name": "window", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_security_update": { - "name": "system_security_update", + "living": { + "name": "living", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_security_update_good": { - "name": "system_security_update_good", + "shower": { + "name": "shower", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_security_update_warning": { - "name": "system_security_update_warning", + "manage_search": { + "name": "manage_search", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "task": { - "name": "task", + "blender": { + "name": "blender", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thermostat": { - "name": "thermostat", + "coffee": { + "name": "coffee", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_10_select": { - "name": "timer_10_select", + "chair": { + "name": "chair", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_3_select": { - "name": "timer_3_select", + "door_back": { + "name": "door_back", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tungsten": { - "name": "tungsten", + "light": { + "name": "light", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "usb": { - "name": "usb", + "feed": { + "name": "feed", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "usb_off": { - "name": "usb_off", + "dining": { + "name": "dining", "keywords": [ - "device" + "search" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wallpaper": { - "name": "wallpaper", + "bedroom_child": { + "name": "bedroom_child", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "water": { - "name": "water", + "door_sliding": { + "name": "door_sliding", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "widgets": { - "name": "widgets", + "yard": { + "name": "yard", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_calling_3": { - "name": "wifi_calling_3", + "bedroom_parent": { + "name": "bedroom_parent", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_lock": { - "name": "wifi_lock", + "camera_outdoor": { + "name": "camera_outdoor", "keywords": [ - "device" + "search" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_tethering": { - "name": "wifi_tethering", + "bed": { + "name": "bed", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_tethering_error_rounded": { - "name": "wifi_tethering_error_rounded", + "camera_indoor": { + "name": "camera_indoor", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_tethering_off": { - "name": "wifi_tethering_off", + "bedroom_baby": { + "name": "bedroom_baby", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_chart": { - "name": "add_chart", + "garage": { + "name": "garage", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_comment": { - "name": "add_comment", + "table_bar": { + "name": "table_bar", "keywords": [ - "editor" + "search" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_horizontal_center": { - "name": "align_horizontal_center", + "flatware": { + "name": "flatware", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_horizontal_left": { - "name": "align_horizontal_left", + "coffee_maker": { + "name": "coffee_maker", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_horizontal_right": { - "name": "align_horizontal_right", + "bathroom": { + "name": "bathroom", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_vertical_bottom": { - "name": "align_vertical_bottom", + "podcasts": { + "name": "podcasts", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_vertical_center": { - "name": "align_vertical_center", + "table_restaurant": { + "name": "table_restaurant", "keywords": [ - "editor" + "search" ], "heights": { - "24": { + "20": { + "width": 20, + "path": "" + }, + "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_vertical_top": { - "name": "align_vertical_top", + "chair_alt": { + "name": "chair_alt", "keywords": [ - "editor" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "area_chart": { - "name": "area_chart", + "doorbell": { + "name": "doorbell", "keywords": [ - "editor" + "search" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "attach_file": { - "name": "attach_file", + "nightlight": { + "name": "nightlight", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attach_money": { - "name": "attach_money", + "security_update": { + "name": "security_update", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_graph": { - "name": "auto_graph", + "signal_wifi_4_bar": { + "name": "signal_wifi_4_bar", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bar_chart": { - "name": "bar_chart", + "medication": { + "name": "medication", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_all": { - "name": "border_all", + "devices": { + "name": "devices", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_bottom": { - "name": "border_bottom", + "bloodtype": { + "name": "bloodtype", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_clear": { - "name": "border_clear", + "battery_alert": { + "name": "battery_alert", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_color": { - "name": "border_color", + "shortcut": { + "name": "shortcut", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_horizontal": { - "name": "border_horizontal", + "screenshot": { + "name": "screenshot", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_inner": { - "name": "border_inner", + "brightness_high": { + "name": "brightness_high", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_left": { - "name": "border_left", + "network_wifi": { + "name": "network_wifi", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_outer": { - "name": "border_outer", + "lte_plus_mobiledata": { + "name": "lte_plus_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_right": { - "name": "border_right", + "play_lesson": { + "name": "play_lesson", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_style": { - "name": "border_style", + "wifi_tethering": { + "name": "wifi_tethering", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_top": { - "name": "border_top", + "share_location": { + "name": "share_location", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_vertical": { - "name": "border_vertical", + "aod": { + "name": "aod", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bubble_chart": { - "name": "bubble_chart", + "quiz": { + "name": "quiz", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "checklist": { - "name": "checklist", + "developer_mode": { + "name": "developer_mode", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "checklist_rtl": { - "name": "checklist_rtl", + "do_not_disturb_on_total_silence": { + "name": "do_not_disturb_on_total_silence", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "drag_handle": { - "name": "drag_handle", + "e_mobiledata": { + "name": "e_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "draw": { - "name": "draw", + "mobiledata_off": { + "name": "mobiledata_off", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_note": { - "name": "edit_note", + "data_usage": { + "name": "data_usage", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_center": { - "name": "format_align_center", + "storm": { + "name": "storm", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_justify": { - "name": "format_align_justify", + "60fps": { + "name": "60fps", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_left": { - "name": "format_align_left", + "gpp_good": { + "name": "gpp_good", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_right": { - "name": "format_align_right", + "screen_lock_landscape": { + "name": "screen_lock_landscape", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_bold": { - "name": "format_bold", - "keywords": [ - "editor" + "graphic_eq": { + "name": "graphic_eq", + "keywords": [ + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_clear": { - "name": "format_clear", + "nearby_error": { + "name": "nearby_error", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_color_fill": { - "name": "format_color_fill", + "bluetooth_searching": { + "name": "bluetooth_searching", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_color_reset": { - "name": "format_color_reset", + "sd_storage": { + "name": "sd_storage", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_color_text": { - "name": "format_color_text", + "mobile_off": { + "name": "mobile_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_indent_decrease": { - "name": "format_indent_decrease", + "signal_wifi_statusbar_connected_no_internet_4": { + "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_indent_increase": { - "name": "format_indent_increase", + "hdr_auto_select": { + "name": "hdr_auto_select", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_italic": { - "name": "format_italic", + "battery_std": { + "name": "battery_std", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_line_spacing": { - "name": "format_line_spacing", + "screen_lock_portrait": { + "name": "screen_lock_portrait", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_list_bulleted": { - "name": "format_list_bulleted", + "task": { + "name": "task", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_list_numbered": { - "name": "format_list_numbered", + "wifi_lock": { + "name": "wifi_lock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_list_numbered_rtl": { - "name": "format_list_numbered_rtl", + "water": { + "name": "water", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_paint": { - "name": "format_paint", + "grid_4x4": { + "name": "grid_4x4", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_quote": { - "name": "format_quote", + "gps_off": { + "name": "gps_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_shapes": { - "name": "format_shapes", + "phishing": { + "name": "phishing", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_size": { - "name": "format_size", + "cable": { + "name": "cable", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_strikethrough": { - "name": "format_strikethrough", + "fmd_bad": { + "name": "fmd_bad", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_textdirection_l_to_r": { - "name": "format_textdirection_l_to_r", + "brightness_medium": { + "name": "brightness_medium", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_textdirection_r_to_l": { - "name": "format_textdirection_r_to_l", + "airplanemode_active": { + "name": "airplanemode_active", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_underlined": { - "name": "format_underlined", + "gps_not_fixed": { + "name": "gps_not_fixed", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "functions": { - "name": "functions", + "widgets": { + "name": "widgets", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "height": { - "name": "height", + "access_time": { + "name": "access_time", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "highlight": { - "name": "highlight", + "wifi_tethering_error_rounded": { + "name": "wifi_tethering_error_rounded", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "horizontal_distribute": { - "name": "horizontal_distribute", + "tungsten": { + "name": "tungsten", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "horizontal_rule": { - "name": "horizontal_rule", + "3g_mobiledata": { + "name": "3g_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_chart": { - "name": "insert_chart", + "bluetooth_connected": { + "name": "bluetooth_connected", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_chart_outlined": { - "name": "insert_chart_outlined", + "punch_clock": { + "name": "punch_clock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_comment": { - "name": "insert_comment", + "g_mobiledata": { + "name": "g_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_drive_file": { - "name": "insert_drive_file", + "storage": { + "name": "storage", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_emoticon": { - "name": "insert_emoticon", + "media_bluetooth_on": { + "name": "media_bluetooth_on", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_invitation": { - "name": "insert_invitation", + "reviews": { + "name": "reviews", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_link": { - "name": "insert_link", + "signal_cellular_alt": { + "name": "signal_cellular_alt", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_photo": { - "name": "insert_photo", + "usb": { + "name": "usb", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "linear_scale": { - "name": "linear_scale", + "mode_standby": { + "name": "mode_standby", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "margin": { - "name": "margin", + "signal_wifi_off": { + "name": "signal_wifi_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "merge_type": { - "name": "merge_type", + "bluetooth_disabled": { + "name": "bluetooth_disabled", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode": { - "name": "mode", + "nfc": { + "name": "nfc", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_comment": { - "name": "mode_comment", + "signal_cellular_connected_no_internet_4_bar": { + "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_edit": { - "name": "mode_edit", + "system_security_update_good": { + "name": "system_security_update_good", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_edit_outline": { - "name": "mode_edit_outline", + "radar": { + "name": "radar", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "monetization_on": { - "name": "monetization_on", + "network_cell": { + "name": "network_cell", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "money_off": { - "name": "money_off", + "system_security_update": { + "name": "system_security_update", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "money_off_csred": { - "name": "money_off_csred", + "reset_tv": { + "name": "reset_tv", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "multiline_chart": { - "name": "multiline_chart", + "brightness_low": { + "name": "brightness_low", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notes": { - "name": "notes", + "signal_wifi_4_bar_lock": { + "name": "signal_wifi_4_bar_lock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "padding": { - "name": "padding", + "hdr_auto": { + "name": "hdr_auto", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pie_chart": { - "name": "pie_chart", + "battery_unknown": { + "name": "battery_unknown", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pie_chart_outline": { - "name": "pie_chart_outline", + "location_disabled": { + "name": "location_disabled", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "post_add": { - "name": "post_add", + "pattern": { + "name": "pattern", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "publish": { - "name": "publish", + "dvr": { + "name": "dvr", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "query_stats": { - "name": "query_stats", + "light_mode": { + "name": "light_mode", "keywords": [ - "editor" + "device" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "scatter_plot": { - "name": "scatter_plot", + "pin": { + "name": "pin", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "schema": { - "name": "schema", + "signal_cellular_0_bar": { + "name": "signal_cellular_0_bar", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "score": { - "name": "score", + "rsvp": { + "name": "rsvp", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "short_text": { - "name": "short_text", + "location_searching": { + "name": "location_searching", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "show_chart": { - "name": "show_chart", + "signal_cellular_4_bar": { + "name": "signal_cellular_4_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "space_bar": { - "name": "space_bar", + "security_update_warning": { + "name": "security_update_warning", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stacked_line_chart": { - "name": "stacked_line_chart", + "grid_goldenratio": { + "name": "grid_goldenratio", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "strikethrough_s": { - "name": "strikethrough_s", - "keywords": [ - "editor" + "wallpaper": { + "name": "wallpaper", + "keywords": [ + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subscript": { - "name": "subscript", + "sports_score": { + "name": "sports_score", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "superscript": { - "name": "superscript", + "media_bluetooth_off": { + "name": "media_bluetooth_off", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "table_chart": { - "name": "table_chart", + "screen_lock_rotation": { + "name": "screen_lock_rotation", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "table_rows": { - "name": "table_rows", + "gpp_maybe": { + "name": "gpp_maybe", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_fields": { - "name": "text_fields", + "battery_charging_full": { + "name": "battery_charging_full", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "title": { - "name": "title", + "dark_mode": { + "name": "dark_mode", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_align_bottom": { - "name": "vertical_align_bottom", + "wifi_tethering_off": { + "name": "wifi_tethering_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_align_center": { - "name": "vertical_align_center", + "signal_cellular_connected_no_internet_0_bar": { + "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_align_top": { - "name": "vertical_align_top", + "settings_suggest": { + "name": "settings_suggest", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_distribute": { - "name": "vertical_distribute", + "signal_wifi_bad": { + "name": "signal_wifi_bad", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wrap_text": { - "name": "wrap_text", + "medication_liquid": { + "name": "medication_liquid", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "approval": { - "name": "approval", + "wifi_password": { + "name": "wifi_password", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "attachment": { - "name": "attachment", + "1x_mobiledata": { + "name": "1x_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attach_email": { - "name": "attach_email", + "brightness_auto": { + "name": "brightness_auto", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud": { - "name": "cloud", + "usb_off": { + "name": "usb_off", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_circle": { - "name": "cloud_circle", + "mobile_friendly": { + "name": "mobile_friendly", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_done": { - "name": "cloud_done", + "send_to_mobile": { + "name": "send_to_mobile", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_download": { - "name": "cloud_download", + "wifi_calling_3": { + "name": "wifi_calling_3", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_off": { - "name": "cloud_off", + "wifi_channel": { + "name": "wifi_channel", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_queue": { - "name": "cloud_queue", + "data_saver_on": { + "name": "data_saver_on", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_upload": { - "name": "cloud_upload", + "fmd_good": { + "name": "fmd_good", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "create_new_folder": { - "name": "create_new_folder", + "r_mobiledata": { + "name": "r_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "download": { - "name": "download", + "signal_wifi_statusbar_null": { + "name": "signal_wifi_statusbar_null", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "downloading": { - "name": "downloading", + "timer_3_select": { + "name": "timer_3_select", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "download_done": { - "name": "download_done", + "edgesensor_high": { + "name": "edgesensor_high", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "download_for_offline": { - "name": "download_for_offline", + "4g_mobiledata": { + "name": "4g_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_move": { - "name": "drive_file_move", + "bluetooth_drive": { + "name": "bluetooth_drive", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_move_rtl": { - "name": "drive_file_move_rtl", + "hdr_off_select": { + "name": "hdr_off_select", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_rename_outline": { - "name": "drive_file_rename_outline", + "credit_score": { + "name": "credit_score", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_folder_upload": { - "name": "drive_folder_upload", + "sell": { + "name": "sell", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_download": { - "name": "file_download", + "gps_fixed": { + "name": "gps_fixed", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_download_done": { - "name": "file_download_done", + "access_alarm": { + "name": "access_alarm", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_download_off": { - "name": "file_download_off", + "h_mobiledata": { + "name": "h_mobiledata", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_upload": { - "name": "file_upload", + "data_saver_off": { + "name": "data_saver_off", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder": { - "name": "folder", + "price_check": { + "name": "price_check", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder_open": { - "name": "folder_open", + "h_plus_mobiledata": { + "name": "h_plus_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder_shared": { - "name": "folder_shared", + "airplanemode_inactive": { + "name": "airplanemode_inactive", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_view": { - "name": "grid_view", + "splitscreen": { + "name": "splitscreen", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "request_quote": { - "name": "request_quote", + "signal_cellular_null": { + "name": "signal_cellular_null", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rule_folder": { - "name": "rule_folder", + "gpp_bad": { + "name": "gpp_bad", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "snippet_folder": { - "name": "snippet_folder", + "edgesensor_low": { + "name": "edgesensor_low", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_snippet": { - "name": "text_snippet", + "flashlight_on": { + "name": "flashlight_on", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "topic": { - "name": "topic", + "ad_units": { + "name": "ad_units", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "upload": { - "name": "upload", + "mode_night": { + "name": "mode_night", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "upload_file": { - "name": "upload_file", + "flashlight_off": { + "name": "flashlight_off", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "workspaces": { - "name": "workspaces", + "ssid_chart": { + "name": "ssid_chart", "keywords": [ - "file" + "device" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "browser_not_supported": { - "name": "browser_not_supported", + "monitor_weight": { + "name": "monitor_weight", "keywords": [ - "hardware" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cast": { - "name": "cast", + "summarize": { + "name": "summarize", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cast_connected": { - "name": "cast_connected", + "airplane_ticket": { + "name": "airplane_ticket", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cast_for_education": { - "name": "cast_for_education", + "system_security_update_warning": { + "name": "system_security_update_warning", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "computer": { - "name": "computer", + "remember_me": { + "name": "remember_me", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "connected_tv": { - "name": "connected_tv", + "lan": { + "name": "lan", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "desktop_mac": { - "name": "desktop_mac", + "monitor_heart": { + "name": "monitor_heart", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "desktop_windows": { - "name": "desktop_windows", + "signal_cellular_no_sim": { + "name": "signal_cellular_no_sim", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "developer_board": { - "name": "developer_board", + "signal_wifi_connected_no_internet_4": { + "name": "signal_wifi_connected_no_internet_4", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "developer_board_off": { - "name": "developer_board_off", + "note_alt": { + "name": "note_alt", "keywords": [ - "hardware" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "devices_other": { - "name": "devices_other", + "timer_10_select": { + "name": "timer_10_select", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "device_hub": { - "name": "device_hub", - "keywords": [ - "hardware" + "screen_rotation": { + "name": "screen_rotation", + "keywords": [ + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "device_unknown": { - "name": "device_unknown", + "settings_system_daydream": { + "name": "settings_system_daydream", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dock": { - "name": "dock", + "price_change": { + "name": "price_change", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "earbuds": { - "name": "earbuds", + "cameraswitch": { + "name": "cameraswitch", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "earbuds_battery": { - "name": "earbuds_battery", + "bluetooth": { + "name": "bluetooth", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gamepad": { - "name": "gamepad", + "30fps": { + "name": "30fps", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headphones": { - "name": "headphones", + "add_alarm": { + "name": "add_alarm", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headphones_battery": { - "name": "headphones_battery", + "sim_card_download": { + "name": "sim_card_download", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headset": { - "name": "headset", + "thermostat": { + "name": "thermostat", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headset_mic": { - "name": "headset_mic", + "battery_saver": { + "name": "battery_saver", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headset_off": { - "name": "headset_off", + "signal_cellular_nodata": { + "name": "signal_cellular_nodata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_max": { - "name": "home_max", + "security_update_good": { + "name": "security_update_good", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_mini": { - "name": "home_mini", + "screen_search_desktop": { + "name": "screen_search_desktop", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard": { - "name": "keyboard", + "lte_mobiledata": { + "name": "lte_mobiledata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_alt": { - "name": "keyboard_alt", + "4g_plus_mobiledata": { + "name": "4g_plus_mobiledata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_down": { - "name": "keyboard_arrow_down", + "wifi_tethering_error": { + "name": "wifi_tethering_error", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_left": { - "name": "keyboard_arrow_left", + "air": { + "name": "air", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_right": { - "name": "keyboard_arrow_right", + "signal_wifi_0_bar": { + "name": "signal_wifi_0_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_up": { - "name": "keyboard_arrow_up", + "flourescent": { + "name": "flourescent", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_backspace": { - "name": "keyboard_backspace", + "access_alarms": { + "name": "access_alarms", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_capslock": { - "name": "keyboard_capslock", + "access_time_filled": { + "name": "access_time_filled", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_hide": { - "name": "keyboard_hide", + "signal_wifi_statusbar_4_bar": { + "name": "signal_wifi_statusbar_4_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_return": { - "name": "keyboard_return", + "wifi_find": { + "name": "wifi_find", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_tab": { - "name": "keyboard_tab", + "battery_full": { + "name": "battery_full", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_voice": { - "name": "keyboard_voice", + "add_to_home_screen": { + "name": "add_to_home_screen", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop": { - "name": "laptop", + "lens_blur": { + "name": "lens_blur", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop_chromebook": { - "name": "laptop_chromebook", + "hdr_on_select": { + "name": "hdr_on_select", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop_mac": { - "name": "laptop_mac", + "signal_cellular_off": { + "name": "signal_cellular_off", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop_windows": { - "name": "laptop_windows", + "restart_alt": { + "name": "restart_alt", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "memory": { - "name": "memory", + "device_thermostat": { + "name": "device_thermostat", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "monitor": { - "name": "monitor", + "nearby_off": { + "name": "nearby_off", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mouse": { - "name": "mouse", + "grid_3x3": { + "name": "grid_3x3", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink": { - "name": "phonelink", + "password": { + "name": "password", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_off": { - "name": "phonelink_off", + "stroller": { + "name": "stroller", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_android": { - "name": "phone_android", + "fence": { + "name": "fence", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_iphone": { - "name": "phone_iphone", + "do_not_touch": { + "name": "do_not_touch", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "point_of_sale": { - "name": "point_of_sale", + "houseboat": { + "name": "houseboat", "keywords": [ - "hardware" + "places" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "power_input": { - "name": "power_input", + "grass": { + "name": "grass", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "router": { - "name": "router", + "storefront": { + "name": "storefront", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "scanner": { - "name": "scanner", + "apartment": { + "name": "apartment", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "security": { - "name": "security", + "house_siding": { + "name": "house_siding", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sim_card": { - "name": "sim_card", + "gite": { + "name": "gite", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "smartphone": { - "name": "smartphone", + "casino": { + "name": "casino", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_display": { - "name": "smart_display", + "bungalow": { + "name": "bungalow", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_screen": { - "name": "smart_screen", + "no_drinks": { + "name": "no_drinks", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_toy": { - "name": "smart_toy", + "elevator": { + "name": "elevator", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker": { - "name": "speaker", + "child_friendly": { + "name": "child_friendly", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_group": { - "name": "speaker_group", + "fitness_center": { + "name": "fitness_center", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tablet": { - "name": "tablet", + "smoke_free": { + "name": "smoke_free", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tablet_android": { - "name": "tablet_android", + "smoking_rooms": { + "name": "smoking_rooms", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tablet_mac": { - "name": "tablet_mac", + "tapas": { + "name": "tapas", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "toys": { - "name": "toys", + "microwave": { + "name": "microwave", "keywords": [ - "hardware" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tv": { - "name": "tv", + "foundation": { + "name": "foundation", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videogame_asset": { - "name": "videogame_asset", + "no_meeting_room": { + "name": "no_meeting_room", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videogame_asset_off": { - "name": "videogame_asset_off", + "spa": { + "name": "spa", "keywords": [ - "hardware" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "watch": { - "name": "watch", + "other_houses": { + "name": "other_houses", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensor_door": { - "name": "sensor_door", + "roofing": { + "name": "roofing", "keywords": [ - "home" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensor_window": { - "name": "sensor_window", + "pool": { + "name": "pool", "keywords": [ - "home" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "10mp": { - "name": "10mp", + "food_bank": { + "name": "food_bank", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "11mp": { - "name": "11mp", + "stairs": { + "name": "stairs", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "12mp": { - "name": "12mp", + "no_stroller": { + "name": "no_stroller", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "13mp": { - "name": "13mp", + "meeting_room": { + "name": "meeting_room", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "14mp": { - "name": "14mp", + "fire_extinguisher": { + "name": "fire_extinguisher", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "15mp": { - "name": "15mp", + "no_cell": { + "name": "no_cell", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "16mp": { - "name": "16mp", + "all_inclusive": { + "name": "all_inclusive", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "17mp": { - "name": "17mp", + "charging_station": { + "name": "charging_station", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "18mp": { - "name": "18mp", + "dry": { + "name": "dry", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "19mp": { - "name": "19mp", + "countertops": { + "name": "countertops", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "20mp": { - "name": "20mp", + "child_care": { + "name": "child_care", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "21mp": { - "name": "21mp", + "beach_access": { + "name": "beach_access", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "22mp": { - "name": "22mp", + "no_photography": { + "name": "no_photography", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "23mp": { - "name": "23mp", + "ac_unit": { + "name": "ac_unit", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "24mp": { - "name": "24mp", + "rv_hookup": { + "name": "rv_hookup", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "2mp": { - "name": "2mp", + "holiday_village": { + "name": "holiday_village", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "30fps_select": { - "name": "30fps_select", + "family_restroom": { + "name": "family_restroom", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "3mp": { - "name": "3mp", + "wheelchair_pickup": { + "name": "wheelchair_pickup", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4mp": { - "name": "4mp", + "room_preferences": { + "name": "room_preferences", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "5mp": { - "name": "5mp", + "no_backpack": { + "name": "no_backpack", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "60fps_select": { - "name": "60fps_select", + "business_center": { + "name": "business_center", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6mp": { - "name": "6mp", + "tty": { + "name": "tty", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "7mp": { - "name": "7mp", + "airport_shuttle": { + "name": "airport_shuttle", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "8mp": { - "name": "8mp", + "cottage": { + "name": "cottage", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "9mp": { - "name": "9mp", + "rice_bowl": { + "name": "rice_bowl", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_a_photo": { - "name": "add_a_photo", + "soap": { + "name": "soap", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_photo_alternate": { - "name": "add_photo_alternate", + "chalet": { + "name": "chalet", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_photos": { - "name": "add_to_photos", + "do_not_step": { + "name": "do_not_step", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "adjust": { - "name": "adjust", + "checkroom": { + "name": "checkroom", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "animation": { - "name": "animation", + "backpack": { + "name": "backpack", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assistant": { - "name": "assistant", + "sports_bar": { + "name": "sports_bar", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "assistant_photo": { - "name": "assistant_photo", + "hot_tub": { + "name": "hot_tub", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "audiotrack": { - "name": "audiotrack", + "iron": { + "name": "iron", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "autofps_select": { - "name": "autofps_select", + "bathtub": { + "name": "bathtub", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_awesome": { - "name": "auto_awesome", + "umbrella": { + "name": "umbrella", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_awesome_mosaic": { - "name": "auto_awesome_mosaic", + "baby_changing_station": { + "name": "baby_changing_station", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_awesome_motion": { - "name": "auto_awesome_motion", + "crib": { + "name": "crib", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_fix_high": { - "name": "auto_fix_high", + "golf_course": { + "name": "golf_course", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_fix_normal": { - "name": "auto_fix_normal", + "wash": { + "name": "wash", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_fix_off": { - "name": "auto_fix_off", + "no_flash": { + "name": "no_flash", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_stories": { - "name": "auto_stories", + "carpenter": { + "name": "carpenter", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedtime": { - "name": "bedtime", + "balcony": { + "name": "balcony", "keywords": [ - "image" + "places" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_circular": { - "name": "blur_circular", + "kitchen": { + "name": "kitchen", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_linear": { - "name": "blur_linear", + "escalator_warning": { + "name": "escalator_warning", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_off": { - "name": "blur_off", + "house": { + "name": "house", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_on": { - "name": "blur_on", + "escalator": { + "name": "escalator", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_1": { - "name": "brightness_1", + "free_breakfast": { + "name": "free_breakfast", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_2": { - "name": "brightness_2", + "corporate_fare": { + "name": "corporate_fare", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_3": { - "name": "brightness_3", + "no_food": { + "name": "no_food", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_4": { - "name": "brightness_4", + "night_shelter": { + "name": "night_shelter", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_5": { - "name": "brightness_5", + "bento": { + "name": "bento", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_6": { - "name": "brightness_6", + "cabin": { + "name": "cabin", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_7": { - "name": "brightness_7", + "water_damage": { + "name": "water_damage", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "broken_image": { - "name": "broken_image", + "room_service": { + "name": "room_service", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brush": { - "name": "brush", + "villa": { + "name": "villa", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "burst_mode": { - "name": "burst_mode", + "mood": { + "name": "mood", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera": { - "name": "camera", + "snowboarding": { + "name": "snowboarding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_alt": { - "name": "camera_alt", + "whatsapp": { + "name": "whatsapp", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_front": { - "name": "camera_front", + "safety_divider": { + "name": "safety_divider", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_rear": { - "name": "camera_rear", + "people": { + "name": "people", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_roll": { - "name": "camera_roll", + "history_edu": { + "name": "history_edu", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cases": { - "name": "cases", + "pages": { + "name": "pages", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "center_focus_strong": { - "name": "center_focus_strong", + "groups": { + "name": "groups", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "center_focus_weak": { - "name": "center_focus_weak", + "sentiment_neutral": { + "name": "sentiment_neutral", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "circle": { - "name": "circle", + "cookie": { + "name": "cookie", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "collections": { - "name": "collections", + "sports_hockey": { + "name": "sports_hockey", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "collections_bookmark": { - "name": "collections_bookmark", + "workspace_premium": { + "name": "workspace_premium", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "colorize": { - "name": "colorize", + "sentiment_very_dissatisfied": { + "name": "sentiment_very_dissatisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "color_lens": { - "name": "color_lens", + "sports_soccer": { + "name": "sports_soccer", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "compare": { - "name": "compare", + "sledding": { + "name": "sledding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "control_point": { - "name": "control_point", + "emoji_symbols": { + "name": "emoji_symbols", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "control_point_duplicate": { - "name": "control_point_duplicate", + "emoji_nature": { + "name": "emoji_nature", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop": { - "name": "crop", + "sports_handball": { + "name": "sports_handball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_16_9": { - "name": "crop_16_9", + "follow_the_signs": { + "name": "follow_the_signs", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_3_2": { - "name": "crop_3_2", + "sports_basketball": { + "name": "sports_basketball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_5_4": { - "name": "crop_5_4", + "pix": { + "name": "pix", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_7_5": { - "name": "crop_7_5", + "hiking": { + "name": "hiking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_din": { - "name": "crop_din", + "sports_martial_arts": { + "name": "sports_martial_arts", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_free": { - "name": "crop_free", + "construction": { + "name": "construction", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_landscape": { - "name": "crop_landscape", + "public_off": { + "name": "public_off", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_original": { - "name": "crop_original", + "sports_tennis": { + "name": "sports_tennis", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_portrait": { - "name": "crop_portrait", + "group_add": { + "name": "group_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_rotate": { - "name": "crop_rotate", + "poll": { + "name": "poll", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_square": { - "name": "crop_square", + "military_tech": { + "name": "military_tech", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dehaze": { - "name": "dehaze", + "connect_without_contact": { + "name": "connect_without_contact", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "details": { - "name": "details", + "recommend": { + "name": "recommend", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dirty_lens": { - "name": "dirty_lens", + "king_bed": { + "name": "king_bed", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit": { - "name": "edit", + "skateboarding": { + "name": "skateboarding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "euro": { - "name": "euro", + "facebook": { + "name": "facebook", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure": { - "name": "exposure", + "man": { + "name": "man", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_neg_1": { - "name": "exposure_neg_1", + "school": { + "name": "school", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_neg_2": { - "name": "exposure_neg_2", + "female": { + "name": "female", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_plus_1": { - "name": "exposure_plus_1", + "notifications": { + "name": "notifications", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_plus_2": { - "name": "exposure_plus_2", + "notifications_paused": { + "name": "notifications_paused", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_zero": { - "name": "exposure_zero", + "reduce_capacity": { + "name": "reduce_capacity", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "face_retouching_natural": { - "name": "face_retouching_natural", + "sports_esports": { + "name": "sports_esports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "face_retouching_off": { - "name": "face_retouching_off", + "thumb_down_alt": { + "name": "thumb_down_alt", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter": { - "name": "filter", + "ios_share": { + "name": "ios_share", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_1": { - "name": "filter_1", + "sports_volleyball": { + "name": "sports_volleyball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_2": { - "name": "filter_2", + "sports_golf": { + "name": "sports_golf", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_3": { - "name": "filter_3", + "sentiment_satisfied": { + "name": "sentiment_satisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_4": { - "name": "filter_4", + "kitesurfing": { + "name": "kitesurfing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_5": { - "name": "filter_5", + "add_moderator": { + "name": "add_moderator", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_6": { - "name": "filter_6", + "emoji_events": { + "name": "emoji_events", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_7": { - "name": "filter_7", + "psychology": { + "name": "psychology", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_8": { - "name": "filter_8", + "outdoor_grill": { + "name": "outdoor_grill", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_9": { - "name": "filter_9", + "heart_broken": { + "name": "heart_broken", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_9_plus": { - "name": "filter_9_plus", + "sentiment_very_satisfied": { + "name": "sentiment_very_satisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_b_and_w": { - "name": "filter_b_and_w", + "fitbit": { + "name": "fitbit", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_center_focus": { - "name": "filter_center_focus", + "transgender": { + "name": "transgender", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_drama": { - "name": "filter_drama", + "piano": { + "name": "piano", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_frames": { - "name": "filter_frames", + "whatshot": { + "name": "whatshot", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_hdr": { - "name": "filter_hdr", + "sanitizer": { + "name": "sanitizer", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_none": { - "name": "filter_none", + "person_add": { + "name": "person_add", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_tilt_shift": { - "name": "filter_tilt_shift", + "share": { + "name": "share", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_vintage": { - "name": "filter_vintage", + "emoji_objects": { + "name": "emoji_objects", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flare": { - "name": "flare", + "male": { + "name": "male", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flash_auto": { - "name": "flash_auto", + "piano_off": { + "name": "piano_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flash_off": { - "name": "flash_off", + "architecture": { + "name": "architecture", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flash_on": { - "name": "flash_on", + "science": { + "name": "science", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip": { - "name": "flip", + "surfing": { + "name": "surfing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_camera_android": { - "name": "flip_camera_android", + "person_add_alt_1": { + "name": "person_add_alt_1", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_camera_ios": { - "name": "flip_camera_ios", + "co2": { + "name": "co2", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gradient": { - "name": "gradient", + "public": { + "name": "public", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grain": { - "name": "grain", + "luggage": { + "name": "luggage", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_off": { - "name": "grid_off", + "emoji_food_beverage": { + "name": "emoji_food_beverage", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_on": { - "name": "grid_on", + "personal_injury": { + "name": "personal_injury", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_enhanced_select": { - "name": "hdr_enhanced_select", + "person_add_alt": { + "name": "person_add_alt", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_off": { - "name": "hdr_off", + "person_remove_alt_1": { + "name": "person_remove_alt_1", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_on": { - "name": "hdr_on", + "engineering": { + "name": "engineering", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_plus": { - "name": "hdr_plus", + "group_remove": { + "name": "group_remove", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_strong": { - "name": "hdr_strong", + "party_mode": { + "name": "party_mode", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_weak": { - "name": "hdr_weak", + "sports_football": { + "name": "sports_football", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "healing": { - "name": "healing", + "downhill_skiing": { + "name": "downhill_skiing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hevc": { - "name": "hevc", + "coronavirus": { + "name": "coronavirus", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hide_image": { - "name": "hide_image", + "thumb_up_alt": { + "name": "thumb_up_alt", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "image": { - "name": "image", + "people_outline": { + "name": "people_outline", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "image_aspect_ratio": { - "name": "image_aspect_ratio", + "south_america": { + "name": "south_america", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "image_not_supported": { - "name": "image_not_supported", + "paragliding": { + "name": "paragliding", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "image_search": { - "name": "image_search", + "single_bed": { + "name": "single_bed", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "incomplete_circle": { - "name": "incomplete_circle", + "boy": { + "name": "boy", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "iso": { - "name": "iso", + "person_remove": { + "name": "person_remove", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "landscape": { - "name": "landscape", + "front_hand": { + "name": "front_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "leak_add": { - "name": "leak_add", + "sick": { + "name": "sick", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "leak_remove": { - "name": "leak_remove", + "elderly": { + "name": "elderly", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lens": { - "name": "lens", + "girl": { + "name": "girl", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "linked_camera": { - "name": "linked_camera", + "kayaking": { + "name": "kayaking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks": { - "name": "looks", + "add_reaction": { + "name": "add_reaction", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_3": { - "name": "looks_3", + "sports_kabaddi": { + "name": "sports_kabaddi", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_4": { - "name": "looks_4", + "recycling": { + "name": "recycling", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_5": { - "name": "looks_5", + "nordic_walking": { + "name": "nordic_walking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_6": { - "name": "looks_6", + "sentiment_dissatisfied": { + "name": "sentiment_dissatisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_one": { - "name": "looks_one", + "fireplace": { + "name": "fireplace", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_two": { - "name": "looks_two", + "person_off": { + "name": "person_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "loupe": { - "name": "loupe", + "masks": { + "name": "masks", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_external_off": { - "name": "mic_external_off", + "back_hand": { + "name": "back_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_external_on": { - "name": "mic_external_on", + "compost": { + "name": "compost", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "monochrome_photos": { - "name": "monochrome_photos", + "water_drop": { + "name": "water_drop", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_auto": { - "name": "motion_photos_auto", + "catching_pokemon": { + "name": "catching_pokemon", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_off": { - "name": "motion_photos_off", + "sports_cricket": { + "name": "sports_cricket", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_on": { - "name": "motion_photos_on", + "location_city": { + "name": "location_city", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_pause": { - "name": "motion_photos_pause", + "person_outline": { + "name": "person_outline", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_paused": { - "name": "motion_photos_paused", + "plus_one": { + "name": "plus_one", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "movie_creation": { - "name": "movie_creation", + "nights_stay": { + "name": "nights_stay", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "movie_filter": { - "name": "movie_filter", + "notifications_off": { + "name": "notifications_off", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mp": { - "name": "mp", + "emoji_transportation": { + "name": "emoji_transportation", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "music_note": { - "name": "music_note", + "notifications_active": { + "name": "notifications_active", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "music_off": { - "name": "music_off", + "ice_skating": { + "name": "ice_skating", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nature": { - "name": "nature", + "sports_rugby": { + "name": "sports_rugby", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nature_people": { - "name": "nature_people", + "woman": { + "name": "woman", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "navigate_before": { - "name": "navigate_before", + "group": { + "name": "group", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "navigate_next": { - "name": "navigate_next", + "group_off": { + "name": "group_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "palette": { - "name": "palette", + "scale": { + "name": "scale", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama": { - "name": "panorama", + "no_luggage": { + "name": "no_luggage", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_fish_eye": { - "name": "panorama_fish_eye", + "clean_hands": { + "name": "clean_hands", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_horizontal": { - "name": "panorama_horizontal", + "real_estate_agent": { + "name": "real_estate_agent", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_horizontal_select": { - "name": "panorama_horizontal_select", + "waving_hand": { + "name": "waving_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_photosphere": { - "name": "panorama_photosphere", + "vaccines": { + "name": "vaccines", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_photosphere_select": { - "name": "panorama_photosphere_select", + "switch_account": { + "name": "switch_account", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_vertical": { - "name": "panorama_vertical", + "snowshoeing": { + "name": "snowshoeing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_vertical_select": { - "name": "panorama_vertical_select", + "sports_motorsports": { + "name": "sports_motorsports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_wide_angle": { - "name": "panorama_wide_angle", + "travel_explore": { + "name": "travel_explore", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_wide_angle_select": { - "name": "panorama_wide_angle_select", + "cruelty_free": { + "name": "cruelty_free", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo": { - "name": "photo", + "notifications_none": { + "name": "notifications_none", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_album": { - "name": "photo_album", + "precision_manufacturing": { + "name": "precision_manufacturing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_camera": { - "name": "photo_camera", + "elderly_woman": { + "name": "elderly_woman", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_camera_back": { - "name": "photo_camera_back", + "social_distance": { + "name": "social_distance", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_camera_front": { - "name": "photo_camera_front", - "keywords": [ - "image" + "cake": { + "name": "cake", + "keywords": [ + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_filter": { - "name": "photo_filter", + "interests": { + "name": "interests", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_library": { - "name": "photo_library", + "edit_notifications": { + "name": "edit_notifications", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_size_select_actual": { - "name": "photo_size_select_actual", + "emoji_emotions": { + "name": "emoji_emotions", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_size_select_large": { - "name": "photo_size_select_large", + "notification_add": { + "name": "notification_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_size_select_small": { - "name": "photo_size_select_small", + "mood_bad": { + "name": "mood_bad", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "picture_as_pdf": { - "name": "picture_as_pdf", + "person": { + "name": "person", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "portrait": { - "name": "portrait", + "remove_moderator": { + "name": "remove_moderator", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "raw_off": { - "name": "raw_off", + "6_ft_apart": { + "name": "6_ft_apart", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "raw_on": { - "name": "raw_on", + "deck": { + "name": "deck", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "receipt_long": { - "name": "receipt_long", + "sports": { + "name": "sports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_red_eye": { - "name": "remove_red_eye", + "sports_baseball": { + "name": "sports_baseball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rotate_90_degrees_ccw": { - "name": "rotate_90_degrees_ccw", + "people_alt": { + "name": "people_alt", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rotate_left": { - "name": "rotate_left", + "hive": { + "name": "hive", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rotate_right": { - "name": "rotate_right", + "self_improvement": { + "name": "self_improvement", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shutter_speed": { - "name": "shutter_speed", + "domain_add": { + "name": "domain_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "slideshow": { - "name": "slideshow", + "health_and_safety": { + "name": "health_and_safety", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "straighten": { - "name": "straighten", + "emoji_flags": { + "name": "emoji_flags", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "style": { - "name": "style", + "domain": { + "name": "domain", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_camera": { - "name": "switch_camera", + "sports_mma": { + "name": "sports_mma", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_video": { - "name": "switch_video", + "emoji_people": { + "name": "emoji_people", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tag_faces": { - "name": "tag_faces", + "unsubscribe": { + "name": "unsubscribe", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "texture": { - "name": "texture", + "rss_feed": { + "name": "rss_feed", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thermostat_auto": { - "name": "thermostat_auto", + "forum": { + "name": "forum", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timelapse": { - "name": "timelapse", + "call_received": { + "name": "call_received", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer": { - "name": "timer", + "wifi_calling": { + "name": "wifi_calling", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_10": { - "name": "timer_10", + "portable_wifi_off": { + "name": "portable_wifi_off", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_3": { - "name": "timer_3", + "key_off": { + "name": "key_off", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_off": { - "name": "timer_off", + "domain_disabled": { + "name": "domain_disabled", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tonality": { - "name": "tonality", + "alternate_email": { + "name": "alternate_email", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "transform": { - "name": "transform", + "key": { + "name": "key", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tune": { - "name": "tune", + "call_missed": { + "name": "call_missed", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_camera_back": { - "name": "video_camera_back", + "sentiment_satisfied_alt": { + "name": "sentiment_satisfied_alt", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_camera_front": { - "name": "video_camera_front", + "chat_bubble_outline": { + "name": "chat_bubble_outline", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_stable": { - "name": "video_stable", + "phonelink_lock": { + "name": "phonelink_lock", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_comfy": { - "name": "view_comfy", + "email": { + "name": "email", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_compact": { - "name": "view_compact", + "chat_bubble": { + "name": "chat_bubble", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vignette": { - "name": "vignette", + "mark_email_unread": { + "name": "mark_email_unread", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vrpano": { - "name": "vrpano", + "stay_current_landscape": { + "name": "stay_current_landscape", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_auto": { - "name": "wb_auto", + "person_search": { + "name": "person_search", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_cloudy": { - "name": "wb_cloudy", + "mobile_screen_share": { + "name": "mobile_screen_share", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_incandescent": { - "name": "wb_incandescent", + "dialpad": { + "name": "dialpad", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_iridescent": { - "name": "wb_iridescent", + "hourglass_top": { + "name": "hourglass_top", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_shade": { - "name": "wb_shade", + "swap_calls": { + "name": "swap_calls", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_sunny": { - "name": "wb_sunny", + "desktop_access_disabled": { + "name": "desktop_access_disabled", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_twilight": { - "name": "wb_twilight", + "mark_chat_read": { + "name": "mark_chat_read", "keywords": [ - "image" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" - } - } - }, - "360": { - "name": "360", - "keywords": [ - "maps" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "add_business": { - "name": "add_business", + "hub": { + "name": "hub", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_location": { - "name": "add_location", + "location_on": { + "name": "location_on", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_location_alt": { - "name": "add_location_alt", + "rtt": { + "name": "rtt", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_road": { - "name": "add_road", + "read_more": { + "name": "read_more", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "agriculture": { - "name": "agriculture", + "contact_phone": { + "name": "contact_phone", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "alt_route": { - "name": "alt_route", + "list_alt": { + "name": "list_alt", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "atm": { - "name": "atm", + "phone_enabled": { + "name": "phone_enabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attractions": { - "name": "attractions", + "app_registration": { + "name": "app_registration", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "badge": { - "name": "badge", + "present_to_all": { + "name": "present_to_all", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bakery_dining": { - "name": "bakery_dining", + "comment": { + "name": "comment", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "beenhere": { - "name": "beenhere", + "cancel_presentation": { + "name": "cancel_presentation", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bike_scooter": { - "name": "bike_scooter", + "sip": { + "name": "sip", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "breakfast_dining": { - "name": "breakfast_dining", + "location_off": { + "name": "location_off", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brunch_dining": { - "name": "brunch_dining", + "invert_colors_off": { + "name": "invert_colors_off", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" - } - } - }, - "bus_alert": { - "name": "bus_alert", - "keywords": [ - "maps" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "car_rental": { - "name": "car_rental", + "cell_wifi": { + "name": "cell_wifi", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "car_repair": { - "name": "car_repair", + "message": { + "name": "message", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "category": { - "name": "category", + "chat": { + "name": "chat", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "celebration": { - "name": "celebration", + "qr_code": { + "name": "qr_code", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cleaning_services": { - "name": "cleaning_services", + "no_sim": { + "name": "no_sim", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "compass_calibration": { - "name": "compass_calibration", + "dialer_sip": { + "name": "dialer_sip", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delivery_dining": { - "name": "delivery_dining", + "phone": { + "name": "phone", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "departure_board": { - "name": "departure_board", + "speaker_phone": { + "name": "speaker_phone", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "design_services": { - "name": "design_services", + "document_scanner": { + "name": "document_scanner", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dinner_dining": { - "name": "dinner_dining", + "cell_tower": { + "name": "cell_tower", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions": { - "name": "directions", + "ring_volume": { + "name": "ring_volume", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_bike": { - "name": "directions_bike", + "more_time": { + "name": "more_time", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_boat": { - "name": "directions_boat", + "send_time_extension": { + "name": "send_time_extension", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_boat_filled": { - "name": "directions_boat_filled", + "mail_outline": { + "name": "mail_outline", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_bus": { - "name": "directions_bus", + "qr_code_2": { + "name": "qr_code_2", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_bus_filled": { - "name": "directions_bus_filled", + "call": { + "name": "call", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_car": { - "name": "directions_car", + "live_help": { + "name": "live_help", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_car_filled": { - "name": "directions_car_filled", + "stay_current_portrait": { + "name": "stay_current_portrait", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_railway": { - "name": "directions_railway", + "clear_all": { + "name": "clear_all", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_railway_filled": { - "name": "directions_railway_filled", - "keywords": [ - "maps" + "stay_primary_landscape": { + "name": "stay_primary_landscape", + "keywords": [ + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_run": { - "name": "directions_run", + "domain_verification": { + "name": "domain_verification", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_subway": { - "name": "directions_subway", + "3p": { + "name": "3p", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_subway_filled": { - "name": "directions_subway_filled", + "import_export": { + "name": "import_export", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_transit": { - "name": "directions_transit", + "stop_screen_share": { + "name": "stop_screen_share", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_transit_filled": { - "name": "directions_transit_filled", + "comments_disabled": { + "name": "comments_disabled", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_walk": { - "name": "directions_walk", + "phonelink_setup": { + "name": "phonelink_setup", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dry_cleaning": { - "name": "dry_cleaning", + "contacts": { + "name": "contacts", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_attributes": { - "name": "edit_attributes", + "import_contacts": { + "name": "import_contacts", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_location": { - "name": "edit_location", + "call_made": { + "name": "call_made", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_location_alt": { - "name": "edit_location_alt", + "hourglass_bottom": { + "name": "hourglass_bottom", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_road": { - "name": "edit_road", + "phonelink_ring": { + "name": "phonelink_ring", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electrical_services": { - "name": "electrical_services", + "call_missed_outgoing": { + "name": "call_missed_outgoing", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_bike": { - "name": "electric_bike", + "textsms": { + "name": "textsms", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_car": { - "name": "electric_car", + "mark_email_read": { + "name": "mark_email_read", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_moped": { - "name": "electric_moped", + "nat": { + "name": "nat", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_rickshaw": { - "name": "electric_rickshaw", + "voicemail": { + "name": "voicemail", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_scooter": { - "name": "electric_scooter", + "stay_primary_portrait": { + "name": "stay_primary_portrait", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emergency": { - "name": "emergency", + "add_ic_call": { + "name": "add_ic_call", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ev_station": { - "name": "ev_station", + "pause_presentation": { + "name": "pause_presentation", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fastfood": { - "name": "fastfood", + "vpn_key_off": { + "name": "vpn_key_off", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "festival": { - "name": "festival", + "co_present": { + "name": "co_present", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flight": { - "name": "flight", + "person_add_disabled": { + "name": "person_add_disabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hail": { - "name": "hail", + "business": { + "name": "business", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "handyman": { - "name": "handyman", + "duo": { + "name": "duo", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hardware": { - "name": "hardware", + "call_merge": { + "name": "call_merge", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_repair_service": { - "name": "home_repair_service", + "qr_code_scanner": { + "name": "qr_code_scanner", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hotel": { - "name": "hotel", + "call_split": { + "name": "call_split", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hvac": { - "name": "hvac", + "mark_unread_chat_alt": { + "name": "mark_unread_chat_alt", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "icecream": { - "name": "icecream", + "vpn_key": { + "name": "vpn_key", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "layers": { - "name": "layers", + "phone_disabled": { + "name": "phone_disabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "layers_clear": { - "name": "layers_clear", + "forward_to_inbox": { + "name": "forward_to_inbox", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "liquor": { - "name": "liquor", + "print_disabled": { + "name": "print_disabled", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_activity": { - "name": "local_activity", + "spoke": { + "name": "spoke", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_airport": { - "name": "local_airport", + "screen_share": { + "name": "screen_share", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_atm": { - "name": "local_atm", + "mark_chat_unread": { + "name": "mark_chat_unread", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_bar": { - "name": "local_bar", + "phonelink_erase": { + "name": "phonelink_erase", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_cafe": { - "name": "local_cafe", + "call_end": { + "name": "call_end", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_car_wash": { - "name": "local_car_wash", + "contact_mail": { + "name": "contact_mail", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_convenience_store": { - "name": "local_convenience_store", + "electrical_services": { + "name": "electrical_services", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_dining": { - "name": "local_dining", + "taxi_alert": { + "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_drink": { - "name": "local_drink", + "zoom_out_map": { + "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_fire_department": { - "name": "local_fire_department", + "edit_attributes": { + "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -17007,891 +17559,931 @@ } } }, - "local_gas_station": { - "name": "local_gas_station", + "home_repair_service": { + "name": "home_repair_service", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_grocery_store": { - "name": "local_grocery_store", + "pest_control": { + "name": "pest_control", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_hospital": { - "name": "local_hospital", + "person_pin": { + "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_hotel": { - "name": "local_hotel", + "temple_buddhist": { + "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_laundry_service": { - "name": "local_laundry_service", + "money": { + "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_library": { - "name": "local_library", + "directions_railway_filled": { + "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_mall": { - "name": "local_mall", + "electric_bike": { + "name": "electric_bike", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_movies": { - "name": "local_movies", + "alt_route": { + "name": "alt_route", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_offer": { - "name": "local_offer", + "local_post_office": { + "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_parking": { - "name": "local_parking", + "two_wheeler": { + "name": "two_wheeler", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_pharmacy": { - "name": "local_pharmacy", + "icecream": { + "name": "icecream", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_phone": { - "name": "local_phone", + "add_location_alt": { + "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_pizza": { - "name": "local_pizza", + "directions_boat": { + "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_play": { - "name": "local_play", + "menu_book": { + "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_police": { - "name": "local_police", + "360": { + "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_post_office": { - "name": "local_post_office", + "moving": { + "name": "moving", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_printshop": { - "name": "local_printshop", + "turn_right": { + "name": "turn_right", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_see": { - "name": "local_see", + "satellite": { + "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_shipping": { - "name": "local_shipping", + "train": { + "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_taxi": { - "name": "local_taxi", + "local_cafe": { + "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lunch_dining": { - "name": "lunch_dining", + "roundabout_left": { + "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" - } - } - }, - "map": { - "name": "map", - "keywords": [ - "maps" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "maps_ugc": { - "name": "maps_ugc", + "agriculture": { + "name": "agriculture", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "medical_services": { - "name": "medical_services", + "attractions": { + "name": "attractions", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "menu_book": { - "name": "menu_book", + "my_location": { + "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "miscellaneous_services": { - "name": "miscellaneous_services", + "local_police": { + "name": "local_police", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "money": { - "name": "money", + "local_convenience_store": { + "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "moped": { - "name": "moped", + "restaurant": { + "name": "restaurant", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "moving": { - "name": "moving", + "synagogue": { + "name": "synagogue", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "multiple_stop": { - "name": "multiple_stop", + "railway_alert": { + "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "museum": { - "name": "museum", + "wrong_location": { + "name": "wrong_location", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "my_location": { - "name": "my_location", + "turn_slight_right": { + "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "navigation": { - "name": "navigation", + "pin_drop": { + "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "near_me": { - "name": "near_me", + "medical_services": { + "name": "medical_services", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "near_me_disabled": { - "name": "near_me_disabled", + "signpost": { + "name": "signpost", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nightlife": { - "name": "nightlife", + "park": { + "name": "park", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_listed_location": { - "name": "not_listed_location", + "ev_station": { + "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_meals": { - "name": "no_meals", + "breakfast_dining": { + "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_transfer": { - "name": "no_transfer", + "handyman": { + "name": "handyman", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "park": { - "name": "park", + "forest": { + "name": "forest", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pedal_bike": { - "name": "pedal_bike", + "place": { + "name": "place", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_pin": { - "name": "person_pin", + "subway": { + "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_pin_circle": { - "name": "person_pin_circle", + "local_play": { + "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pest_control": { - "name": "pest_control", + "person_pin_circle": { + "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pest_control_rodent": { - "name": "pest_control_rodent", + "wine_bar": { + "name": "wine_bar", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin_drop": { - "name": "pin_drop", + "bakery_dining": { + "name": "bakery_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "place": { - "name": "place", + "u_turn_left": { + "name": "u_turn_left", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "plumbing": { - "name": "plumbing", + "miscellaneous_services": { + "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "railway_alert": { - "name": "railway_alert", + "local_phone": { + "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ramen_dining": { - "name": "ramen_dining", + "layers_clear": { + "name": "layers_clear", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rate_review": { - "name": "rate_review", + "local_movies": { + "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restaurant": { - "name": "restaurant", + "local_grocery_store": { + "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restaurant_menu": { - "name": "restaurant_menu", + "mosque": { + "name": "mosque", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "run_circle": { - "name": "run_circle", + "add_road": { + "name": "add_road", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sailing": { - "name": "sailing", + "set_meal": { + "name": "set_meal", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "satellite": { - "name": "satellite", + "add_location": { + "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "set_meal": { - "name": "set_meal", + "stadium": { + "name": "stadium", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snowmobile": { - "name": "snowmobile", + "zoom_in_map": { + "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "store_mall_directory": { - "name": "store_mall_directory", + "map": { + "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "streetview": { - "name": "streetview", + "directions_bus_filled": { + "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subway": { - "name": "subway", + "local_see": { + "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "takeout_dining": { - "name": "takeout_dining", + "local_activity": { + "name": "local_activity", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "taxi_alert": { - "name": "taxi_alert", + "local_atm": { + "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "terrain": { - "name": "terrain", + "brunch_dining": { + "name": "brunch_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "theater_comedy": { - "name": "theater_comedy", + "pest_control_rodent": { + "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "traffic": { - "name": "traffic", + "moped": { + "name": "moped", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "train": { - "name": "train", + "layers": { + "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tram": { - "name": "tram", + "directions_run": { + "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -17907,4948 +18499,7628 @@ } } }, - "transit_enterexit": { - "name": "transit_enterexit", + "local_mall": { + "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "trip_origin": { - "name": "trip_origin", + "local_shipping": { + "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "two_wheeler": { - "name": "two_wheeler", + "local_drink": { + "name": "local_drink", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "volunteer_activism": { - "name": "volunteer_activism", + "ramp_left": { + "name": "ramp_left", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wine_bar": { - "name": "wine_bar", + "not_listed_location": { + "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wrong_location": { - "name": "wrong_location", + "near_me": { + "name": "near_me", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "zoom_out_map": { - "name": "zoom_out_map", + "directions_subway": { + "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "apps": { - "name": "apps", + "flight_class": { + "name": "flight_class", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "app_settings_alt": { - "name": "app_settings_alt", + "atm": { + "name": "atm", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_back": { - "name": "arrow_back", + "snowmobile": { + "name": "snowmobile", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_back_ios": { - "name": "arrow_back_ios", + "emergency": { + "name": "emergency", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_back_ios_new": { - "name": "arrow_back_ios_new", + "cleaning_services": { + "name": "cleaning_services", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_downward": { - "name": "arrow_downward", + "store_mall_directory": { + "name": "store_mall_directory", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_drop_down": { - "name": "arrow_drop_down", + "turn_sharp_left": { + "name": "turn_sharp_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_drop_down_circle": { - "name": "arrow_drop_down_circle", + "turn_slight_left": { + "name": "turn_slight_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_drop_up": { - "name": "arrow_drop_up", + "directions_boat_filled": { + "name": "directions_boat_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_forward": { - "name": "arrow_forward", + "festival": { + "name": "festival", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_forward_ios": { - "name": "arrow_forward_ios", + "lunch_dining": { + "name": "lunch_dining", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_left": { - "name": "arrow_left", + "directions_transit_filled": { + "name": "directions_transit_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_right": { - "name": "arrow_right", + "design_services": { + "name": "design_services", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_upward": { - "name": "arrow_upward", + "bus_alert": { + "name": "bus_alert", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assistant_direction": { - "name": "assistant_direction", + "warehouse": { + "name": "warehouse", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "campaign": { - "name": "campaign", + "turn_sharp_right": { + "name": "turn_sharp_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cancel": { - "name": "cancel", + "liquor": { + "name": "liquor", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "check": { - "name": "check", + "electric_scooter": { + "name": "electric_scooter", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chevron_left": { - "name": "chevron_left", + "pedal_bike": { + "name": "pedal_bike", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chevron_right": { - "name": "chevron_right", + "local_taxi": { + "name": "local_taxi", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "close": { - "name": "close", + "local_parking": { + "name": "local_parking", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "double_arrow": { - "name": "double_arrow", + "near_me_disabled": { + "name": "near_me_disabled", "keywords": [ - "navigation" + "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "east": { - "name": "east", + "category": { + "name": "category", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "expand_less": { - "name": "expand_less", + "turn_left": { + "name": "turn_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "expand_more": { - "name": "expand_more", + "local_hotel": { + "name": "local_hotel", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "first_page": { - "name": "first_page", + "egg": { + "name": "egg", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fullscreen": { - "name": "fullscreen", + "local_airport": { + "name": "local_airport", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fullscreen_exit": { - "name": "fullscreen_exit", + "ramp_right": { + "name": "ramp_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_work": { - "name": "home_work", + "local_bar": { + "name": "local_bar", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "last_page": { - "name": "last_page", + "castle": { + "name": "castle", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "legend_toggle": { - "name": "legend_toggle", + "kebab_dining": { + "name": "kebab_dining", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "maps_home_work": { - "name": "maps_home_work", + "no_transfer": { + "name": "no_transfer", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "menu": { - "name": "menu", + "roundabout_right": { + "name": "roundabout_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "menu_open": { - "name": "menu_open", + "directions": { + "name": "directions", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "more_horiz": { - "name": "more_horiz", + "terrain": { + "name": "terrain", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "more_vert": { - "name": "more_vert", - "keywords": [ - "navigation" + "local_offer": { + "name": "local_offer", + "keywords": [ + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "north": { - "name": "north", + "merge": { + "name": "merge", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "north_east": { - "name": "north_east", + "mode_of_travel": { + "name": "mode_of_travel", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "north_west": { - "name": "north_west", + "multiple_stop": { + "name": "multiple_stop", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "offline_share": { - "name": "offline_share", + "diamond": { + "name": "diamond", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "payments": { - "name": "payments", + "local_hospital": { + "name": "local_hospital", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pivot_table_chart": { - "name": "pivot_table_chart", + "edit_location": { + "name": "edit_location", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "refresh": { - "name": "refresh", + "sailing": { + "name": "sailing", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "south": { - "name": "south", + "airlines": { + "name": "airlines", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "south_east": { - "name": "south_east", + "car_rental": { + "name": "car_rental", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "south_west": { - "name": "south_west", + "directions_bike": { + "name": "directions_bike", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subdirectory_arrow_left": { - "name": "subdirectory_arrow_left", + "hvac": { + "name": "hvac", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "subdirectory_arrow_right": { - "name": "subdirectory_arrow_right", + "badge": { + "name": "badge", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_left": { - "name": "switch_left", + "directions_car_filled": { + "name": "directions_car_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_right": { - "name": "switch_right", + "directions_railway": { + "name": "directions_railway", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unfold_less": { - "name": "unfold_less", + "u_turn_right": { + "name": "u_turn_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "unfold_more": { - "name": "unfold_more", + "electric_rickshaw": { + "name": "electric_rickshaw", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "waterfall_chart": { - "name": "waterfall_chart", + "hardware": { + "name": "hardware", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "west": { - "name": "west", + "local_gas_station": { + "name": "local_gas_station", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_tree": { - "name": "account_tree", + "fork_right": { + "name": "fork_right", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "adb": { - "name": "adb", + "departure_board": { + "name": "departure_board", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_flat": { - "name": "airline_seat_flat", + "restaurant_menu": { + "name": "restaurant_menu", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_flat_angled": { - "name": "airline_seat_flat_angled", + "soup_kitchen": { + "name": "soup_kitchen", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_individual_suite": { - "name": "airline_seat_individual_suite", + "navigation": { + "name": "navigation", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_legroom_extra": { - "name": "airline_seat_legroom_extra", + "temple_hindu": { + "name": "temple_hindu", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_legroom_normal": { - "name": "airline_seat_legroom_normal", + "flight": { + "name": "flight", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_legroom_reduced": { - "name": "airline_seat_legroom_reduced", + "egg_alt": { + "name": "egg_alt", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_recline_extra": { - "name": "airline_seat_recline_extra", + "edit_location_alt": { + "name": "edit_location_alt", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_recline_normal": { - "name": "airline_seat_recline_normal", + "ramen_dining": { + "name": "ramen_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_audio": { - "name": "bluetooth_audio", + "car_repair": { + "name": "car_repair", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "confirmation_number": { - "name": "confirmation_number", + "run_circle": { + "name": "run_circle", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_off": { - "name": "directions_off", + "takeout_dining": { + "name": "takeout_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "disc_full": { - "name": "disc_full", + "fastfood": { + "name": "fastfood", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb": { - "name": "do_disturb", + "theater_comedy": { + "name": "theater_comedy", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb_alt": { - "name": "do_disturb_alt", + "connecting_airports": { + "name": "connecting_airports", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb_off": { - "name": "do_disturb_off", + "fort": { + "name": "fort", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb_on": { - "name": "do_disturb_on", + "church": { + "name": "church", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb": { - "name": "do_not_disturb", + "directions_car": { + "name": "directions_car", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_alt": { - "name": "do_not_disturb_alt", + "rate_review": { + "name": "rate_review", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_off": { - "name": "do_not_disturb_off", + "add_business": { + "name": "add_business", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_on": { - "name": "do_not_disturb_on", + "transit_enterexit": { + "name": "transit_enterexit", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_eta": { - "name": "drive_eta", + "celebration": { + "name": "celebration", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "enhanced_encryption": { - "name": "enhanced_encryption", + "airline_stops": { + "name": "airline_stops", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_available": { - "name": "event_available", + "directions_bus": { + "name": "directions_bus", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_busy": { - "name": "event_busy", + "streetview": { + "name": "streetview", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_note": { - "name": "event_note", + "tram": { + "name": "tram", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder_special": { - "name": "folder_special", + "fork_left": { + "name": "fork_left", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "imagesearch_roller": { - "name": "imagesearch_roller", + "hotel": { + "name": "hotel", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "live_tv": { - "name": "live_tv", + "compass_calibration": { + "name": "compass_calibration", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mms": { - "name": "mms", + "factory": { + "name": "factory", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "more": { - "name": "more", + "dinner_dining": { + "name": "dinner_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_check": { - "name": "network_check", + "edit_road": { + "name": "edit_road", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_locked": { - "name": "network_locked", + "local_library": { + "name": "local_library", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_encryption": { - "name": "no_encryption", + "plumbing": { + "name": "plumbing", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_encryption_gmailerrorred": { - "name": "no_encryption_gmailerrorred", + "local_pizza": { + "name": "local_pizza", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ondemand_video": { - "name": "ondemand_video", + "no_meals": { + "name": "no_meals", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "personal_video": { - "name": "personal_video", + "local_fire_department": { + "name": "local_fire_department", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_bluetooth_speaker": { - "name": "phone_bluetooth_speaker", + "bike_scooter": { + "name": "bike_scooter", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_callback": { - "name": "phone_callback", + "hail": { + "name": "hail", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_forwarded": { - "name": "phone_forwarded", + "local_pharmacy": { + "name": "local_pharmacy", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_in_talk": { - "name": "phone_in_talk", + "traffic": { + "name": "traffic", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_locked": { - "name": "phone_locked", + "dry_cleaning": { + "name": "dry_cleaning", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_missed": { - "name": "phone_missed", + "local_dining": { + "name": "local_dining", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_paused": { - "name": "phone_paused", + "trip_origin": { + "name": "trip_origin", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "power": { - "name": "power", + "delivery_dining": { + "name": "delivery_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "power_off": { - "name": "power_off", + "directions_walk": { + "name": "directions_walk", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "priority_high": { - "name": "priority_high", + "electric_car": { + "name": "electric_car", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "running_with_errors": { - "name": "running_with_errors", + "route": { + "name": "route", "keywords": [ - "notification" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd_card": { - "name": "sd_card", + "museum": { + "name": "museum", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd_card_alert": { - "name": "sd_card_alert", + "straight": { + "name": "straight", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sim_card_alert": { - "name": "sim_card_alert", + "directions_subway_filled": { + "name": "directions_subway_filled", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sms": { - "name": "sms", + "directions_transit": { + "name": "directions_transit", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sms_failed": { - "name": "sms_failed", + "nightlife": { + "name": "nightlife", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "support_agent": { - "name": "support_agent", + "maps_ugc": { + "name": "maps_ugc", "keywords": [ - "notification" + "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync": { - "name": "sync", + "local_car_wash": { + "name": "local_car_wash", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync_disabled": { - "name": "sync_disabled", + "electric_moped": { + "name": "electric_moped", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync_problem": { - "name": "sync_problem", + "local_laundry_service": { + "name": "local_laundry_service", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_update": { - "name": "system_update", + "local_printshop": { + "name": "local_printshop", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tap_and_play": { - "name": "tap_and_play", + "beenhere": { + "name": "beenhere", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "time_to_leave": { - "name": "time_to_leave", + "volunteer_activism": { + "name": "volunteer_activism", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tv_off": { - "name": "tv_off", + "sort": { + "name": "sort", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vibration": { - "name": "vibration", + "create": { + "name": "create", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "voice_chat": { - "name": "voice_chat", + "stacked_bar_chart": { + "name": "stacked_bar_chart", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vpn_lock": { - "name": "vpn_lock", + "add_link": { + "name": "add_link", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wc": { - "name": "wc", + "redo": { + "name": "redo", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi": { - "name": "wifi", + "content_paste_go": { + "name": "content_paste_go", "keywords": [ - "notification" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_off": { - "name": "wifi_off", + "clear": { + "name": "clear", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ac_unit": { - "name": "ac_unit", + "next_week": { + "name": "next_week", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airport_shuttle": { - "name": "airport_shuttle", + "amp_stories": { + "name": "amp_stories", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "all_inclusive": { - "name": "all_inclusive", + "flag": { + "name": "flag", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "apartment": { - "name": "apartment", + "dynamic_feed": { + "name": "dynamic_feed", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "baby_changing_station": { - "name": "baby_changing_station", + "drafts": { + "name": "drafts", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "backpack": { - "name": "backpack", + "select_all": { + "name": "select_all", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "balcony": { - "name": "balcony", + "deselect": { + "name": "deselect", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bathtub": { - "name": "bathtub", + "font_download": { + "name": "font_download", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "beach_access": { - "name": "beach_access", + "add_box": { + "name": "add_box", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bento": { - "name": "bento", + "add": { + "name": "add", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bungalow": { - "name": "bungalow", + "outlined_flag": { + "name": "outlined_flag", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "business_center": { - "name": "business_center", + "calculate": { + "name": "calculate", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cabin": { - "name": "cabin", + "push_pin": { + "name": "push_pin", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "carpenter": { - "name": "carpenter", + "filter_list": { + "name": "filter_list", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "casino": { - "name": "casino", + "filter_list_off": { + "name": "filter_list_off", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chalet": { - "name": "chalet", + "link": { + "name": "link", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "charging_station": { - "name": "charging_station", + "how_to_vote": { + "name": "how_to_vote", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "checkroom": { - "name": "checkroom", + "add_circle_outline": { + "name": "add_circle_outline", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "child_care": { - "name": "child_care", + "markunread": { + "name": "markunread", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "child_friendly": { - "name": "child_friendly", + "attribution": { + "name": "attribution", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "corporate_fare": { - "name": "corporate_fare", + "shield": { + "name": "shield", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cottage": { - "name": "cottage", + "font_download_off": { + "name": "font_download_off", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "countertops": { - "name": "countertops", + "content_copy": { + "name": "content_copy", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crib": { - "name": "crib", + "low_priority": { + "name": "low_priority", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_step": { - "name": "do_not_step", + "unarchive": { + "name": "unarchive", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_touch": { - "name": "do_not_touch", - "keywords": [ - "places" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "dry": { - "name": "dry", + "inventory_2": { + "name": "inventory_2", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "elevator": { - "name": "elevator", + "move_to_inbox": { + "name": "move_to_inbox", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "escalator": { - "name": "escalator", + "undo": { + "name": "undo", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "escalator_warning": { - "name": "escalator_warning", + "text_format": { + "name": "text_format", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "family_restroom": { - "name": "family_restroom", + "waves": { + "name": "waves", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fence": { - "name": "fence", + "file_copy": { + "name": "file_copy", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fire_extinguisher": { - "name": "fire_extinguisher", + "link_off": { + "name": "link_off", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fitness_center": { - "name": "fitness_center", + "content_paste": { + "name": "content_paste", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "food_bank": { - "name": "food_bank", + "reply_all": { + "name": "reply_all", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "foundation": { - "name": "foundation", + "copy_all": { + "name": "copy_all", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "free_breakfast": { - "name": "free_breakfast", + "weekend": { + "name": "weekend", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gite": { - "name": "gite", + "save_as": { + "name": "save_as", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "golf_course": { - "name": "golf_course", + "remove_circle_outline": { + "name": "remove_circle_outline", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grass": { - "name": "grass", + "content_paste_off": { + "name": "content_paste_off", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "holiday_village": { - "name": "holiday_village", + "report_off": { + "name": "report_off", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hot_tub": { - "name": "hot_tub", + "report_gmailerrorred": { + "name": "report_gmailerrorred", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "house": { - "name": "house", + "save": { + "name": "save", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "houseboat": { - "name": "houseboat", + "bolt": { + "name": "bolt", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "house_siding": { - "name": "house_siding", + "content_cut": { + "name": "content_cut", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "iron": { - "name": "iron", + "flag_circle": { + "name": "flag_circle", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "kitchen": { - "name": "kitchen", + "block": { + "name": "block", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "meeting_room": { - "name": "meeting_room", + "remove_circle": { + "name": "remove_circle", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "microwave": { - "name": "microwave", + "square_foot": { + "name": "square_foot", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "night_shelter": { - "name": "night_shelter", + "archive": { + "name": "archive", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_backpack": { - "name": "no_backpack", + "add_circle": { + "name": "add_circle", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_cell": { - "name": "no_cell", + "tag": { + "name": "tag", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_drinks": { - "name": "no_drinks", + "remove": { + "name": "remove", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_flash": { - "name": "no_flash", + "gesture": { + "name": "gesture", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_food": { - "name": "no_food", + "inventory": { + "name": "inventory", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_meeting_room": { - "name": "no_meeting_room", + "where_to_vote": { + "name": "where_to_vote", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_photography": { - "name": "no_photography", + "how_to_reg": { + "name": "how_to_reg", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_stroller": { - "name": "no_stroller", + "delete_sweep": { + "name": "delete_sweep", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "other_houses": { - "name": "other_houses", + "report": { + "name": "report", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pool": { - "name": "pool", + "inbox": { + "name": "inbox", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rice_bowl": { - "name": "rice_bowl", + "upcoming": { + "name": "upcoming", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "roofing": { - "name": "roofing", + "stream": { + "name": "stream", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "room_preferences": { - "name": "room_preferences", + "save_alt": { + "name": "save_alt", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "room_service": { - "name": "room_service", + "insights": { + "name": "insights", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rv_hookup": { - "name": "rv_hookup", + "backspace": { + "name": "backspace", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smoke_free": { - "name": "smoke_free", + "reply": { + "name": "reply", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smoking_rooms": { - "name": "smoking_rooms", + "mail": { + "name": "mail", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "soap": { - "name": "soap", + "change_circle": { + "name": "change_circle", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "spa": { - "name": "spa", + "send": { + "name": "send", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_bar": { - "name": "sports_bar", + "ballot": { + "name": "ballot", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stairs": { - "name": "stairs", + "forward": { + "name": "forward", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "storefront": { - "name": "storefront", + "policy": { + "name": "policy", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "stroller": { - "name": "stroller", + "content_paste_search": { + "name": "content_paste_search", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tapas": { - "name": "tapas", + "biotech": { + "name": "biotech", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tty": { - "name": "tty", + "attach_money": { + "name": "attach_money", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "umbrella": { - "name": "umbrella", + "bar_chart": { + "name": "bar_chart", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "villa": { - "name": "villa", + "border_clear": { + "name": "border_clear", "keywords": [ - "places" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wash": { - "name": "wash", + "title": { + "name": "title", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "water_damage": { - "name": "water_damage", + "format_align_justify": { + "name": "format_align_justify", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wheelchair_pickup": { - "name": "wheelchair_pickup", + "move_down": { + "name": "move_down", "keywords": [ - "places" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bathroom": { - "name": "bathroom", + "format_size": { + "name": "format_size", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bed": { - "name": "bed", + "insert_chart": { + "name": "insert_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedroom_baby": { - "name": "bedroom_baby", + "scatter_plot": { + "name": "scatter_plot", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedroom_child": { - "name": "bedroom_child", + "align_vertical_top": { + "name": "align_vertical_top", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedroom_parent": { - "name": "bedroom_parent", + "border_all": { + "name": "border_all", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "blender": { - "name": "blender", + "move_up": { + "name": "move_up", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_indoor": { - "name": "camera_indoor", + "polyline": { + "name": "polyline", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_outdoor": { - "name": "camera_outdoor", + "format_list_numbered": { + "name": "format_list_numbered", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chair": { - "name": "chair", + "format_underlined": { + "name": "format_underlined", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chair_alt": { - "name": "chair_alt", + "format_strikethrough": { + "name": "format_strikethrough", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "coffee": { - "name": "coffee", + "schema": { + "name": "schema", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "coffee_maker": { - "name": "coffee_maker", + "border_outer": { + "name": "border_outer", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dining": { - "name": "dining", + "short_text": { + "name": "short_text", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "doorbell": { - "name": "doorbell", + "border_style": { + "name": "border_style", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "door_back": { - "name": "door_back", + "subscript": { + "name": "subscript", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "door_front": { - "name": "door_front", + "border_right": { + "name": "border_right", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "door_sliding": { - "name": "door_sliding", + "add_chart": { + "name": "add_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "feed": { - "name": "feed", + "format_align_center": { + "name": "format_align_center", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flatware": { - "name": "flatware", + "format_clear": { + "name": "format_clear", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "garage": { - "name": "garage", + "margin": { + "name": "margin", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "light": { - "name": "light", + "format_list_bulleted": { + "name": "format_list_bulleted", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "living": { - "name": "living", + "checklist_rtl": { + "name": "checklist_rtl", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "manage_search": { - "name": "manage_search", + "data_array": { + "name": "data_array", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "podcasts": { - "name": "podcasts", + "bubble_chart": { + "name": "bubble_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shower": { - "name": "shower", + "border_color": { + "name": "border_color", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "window": { - "name": "window", + "vertical_align_bottom": { + "name": "vertical_align_bottom", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "yard": { - "name": "yard", + "vertical_distribute": { + "name": "vertical_distribute", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6_ft_apart": { - "name": "6_ft_apart", + "data_object": { + "name": "data_object", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_moderator": { - "name": "add_moderator", + "mode": { + "name": "mode", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_reaction": { - "name": "add_reaction", + "text_fields": { + "name": "text_fields", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "architecture": { - "name": "architecture", + "insert_emoticon": { + "name": "insert_emoticon", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "back_hand": { - "name": "back_hand", + "horizontal_distribute": { + "name": "horizontal_distribute", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cake": { - "name": "cake", + "money_off_csred": { + "name": "money_off_csred", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "catching_pokemon": { - "name": "catching_pokemon", + "border_horizontal": { + "name": "border_horizontal", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "clean_hands": { - "name": "clean_hands", + "functions": { + "name": "functions", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "compost": { - "name": "compost", + "format_align_left": { + "name": "format_align_left", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "connect_without_contact": { - "name": "connect_without_contact", + "multiline_chart": { + "name": "multiline_chart", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "construction": { - "name": "construction", + "stacked_line_chart": { + "name": "stacked_line_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "coronavirus": { - "name": "coronavirus", + "money_off": { + "name": "money_off", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cruelty_free": { - "name": "cruelty_free", + "format_list_numbered_rtl": { + "name": "format_list_numbered_rtl", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "deck": { - "name": "deck", + "align_horizontal_center": { + "name": "align_horizontal_center", "keywords": [ - "social" + "editor" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pentagon": { + "name": "pentagon", + "keywords": [ + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "domain": { - "name": "domain", + "format_indent_increase": { + "name": "format_indent_increase", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "downhill_skiing": { - "name": "downhill_skiing", + "table_rows": { + "name": "table_rows", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_notifications": { - "name": "edit_notifications", + "query_stats": { + "name": "query_stats", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "elderly": { - "name": "elderly", + "pie_chart_outline": { + "name": "pie_chart_outline", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_emotions": { - "name": "emoji_emotions", + "square": { + "name": "square", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_events": { - "name": "emoji_events", + "format_color_text": { + "name": "format_color_text", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_flags": { - "name": "emoji_flags", + "candlestick_chart": { + "name": "candlestick_chart", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_food_beverage": { - "name": "emoji_food_beverage", + "mode_comment": { + "name": "mode_comment", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_nature": { - "name": "emoji_nature", + "checklist": { + "name": "checklist", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_objects": { - "name": "emoji_objects", + "pie_chart": { + "name": "pie_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_people": { - "name": "emoji_people", + "format_textdirection_l_to_r": { + "name": "format_textdirection_l_to_r", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_symbols": { - "name": "emoji_symbols", + "format_align_right": { + "name": "format_align_right", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_transportation": { - "name": "emoji_transportation", + "align_vertical_bottom": { + "name": "align_vertical_bottom", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "engineering": { - "name": "engineering", + "notes": { + "name": "notes", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "facebook": { - "name": "facebook", + "insert_comment": { + "name": "insert_comment", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "female": { - "name": "female", + "height": { + "name": "height", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fireplace": { - "name": "fireplace", + "format_shapes": { + "name": "format_shapes", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "follow_the_signs": { - "name": "follow_the_signs", + "hexagon": { + "name": "hexagon", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "front_hand": { - "name": "front_hand", + "align_horizontal_right": { + "name": "align_horizontal_right", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "group": { - "name": "group", + "merge_type": { + "name": "merge_type", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "groups": { - "name": "groups", + "vertical_align_top": { + "name": "vertical_align_top", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "group_add": { - "name": "group_add", + "text_increase": { + "name": "text_increase", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "group_off": { - "name": "group_off", + "border_vertical": { + "name": "border_vertical", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "health_and_safety": { - "name": "health_and_safety", + "format_bold": { + "name": "format_bold", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hiking": { - "name": "hiking", + "format_textdirection_r_to_l": { + "name": "format_textdirection_r_to_l", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "history_edu": { - "name": "history_edu", + "format_paint": { + "name": "format_paint", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ice_skating": { - "name": "ice_skating", + "drag_handle": { + "name": "drag_handle", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ios_share": { - "name": "ios_share", + "space_bar": { + "name": "space_bar", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "kayaking": { - "name": "kayaking", + "format_color_reset": { + "name": "format_color_reset", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "king_bed": { - "name": "king_bed", + "post_add": { + "name": "post_add", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "kitesurfing": { - "name": "kitesurfing", + "border_top": { + "name": "border_top", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_city": { - "name": "location_city", + "border_bottom": { + "name": "border_bottom", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "luggage": { - "name": "luggage", + "insert_photo": { + "name": "insert_photo", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "male": { - "name": "male", + "insert_page_break": { + "name": "insert_page_break", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "masks": { - "name": "masks", + "attach_file": { + "name": "attach_file", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "military_tech": { - "name": "military_tech", + "text_decrease": { + "name": "text_decrease", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mood": { - "name": "mood", + "horizontal_rule": { + "name": "horizontal_rule", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mood_bad": { - "name": "mood_bad", + "score": { + "name": "score", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nights_stay": { - "name": "nights_stay", + "format_indent_decrease": { + "name": "format_indent_decrease", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nordic_walking": { - "name": "nordic_walking", + "monetization_on": { + "name": "monetization_on", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications": { - "name": "notifications", + "padding": { + "name": "padding", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_active": { - "name": "notifications_active", + "format_quote": { + "name": "format_quote", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_none": { - "name": "notifications_none", + "vertical_align_center": { + "name": "vertical_align_center", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_off": { - "name": "notifications_off", + "mode_edit_outline": { + "name": "mode_edit_outline", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_paused": { - "name": "notifications_paused", + "insert_chart_outlined": { + "name": "insert_chart_outlined", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notification_add": { - "name": "notification_add", + "add_comment": { + "name": "add_comment", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_luggage": { - "name": "no_luggage", + "border_left": { + "name": "border_left", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outdoor_grill": { - "name": "outdoor_grill", + "linear_scale": { + "name": "linear_scale", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pages": { - "name": "pages", + "align_horizontal_left": { + "name": "align_horizontal_left", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "paragliding": { - "name": "paragliding", + "align_vertical_center": { + "name": "align_vertical_center", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "party_mode": { - "name": "party_mode", + "line_axis": { + "name": "line_axis", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "people": { - "name": "people", + "format_color_fill": { + "name": "format_color_fill", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "people_alt": { - "name": "people_alt", + "area_chart": { + "name": "area_chart", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "people_outline": { - "name": "people_outline", + "format_italic": { + "name": "format_italic", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person": { - "name": "person", + "numbers": { + "name": "numbers", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "personal_injury": { - "name": "personal_injury", + "format_line_spacing": { + "name": "format_line_spacing", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add": { - "name": "person_add", + "superscript": { + "name": "superscript", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add_alt": { - "name": "person_add_alt", + "mode_edit": { + "name": "mode_edit", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add_alt_1": { - "name": "person_add_alt_1", + "edit_note": { + "name": "edit_note", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_off": { - "name": "person_off", + "auto_graph": { + "name": "auto_graph", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_outline": { - "name": "person_outline", + "show_chart": { + "name": "show_chart", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_remove": { - "name": "person_remove", + "draw": { + "name": "draw", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_remove_alt_1": { - "name": "person_remove_alt_1", + "wrap_text": { + "name": "wrap_text", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "piano": { - "name": "piano", + "table_chart": { + "name": "table_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "piano_off": { - "name": "piano_off", + "highlight": { + "name": "highlight", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "plus_one": { - "name": "plus_one", + "insert_invitation": { + "name": "insert_invitation", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "poll": { - "name": "poll", + "insert_link": { + "name": "insert_link", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "precision_manufacturing": { - "name": "precision_manufacturing", + "publish": { + "name": "publish", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "psychology": { - "name": "psychology", + "border_inner": { + "name": "border_inner", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "public": { - "name": "public", + "rectangle": { + "name": "rectangle", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "public_off": { - "name": "public_off", + "insert_drive_file": { + "name": "insert_drive_file", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "real_estate_agent": { - "name": "real_estate_agent", + "strikethrough_s": { + "name": "strikethrough_s", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "recommend": { - "name": "recommend", + "home_max": { + "name": "home_max", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "recycling": { - "name": "recycling", + "speaker": { + "name": "speaker", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "reduce_capacity": { - "name": "reduce_capacity", + "keyboard_arrow_down": { + "name": "keyboard_arrow_down", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_moderator": { - "name": "remove_moderator", + "keyboard_arrow_up": { + "name": "keyboard_arrow_up", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "safety_divider": { - "name": "safety_divider", + "desktop_mac": { + "name": "desktop_mac", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sanitizer": { - "name": "sanitizer", + "earbuds": { + "name": "earbuds", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "school": { - "name": "school", + "laptop_chromebook": { + "name": "laptop_chromebook", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "science": { - "name": "science", + "computer": { + "name": "computer", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "self_improvement": { - "name": "self_improvement", + "keyboard_return": { + "name": "keyboard_return", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_dissatisfied": { - "name": "sentiment_dissatisfied", + "headset": { + "name": "headset", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_neutral": { - "name": "sentiment_neutral", + "keyboard_double_arrow_left": { + "name": "keyboard_double_arrow_left", "keywords": [ - "social" + "hardware" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_satisfied": { - "name": "sentiment_satisfied", + "adf_scanner": { + "name": "adf_scanner", "keywords": [ - "social" + "hardware" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_very_dissatisfied": { - "name": "sentiment_very_dissatisfied", + "smart_display": { + "name": "smart_display", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_very_satisfied": { - "name": "sentiment_very_satisfied", + "browser_updated": { + "name": "browser_updated", "keywords": [ - "social" + "hardware" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "share": { - "name": "share", + "device_hub": { + "name": "device_hub", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sick": { - "name": "sick", + "smart_toy": { + "name": "smart_toy", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "single_bed": { - "name": "single_bed", + "watch": { + "name": "watch", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "skateboarding": { - "name": "skateboarding", + "keyboard_alt": { + "name": "keyboard_alt", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sledding": { - "name": "sledding", + "headset_off": { + "name": "headset_off", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snowboarding": { - "name": "snowboarding", + "gamepad": { + "name": "gamepad", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snowshoeing": { - "name": "snowshoeing", + "dock": { + "name": "dock", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "social_distance": { - "name": "social_distance", + "scanner": { + "name": "scanner", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports": { - "name": "sports", + "phonelink": { + "name": "phonelink", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_baseball": { - "name": "sports_baseball", + "smartphone": { + "name": "smartphone", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_basketball": { - "name": "sports_basketball", + "keyboard_arrow_left": { + "name": "keyboard_arrow_left", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_for_education": { + "name": "cast_for_education", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_option_key": { + "name": "keyboard_option_key", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_cricket": { - "name": "sports_cricket", + "headphones_battery": { + "name": "headphones_battery", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "start": { + "name": "start", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_esports": { - "name": "sports_esports", + "keyboard": { + "name": "keyboard", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_iphone": { + "name": "phone_iphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor": { + "name": "monitor", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_windows": { + "name": "laptop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "browser_not_supported": { + "name": "browser_not_supported", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_football": { - "name": "sports_football", + "sim_card": { + "name": "sim_card", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_control_key": { + "name": "keyboard_control_key", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_golf": { - "name": "sports_golf", + "earbuds_battery": { + "name": "earbuds_battery", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset_off": { + "name": "videogame_asset_off", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_handball": { - "name": "sports_handball", + "memory": { + "name": "memory", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop": { + "name": "laptop", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_mac": { + "name": "laptop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_connected": { + "name": "cast_connected", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet": { + "name": "tablet", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset": { + "name": "videogame_asset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_double_arrow_down": { + "name": "keyboard_double_arrow_down", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_hockey": { - "name": "sports_hockey", + "keyboard_capslock": { + "name": "keyboard_capslock", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_double_arrow_up": { + "name": "keyboard_double_arrow_up", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cast": { + "name": "cast", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_voice": { + "name": "keyboard_voice", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_backspace": { + "name": "keyboard_backspace", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "point_of_sale": { + "name": "point_of_sale", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "watch_off": { + "name": "watch_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board_off": { + "name": "developer_board_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_double_arrow_right": { + "name": "keyboard_double_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet_android": { + "name": "tablet_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_command_key": { + "name": "keyboard_command_key", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_mic": { + "name": "headset_mic", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_windows": { + "name": "desktop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet_mac": { + "name": "tablet_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_input": { + "name": "power_input", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv": { + "name": "tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_android": { + "name": "phone_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security": { + "name": "security", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_right": { + "name": "keyboard_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_group": { + "name": "speaker_group", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_screen": { + "name": "smart_screen", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_tab": { + "name": "keyboard_tab", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_off": { + "name": "phonelink_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_hide": { + "name": "keyboard_hide", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "connected_tv": { + "name": "connected_tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board": { + "name": "developer_board", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toys": { + "name": "toys", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "router": { + "name": "router", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_mini": { + "name": "home_mini", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_unknown": { + "name": "device_unknown", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones": { + "name": "headphones", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mouse": { + "name": "mouse", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "devices_other": { + "name": "devices_other", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_share": { + "name": "offline_share", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_vert": { + "name": "more_vert", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_settings_alt": { + "name": "app_settings_alt", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pivot_table_chart": { + "name": "pivot_table_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fullscreen": { + "name": "fullscreen", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close": { + "name": "close", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps_outage": { + "name": "apps_outage", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home_work": { + "name": "home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back": { + "name": "arrow_back", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu": { + "name": "menu", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios": { + "name": "arrow_back_ios", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "last_page": { + "name": "last_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "double_arrow": { + "name": "double_arrow", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "legend_toggle": { + "name": "legend_toggle", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_left": { + "name": "switch_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_right": { + "name": "subdirectory_arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_right": { + "name": "chevron_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_left": { + "name": "arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north": { + "name": "north", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_horiz": { + "name": "more_horiz", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps": { + "name": "apps", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "west": { + "name": "west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_home_work": { + "name": "maps_home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel": { + "name": "cancel", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "first_page": { + "name": "first_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "east": { + "name": "east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_upward": { + "name": "arrow_upward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check": { + "name": "check", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_left": { + "name": "chevron_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_open": { + "name": "menu_open", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_downward": { + "name": "arrow_downward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payments": { + "name": "payments", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios_new": { + "name": "arrow_back_ios_new", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_up": { + "name": "arrow_drop_up", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_more": { + "name": "unfold_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_east": { + "name": "south_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down_circle": { + "name": "arrow_drop_down_circle", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_more": { + "name": "expand_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_east": { + "name": "north_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward_ios": { + "name": "arrow_forward_ios", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "south": { + "name": "south", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_less": { + "name": "expand_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right": { + "name": "arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "campaign": { + "name": "campaign", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fullscreen_exit": { + "name": "fullscreen_exit", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down": { + "name": "arrow_drop_down", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward": { + "name": "arrow_forward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_circle_down": { + "name": "expand_circle_down", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_right": { + "name": "switch_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "refresh": { + "name": "refresh", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_left": { + "name": "subdirectory_arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_less": { + "name": "unfold_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waterfall_chart": { + "name": "waterfall_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_west": { + "name": "south_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_west": { + "name": "north_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_direction": { + "name": "assistant_direction", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_rename_outline": { + "name": "drive_file_rename_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_quote": { + "name": "request_quote", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_for_offline": { + "name": "download_for_offline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "approval": { + "name": "approval", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attachment": { + "name": "attachment", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_done": { + "name": "file_download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder": { + "name": "folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_done": { + "name": "download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_snippet": { + "name": "text_snippet", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_view": { + "name": "grid_view", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_upload": { + "name": "file_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "create_new_folder": { + "name": "create_new_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download": { + "name": "file_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "topic": { + "name": "topic", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_zip": { + "name": "folder_zip", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_off": { + "name": "cloud_off", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_sync": { + "name": "cloud_sync", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_shared": { + "name": "folder_shared", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_open": { + "name": "file_open", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_download": { + "name": "cloud_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_overline": { + "name": "format_overline", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snippet_folder": { + "name": "snippet_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_email": { + "name": "attach_email", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_off": { + "name": "folder_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "newspaper": { + "name": "newspaper", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "difference": { + "name": "difference", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "downloading": { + "name": "downloading", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_circle": { + "name": "cloud_circle", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces": { + "name": "workspaces", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_move_rtl": { + "name": "drive_file_move_rtl", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "download": { + "name": "download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload": { + "name": "upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_delete": { + "name": "folder_delete", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_done": { + "name": "cloud_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_queue": { + "name": "cloud_queue", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_off": { + "name": "file_download_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud": { + "name": "cloud", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_move": { + "name": "drive_file_move", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule_folder": { + "name": "rule_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_open": { + "name": "folder_open", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_upload": { + "name": "cloud_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_folder_upload": { + "name": "drive_folder_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload_file": { + "name": "upload_file", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "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": "" + } + } + }, + "warning_amber": { + "name": "warning_amber", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "warning": { + "name": "warning", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_delete": { + "name": "auto_delete", + "keywords": [ + "alert" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alert": { + "name": "add_alert", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "error": { + "name": "error", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update": { + "name": "system_update", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tap_and_play": { + "name": "tap_and_play", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption": { + "name": "no_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_normal": { + "name": "airline_seat_legroom_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_audio": { + "name": "bluetooth_audio", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_off": { + "name": "wifi_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_disabled": { + "name": "sync_disabled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mms": { + "name": "mms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_lock": { + "name": "sync_lock", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_alt": { + "name": "do_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_paused": { + "name": "phone_paused", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wc": { + "name": "wc", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv_off": { + "name": "tv_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_problem": { + "name": "sync_problem", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_locked": { + "name": "phone_locked", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "power_off": { + "name": "power_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption_gmailerrorred": { + "name": "no_encryption_gmailerrorred", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_eta": { + "name": "drive_eta", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_special": { + "name": "folder_special", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_alert": { + "name": "sim_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on": { + "name": "do_not_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_video": { + "name": "personal_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "running_with_errors": { + "name": "running_with_errors", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_extra": { + "name": "airline_seat_recline_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat_angled": { + "name": "airline_seat_flat_angled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_chat": { + "name": "voice_chat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms": { + "name": "sms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_note": { + "name": "event_note", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_missed": { + "name": "phone_missed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_alt": { + "name": "do_not_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more": { + "name": "more", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card_alert": { + "name": "sd_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power": { + "name": "power", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_callback": { + "name": "phone_callback", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb": { + "name": "do_not_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disc_full": { + "name": "disc_full", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_in_talk": { + "name": "phone_in_talk", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_available": { + "name": "event_available", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_tv": { + "name": "live_tv", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_off": { + "name": "do_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ondemand_video": { + "name": "ondemand_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_normal": { + "name": "airline_seat_recline_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_check": { + "name": "network_check", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card": { + "name": "sd_card", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adb": { + "name": "adb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms_failed": { + "name": "sms_failed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_individual_suite": { + "name": "airline_seat_individual_suite", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "time_to_leave": { + "name": "time_to_leave", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat": { + "name": "airline_seat_flat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb": { + "name": "do_disturb", + "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": "" + } + } + }, + "enhanced_encryption": { + "name": "enhanced_encryption", + "keywords": [ + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_kabaddi": { - "name": "sports_kabaddi", + "account_tree": { + "name": "account_tree", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_mma": { - "name": "sports_mma", + "network_locked": { + "name": "network_locked", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_motorsports": { - "name": "sports_motorsports", + "sync": { + "name": "sync", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_rugby": { - "name": "sports_rugby", + "priority_high": { + "name": "priority_high", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_soccer": { - "name": "sports_soccer", + "event_busy": { + "name": "event_busy", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_tennis": { - "name": "sports_tennis", + "phone_bluetooth_speaker": { + "name": "phone_bluetooth_speaker", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_volleyball": { - "name": "sports_volleyball", + "airline_seat_legroom_reduced": { + "name": "airline_seat_legroom_reduced", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "surfing": { - "name": "surfing", + "support_agent": { + "name": "support_agent", "keywords": [ - "social" + "notification" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_account": { - "name": "switch_account", + "phone_forwarded": { + "name": "phone_forwarded", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_down_alt": { - "name": "thumb_down_alt", + "do_disturb_on": { + "name": "do_disturb_on", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_up_alt": { - "name": "thumb_up_alt", + "do_not_disturb_off": { + "name": "do_not_disturb_off", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "transgender": { - "name": "transgender", + "directions_off": { + "name": "directions_off", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "travel_explore": { - "name": "travel_explore", + "vibration": { + "name": "vibration", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "water_drop": { - "name": "water_drop", + "vpn_lock": { + "name": "vpn_lock", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "waving_hand": { - "name": "waving_hand", + "imagesearch_roller": { + "name": "imagesearch_roller", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "whatshot": { - "name": "whatshot", + "airline_seat_legroom_extra": { + "name": "airline_seat_legroom_extra", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "check_box": { - "name": "check_box", + "star_border": { + "name": "star_border", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "check_box_outline_blank": { - "name": "check_box_outline_blank", + "radio_button_unchecked": { + "name": "radio_button_unchecked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "indeterminate_check_box": { - "name": "indeterminate_check_box", + "star": { + "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radio_button_checked": { - "name": "radio_button_checked", + "check_box_outline_blank": { + "name": "check_box_outline_blank", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radio_button_unchecked": { - "name": "radio_button_unchecked", + "toggle_on": { + "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star": { - "name": "star", + "indeterminate_check_box": { + "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star_border": { - "name": "star_border", + "star_purple500": { + "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star_border_purple500": { - "name": "star_border_purple500", + "toggle_off": { + "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star_half": { - "name": "star_half", + "check_box": { + "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star_outline": { - "name": "star_outline", + "star_border_purple500": { + "name": "star_border_purple500", "keywords": [ "toggle" ], @@ -22859,40 +26131,40 @@ } } }, - "star_purple500": { - "name": "star_purple500", + "star_half": { + "name": "star_half", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "toggle_off": { - "name": "toggle_off", + "star_outline": { + "name": "star_outline", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "toggle_on": { - "name": "toggle_on", + "radio_button_checked": { + "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } } -} +} \ No newline at end of file diff --git a/sphinx_design/compiled/material_twotone.json b/sphinx_design/compiled/material_twotone.json index 778caa2..4f46b32 100644 --- a/sphinx_design/compiled/material_twotone.json +++ b/sphinx_design/compiled/material_twotone.json @@ -1,17453 +1,18005 @@ { - "3d_rotation": { - "name": "3d_rotation", + "view_comfy": { + "name": "view_comfy", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "accessibility": { - "name": "accessibility", + "crop_din": { + "name": "crop_din", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "accessibility_new": { - "name": "accessibility_new", + "brightness_5": { + "name": "brightness_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "accessible": { - "name": "accessible", + "broken_image": { + "name": "broken_image", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "accessible_forward": { - "name": "accessible_forward", + "crop_7_5": { + "name": "crop_7_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_balance": { - "name": "account_balance", + "brightness_1": { + "name": "brightness_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_balance_wallet": { - "name": "account_balance_wallet", + "13mp": { + "name": "13mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_box": { - "name": "account_box", + "wb_iridescent": { + "name": "wb_iridescent", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_circle": { - "name": "account_circle", + "wb_sunny": { + "name": "wb_sunny", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "addchart": { - "name": "addchart", + "23mp": { + "name": "23mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_shopping_cart": { - "name": "add_shopping_cart", + "vrpano": { + "name": "vrpano", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_task": { - "name": "add_task", + "bedtime": { + "name": "bedtime", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_drive": { - "name": "add_to_drive", + "cases": { + "name": "cases", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "admin_panel_settings": { - "name": "admin_panel_settings", + "euro": { + "name": "euro", "keywords": [ - "action" + "image" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ads_click": { - "name": "ads_click", + "straighten": { + "name": "straighten", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "alarm": { - "name": "alarm", + "panorama_photosphere_select": { + "name": "panorama_photosphere_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alarm_add": { - "name": "alarm_add", + "leak_remove": { + "name": "leak_remove", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alarm_off": { - "name": "alarm_off", + "animation": { + "name": "animation", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alarm_on": { - "name": "alarm_on", + "timer_off": { + "name": "timer_off", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "all_inbox": { - "name": "all_inbox", + "currency_pound": { + "name": "currency_pound", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "all_out": { - "name": "all_out", + "20mp": { + "name": "20mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "analytics": { - "name": "analytics", + "filter_9": { + "name": "filter_9", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "anchor": { - "name": "anchor", + "brightness_3": { + "name": "brightness_3", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "android": { - "name": "android", + "filter_hdr": { + "name": "filter_hdr", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "announcement": { - "name": "announcement", + "14mp": { + "name": "14mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "api": { - "name": "api", + "lens": { + "name": "lens", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "app_blocking": { - "name": "app_blocking", + "auto_fix_high": { + "name": "auto_fix_high", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_circle_down": { - "name": "arrow_circle_down", + "10mp": { + "name": "10mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_circle_up": { - "name": "arrow_circle_up", + "iso": { + "name": "iso", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_right_alt": { - "name": "arrow_right_alt", + "photo_camera": { + "name": "photo_camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "article": { - "name": "article", + "motion_photos_on": { + "name": "motion_photos_on", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "aspect_ratio": { - "name": "aspect_ratio", + "bedtime_off": { + "name": "bedtime_off", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "assessment": { - "name": "assessment", + "image": { + "name": "image", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment": { - "name": "assignment", + "21mp": { + "name": "21mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_ind": { - "name": "assignment_ind", + "assistant_photo": { + "name": "assistant_photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_late": { - "name": "assignment_late", + "hdr_off": { + "name": "hdr_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_return": { - "name": "assignment_return", + "3mp": { + "name": "3mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_returned": { - "name": "assignment_returned", + "filter_8": { + "name": "filter_8", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assignment_turned_in": { - "name": "assignment_turned_in", + "filter_center_focus": { + "name": "filter_center_focus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "autorenew": { - "name": "autorenew", + "burst_mode": { + "name": "burst_mode", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "backup": { - "name": "backup", + "6mp": { + "name": "6mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "backup_table": { - "name": "backup_table", + "adjust": { + "name": "adjust", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "batch_prediction": { - "name": "batch_prediction", + "hevc": { + "name": "hevc", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "book": { - "name": "book", + "camera_roll": { + "name": "camera_roll", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark": { - "name": "bookmark", + "switch_video": { + "name": "switch_video", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmarks": { - "name": "bookmarks", + "camera": { + "name": "camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark_add": { - "name": "bookmark_add", + "video_stable": { + "name": "video_stable", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark_added": { - "name": "bookmark_added", + "filter_frames": { + "name": "filter_frames", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark_border": { - "name": "bookmark_border", + "dirty_lens": { + "name": "dirty_lens", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bookmark_remove": { - "name": "bookmark_remove", + "5mp": { + "name": "5mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "book_online": { - "name": "book_online", + "exposure": { + "name": "exposure", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bug_report": { - "name": "bug_report", + "photo_camera_back": { + "name": "photo_camera_back", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "build": { - "name": "build", + "transform": { + "name": "transform", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "build_circle": { - "name": "build_circle", + "color_lens": { + "name": "color_lens", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cached": { - "name": "cached", + "16mp": { + "name": "16mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calendar_today": { - "name": "calendar_today", + "currency_lira": { + "name": "currency_lira", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "calendar_view_day": { - "name": "calendar_view_day", + "crop_16_9": { + "name": "crop_16_9", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calendar_view_month": { - "name": "calendar_view_month", + "crop_original": { + "name": "crop_original", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calendar_view_week": { - "name": "calendar_view_week", + "filter_4": { + "name": "filter_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_enhance": { - "name": "camera_enhance", + "filter_vintage": { + "name": "filter_vintage", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cancel_schedule_send": { - "name": "cancel_schedule_send", + "nature_people": { + "name": "nature_people", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "card_giftcard": { - "name": "card_giftcard", + "navigate_before": { + "name": "navigate_before", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "card_membership": { - "name": "card_membership", + "add_photo_alternate": { + "name": "add_photo_alternate", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "card_travel": { - "name": "card_travel", + "12mp": { + "name": "12mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "change_history": { - "name": "change_history", + "filter_drama": { + "name": "filter_drama", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "check_circle": { - "name": "check_circle", + "brightness_2": { + "name": "brightness_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "check_circle_outline": { - "name": "check_circle_outline", + "video_camera_back": { + "name": "video_camera_back", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chrome_reader_mode": { - "name": "chrome_reader_mode", + "add_a_photo": { + "name": "add_a_photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "circle_notifications": { - "name": "circle_notifications", + "nature": { + "name": "nature", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "class": { - "name": "class", + "image_not_supported": { + "name": "image_not_supported", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "close_fullscreen": { - "name": "close_fullscreen", + "currency_franc": { + "name": "currency_franc", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "code": { - "name": "code", + "tune": { + "name": "tune", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "code_off": { - "name": "code_off", + "face_retouching_off": { + "name": "face_retouching_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "comment_bank": { - "name": "comment_bank", + "crop_3_2": { + "name": "crop_3_2", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "commute": { - "name": "commute", + "mic_external_on": { + "name": "mic_external_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "compare_arrows": { - "name": "compare_arrows", + "panorama_photosphere": { + "name": "panorama_photosphere", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "compress": { - "name": "compress", + "currency_ruble": { + "name": "currency_ruble", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "contactless": { - "name": "contactless", + "mp": { + "name": "mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_page": { - "name": "contact_page", + "auto_awesome_mosaic": { + "name": "auto_awesome_mosaic", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_support": { - "name": "contact_support", + "raw_off": { + "name": "raw_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "copyright": { - "name": "copyright", + "portrait": { + "name": "portrait", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "credit_card": { - "name": "credit_card", + "photo_size_select_small": { + "name": "photo_size_select_small", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "credit_card_off": { - "name": "credit_card_off", + "auto_fix_off": { + "name": "auto_fix_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dangerous": { - "name": "dangerous", + "22mp": { + "name": "22mp", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dashboard": { - "name": "dashboard", + "blur_off": { + "name": "blur_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dashboard_customize": { - "name": "dashboard_customize", + "looks_6": { + "name": "looks_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_exploration": { - "name": "data_exploration", + "tag_faces": { + "name": "tag_faces", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "date_range": { - "name": "date_range", + "looks": { + "name": "looks", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete": { - "name": "delete", + "motion_photos_auto": { + "name": "motion_photos_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete_forever": { - "name": "delete_forever", + "details": { + "name": "details", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete_outline": { - "name": "delete_outline", + "filter_3": { + "name": "filter_3", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "description": { - "name": "description", + "auto_awesome": { + "name": "auto_awesome", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "disabled_by_default": { - "name": "disabled_by_default", + "auto_fix_normal": { + "name": "auto_fix_normal", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "disabled_visible": { - "name": "disabled_visible", + "gradient": { + "name": "gradient", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dns": { - "name": "dns", + "wb_incandescent": { + "name": "wb_incandescent", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "done": { - "name": "done", + "landscape": { + "name": "landscape", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "done_all": { - "name": "done_all", + "incomplete_circle": { + "name": "incomplete_circle", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "done_outline": { - "name": "done_outline", + "hdr_on": { + "name": "hdr_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "donut_large": { - "name": "donut_large", + "contrast": { + "name": "contrast", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "donut_small": { - "name": "donut_small", + "blur_circular": { + "name": "blur_circular", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drag_indicator": { - "name": "drag_indicator", + "wb_twilight": { + "name": "wb_twilight", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dynamic_form": { - "name": "dynamic_form", + "crop": { + "name": "crop", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "eco": { - "name": "eco", + "blur_linear": { + "name": "blur_linear", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_calendar": { - "name": "edit_calendar", + "switch_camera": { + "name": "switch_camera", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_off": { - "name": "edit_off", + "photo_album": { + "name": "photo_album", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "eject": { - "name": "eject", + "deblur": { + "name": "deblur", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "euro_symbol": { - "name": "euro_symbol", + "currency_yen": { + "name": "currency_yen", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "event": { - "name": "event", + "panorama_horizontal": { + "name": "panorama_horizontal", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_seat": { - "name": "event_seat", + "filter_1": { + "name": "filter_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exit_to_app": { - "name": "exit_to_app", + "compare": { + "name": "compare", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "expand": { - "name": "expand", + "grain": { + "name": "grain", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "explore": { - "name": "explore", + "17mp": { + "name": "17mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "explore_off": { - "name": "explore_off", + "looks_4": { + "name": "looks_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "extension": { - "name": "extension", + "monochrome_photos": { + "name": "monochrome_photos", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "extension_off": { - "name": "extension_off", + "looks_two": { + "name": "looks_two", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "face": { - "name": "face", + "auto_stories": { + "name": "auto_stories", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "face_unlock": { - "name": "face_unlock", + "view_compact": { + "name": "view_compact", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fact_check": { - "name": "fact_check", + "camera_front": { + "name": "camera_front", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "favorite": { - "name": "favorite", + "8mp": { + "name": "8mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "favorite_border": { - "name": "favorite_border", + "blur_on": { + "name": "blur_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "feedback": { - "name": "feedback", + "image_search": { + "name": "image_search", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_present": { - "name": "file_present", + "shutter_speed": { + "name": "shutter_speed", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_alt": { - "name": "filter_alt", + "hdr_plus": { + "name": "hdr_plus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "find_in_page": { - "name": "find_in_page", + "panorama_wide_angle_select": { + "name": "panorama_wide_angle_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "find_replace": { - "name": "find_replace", + "timelapse": { + "name": "timelapse", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fingerprint": { - "name": "fingerprint", + "photo_size_select_large": { + "name": "photo_size_select_large", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fit_screen": { - "name": "fit_screen", + "panorama_horizontal_select": { + "name": "panorama_horizontal_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flaky": { - "name": "flaky", + "timer_3": { + "name": "timer_3", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flight_land": { - "name": "flight_land", + "center_focus_weak": { + "name": "center_focus_weak", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flight_takeoff": { - "name": "flight_takeoff", + "center_focus_strong": { + "name": "center_focus_strong", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_to_back": { - "name": "flip_to_back", + "auto_awesome_motion": { + "name": "auto_awesome_motion", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_to_front": { - "name": "flip_to_front", + "filter_5": { + "name": "filter_5", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flutter_dash": { - "name": "flutter_dash", + "exposure_plus_1": { + "name": "exposure_plus_1", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "free_cancellation": { - "name": "free_cancellation", + "audiotrack": { + "name": "audiotrack", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gavel": { - "name": "gavel", + "wb_cloudy": { + "name": "wb_cloudy", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "generating_tokens": { - "name": "generating_tokens", + "music_note": { + "name": "music_note", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "get_app": { - "name": "get_app", + "brush": { + "name": "brush", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gif": { - "name": "gif", + "photo": { + "name": "photo", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grade": { - "name": "grade", + "18mp": { + "name": "18mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grading": { - "name": "grading", + "loupe": { + "name": "loupe", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "group_work": { - "name": "group_work", + "currency_rupee": { + "name": "currency_rupee", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "g_translate": { - "name": "g_translate", + "flip": { + "name": "flip", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "help": { - "name": "help", + "remove_red_eye": { + "name": "remove_red_eye", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "help_center": { - "name": "help_center", - "keywords": [ - "action" + "texture": { + "name": "texture", + "keywords": [ + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "help_outline": { - "name": "help_outline", + "flash_on": { + "name": "flash_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hide_source": { - "name": "hide_source", + "7mp": { + "name": "7mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "highlight_alt": { - "name": "highlight_alt", + "wb_shade": { + "name": "wb_shade", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "highlight_off": { - "name": "highlight_off", + "receipt_long": { + "name": "receipt_long", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "history": { - "name": "history", + "rotate_right": { + "name": "rotate_right", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "history_toggle_off": { - "name": "history_toggle_off", + "crop_rotate": { + "name": "crop_rotate", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "home": { - "name": "home", + "2mp": { + "name": "2mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "horizontal_split": { - "name": "horizontal_split", + "raw_on": { + "name": "raw_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hotel_class": { - "name": "hotel_class", + "rotate_left": { + "name": "rotate_left", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_disabled": { - "name": "hourglass_disabled", + "crop_portrait": { + "name": "crop_portrait", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_empty": { - "name": "hourglass_empty", + "flip_camera_android": { + "name": "flip_camera_android", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_full": { - "name": "hourglass_full", + "rotate_90_degrees_ccw": { + "name": "rotate_90_degrees_ccw", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "http": { - "name": "http", + "photo_filter": { + "name": "photo_filter", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "https": { - "name": "https", + "exposure_plus_2": { + "name": "exposure_plus_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "important_devices": { - "name": "important_devices", + "motion_photos_pause": { + "name": "motion_photos_pause", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "info": { - "name": "info", + "assistant": { + "name": "assistant", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "info_outline": { - "name": "info_outline", + "flare": { + "name": "flare", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "input": { - "name": "input", + "picture_as_pdf": { + "name": "picture_as_pdf", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "integration_instructions": { - "name": "integration_instructions", + "brightness_4": { + "name": "brightness_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "invert_colors": { - "name": "invert_colors", + "camera_rear": { + "name": "camera_rear", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "label": { - "name": "label", + "circle": { + "name": "circle", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_important": { - "name": "label_important", + "dehaze": { + "name": "dehaze", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_important_outline": { - "name": "label_important_outline", + "filter_6": { + "name": "filter_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_off": { - "name": "label_off", + "motion_photos_paused": { + "name": "motion_photos_paused", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "label_outline": { - "name": "label_outline", + "crop_landscape": { + "name": "crop_landscape", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "language": { - "name": "language", + "linked_camera": { + "name": "linked_camera", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "launch": { - "name": "launch", + "24mp": { + "name": "24mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "leaderboard": { - "name": "leaderboard", + "logo_dev": { + "name": "logo_dev", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lightbulb": { - "name": "lightbulb", + "15mp": { + "name": "15mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lightbulb_outline": { - "name": "lightbulb_outline", + "panorama_vertical": { + "name": "panorama_vertical", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "line_style": { - "name": "line_style", + "motion_photos_off": { + "name": "motion_photos_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "line_weight": { - "name": "line_weight", + "panorama_vertical_select": { + "name": "panorama_vertical_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "list": { - "name": "list", + "grid_off": { + "name": "grid_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock": { - "name": "lock", + "panorama_fish_eye": { + "name": "panorama_fish_eye", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock_clock": { - "name": "lock_clock", + "autofps_select": { + "name": "autofps_select", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock_open": { - "name": "lock_open", + "photo_size_select_actual": { + "name": "photo_size_select_actual", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lock_outline": { - "name": "lock_outline", + "9mp": { + "name": "9mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "login": { - "name": "login", + "filter_7": { + "name": "filter_7", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "logout": { - "name": "logout", + "flip_camera_ios": { + "name": "flip_camera_ios", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "loyalty": { - "name": "loyalty", + "currency_yuan": { + "name": "currency_yuan", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "manage_accounts": { - "name": "manage_accounts", + "video_camera_front": { + "name": "video_camera_front", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "markunread_mailbox": { - "name": "markunread_mailbox", + "movie_filter": { + "name": "movie_filter", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_as_unread": { - "name": "mark_as_unread", + "collections": { + "name": "collections", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "maximize": { - "name": "maximize", + "tonality": { + "name": "tonality", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mediation": { - "name": "mediation", + "music_off": { + "name": "music_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "minimize": { - "name": "minimize", + "photo_library": { + "name": "photo_library", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "model_training": { - "name": "model_training", + "filter_none": { + "name": "filter_none", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "new_label": { - "name": "new_label", + "vignette": { + "name": "vignette", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "next_plan": { - "name": "next_plan", + "hide_image": { + "name": "hide_image", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nightlight_round": { - "name": "nightlight_round", + "4mp": { + "name": "4mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "note_add": { - "name": "note_add", + "30fps_select": { + "name": "30fps_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_accessible": { - "name": "not_accessible", + "looks_5": { + "name": "looks_5", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_started": { - "name": "not_started", + "exposure_zero": { + "name": "exposure_zero", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_accounts": { - "name": "no_accounts", + "11mp": { + "name": "11mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "offline_bolt": { - "name": "offline_bolt", + "healing": { + "name": "healing", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "offline_pin": { - "name": "offline_pin", + "exposure_neg_1": { + "name": "exposure_neg_1", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "online_prediction": { - "name": "online_prediction", + "filter": { + "name": "filter", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "opacity": { - "name": "opacity", + "filter_9_plus": { + "name": "filter_9_plus", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_browser": { - "name": "open_in_browser", + "movie_creation": { + "name": "movie_creation", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_full": { - "name": "open_in_full", + "add_to_photos": { + "name": "add_to_photos", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_new": { - "name": "open_in_new", + "crop_free": { + "name": "crop_free", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_in_new_off": { - "name": "open_in_new_off", + "filter_tilt_shift": { + "name": "filter_tilt_shift", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "open_with": { - "name": "open_with", + "hdr_strong": { + "name": "hdr_strong", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outbond": { - "name": "outbond", + "wb_auto": { + "name": "wb_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outbound": { - "name": "outbound", + "filter_2": { + "name": "filter_2", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "outbox": { - "name": "outbox", + "looks_3": { + "name": "looks_3", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "outlet": { - "name": "outlet", + "collections_bookmark": { + "name": "collections_bookmark", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pageview": { - "name": "pageview", + "brightness_6": { + "name": "brightness_6", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "paid": { - "name": "paid", + "timer_10": { + "name": "timer_10", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pan_tool": { - "name": "pan_tool", + "palette": { + "name": "palette", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "payment": { - "name": "payment", + "edit": { + "name": "edit", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pending": { - "name": "pending", + "crop_square": { + "name": "crop_square", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pending_actions": { - "name": "pending_actions", + "19mp": { + "name": "19mp", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_camera_mic": { - "name": "perm_camera_mic", + "timer": { + "name": "timer", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_contact_calendar": { - "name": "perm_contact_calendar", + "hdr_enhanced_select": { + "name": "hdr_enhanced_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_data_setting": { - "name": "perm_data_setting", + "flash_off": { + "name": "flash_off", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_device_information": { - "name": "perm_device_information", + "panorama_wide_angle": { + "name": "panorama_wide_angle", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_identity": { - "name": "perm_identity", + "thermostat_auto": { + "name": "thermostat_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_media": { - "name": "perm_media", + "camera_alt": { + "name": "camera_alt", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_phone_msg": { - "name": "perm_phone_msg", + "60fps_select": { + "name": "60fps_select", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "perm_scan_wifi": { - "name": "perm_scan_wifi", + "style": { + "name": "style", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pets": { - "name": "pets", + "rotate_90_degrees_cw": { + "name": "rotate_90_degrees_cw", "keywords": [ - "action" + "image" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "picture_in_picture": { - "name": "picture_in_picture", + "panorama": { + "name": "panorama", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "picture_in_picture_alt": { - "name": "picture_in_picture_alt", + "filter_b_and_w": { + "name": "filter_b_and_w", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin_end": { - "name": "pin_end", + "mic_external_off": { + "name": "mic_external_off", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin_invoke": { - "name": "pin_invoke", + "looks_one": { + "name": "looks_one", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "plagiarism": { - "name": "plagiarism", + "slideshow": { + "name": "slideshow", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_for_work": { - "name": "play_for_work", + "image_aspect_ratio": { + "name": "image_aspect_ratio", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "polymer": { - "name": "polymer", + "photo_camera_front": { + "name": "photo_camera_front", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "power_settings_new": { - "name": "power_settings_new", + "crop_5_4": { + "name": "crop_5_4", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pregnant_woman": { - "name": "pregnant_woman", + "control_point": { + "name": "control_point", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "preview": { - "name": "preview", + "brightness_7": { + "name": "brightness_7", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "print": { - "name": "print", + "control_point_duplicate": { + "name": "control_point_duplicate", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "privacy_tip": { - "name": "privacy_tip", + "exposure_neg_2": { + "name": "exposure_neg_2", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "private_connectivity": { - "name": "private_connectivity", + "hdr_weak": { + "name": "hdr_weak", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "production_quantity_limits": { - "name": "production_quantity_limits", + "grid_on": { + "name": "grid_on", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "published_with_changes": { - "name": "published_with_changes", + "flash_auto": { + "name": "flash_auto", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "query_builder": { - "name": "query_builder", + "face_retouching_natural": { + "name": "face_retouching_natural", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "question_answer": { - "name": "question_answer", + "leak_add": { + "name": "leak_add", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "quickreply": { - "name": "quickreply", + "navigate_next": { + "name": "navigate_next", "keywords": [ - "action" + "image" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "receipt": { - "name": "receipt", + "colorize": { + "name": "colorize", "keywords": [ - "action" + "image" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "record_voice_over": { - "name": "record_voice_over", + "radio": { + "name": "radio", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "redeem": { - "name": "redeem", + "speed": { + "name": "speed", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_done": { - "name": "remove_done", + "volume_off": { + "name": "volume_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_shopping_cart": { - "name": "remove_shopping_cart", + "shuffle": { + "name": "shuffle", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reorder": { - "name": "reorder", + "4k": { + "name": "4k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report_problem": { - "name": "report_problem", + "featured_play_list": { + "name": "featured_play_list", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "request_page": { - "name": "request_page", + "closed_caption": { + "name": "closed_caption", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restore": { - "name": "restore", + "queue_music": { + "name": "queue_music", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "restore_from_trash": { - "name": "restore_from_trash", + "subtitles": { + "name": "subtitles", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restore_page": { - "name": "restore_page", + "art_track": { + "name": "art_track", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "room": { - "name": "room", + "album": { + "name": "album", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rounded_corner": { - "name": "rounded_corner", + "replay_circle_filled": { + "name": "replay_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rowing": { - "name": "rowing", - "keywords": [ - "action" + "hd": { + "name": "hd", + "keywords": [ + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rule": { - "name": "rule", + "3k": { + "name": "3k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "saved_search": { - "name": "saved_search", + "not_interested": { + "name": "not_interested", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "savings": { - "name": "savings", + "fiber_smart_record": { + "name": "fiber_smart_record", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "schedule": { - "name": "schedule", + "snooze": { + "name": "snooze", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "schedule_send": { - "name": "schedule_send", + "1k_plus": { + "name": "1k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "search": { - "name": "search", + "pause_circle_outline": { + "name": "pause_circle_outline", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "search_off": { - "name": "search_off", + "airplay": { + "name": "airplay", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "segment": { - "name": "segment", + "add_to_queue": { + "name": "add_to_queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "send_and_archive": { - "name": "send_and_archive", + "9k": { + "name": "9k", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensors": { - "name": "sensors", + "10k": { + "name": "10k", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensors_off": { - "name": "sensors_off", + "audio_file": { + "name": "audio_file", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings": { - "name": "settings", + "3k_plus": { + "name": "3k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_accessibility": { - "name": "settings_accessibility", + "2k": { + "name": "2k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_applications": { - "name": "settings_applications", + "play_circle_filled": { + "name": "play_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_backup_restore": { - "name": "settings_backup_restore", + "high_quality": { + "name": "high_quality", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_bluetooth": { - "name": "settings_bluetooth", + "new_releases": { + "name": "new_releases", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_brightness": { - "name": "settings_brightness", + "queue_play_next": { + "name": "queue_play_next", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_cell": { - "name": "settings_cell", + "pause_circle": { + "name": "pause_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_ethernet": { - "name": "settings_ethernet", + "closed_caption_disabled": { + "name": "closed_caption_disabled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_antenna": { - "name": "settings_input_antenna", + "control_camera": { + "name": "control_camera", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_component": { - "name": "settings_input_component", + "games": { + "name": "games", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_composite": { - "name": "settings_input_composite", + "replay": { + "name": "replay", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_hdmi": { - "name": "settings_input_hdmi", + "call_to_action": { + "name": "call_to_action", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_input_svideo": { - "name": "settings_input_svideo", + "featured_video": { + "name": "featured_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_overscan": { - "name": "settings_overscan", + "volume_mute": { + "name": "volume_mute", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_phone": { - "name": "settings_phone", + "music_video": { + "name": "music_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_power": { - "name": "settings_power", + "mic_none": { + "name": "mic_none", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_remote": { - "name": "settings_remote", + "playlist_add_circle": { + "name": "playlist_add_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_voice": { - "name": "settings_voice", + "remove_from_queue": { + "name": "remove_from_queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shop": { - "name": "shop", + "web_asset": { + "name": "web_asset", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shopping_bag": { - "name": "shopping_bag", + "sort_by_alpha": { + "name": "sort_by_alpha", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shopping_basket": { - "name": "shopping_basket", + "6k": { + "name": "6k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shopping_cart": { - "name": "shopping_cart", + "7k_plus": { + "name": "7k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shop_2": { - "name": "shop_2", + "playlist_add_check": { + "name": "playlist_add_check", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shop_two": { - "name": "shop_two", + "fiber_pin": { + "name": "fiber_pin", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_button": { - "name": "smart_button", + "fiber_dvr": { + "name": "fiber_dvr", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "source": { - "name": "source", + "5k": { + "name": "5k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "space_dashboard": { - "name": "space_dashboard", + "4k_plus": { + "name": "4k_plus", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_notes": { - "name": "speaker_notes", + "sd": { + "name": "sd", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_notes_off": { - "name": "speaker_notes_off", + "replay_10": { + "name": "replay_10", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "spellcheck": { - "name": "spellcheck", + "8k": { + "name": "8k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stars": { - "name": "stars", + "stop": { + "name": "stop", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star_rate": { - "name": "star_rate", + "play_arrow": { + "name": "play_arrow", "keywords": [ - "action" + "av" ], "heights": { - "18": { - "width": 18, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sticky_note_2": { - "name": "sticky_note_2", + "9k_plus": { + "name": "9k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "store": { - "name": "store", + "av_timer": { + "name": "av_timer", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subject": { - "name": "subject", + "note": { + "name": "note", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subtitles_off": { - "name": "subtitles_off", + "repeat_one_on": { + "name": "repeat_one_on", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "supervised_user_circle": { - "name": "supervised_user_circle", + "video_label": { + "name": "video_label", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "supervisor_account": { - "name": "supervisor_account", + "fiber_manual_record": { + "name": "fiber_manual_record", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "support": { - "name": "support", + "explicit": { + "name": "explicit", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_horiz": { - "name": "swap_horiz", + "repeat": { + "name": "repeat", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_horizontal_circle": { - "name": "swap_horizontal_circle", + "forward_30": { + "name": "forward_30", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_vert": { - "name": "swap_vert", + "equalizer": { + "name": "equalizer", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_vertical_circle": { - "name": "swap_vertical_circle", + "play_circle_outline": { + "name": "play_circle_outline", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "swipe": { - "name": "swipe", + "shuffle_on": { + "name": "shuffle_on", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync_alt": { - "name": "sync_alt", + "playlist_play": { + "name": "playlist_play", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_update_alt": { - "name": "system_update_alt", + "mic": { + "name": "mic", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tab": { - "name": "tab", + "6k_plus": { + "name": "6k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "table_view": { - "name": "table_view", + "7k": { + "name": "7k", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tab_unselected": { - "name": "tab_unselected", + "play_circle": { + "name": "play_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "task_alt": { - "name": "task_alt", + "subscriptions": { + "name": "subscriptions", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotate_up": { - "name": "text_rotate_up", + "queue": { + "name": "queue", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotate_vertical": { - "name": "text_rotate_vertical", + "stop_circle": { + "name": "stop_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_angledown": { - "name": "text_rotation_angledown", + "5k_plus": { + "name": "5k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_angleup": { - "name": "text_rotation_angleup", + "video_file": { + "name": "video_file", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_down": { - "name": "text_rotation_down", + "branding_watermark": { + "name": "branding_watermark", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_rotation_none": { - "name": "text_rotation_none", + "replay_30": { + "name": "replay_30", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "theaters": { - "name": "theaters", + "recent_actors": { + "name": "recent_actors", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumbs_up_down": { - "name": "thumbs_up_down", + "fast_rewind": { + "name": "fast_rewind", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_down": { - "name": "thumb_down", + "play_disabled": { + "name": "play_disabled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_down_off_alt": { - "name": "thumb_down_off_alt", + "forward_5": { + "name": "forward_5", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_up": { - "name": "thumb_up", + "slow_motion_video": { + "name": "slow_motion_video", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_up_off_alt": { - "name": "thumb_up_off_alt", + "repeat_one": { + "name": "repeat_one", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timeline": { - "name": "timeline", + "playlist_add_check_circle": { + "name": "playlist_add_check_circle", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tips_and_updates": { - "name": "tips_and_updates", + "fiber_new": { + "name": "fiber_new", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "toc": { - "name": "toc", + "video_library": { + "name": "video_library", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "today": { - "name": "today", + "video_settings": { + "name": "video_settings", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "toll": { - "name": "toll", + "forward_10": { + "name": "forward_10", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "touch_app": { - "name": "touch_app", + "playlist_remove": { + "name": "playlist_remove", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tour": { - "name": "tour", + "video_call": { + "name": "video_call", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "track_changes": { - "name": "track_changes", + "library_add_check": { + "name": "library_add_check", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "translate": { - "name": "translate", + "hearing": { + "name": "hearing", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "trending_down": { - "name": "trending_down", + "movie": { + "name": "movie", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "trending_flat": { - "name": "trending_flat", + "5g": { + "name": "5g", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "trending_up": { - "name": "trending_up", + "fast_forward": { + "name": "fast_forward", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "try": { - "name": "try", + "closed_caption_off": { + "name": "closed_caption_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "turned_in": { - "name": "turned_in", + "hearing_disabled": { + "name": "hearing_disabled", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "turned_in_not": { - "name": "turned_in_not", + "8k_plus": { + "name": "8k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unpublished": { - "name": "unpublished", + "2k_plus": { + "name": "2k_plus", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "update": { - "name": "update", + "skip_next": { + "name": "skip_next", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "update_disabled": { - "name": "update_disabled", + "replay_5": { + "name": "replay_5", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "upgrade": { - "name": "upgrade", + "1k": { + "name": "1k", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "verified": { - "name": "verified", + "web": { + "name": "web", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "verified_user": { - "name": "verified_user", + "playlist_add": { + "name": "playlist_add", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_split": { - "name": "vertical_split", + "volume_up": { + "name": "volume_up", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_agenda": { - "name": "view_agenda", + "missed_video_call": { + "name": "missed_video_call", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_array": { - "name": "view_array", + "library_add": { + "name": "library_add", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_carousel": { - "name": "view_carousel", + "surround_sound": { + "name": "surround_sound", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_column": { - "name": "view_column", + "skip_previous": { + "name": "skip_previous", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_day": { - "name": "view_day", + "mic_off": { + "name": "mic_off", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_headline": { - "name": "view_headline", + "pause_circle_filled": { + "name": "pause_circle_filled", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_in_ar": { - "name": "view_in_ar", + "library_music": { + "name": "library_music", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_list": { - "name": "view_list", + "videocam_off": { + "name": "videocam_off", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_module": { - "name": "view_module", + "repeat_on": { + "name": "repeat_on", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_quilt": { - "name": "view_quilt", + "library_books": { + "name": "library_books", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_sidebar": { - "name": "view_sidebar", + "loop": { + "name": "loop", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_stream": { - "name": "view_stream", + "interpreter_mode": { + "name": "interpreter_mode", "keywords": [ - "action" + "av" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_week": { - "name": "view_week", + "pause": { + "name": "pause", "keywords": [ - "action" + "av" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "visibility": { - "name": "visibility", + "volume_down": { + "name": "volume_down", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "visibility_off": { - "name": "visibility_off", + "videocam": { + "name": "videocam", "keywords": [ - "action" + "av" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "voice_over_off": { - "name": "voice_over_off", + "web_asset_off": { + "name": "web_asset_off", "keywords": [ - "action" + "av" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "watch_later": { - "name": "watch_later", + "shield_moon": { + "name": "shield_moon", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_protected_setup": { - "name": "wifi_protected_setup", + "sensor_window": { + "name": "sensor_window", "keywords": [ - "action" + "home" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "work": { - "name": "work", + "sensor_door": { + "name": "sensor_door", "keywords": [ - "action" + "home" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "work_off": { - "name": "work_off", + "calendar_view_month": { + "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "work_outline": { - "name": "work_outline", + "density_large": { + "name": "density_large", "keywords": [ "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wysiwyg": { - "name": "wysiwyg", + "tips_and_updates": { + "name": "tips_and_updates", "keywords": [ "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "youtube_searched_for": { - "name": "youtube_searched_for", + "assignment_returned": { + "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "zoom_in": { - "name": "zoom_in", + "query_builder": { + "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "zoom_out": { - "name": "zoom_out", + "label_important_outline": { + "name": "label_important_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_alert": { - "name": "add_alert", + "view_agenda": { + "name": "view_agenda", "keywords": [ - "alert" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_delete": { - "name": "auto_delete", + "assured_workload": { + "name": "assured_workload", "keywords": [ - "alert" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "error": { - "name": "error", + "perm_device_information": { + "name": "perm_device_information", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "error_outline": { - "name": "error_outline", + "plagiarism": { + "name": "plagiarism", "keywords": [ - "alert" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "notification_important": { - "name": "notification_important", + "settings_remote": { + "name": "settings_remote", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "warning": { - "name": "warning", + "record_voice_over": { + "name": "record_voice_over", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "warning_amber": { - "name": "warning_amber", + "swap_horizontal_circle": { + "name": "swap_horizontal_circle", "keywords": [ - "alert" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "10k": { - "name": "10k", + "payment": { + "name": "payment", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "1k": { - "name": "1k", + "flip_to_front": { + "name": "flip_to_front", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "1k_plus": { - "name": "1k_plus", + "update": { + "name": "update", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "2k": { - "name": "2k", + "segment": { + "name": "segment", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "2k_plus": { - "name": "2k_plus", + "open_in_full": { + "name": "open_in_full", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "3k": { - "name": "3k", + "cached": { + "name": "cached", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "3k_plus": { - "name": "3k_plus", + "upgrade": { + "name": "upgrade", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "4k": { - "name": "4k", + "api": { + "name": "api", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4k_plus": { - "name": "4k_plus", + "book": { + "name": "book", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "5g": { - "name": "5g", + "view_sidebar": { + "name": "view_sidebar", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "5k": { - "name": "5k", + "accessibility_new": { + "name": "accessibility_new", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "5k_plus": { - "name": "5k_plus", + "highlight_off": { + "name": "highlight_off", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6k": { - "name": "6k", + "perm_phone_msg": { + "name": "perm_phone_msg", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6k_plus": { - "name": "6k_plus", + "g_translate": { + "name": "g_translate", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "7k": { - "name": "7k", + "lock_open": { + "name": "lock_open", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "7k_plus": { - "name": "7k_plus", + "redeem": { + "name": "redeem", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "8k": { - "name": "8k", + "feedback": { + "name": "feedback", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "8k_plus": { - "name": "8k_plus", + "dns": { + "name": "dns", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "9k": { - "name": "9k", + "mediation": { + "name": "mediation", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "9k_plus": { - "name": "9k_plus", + "view_compact_alt": { + "name": "view_compact_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_queue": { - "name": "add_to_queue", + "label_important": { + "name": "label_important", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplay": { - "name": "airplay", + "token": { + "name": "token", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "album": { - "name": "album", + "extension": { + "name": "extension", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "art_track": { - "name": "art_track", + "settings_cell": { + "name": "settings_cell", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "av_timer": { - "name": "av_timer", + "display_settings": { + "name": "display_settings", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "branding_watermark": { - "name": "branding_watermark", + "task_alt": { + "name": "task_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_to_action": { - "name": "call_to_action", + "http": { + "name": "http", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "closed_caption": { - "name": "closed_caption", + "today": { + "name": "today", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "closed_caption_disabled": { - "name": "closed_caption_disabled", + "settings_input_svideo": { + "name": "settings_input_svideo", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "closed_caption_off": { - "name": "closed_caption_off", + "input": { + "name": "input", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "control_camera": { - "name": "control_camera", + "commute": { + "name": "commute", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "equalizer": { - "name": "equalizer", + "view_quilt": { + "name": "view_quilt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "explicit": { - "name": "explicit", + "store": { + "name": "store", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fast_forward": { - "name": "fast_forward", + "play_for_work": { + "name": "play_for_work", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fast_rewind": { - "name": "fast_rewind", + "rounded_corner": { + "name": "rounded_corner", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "featured_play_list": { - "name": "featured_play_list", + "track_changes": { + "name": "track_changes", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "featured_video": { - "name": "featured_video", + "zoom_in": { + "name": "zoom_in", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_dvr": { - "name": "fiber_dvr", + "thumb_down": { + "name": "thumb_down", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_manual_record": { - "name": "fiber_manual_record", + "disabled_by_default": { + "name": "disabled_by_default", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_new": { - "name": "fiber_new", + "account_balance": { + "name": "account_balance", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_pin": { - "name": "fiber_pin", + "flutter_dash": { + "name": "flutter_dash", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fiber_smart_record": { - "name": "fiber_smart_record", + "accessible_forward": { + "name": "accessible_forward", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_10": { - "name": "forward_10", + "text_rotation_angleup": { + "name": "text_rotation_angleup", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_30": { - "name": "forward_30", + "all_inbox": { + "name": "all_inbox", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_5": { - "name": "forward_5", + "saved_search": { + "name": "saved_search", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "games": { - "name": "games", + "switch_access_shortcut": { + "name": "switch_access_shortcut", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hd": { - "name": "hd", + "card_travel": { + "name": "card_travel", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hearing": { - "name": "hearing", + "perm_data_setting": { + "name": "perm_data_setting", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hearing_disabled": { - "name": "hearing_disabled", + "check_circle": { + "name": "check_circle", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "high_quality": { - "name": "high_quality", + "perm_scan_wifi": { + "name": "perm_scan_wifi", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_add": { - "name": "library_add", + "perm_camera_mic": { + "name": "perm_camera_mic", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_add_check": { - "name": "library_add_check", + "php": { + "name": "php", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_books": { - "name": "library_books", + "swap_horiz": { + "name": "swap_horiz", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "library_music": { - "name": "library_music", + "search_off": { + "name": "search_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "loop": { - "name": "loop", + "exit_to_app": { + "name": "exit_to_app", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic": { - "name": "mic", + "send_and_archive": { + "name": "send_and_archive", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_none": { - "name": "mic_none", + "outlet": { + "name": "outlet", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_off": { - "name": "mic_off", + "hide_source": { + "name": "hide_source", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "missed_video_call": { - "name": "missed_video_call", + "autorenew": { + "name": "autorenew", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "movie": { - "name": "movie", + "offline_pin": { + "name": "offline_pin", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "music_video": { - "name": "music_video", + "restore": { + "name": "restore", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "new_releases": { - "name": "new_releases", + "donut_large": { + "name": "donut_large", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "note": { - "name": "note", + "open_with": { + "name": "open_with", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_interested": { - "name": "not_interested", + "hls_off": { + "name": "hls_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause": { - "name": "pause", + "history": { + "name": "history", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_circle": { - "name": "pause_circle", + "percent": { + "name": "percent", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_circle_filled": { - "name": "pause_circle_filled", + "comment_bank": { + "name": "comment_bank", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_circle_outline": { - "name": "pause_circle_outline", + "sync_alt": { + "name": "sync_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "playlist_add": { - "name": "playlist_add", + "alarm_on": { + "name": "alarm_on", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "playlist_add_check": { - "name": "playlist_add_check", + "text_rotate_up": { + "name": "text_rotate_up", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "playlist_play": { - "name": "playlist_play", + "settings_power": { + "name": "settings_power", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_arrow": { - "name": "play_arrow", + "manage_accounts": { + "name": "manage_accounts", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_circle": { - "name": "play_circle", + "swipe_down_alt": { + "name": "swipe_down_alt", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_circle_filled": { - "name": "play_circle_filled", + "open_in_new_off": { + "name": "open_in_new_off", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_circle_outline": { - "name": "play_circle_outline", + "settings_input_component": { + "name": "settings_input_component", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_disabled": { - "name": "play_disabled", + "arrow_right_alt": { + "name": "arrow_right_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "queue": { - "name": "queue", + "no_accounts": { + "name": "no_accounts", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "queue_music": { - "name": "queue_music", + "css": { + "name": "css", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "queue_play_next": { - "name": "queue_play_next", + "highlight_alt": { + "name": "highlight_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radio": { - "name": "radio", + "pets": { + "name": "pets", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "recent_actors": { - "name": "recent_actors", + "done_outline": { + "name": "done_outline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_from_queue": { - "name": "remove_from_queue", + "date_range": { + "name": "date_range", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat": { - "name": "repeat", + "thumb_up_off_alt": { + "name": "thumb_up_off_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat_on": { - "name": "repeat_on", + "speaker_notes_off": { + "name": "speaker_notes_off", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat_one": { - "name": "repeat_one", + "home": { + "name": "home", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "repeat_one_on": { - "name": "repeat_one_on", + "done": { + "name": "done", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay": { - "name": "replay", + "assignment_return": { + "name": "assignment_return", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_10": { - "name": "replay_10", + "swipe_left": { + "name": "swipe_left", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_30": { - "name": "replay_30", + "donut_small": { + "name": "donut_small", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_5": { - "name": "replay_5", + "settings_applications": { + "name": "settings_applications", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "replay_circle_filled": { - "name": "replay_circle_filled", + "speaker_notes": { + "name": "speaker_notes", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd": { - "name": "sd", + "work_outline": { + "name": "work_outline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shuffle": { - "name": "shuffle", + "webhook": { + "name": "webhook", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shuffle_on": { - "name": "shuffle_on", + "cancel_schedule_send": { + "name": "cancel_schedule_send", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "skip_next": { - "name": "skip_next", + "flip_to_back": { + "name": "flip_to_back", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "skip_previous": { - "name": "skip_previous", + "logout": { + "name": "logout", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "slow_motion_video": { - "name": "slow_motion_video", + "join_right": { + "name": "join_right", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snooze": { - "name": "snooze", + "try": { + "name": "try", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sort_by_alpha": { - "name": "sort_by_alpha", + "satellite_alt": { + "name": "satellite_alt", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speed": { - "name": "speed", + "picture_in_picture_alt": { + "name": "picture_in_picture_alt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stop": { - "name": "stop", + "calendar_view_day": { + "name": "calendar_view_day", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stop_circle": { - "name": "stop_circle", + "star_rate": { + "name": "star_rate", "keywords": [ - "av" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" + }, + "18": { + "width": 18, + "path": "" } } }, - "subscriptions": { - "name": "subscriptions", + "translate": { + "name": "translate", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subtitles": { - "name": "subtitles", + "offline_bolt": { + "name": "offline_bolt", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "surround_sound": { - "name": "surround_sound", + "visibility": { + "name": "visibility", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videocam": { - "name": "videocam", + "smart_button": { + "name": "smart_button", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videocam_off": { - "name": "videocam_off", + "lock": { + "name": "lock", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_call": { - "name": "video_call", + "view_in_ar": { + "name": "view_in_ar", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_label": { - "name": "video_label", + "timeline": { + "name": "timeline", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_library": { - "name": "video_library", + "dashboard_customize": { + "name": "dashboard_customize", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_settings": { - "name": "video_settings", + "filter_alt_off": { + "name": "filter_alt_off", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_down": { - "name": "volume_down", + "flaky": { + "name": "flaky", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_mute": { - "name": "volume_mute", + "pregnant_woman": { + "name": "pregnant_woman", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_off": { - "name": "volume_off", + "text_rotate_vertical": { + "name": "text_rotate_vertical", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "volume_up": { - "name": "volume_up", + "launch": { + "name": "launch", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "web": { - "name": "web", + "switch_access_shortcut_add": { + "name": "switch_access_shortcut_add", "keywords": [ - "av" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "web_asset": { - "name": "web_asset", + "stars": { + "name": "stars", "keywords": [ - "av" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "web_asset_off": { - "name": "web_asset_off", + "subtitles_off": { + "name": "subtitles_off", "keywords": [ - "av" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "3p": { - "name": "3p", + "report_problem": { + "name": "report_problem", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_ic_call": { - "name": "add_ic_call", + "print": { + "name": "print", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "alternate_email": { - "name": "alternate_email", + "view_module": { + "name": "view_module", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "app_registration": { - "name": "app_registration", + "view_cozy": { + "name": "view_cozy", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "business": { - "name": "business", + "update_disabled": { + "name": "update_disabled", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call": { - "name": "call", + "sticky_note_2": { + "name": "sticky_note_2", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_end": { - "name": "call_end", + "perm_media": { + "name": "perm_media", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_made": { - "name": "call_made", + "add_task": { + "name": "add_task", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_merge": { - "name": "call_merge", + "add_card": { + "name": "add_card", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_missed": { - "name": "call_missed", + "line_weight": { + "name": "line_weight", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_missed_outgoing": { - "name": "call_missed_outgoing", + "support": { + "name": "support", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_received": { - "name": "call_received", + "settings_bluetooth": { + "name": "settings_bluetooth", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "call_split": { - "name": "call_split", + "thumbs_up_down": { + "name": "thumbs_up_down", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cancel_presentation": { - "name": "cancel_presentation", + "explore": { + "name": "explore", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cell_wifi": { - "name": "cell_wifi", + "restore_from_trash": { + "name": "restore_from_trash", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chat": { - "name": "chat", + "backup_table": { + "name": "backup_table", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chat_bubble": { - "name": "chat_bubble", + "remove_done": { + "name": "remove_done", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chat_bubble_outline": { - "name": "chat_bubble_outline", + "settings": { + "name": "settings", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "clear_all": { - "name": "clear_all", - "keywords": [ - "communication" + "done_all": { + "name": "done_all", + "keywords": [ + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "comment": { - "name": "comment", + "data_exploration": { + "name": "data_exploration", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "contacts": { - "name": "contacts", + "outbond": { + "name": "outbond", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_mail": { - "name": "contact_mail", + "face_unlock": { + "name": "face_unlock", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "contact_phone": { - "name": "contact_phone", + "card_membership": { + "name": "card_membership", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "desktop_access_disabled": { - "name": "desktop_access_disabled", + "search": { + "name": "search", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dialer_sip": { - "name": "dialer_sip", + "online_prediction": { + "name": "online_prediction", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dialpad": { - "name": "dialpad", + "power_settings_new": { + "name": "power_settings_new", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "document_scanner": { - "name": "document_scanner", + "perm_contact_calendar": { + "name": "perm_contact_calendar", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "domain_disabled": { - "name": "domain_disabled", + "hourglass_full": { + "name": "hourglass_full", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "domain_verification": { - "name": "domain_verification", + "density_medium": { + "name": "density_medium", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "duo": { - "name": "duo", + "chrome_reader_mode": { + "name": "chrome_reader_mode", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "email": { - "name": "email", + "assignment": { + "name": "assignment", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "forum": { - "name": "forum", + "hls": { + "name": "hls", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward_to_inbox": { - "name": "forward_to_inbox", + "swap_vert": { + "name": "swap_vert", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_bottom": { - "name": "hourglass_bottom", + "rocket_launch": { + "name": "rocket_launch", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hourglass_top": { - "name": "hourglass_top", + "contact_page": { + "name": "contact_page", "keywords": [ - "communication" + "action" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "123": { + "name": "123", + "keywords": [ + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "import_contacts": { - "name": "import_contacts", + "maximize": { + "name": "maximize", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "import_export": { - "name": "import_export", + "voice_over_off": { + "name": "voice_over_off", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "invert_colors_off": { - "name": "invert_colors_off", + "hotel_class": { + "name": "hotel_class", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "list_alt": { - "name": "list_alt", + "turned_in_not": { + "name": "turned_in_not", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "live_help": { - "name": "live_help", + "visibility_off": { + "name": "visibility_off", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_off": { - "name": "location_off", + "supervised_user_circle": { + "name": "supervised_user_circle", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_on": { - "name": "location_on", + "3d_rotation": { + "name": "3d_rotation", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mail_outline": { - "name": "mail_outline", + "class": { + "name": "class", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_chat_read": { - "name": "mark_chat_read", + "app_shortcut": { + "name": "app_shortcut", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_chat_unread": { - "name": "mark_chat_unread", + "reorder": { + "name": "reorder", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_email_read": { - "name": "mark_email_read", + "swipe": { + "name": "swipe", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mark_email_unread": { - "name": "mark_email_unread", + "view_stream": { + "name": "view_stream", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "message": { - "name": "message", + "event": { + "name": "event", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobile_screen_share": { - "name": "mobile_screen_share", + "shop_2": { + "name": "shop_2", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "more_time": { - "name": "more_time", + "loyalty": { + "name": "loyalty", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nat": { - "name": "nat", + "outbound": { + "name": "outbound", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_sim": { - "name": "no_sim", + "drag_indicator": { + "name": "drag_indicator", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pause_presentation": { - "name": "pause_presentation", + "android": { + "name": "android", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add_disabled": { - "name": "person_add_disabled", + "build_circle": { + "name": "build_circle", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_search": { - "name": "person_search", + "lock_clock": { + "name": "lock_clock", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone": { - "name": "phone", + "add_to_drive": { + "name": "add_to_drive", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_erase": { - "name": "phonelink_erase", + "view_list": { + "name": "view_list", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_lock": { - "name": "phonelink_lock", + "watch_later": { + "name": "watch_later", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_ring": { - "name": "phonelink_ring", + "savings": { + "name": "savings", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_setup": { - "name": "phonelink_setup", + "terminal": { + "name": "terminal", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_disabled": { - "name": "phone_disabled", + "remove_shopping_cart": { + "name": "remove_shopping_cart", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_enabled": { - "name": "phone_enabled", + "calendar_today": { + "name": "calendar_today", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "portable_wifi_off": { - "name": "portable_wifi_off", + "balance": { + "name": "balance", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "present_to_all": { - "name": "present_to_all", + "compare_arrows": { + "name": "compare_arrows", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "print_disabled": { - "name": "print_disabled", + "assessment": { + "name": "assessment", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "qr_code": { - "name": "qr_code", + "sensors_off": { + "name": "sensors_off", "keywords": [ - "communication" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "qr_code_2": { - "name": "qr_code_2", + "settings_input_composite": { + "name": "settings_input_composite", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "qr_code_scanner": { - "name": "qr_code_scanner", + "filter_alt": { + "name": "filter_alt", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "read_more": { - "name": "read_more", + "aspect_ratio": { + "name": "aspect_ratio", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ring_volume": { - "name": "ring_volume", + "shopping_cart_checkout": { + "name": "shopping_cart_checkout", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rss_feed": { - "name": "rss_feed", + "line_style": { + "name": "line_style", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rtt": { - "name": "rtt", + "view_carousel": { + "name": "view_carousel", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_share": { - "name": "screen_share", + "swipe_left_alt": { + "name": "swipe_left_alt", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_satisfied_alt": { - "name": "sentiment_satisfied_alt", + "label_off": { + "name": "label_off", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sip": { - "name": "sip", + "html": { + "name": "html", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_phone": { - "name": "speaker_phone", + "work": { + "name": "work", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_current_landscape": { - "name": "stay_current_landscape", + "help": { + "name": "help", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_current_portrait": { - "name": "stay_current_portrait", + "pageview": { + "name": "pageview", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_primary_landscape": { - "name": "stay_primary_landscape", + "minimize": { + "name": "minimize", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stay_primary_portrait": { - "name": "stay_primary_portrait", + "assignment_late": { + "name": "assignment_late", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stop_screen_share": { - "name": "stop_screen_share", + "bookmark_add": { + "name": "bookmark_add", "keywords": [ - "communication" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "swap_calls": { - "name": "swap_calls", + "description": { + "name": "description", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "textsms": { - "name": "textsms", + "face": { + "name": "face", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unsubscribe": { - "name": "unsubscribe", + "open_in_new": { + "name": "open_in_new", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "voicemail": { - "name": "voicemail", + "account_circle": { + "name": "account_circle", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vpn_key": { - "name": "vpn_key", + "text_rotation_down": { + "name": "text_rotation_down", "keywords": [ - "communication" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_calling": { - "name": "wifi_calling", + "youtube_searched_for": { + "name": "youtube_searched_for", "keywords": [ - "communication" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add": { - "name": "add", + "settings_backup_restore": { + "name": "settings_backup_restore", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_box": { - "name": "add_box", + "settings_phone": { + "name": "settings_phone", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_circle": { - "name": "add_circle", + "https": { + "name": "https", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_circle_outline": { - "name": "add_circle_outline", + "bookmark_added": { + "name": "bookmark_added", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_link": { - "name": "add_link", + "settings_input_hdmi": { + "name": "settings_input_hdmi", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "amp_stories": { - "name": "amp_stories", + "event_repeat": { + "name": "event_repeat", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "archive": { - "name": "archive", + "trending_flat": { + "name": "trending_flat", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attribution": { - "name": "attribution", + "build": { + "name": "build", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "backspace": { - "name": "backspace", + "preview": { + "name": "preview", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ballot": { - "name": "ballot", + "shopping_bag": { + "name": "shopping_bag", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "biotech": { - "name": "biotech", + "anchor": { + "name": "anchor", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "block": { - "name": "block", + "explore_off": { + "name": "explore_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bolt": { - "name": "bolt", + "all_out": { + "name": "all_out", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "calculate": { - "name": "calculate", + "accessibility": { + "name": "accessibility", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "change_circle": { - "name": "change_circle", + "assignment_turned_in": { + "name": "assignment_turned_in", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "clear": { - "name": "clear", + "dashboard": { + "name": "dashboard", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_copy": { - "name": "content_copy", + "system_update_alt": { + "name": "system_update_alt", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_cut": { - "name": "content_cut", + "pinch": { + "name": "pinch", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_paste": { - "name": "content_paste", + "help_outline": { + "name": "help_outline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "content_paste_off": { - "name": "content_paste_off", + "text_rotation_none": { + "name": "text_rotation_none", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "copy_all": { - "name": "copy_all", + "account_balance_wallet": { + "name": "account_balance_wallet", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "create": { - "name": "create", + "markunread_mailbox": { + "name": "markunread_mailbox", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delete_sweep": { - "name": "delete_sweep", + "spellcheck": { + "name": "spellcheck", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drafts": { - "name": "drafts", + "fingerprint": { + "name": "fingerprint", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dynamic_feed": { - "name": "dynamic_feed", + "open_in_browser": { + "name": "open_in_browser", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_copy": { - "name": "file_copy", + "ads_click": { + "name": "ads_click", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_list": { - "name": "filter_list", + "book_online": { + "name": "book_online", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flag": { - "name": "flag", + "subject": { + "name": "subject", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "font_download": { - "name": "font_download", + "swipe_right": { + "name": "swipe_right", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "font_download_off": { - "name": "font_download_off", + "swipe_down": { + "name": "swipe_down", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "forward": { - "name": "forward", + "arrow_circle_up": { + "name": "arrow_circle_up", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gesture": { - "name": "gesture", + "install_desktop": { + "name": "install_desktop", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "how_to_reg": { - "name": "how_to_reg", + "lightbulb_outline": { + "name": "lightbulb_outline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "how_to_vote": { - "name": "how_to_vote", + "polymer": { + "name": "polymer", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "inbox": { - "name": "inbox", + "code_off": { + "name": "code_off", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "insights": { - "name": "insights", + "edit_calendar": { + "name": "edit_calendar", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "inventory": { - "name": "inventory", + "list": { + "name": "list", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "inventory_2": { - "name": "inventory_2", + "euro_symbol": { + "name": "euro_symbol", "keywords": [ - "content" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "link": { - "name": "link", + "shopping_basket": { + "name": "shopping_basket", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "link_off": { - "name": "link_off", + "hourglass_empty": { + "name": "hourglass_empty", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "low_priority": { - "name": "low_priority", + "grade": { + "name": "grade", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mail": { - "name": "mail", + "data_thresholding": { + "name": "data_thresholding", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "markunread": { - "name": "markunread", + "login": { + "name": "login", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "move_to_inbox": { - "name": "move_to_inbox", + "new_label": { + "name": "new_label", "keywords": [ - "content" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "next_week": { - "name": "next_week", - "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "outlined_flag": { - "name": "outlined_flag", + "lock_outline": { + "name": "lock_outline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "policy": { - "name": "policy", + "view_column": { + "name": "view_column", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "push_pin": { - "name": "push_pin", + "privacy_tip": { + "name": "privacy_tip", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "redo": { - "name": "redo", + "tab_unselected": { + "name": "tab_unselected", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove": { - "name": "remove", + "join_left": { + "name": "join_left", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_circle": { - "name": "remove_circle", + "nightlight_round": { + "name": "nightlight_round", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_circle_outline": { - "name": "remove_circle_outline", + "change_history": { + "name": "change_history", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reply": { - "name": "reply", + "view_headline": { + "name": "view_headline", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reply_all": { - "name": "reply_all", + "alarm_off": { + "name": "alarm_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report": { - "name": "report", + "trending_up": { + "name": "trending_up", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report_gmailerrorred": { - "name": "report_gmailerrorred", + "alarm_add": { + "name": "alarm_add", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "report_off": { - "name": "report_off", + "add_shopping_cart": { + "name": "add_shopping_cart", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "save": { - "name": "save", + "article": { + "name": "article", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "save_alt": { - "name": "save_alt", + "info": { + "name": "info", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "select_all": { - "name": "select_all", + "dynamic_form": { + "name": "dynamic_form", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "send": { - "name": "send", + "paid": { + "name": "paid", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "shield": { - "name": "shield", + "edit_off": { + "name": "edit_off", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sort": { - "name": "sort", + "history_toggle_off": { + "name": "history_toggle_off", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "square_foot": { - "name": "square_foot", + "swipe_up_alt": { + "name": "swipe_up_alt", "keywords": [ - "content" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "stacked_bar_chart": { - "name": "stacked_bar_chart", + "bookmarks": { + "name": "bookmarks", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stream": { - "name": "stream", + "verified": { + "name": "verified", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tag": { - "name": "tag", + "lock_reset": { + "name": "lock_reset", "keywords": [ - "content" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_format": { - "name": "text_format", + "settings_overscan": { + "name": "settings_overscan", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unarchive": { - "name": "unarchive", + "eject": { + "name": "eject", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "undo": { - "name": "undo", + "trending_down": { + "name": "trending_down", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "upcoming": { - "name": "upcoming", + "question_answer": { + "name": "question_answer", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "waves": { - "name": "waves", + "turned_in": { + "name": "turned_in", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "weekend": { - "name": "weekend", + "settings_input_antenna": { + "name": "settings_input_antenna", "keywords": [ - "content" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "where_to_vote": { - "name": "where_to_vote", - "keywords": [ - "content" + "request_page": { + "name": "request_page", + "keywords": [ + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "1x_mobiledata": { - "name": "1x_mobiledata", + "private_connectivity": { + "name": "private_connectivity", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "30fps": { - "name": "30fps", + "fax": { + "name": "fax", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "3g_mobiledata": { - "name": "3g_mobiledata", + "table_view": { + "name": "table_view", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4g_mobiledata": { - "name": "4g_mobiledata", + "swipe_right_alt": { + "name": "swipe_right_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "4g_plus_mobiledata": { - "name": "4g_plus_mobiledata", + "integration_instructions": { + "name": "integration_instructions", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "60fps": { - "name": "60fps", + "swipe_up": { + "name": "swipe_up", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_alarm": { - "name": "access_alarm", + "generating_tokens": { + "name": "generating_tokens", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_alarms": { - "name": "access_alarms", + "opacity": { + "name": "opacity", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_time": { - "name": "access_time", + "favorite": { + "name": "favorite", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "access_time_filled": { - "name": "access_time_filled", + "question_mark": { + "name": "question_mark", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_alarm": { - "name": "add_alarm", + "pin_end": { + "name": "pin_end", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_home_screen": { - "name": "add_to_home_screen", + "source": { + "name": "source", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ad_units": { - "name": "ad_units", + "info_outline": { + "name": "info_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "air": { - "name": "air", + "accessible": { + "name": "accessible", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplanemode_active": { - "name": "airplanemode_active", + "lightbulb": { + "name": "lightbulb", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplanemode_inactive": { - "name": "airplanemode_inactive", + "close_fullscreen": { + "name": "close_fullscreen", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airplane_ticket": { - "name": "airplane_ticket", + "copyright": { + "name": "copyright", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "aod": { - "name": "aod", + "zoom_out": { + "name": "zoom_out", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_20": { - "name": "battery_20", + "vertical_split": { + "name": "vertical_split", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_30": { - "name": "battery_30", + "code": { + "name": "code", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_50": { - "name": "battery_50", + "group_work": { + "name": "group_work", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_60": { - "name": "battery_60", + "receipt": { + "name": "receipt", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_80": { - "name": "battery_80", + "restore_page": { + "name": "restore_page", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_90": { - "name": "battery_90", + "leaderboard": { + "name": "leaderboard", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_alert": { - "name": "battery_alert", + "view_timeline": { + "name": "view_timeline", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_charging_20": { - "name": "battery_charging_20", + "bug_report": { + "name": "bug_report", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_charging_30": { - "name": "battery_charging_30", + "settings_voice": { + "name": "settings_voice", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_charging_50": { - "name": "battery_charging_50", + "abc": { + "name": "abc", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_charging_60": { - "name": "battery_charging_60", + "shopping_cart": { + "name": "shopping_cart", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_charging_80": { - "name": "battery_charging_80", + "javascript": { + "name": "javascript", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_charging_90": { - "name": "battery_charging_90", + "commit": { + "name": "commit", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_charging_full": { - "name": "battery_charging_full", + "bookmark_remove": { + "name": "bookmark_remove", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_full": { - "name": "battery_full", + "install_mobile": { + "name": "install_mobile", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_saver": { - "name": "battery_saver", + "text_rotation_angledown": { + "name": "text_rotation_angledown", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_std": { - "name": "battery_std", + "fact_check": { + "name": "fact_check", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "battery_unknown": { - "name": "battery_unknown", + "favorite_border": { + "name": "favorite_border", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bloodtype": { - "name": "bloodtype", + "compress": { + "name": "compress", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth": { - "name": "bluetooth", + "important_devices": { + "name": "important_devices", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_connected": { - "name": "bluetooth_connected", + "swap_vertical_circle": { + "name": "swap_vertical_circle", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_disabled": { - "name": "bluetooth_disabled", + "pending_actions": { + "name": "pending_actions", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_drive": { - "name": "bluetooth_drive", + "sensors": { + "name": "sensors", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_searching": { - "name": "bluetooth_searching", + "work_off": { + "name": "work_off", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_auto": { - "name": "brightness_auto", + "wifi_protected_setup": { + "name": "wifi_protected_setup", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_high": { - "name": "brightness_high", + "card_giftcard": { + "name": "card_giftcard", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_low": { - "name": "brightness_low", + "pan_tool_alt": { + "name": "pan_tool_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_medium": { - "name": "brightness_medium", + "credit_card_off": { + "name": "credit_card_off", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cable": { - "name": "cable", + "tab": { + "name": "tab", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cameraswitch": { - "name": "cameraswitch", + "tour": { + "name": "tour", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "credit_score": { - "name": "credit_score", + "next_plan": { + "name": "next_plan", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dark_mode": { - "name": "dark_mode", + "flight_land": { + "name": "flight_land", "keywords": [ - "device" + "action" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_saver_off": { - "name": "data_saver_off", + "rocket": { + "name": "rocket", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_saver_on": { - "name": "data_saver_on", + "shop": { + "name": "shop", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "data_usage": { - "name": "data_usage", + "model_training": { + "name": "model_training", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "developer_mode": { - "name": "developer_mode", + "circle_notifications": { + "name": "circle_notifications", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "devices": { - "name": "devices", + "rowing": { + "name": "rowing", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "device_thermostat": { - "name": "device_thermostat", + "admin_panel_settings": { + "name": "admin_panel_settings", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_on_total_silence": { - "name": "do_not_disturb_on_total_silence", + "fit_screen": { + "name": "fit_screen", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dvr": { - "name": "dvr", + "settings_accessibility": { + "name": "settings_accessibility", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edgesensor_high": { - "name": "edgesensor_high", + "expand": { + "name": "expand", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edgesensor_low": { - "name": "edgesensor_low", + "room": { + "name": "room", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "e_mobiledata": { - "name": "e_mobiledata", + "bookmark": { + "name": "bookmark", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flashlight_off": { - "name": "flashlight_off", + "touch_app": { + "name": "touch_app", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flashlight_on": { - "name": "flashlight_on", + "bookmark_border": { + "name": "bookmark_border", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flourescent": { - "name": "flourescent", + "event_seat": { + "name": "event_seat", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fmd_bad": { - "name": "fmd_bad", + "view_kanban": { + "name": "view_kanban", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fmd_good": { - "name": "fmd_good", + "arrow_circle_right": { + "name": "arrow_circle_right", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gpp_bad": { - "name": "gpp_bad", + "supervisor_account": { + "name": "supervisor_account", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gpp_good": { - "name": "gpp_good", + "rule": { + "name": "rule", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gpp_maybe": { - "name": "gpp_maybe", + "help_center": { + "name": "help_center", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gps_fixed": { - "name": "gps_fixed", + "assignment_ind": { + "name": "assignment_ind", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gps_not_fixed": { - "name": "gps_not_fixed", + "view_comfy_alt": { + "name": "view_comfy_alt", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gps_off": { - "name": "gps_off", + "pin_invoke": { + "name": "pin_invoke", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "graphic_eq": { - "name": "graphic_eq", + "delete_outline": { + "name": "delete_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_3x3": { - "name": "grid_3x3", + "not_started": { + "name": "not_started", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_4x4": { - "name": "grid_4x4", + "outbox": { + "name": "outbox", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_goldenratio": { - "name": "grid_goldenratio", + "delete_forever": { + "name": "delete_forever", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "g_mobiledata": { - "name": "g_mobiledata", + "app_blocking": { + "name": "app_blocking", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_auto": { - "name": "hdr_auto", + "quickreply": { + "name": "quickreply", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_auto_select": { - "name": "hdr_auto_select", + "arrow_circle_left": { + "name": "arrow_circle_left", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_off_select": { - "name": "hdr_off_select", + "alarm": { + "name": "alarm", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_on_select": { - "name": "hdr_on_select", + "schedule": { + "name": "schedule", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "h_mobiledata": { - "name": "h_mobiledata", + "density_small": { + "name": "density_small", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "h_plus_mobiledata": { - "name": "h_plus_mobiledata", + "gif": { + "name": "gif", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lens_blur": { - "name": "lens_blur", + "contact_support": { + "name": "contact_support", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "light_mode": { - "name": "light_mode", + "swipe_vertical": { + "name": "swipe_vertical", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_disabled": { - "name": "location_disabled", + "production_quantity_limits": { + "name": "production_quantity_limits", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_searching": { - "name": "location_searching", - "keywords": [ - "device" + "verified_user": { + "name": "verified_user", + "keywords": [ + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lte_mobiledata": { - "name": "lte_mobiledata", + "get_app": { + "name": "get_app", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lte_plus_mobiledata": { - "name": "lte_plus_mobiledata", + "published_with_changes": { + "name": "published_with_changes", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "media_bluetooth_off": { - "name": "media_bluetooth_off", + "note_add": { + "name": "note_add", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "media_bluetooth_on": { - "name": "media_bluetooth_on", + "not_accessible": { + "name": "not_accessible", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "medication": { - "name": "medication", + "credit_card": { + "name": "credit_card", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobiledata_off": { - "name": "mobiledata_off", + "thumb_up": { + "name": "thumb_up", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobile_friendly": { - "name": "mobile_friendly", + "shop_two": { + "name": "shop_two", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mobile_off": { - "name": "mobile_off", + "dangerous": { + "name": "dangerous", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_night": { - "name": "mode_night", + "backup": { + "name": "backup", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_standby": { - "name": "mode_standby", + "theaters": { + "name": "theaters", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "monitor_weight": { - "name": "monitor_weight", + "analytics": { + "name": "analytics", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nearby_error": { - "name": "nearby_error", + "camera_enhance": { + "name": "camera_enhance", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nearby_off": { - "name": "nearby_off", + "disabled_visible": { + "name": "disabled_visible", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_cell": { - "name": "network_cell", + "account_box": { + "name": "account_box", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_wifi": { - "name": "network_wifi", + "find_in_page": { + "name": "find_in_page", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nfc": { - "name": "nfc", + "grading": { + "name": "grading", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nightlight": { - "name": "nightlight", + "toll": { + "name": "toll", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "note_alt": { - "name": "note_alt", + "label_outline": { + "name": "label_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "password": { - "name": "password", + "file_present": { + "name": "file_present", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pattern": { - "name": "pattern", + "pending": { + "name": "pending", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin": { - "name": "pin", + "calendar_view_week": { + "name": "calendar_view_week", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "play_lesson": { - "name": "play_lesson", + "thumb_down_off_alt": { + "name": "thumb_down_off_alt", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "price_change": { - "name": "price_change", + "arrow_circle_down": { + "name": "arrow_circle_down", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "price_check": { - "name": "price_check", + "unpublished": { + "name": "unpublished", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "quiz": { - "name": "quiz", + "view_day": { + "name": "view_day", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radar": { - "name": "radar", + "addchart": { + "name": "addchart", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remember_me": { - "name": "remember_me", + "extension_off": { + "name": "extension_off", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "reset_tv": { - "name": "reset_tv", + "view_array": { + "name": "view_array", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "restart_alt": { - "name": "restart_alt", + "gavel": { + "name": "gavel", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "reviews": { - "name": "reviews", + "pan_tool": { + "name": "pan_tool", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rsvp": { - "name": "rsvp", + "invert_colors": { + "name": "invert_colors", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "r_mobiledata": { - "name": "r_mobiledata", + "picture_in_picture": { + "name": "picture_in_picture", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screenshot": { - "name": "screenshot", + "flight_takeoff": { + "name": "flight_takeoff", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_lock_landscape": { - "name": "screen_lock_landscape", + "announcement": { + "name": "announcement", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_lock_portrait": { - "name": "screen_lock_portrait", + "language": { + "name": "language", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_lock_rotation": { - "name": "screen_lock_rotation", + "hourglass_disabled": { + "name": "hourglass_disabled", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_rotation": { - "name": "screen_rotation", + "mark_as_unread": { + "name": "mark_as_unread", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "screen_search_desktop": { - "name": "screen_search_desktop", + "view_week": { + "name": "view_week", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd_storage": { - "name": "sd_storage", + "wysiwyg": { + "name": "wysiwyg", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "security_update": { - "name": "security_update", + "settings_brightness": { + "name": "settings_brightness", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "security_update_good": { - "name": "security_update_good", + "currency_exchange": { + "name": "currency_exchange", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "security_update_warning": { - "name": "security_update_warning", + "space_dashboard": { + "name": "space_dashboard", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sell": { - "name": "sell", + "settings_ethernet": { + "name": "settings_ethernet", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "send_to_mobile": { - "name": "send_to_mobile", + "eco": { + "name": "eco", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_suggest": { - "name": "settings_suggest", + "find_replace": { + "name": "find_replace", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "settings_system_daydream": { - "name": "settings_system_daydream", + "delete": { + "name": "delete", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "share_location": { - "name": "share_location", + "gif_box": { + "name": "gif_box", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shortcut": { - "name": "shortcut", + "toc": { + "name": "toc", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_0_bar": { - "name": "signal_cellular_0_bar", + "perm_identity": { + "name": "perm_identity", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_1_bar": { - "name": "signal_cellular_1_bar", + "label": { + "name": "label", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_2_bar": { - "name": "signal_cellular_2_bar", + "batch_prediction": { + "name": "batch_prediction", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_3_bar": { - "name": "signal_cellular_3_bar", + "horizontal_split": { + "name": "horizontal_split", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_4_bar": { - "name": "signal_cellular_4_bar", + "contactless": { + "name": "contactless", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_alt": { - "name": "signal_cellular_alt", + "join_full": { + "name": "join_full", "keywords": [ - "device" + "action" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_connected_no_internet_0_bar": { - "name": "signal_cellular_connected_no_internet_0_bar", + "join_inner": { + "name": "join_inner", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_connected_no_internet_1_bar": { - "name": "signal_cellular_connected_no_internet_1_bar", - "keywords": [ - "device" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "signal_cellular_connected_no_internet_2_bar": { - "name": "signal_cellular_connected_no_internet_2_bar", + "check_circle_outline": { + "name": "check_circle_outline", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_connected_no_internet_3_bar": { - "name": "signal_cellular_connected_no_internet_3_bar", + "schedule_send": { + "name": "schedule_send", "keywords": [ - "device" + "action" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_connected_no_internet_4_bar": { - "name": "signal_cellular_connected_no_internet_4_bar", + "free_cancellation": { + "name": "free_cancellation", "keywords": [ - "device" + "action" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_nodata": { - "name": "signal_cellular_nodata", + "door_front": { + "name": "door_front", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_no_sim": { - "name": "signal_cellular_no_sim", + "window": { + "name": "window", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_null": { - "name": "signal_cellular_null", + "living": { + "name": "living", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_cellular_off": { - "name": "signal_cellular_off", + "shower": { + "name": "shower", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_0_bar": { - "name": "signal_wifi_0_bar", + "manage_search": { + "name": "manage_search", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_1_bar": { - "name": "signal_wifi_1_bar", + "blender": { + "name": "blender", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_1_bar_lock": { - "name": "signal_wifi_1_bar_lock", + "coffee": { + "name": "coffee", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_2_bar": { - "name": "signal_wifi_2_bar", + "chair": { + "name": "chair", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_2_bar_lock": { - "name": "signal_wifi_2_bar_lock", + "door_back": { + "name": "door_back", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_3_bar": { - "name": "signal_wifi_3_bar", + "light": { + "name": "light", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_3_bar_lock": { - "name": "signal_wifi_3_bar_lock", + "feed": { + "name": "feed", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_4_bar": { - "name": "signal_wifi_4_bar", + "dining": { + "name": "dining", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_4_bar_lock": { - "name": "signal_wifi_4_bar_lock", + "bedroom_child": { + "name": "bedroom_child", "keywords": [ - "device" + "search" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_bad": { - "name": "signal_wifi_bad", + "door_sliding": { + "name": "door_sliding", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_connected_no_internet_0": { - "name": "signal_wifi_connected_no_internet_0", + "yard": { + "name": "yard", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_connected_no_internet_1": { - "name": "signal_wifi_connected_no_internet_1", + "bedroom_parent": { + "name": "bedroom_parent", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_connected_no_internet_2": { - "name": "signal_wifi_connected_no_internet_2", + "camera_outdoor": { + "name": "camera_outdoor", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_connected_no_internet_3": { - "name": "signal_wifi_connected_no_internet_3", + "bed": { + "name": "bed", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_connected_no_internet_4": { - "name": "signal_wifi_connected_no_internet_4", + "camera_indoor": { + "name": "camera_indoor", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_off": { - "name": "signal_wifi_off", + "bedroom_baby": { + "name": "bedroom_baby", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_1_bar": { - "name": "signal_wifi_statusbar_1_bar", + "garage": { + "name": "garage", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_2_bar": { - "name": "signal_wifi_statusbar_2_bar", + "table_bar": { + "name": "table_bar", "keywords": [ - "device" + "search" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_3_bar": { - "name": "signal_wifi_statusbar_3_bar", + "flatware": { + "name": "flatware", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_4_bar": { - "name": "signal_wifi_statusbar_4_bar", + "coffee_maker": { + "name": "coffee_maker", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_connected_no_internet": { - "name": "signal_wifi_statusbar_connected_no_internet", + "bathroom": { + "name": "bathroom", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_connected_no_internet_1": { - "name": "signal_wifi_statusbar_connected_no_internet_1", + "podcasts": { + "name": "podcasts", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_connected_no_internet_2": { - "name": "signal_wifi_statusbar_connected_no_internet_2", + "table_restaurant": { + "name": "table_restaurant", "keywords": [ - "device" + "search" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_connected_no_internet_3": { - "name": "signal_wifi_statusbar_connected_no_internet_3", + "chair_alt": { + "name": "chair_alt", "keywords": [ - "device" + "search" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_connected_no_internet_4": { - "name": "signal_wifi_statusbar_connected_no_internet_4", + "doorbell": { + "name": "doorbell", "keywords": [ - "device" + "search" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_not_connected": { - "name": "signal_wifi_statusbar_not_connected", + "nightlight": { + "name": "nightlight", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "signal_wifi_statusbar_null": { - "name": "signal_wifi_statusbar_null", + "security_update": { + "name": "security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sim_card_download": { - "name": "sim_card_download", + "signal_wifi_4_bar": { + "name": "signal_wifi_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "splitscreen": { - "name": "splitscreen", + "battery_charging_90": { + "name": "battery_charging_90", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_score": { - "name": "sports_score", + "medication": { + "name": "medication", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "storage": { - "name": "storage", + "devices": { + "name": "devices", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "storm": { - "name": "storm", + "bloodtype": { + "name": "bloodtype", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "summarize": { - "name": "summarize", + "battery_alert": { + "name": "battery_alert", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_security_update": { - "name": "system_security_update", + "signal_wifi_statusbar_connected_no_internet_1": { + "name": "signal_wifi_statusbar_connected_no_internet_1", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_security_update_good": { - "name": "system_security_update_good", + "signal_wifi_3_bar_lock": { + "name": "signal_wifi_3_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_security_update_warning": { - "name": "system_security_update_warning", + "shortcut": { + "name": "shortcut", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "task": { - "name": "task", + "screenshot": { + "name": "screenshot", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thermostat": { - "name": "thermostat", + "brightness_high": { + "name": "brightness_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_10_select": { - "name": "timer_10_select", + "network_wifi": { + "name": "network_wifi", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_3_select": { - "name": "timer_3_select", + "lte_plus_mobiledata": { + "name": "lte_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tungsten": { - "name": "tungsten", + "play_lesson": { + "name": "play_lesson", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "usb": { - "name": "usb", + "wifi_tethering": { + "name": "wifi_tethering", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "usb_off": { - "name": "usb_off", + "share_location": { + "name": "share_location", "keywords": [ "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wallpaper": { - "name": "wallpaper", + "aod": { + "name": "aod", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "water": { - "name": "water", + "quiz": { + "name": "quiz", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "widgets": { - "name": "widgets", + "signal_wifi_statusbar_3_bar": { + "name": "signal_wifi_statusbar_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_calling_1": { - "name": "wifi_calling_1", + "developer_mode": { + "name": "developer_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_calling_2": { - "name": "wifi_calling_2", + "do_not_disturb_on_total_silence": { + "name": "do_not_disturb_on_total_silence", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_calling_3": { - "name": "wifi_calling_3", + "signal_wifi_statusbar_connected_no_internet_2": { + "name": "signal_wifi_statusbar_connected_no_internet_2", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_lock": { - "name": "wifi_lock", + "e_mobiledata": { + "name": "e_mobiledata", "keywords": [ "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_tethering": { - "name": "wifi_tethering", + "signal_wifi_statusbar_not_connected": { + "name": "signal_wifi_statusbar_not_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_tethering_error_rounded": { - "name": "wifi_tethering_error_rounded", + "mobiledata_off": { + "name": "mobiledata_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_tethering_off": { - "name": "wifi_tethering_off", + "data_usage": { + "name": "data_usage", "keywords": [ "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_chart": { - "name": "add_chart", + "storm": { + "name": "storm", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_comment": { - "name": "add_comment", + "60fps": { + "name": "60fps", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_horizontal_center": { - "name": "align_horizontal_center", + "gpp_good": { + "name": "gpp_good", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_horizontal_left": { - "name": "align_horizontal_left", + "screen_lock_landscape": { + "name": "screen_lock_landscape", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_horizontal_right": { - "name": "align_horizontal_right", + "graphic_eq": { + "name": "graphic_eq", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_vertical_bottom": { - "name": "align_vertical_bottom", + "nearby_error": { + "name": "nearby_error", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_vertical_center": { - "name": "align_vertical_center", + "bluetooth_searching": { + "name": "bluetooth_searching", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "align_vertical_top": { - "name": "align_vertical_top", + "sd_storage": { + "name": "sd_storage", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "area_chart": { - "name": "area_chart", + "mobile_off": { + "name": "mobile_off", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "attach_file": { - "name": "attach_file", + "signal_wifi_statusbar_connected_no_internet_4": { + "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "attach_money": { - "name": "attach_money", + "hdr_auto_select": { + "name": "hdr_auto_select", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_graph": { - "name": "auto_graph", + "battery_std": { + "name": "battery_std", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bar_chart": { - "name": "bar_chart", + "screen_lock_portrait": { + "name": "screen_lock_portrait", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_all": { - "name": "border_all", + "task": { + "name": "task", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_bottom": { - "name": "border_bottom", + "wifi_lock": { + "name": "wifi_lock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_clear": { - "name": "border_clear", + "water": { + "name": "water", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_color": { - "name": "border_color", + "grid_4x4": { + "name": "grid_4x4", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_horizontal": { - "name": "border_horizontal", + "gps_off": { + "name": "gps_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_inner": { - "name": "border_inner", + "signal_wifi_connected_no_internet_1": { + "name": "signal_wifi_connected_no_internet_1", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_left": { - "name": "border_left", + "phishing": { + "name": "phishing", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_outer": { - "name": "border_outer", + "cable": { + "name": "cable", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_right": { - "name": "border_right", + "fmd_bad": { + "name": "fmd_bad", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_style": { - "name": "border_style", + "brightness_medium": { + "name": "brightness_medium", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_top": { - "name": "border_top", + "airplanemode_active": { + "name": "airplanemode_active", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "border_vertical": { - "name": "border_vertical", + "gps_not_fixed": { + "name": "gps_not_fixed", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bubble_chart": { - "name": "bubble_chart", + "signal_wifi_statusbar_connected_no_internet": { + "name": "signal_wifi_statusbar_connected_no_internet", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "checklist": { - "name": "checklist", + "widgets": { + "name": "widgets", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "checklist_rtl": { - "name": "checklist_rtl", + "access_time": { + "name": "access_time", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "drag_handle": { - "name": "drag_handle", + "wifi_tethering_error_rounded": { + "name": "wifi_tethering_error_rounded", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "draw": { - "name": "draw", + "signal_wifi_statusbar_1_bar": { + "name": "signal_wifi_statusbar_1_bar", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_note": { - "name": "edit_note", + "tungsten": { + "name": "tungsten", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_center": { - "name": "format_align_center", + "3g_mobiledata": { + "name": "3g_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_justify": { - "name": "format_align_justify", + "bluetooth_connected": { + "name": "bluetooth_connected", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_left": { - "name": "format_align_left", + "punch_clock": { + "name": "punch_clock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_align_right": { - "name": "format_align_right", + "g_mobiledata": { + "name": "g_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_bold": { - "name": "format_bold", + "storage": { + "name": "storage", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_clear": { - "name": "format_clear", + "media_bluetooth_on": { + "name": "media_bluetooth_on", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_color_fill": { - "name": "format_color_fill", + "reviews": { + "name": "reviews", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_color_reset": { - "name": "format_color_reset", + "signal_cellular_alt": { + "name": "signal_cellular_alt", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_color_text": { - "name": "format_color_text", + "usb": { + "name": "usb", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_indent_decrease": { - "name": "format_indent_decrease", + "mode_standby": { + "name": "mode_standby", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_indent_increase": { - "name": "format_indent_increase", + "signal_wifi_off": { + "name": "signal_wifi_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_italic": { - "name": "format_italic", + "bluetooth_disabled": { + "name": "bluetooth_disabled", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_line_spacing": { - "name": "format_line_spacing", + "nfc": { + "name": "nfc", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_list_bulleted": { - "name": "format_list_bulleted", + "signal_cellular_connected_no_internet_4_bar": { + "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_list_numbered": { - "name": "format_list_numbered", + "system_security_update_good": { + "name": "system_security_update_good", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_list_numbered_rtl": { - "name": "format_list_numbered_rtl", + "wifi_calling_1": { + "name": "wifi_calling_1", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_paint": { - "name": "format_paint", + "signal_cellular_3_bar": { + "name": "signal_cellular_3_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_quote": { - "name": "format_quote", + "radar": { + "name": "radar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_shapes": { - "name": "format_shapes", + "network_cell": { + "name": "network_cell", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_size": { - "name": "format_size", + "system_security_update": { + "name": "system_security_update", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_strikethrough": { - "name": "format_strikethrough", + "reset_tv": { + "name": "reset_tv", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_textdirection_l_to_r": { - "name": "format_textdirection_l_to_r", + "brightness_low": { + "name": "brightness_low", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_textdirection_r_to_l": { - "name": "format_textdirection_r_to_l", + "signal_wifi_4_bar_lock": { + "name": "signal_wifi_4_bar_lock", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "format_underlined": { - "name": "format_underlined", + "hdr_auto": { + "name": "hdr_auto", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "functions": { - "name": "functions", + "battery_unknown": { + "name": "battery_unknown", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "height": { - "name": "height", + "location_disabled": { + "name": "location_disabled", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "highlight": { - "name": "highlight", + "pattern": { + "name": "pattern", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "horizontal_distribute": { - "name": "horizontal_distribute", + "dvr": { + "name": "dvr", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "horizontal_rule": { - "name": "horizontal_rule", + "light_mode": { + "name": "light_mode", "keywords": [ - "editor" + "device" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_chart": { - "name": "insert_chart", + "pin": { + "name": "pin", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_chart_outlined": { - "name": "insert_chart_outlined", + "battery_90": { + "name": "battery_90", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_comment": { - "name": "insert_comment", + "signal_cellular_0_bar": { + "name": "signal_cellular_0_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_drive_file": { - "name": "insert_drive_file", + "rsvp": { + "name": "rsvp", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_emoticon": { - "name": "insert_emoticon", + "location_searching": { + "name": "location_searching", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_invitation": { - "name": "insert_invitation", + "signal_cellular_4_bar": { + "name": "signal_cellular_4_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_link": { - "name": "insert_link", + "security_update_warning": { + "name": "security_update_warning", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "insert_photo": { - "name": "insert_photo", + "battery_50": { + "name": "battery_50", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "linear_scale": { - "name": "linear_scale", + "grid_goldenratio": { + "name": "grid_goldenratio", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "margin": { - "name": "margin", + "wallpaper": { + "name": "wallpaper", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "merge_type": { - "name": "merge_type", + "sports_score": { + "name": "sports_score", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode": { - "name": "mode", + "media_bluetooth_off": { + "name": "media_bluetooth_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_comment": { - "name": "mode_comment", + "screen_lock_rotation": { + "name": "screen_lock_rotation", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_edit": { - "name": "mode_edit", + "gpp_maybe": { + "name": "gpp_maybe", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mode_edit_outline": { - "name": "mode_edit_outline", + "battery_charging_full": { + "name": "battery_charging_full", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "monetization_on": { - "name": "monetization_on", + "dark_mode": { + "name": "dark_mode", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "money_off": { - "name": "money_off", + "wifi_tethering_off": { + "name": "wifi_tethering_off", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "money_off_csred": { - "name": "money_off_csred", + "signal_cellular_connected_no_internet_0_bar": { + "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "multiline_chart": { - "name": "multiline_chart", + "settings_suggest": { + "name": "settings_suggest", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notes": { - "name": "notes", + "signal_wifi_bad": { + "name": "signal_wifi_bad", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "padding": { - "name": "padding", + "signal_wifi_1_bar": { + "name": "signal_wifi_1_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pie_chart": { - "name": "pie_chart", + "medication_liquid": { + "name": "medication_liquid", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pie_chart_outline": { - "name": "pie_chart_outline", + "wifi_password": { + "name": "wifi_password", "keywords": [ - "editor" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "post_add": { - "name": "post_add", + "1x_mobiledata": { + "name": "1x_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "publish": { - "name": "publish", + "signal_cellular_connected_no_internet_1_bar": { + "name": "signal_cellular_connected_no_internet_1_bar", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "query_stats": { - "name": "query_stats", + "brightness_auto": { + "name": "brightness_auto", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "scatter_plot": { - "name": "scatter_plot", + "signal_wifi_connected_no_internet_2": { + "name": "signal_wifi_connected_no_internet_2", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "schema": { - "name": "schema", + "usb_off": { + "name": "usb_off", "keywords": [ - "editor" + "device" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "score": { - "name": "score", + "signal_wifi_connected_no_internet_0": { + "name": "signal_wifi_connected_no_internet_0", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "short_text": { - "name": "short_text", + "battery_charging_30": { + "name": "battery_charging_30", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "show_chart": { - "name": "show_chart", + "mobile_friendly": { + "name": "mobile_friendly", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "space_bar": { - "name": "space_bar", + "signal_wifi_connected_no_internet_3": { + "name": "signal_wifi_connected_no_internet_3", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stacked_line_chart": { - "name": "stacked_line_chart", + "send_to_mobile": { + "name": "send_to_mobile", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "strikethrough_s": { - "name": "strikethrough_s", + "wifi_calling_3": { + "name": "wifi_calling_3", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subscript": { - "name": "subscript", + "signal_wifi_statusbar_connected_no_internet_3": { + "name": "signal_wifi_statusbar_connected_no_internet_3", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "superscript": { - "name": "superscript", + "wifi_channel": { + "name": "wifi_channel", "keywords": [ - "editor" + "device" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "table_chart": { - "name": "table_chart", + "data_saver_on": { + "name": "data_saver_on", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "table_rows": { - "name": "table_rows", + "wifi_calling_2": { + "name": "wifi_calling_2", "keywords": [ - "editor" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_fields": { - "name": "text_fields", + "battery_charging_60": { + "name": "battery_charging_60", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "title": { - "name": "title", + "fmd_good": { + "name": "fmd_good", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_align_bottom": { - "name": "vertical_align_bottom", + "r_mobiledata": { + "name": "r_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_align_center": { - "name": "vertical_align_center", + "signal_wifi_statusbar_null": { + "name": "signal_wifi_statusbar_null", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_align_top": { - "name": "vertical_align_top", + "timer_3_select": { + "name": "timer_3_select", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vertical_distribute": { - "name": "vertical_distribute", + "edgesensor_high": { + "name": "edgesensor_high", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wrap_text": { - "name": "wrap_text", + "4g_mobiledata": { + "name": "4g_mobiledata", "keywords": [ - "editor" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "approval": { - "name": "approval", + "bluetooth_drive": { + "name": "bluetooth_drive", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attachment": { - "name": "attachment", + "hdr_off_select": { + "name": "hdr_off_select", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attach_email": { - "name": "attach_email", + "credit_score": { + "name": "credit_score", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud": { - "name": "cloud", + "sell": { + "name": "sell", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_circle": { - "name": "cloud_circle", + "gps_fixed": { + "name": "gps_fixed", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_done": { - "name": "cloud_done", + "access_alarm": { + "name": "access_alarm", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_download": { - "name": "cloud_download", + "battery_80": { + "name": "battery_80", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_off": { - "name": "cloud_off", + "h_mobiledata": { + "name": "h_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_queue": { - "name": "cloud_queue", + "data_saver_off": { + "name": "data_saver_off", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cloud_upload": { - "name": "cloud_upload", + "battery_charging_80": { + "name": "battery_charging_80", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "create_new_folder": { - "name": "create_new_folder", + "price_check": { + "name": "price_check", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "download": { - "name": "download", + "h_plus_mobiledata": { + "name": "h_plus_mobiledata", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "downloading": { - "name": "downloading", + "signal_wifi_1_bar_lock": { + "name": "signal_wifi_1_bar_lock", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "download_done": { - "name": "download_done", + "airplanemode_inactive": { + "name": "airplanemode_inactive", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "download_for_offline": { - "name": "download_for_offline", + "splitscreen": { + "name": "splitscreen", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_move": { - "name": "drive_file_move", + "signal_cellular_connected_no_internet_3_bar": { + "name": "signal_cellular_connected_no_internet_3_bar", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_move_rtl": { - "name": "drive_file_move_rtl", + "signal_cellular_null": { + "name": "signal_cellular_null", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_file_rename_outline": { - "name": "drive_file_rename_outline", + "gpp_bad": { + "name": "gpp_bad", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_folder_upload": { - "name": "drive_folder_upload", + "edgesensor_low": { + "name": "edgesensor_low", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_download": { - "name": "file_download", + "flashlight_on": { + "name": "flashlight_on", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_download_done": { - "name": "file_download_done", + "ad_units": { + "name": "ad_units", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_download_off": { - "name": "file_download_off", + "mode_night": { + "name": "mode_night", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "file_upload": { - "name": "file_upload", + "flashlight_off": { + "name": "flashlight_off", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder": { - "name": "folder", + "ssid_chart": { + "name": "ssid_chart", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder_open": { - "name": "folder_open", + "monitor_weight": { + "name": "monitor_weight", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder_shared": { - "name": "folder_shared", + "summarize": { + "name": "summarize", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_view": { - "name": "grid_view", + "airplane_ticket": { + "name": "airplane_ticket", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "request_quote": { - "name": "request_quote", + "system_security_update_warning": { + "name": "system_security_update_warning", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rule_folder": { - "name": "rule_folder", + "remember_me": { + "name": "remember_me", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "snippet_folder": { - "name": "snippet_folder", + "battery_30": { + "name": "battery_30", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "text_snippet": { - "name": "text_snippet", + "lan": { + "name": "lan", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "topic": { - "name": "topic", + "monitor_heart": { + "name": "monitor_heart", "keywords": [ - "file" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "upload": { - "name": "upload", + "signal_cellular_no_sim": { + "name": "signal_cellular_no_sim", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "upload_file": { - "name": "upload_file", + "signal_wifi_connected_no_internet_4": { + "name": "signal_wifi_connected_no_internet_4", "keywords": [ - "file" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "workspaces": { - "name": "workspaces", + "note_alt": { + "name": "note_alt", "keywords": [ - "file" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "browser_not_supported": { - "name": "browser_not_supported", + "timer_10_select": { + "name": "timer_10_select", "keywords": [ - "hardware" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cast": { - "name": "cast", + "signal_wifi_2_bar_lock": { + "name": "signal_wifi_2_bar_lock", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cast_connected": { - "name": "cast_connected", + "screen_rotation": { + "name": "screen_rotation", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cast_for_education": { - "name": "cast_for_education", + "signal_cellular_2_bar": { + "name": "signal_cellular_2_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "computer": { - "name": "computer", + "settings_system_daydream": { + "name": "settings_system_daydream", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "connected_tv": { - "name": "connected_tv", + "price_change": { + "name": "price_change", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "desktop_mac": { - "name": "desktop_mac", + "cameraswitch": { + "name": "cameraswitch", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "desktop_windows": { - "name": "desktop_windows", + "bluetooth": { + "name": "bluetooth", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "developer_board": { - "name": "developer_board", + "battery_20": { + "name": "battery_20", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "developer_board_off": { - "name": "developer_board_off", + "30fps": { + "name": "30fps", "keywords": [ - "hardware" + "device" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "devices_other": { - "name": "devices_other", + "add_alarm": { + "name": "add_alarm", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "device_hub": { - "name": "device_hub", + "sim_card_download": { + "name": "sim_card_download", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "device_unknown": { - "name": "device_unknown", + "thermostat": { + "name": "thermostat", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dock": { - "name": "dock", + "battery_saver": { + "name": "battery_saver", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "earbuds": { - "name": "earbuds", + "signal_cellular_connected_no_internet_2_bar": { + "name": "signal_cellular_connected_no_internet_2_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "earbuds_battery": { - "name": "earbuds_battery", + "battery_charging_50": { + "name": "battery_charging_50", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "gamepad": { - "name": "gamepad", + "signal_cellular_nodata": { + "name": "signal_cellular_nodata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headphones": { - "name": "headphones", + "signal_wifi_2_bar": { + "name": "signal_wifi_2_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headphones_battery": { - "name": "headphones_battery", + "signal_wifi_statusbar_2_bar": { + "name": "signal_wifi_statusbar_2_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headset": { - "name": "headset", + "security_update_good": { + "name": "security_update_good", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headset_mic": { - "name": "headset_mic", + "screen_search_desktop": { + "name": "screen_search_desktop", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "headset_off": { - "name": "headset_off", + "lte_mobiledata": { + "name": "lte_mobiledata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_max": { - "name": "home_max", + "4g_plus_mobiledata": { + "name": "4g_plus_mobiledata", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_mini": { - "name": "home_mini", + "wifi_tethering_error": { + "name": "wifi_tethering_error", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard": { - "name": "keyboard", + "air": { + "name": "air", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_alt": { - "name": "keyboard_alt", + "signal_wifi_0_bar": { + "name": "signal_wifi_0_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_down": { - "name": "keyboard_arrow_down", + "signal_cellular_1_bar": { + "name": "signal_cellular_1_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_left": { - "name": "keyboard_arrow_left", + "flourescent": { + "name": "flourescent", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_right": { - "name": "keyboard_arrow_right", + "access_alarms": { + "name": "access_alarms", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_arrow_up": { - "name": "keyboard_arrow_up", + "access_time_filled": { + "name": "access_time_filled", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_backspace": { - "name": "keyboard_backspace", + "signal_wifi_statusbar_4_bar": { + "name": "signal_wifi_statusbar_4_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_capslock": { - "name": "keyboard_capslock", + "wifi_find": { + "name": "wifi_find", "keywords": [ - "hardware" + "device" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_hide": { - "name": "keyboard_hide", + "battery_full": { + "name": "battery_full", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_return": { - "name": "keyboard_return", + "add_to_home_screen": { + "name": "add_to_home_screen", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_tab": { - "name": "keyboard_tab", + "lens_blur": { + "name": "lens_blur", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "keyboard_voice": { - "name": "keyboard_voice", + "hdr_on_select": { + "name": "hdr_on_select", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop": { - "name": "laptop", + "signal_cellular_off": { + "name": "signal_cellular_off", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop_chromebook": { - "name": "laptop_chromebook", + "signal_wifi_3_bar": { + "name": "signal_wifi_3_bar", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop_mac": { - "name": "laptop_mac", + "restart_alt": { + "name": "restart_alt", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "laptop_windows": { - "name": "laptop_windows", + "device_thermostat": { + "name": "device_thermostat", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "memory": { - "name": "memory", + "battery_60": { + "name": "battery_60", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "monitor": { - "name": "monitor", + "nearby_off": { + "name": "nearby_off", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mouse": { - "name": "mouse", + "battery_charging_20": { + "name": "battery_charging_20", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink": { - "name": "phonelink", + "grid_3x3": { + "name": "grid_3x3", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phonelink_off": { - "name": "phonelink_off", + "password": { + "name": "password", "keywords": [ - "hardware" + "device" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_android": { - "name": "phone_android", + "stroller": { + "name": "stroller", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_iphone": { - "name": "phone_iphone", + "fence": { + "name": "fence", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "point_of_sale": { - "name": "point_of_sale", + "do_not_touch": { + "name": "do_not_touch", "keywords": [ - "hardware" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "power_input": { - "name": "power_input", + "houseboat": { + "name": "houseboat", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "router": { - "name": "router", + "grass": { + "name": "grass", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "scanner": { - "name": "scanner", + "storefront": { + "name": "storefront", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "security": { - "name": "security", + "apartment": { + "name": "apartment", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sim_card": { - "name": "sim_card", + "house_siding": { + "name": "house_siding", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smartphone": { - "name": "smartphone", + "gite": { + "name": "gite", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_display": { - "name": "smart_display", + "casino": { + "name": "casino", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_screen": { - "name": "smart_screen", + "bungalow": { + "name": "bungalow", "keywords": [ - "hardware" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "smart_toy": { - "name": "smart_toy", + "no_drinks": { + "name": "no_drinks", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker": { - "name": "speaker", + "elevator": { + "name": "elevator", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "speaker_group": { - "name": "speaker_group", + "child_friendly": { + "name": "child_friendly", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tablet": { - "name": "tablet", + "fitness_center": { + "name": "fitness_center", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tablet_android": { - "name": "tablet_android", + "smoke_free": { + "name": "smoke_free", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tablet_mac": { - "name": "tablet_mac", + "smoking_rooms": { + "name": "smoking_rooms", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "toys": { - "name": "toys", + "tapas": { + "name": "tapas", "keywords": [ - "hardware" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tv": { - "name": "tv", + "microwave": { + "name": "microwave", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videogame_asset": { - "name": "videogame_asset", + "foundation": { + "name": "foundation", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "videogame_asset_off": { - "name": "videogame_asset_off", + "no_meeting_room": { + "name": "no_meeting_room", "keywords": [ - "hardware" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "watch": { - "name": "watch", + "spa": { + "name": "spa", "keywords": [ - "hardware" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensor_door": { - "name": "sensor_door", + "other_houses": { + "name": "other_houses", "keywords": [ - "home" + "places" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sensor_window": { - "name": "sensor_window", + "roofing": { + "name": "roofing", "keywords": [ - "home" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "10mp": { - "name": "10mp", + "pool": { + "name": "pool", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "11mp": { - "name": "11mp", + "food_bank": { + "name": "food_bank", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "12mp": { - "name": "12mp", + "stairs": { + "name": "stairs", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "13mp": { - "name": "13mp", + "no_stroller": { + "name": "no_stroller", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "14mp": { - "name": "14mp", + "meeting_room": { + "name": "meeting_room", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "15mp": { - "name": "15mp", + "fire_extinguisher": { + "name": "fire_extinguisher", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "16mp": { - "name": "16mp", + "no_cell": { + "name": "no_cell", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "17mp": { - "name": "17mp", + "all_inclusive": { + "name": "all_inclusive", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "18mp": { - "name": "18mp", + "charging_station": { + "name": "charging_station", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "19mp": { - "name": "19mp", + "dry": { + "name": "dry", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "20mp": { - "name": "20mp", + "countertops": { + "name": "countertops", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "21mp": { - "name": "21mp", + "child_care": { + "name": "child_care", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "22mp": { - "name": "22mp", + "beach_access": { + "name": "beach_access", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "23mp": { - "name": "23mp", + "no_photography": { + "name": "no_photography", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "24mp": { - "name": "24mp", + "ac_unit": { + "name": "ac_unit", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "2mp": { - "name": "2mp", + "rv_hookup": { + "name": "rv_hookup", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "30fps_select": { - "name": "30fps_select", + "holiday_village": { + "name": "holiday_village", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "3mp": { - "name": "3mp", + "family_restroom": { + "name": "family_restroom", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "4mp": { - "name": "4mp", + "wheelchair_pickup": { + "name": "wheelchair_pickup", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "5mp": { - "name": "5mp", + "room_preferences": { + "name": "room_preferences", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "60fps_select": { - "name": "60fps_select", + "no_backpack": { + "name": "no_backpack", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6mp": { - "name": "6mp", + "business_center": { + "name": "business_center", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "7mp": { - "name": "7mp", + "tty": { + "name": "tty", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "8mp": { - "name": "8mp", + "airport_shuttle": { + "name": "airport_shuttle", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "9mp": { - "name": "9mp", + "cottage": { + "name": "cottage", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_a_photo": { - "name": "add_a_photo", + "rice_bowl": { + "name": "rice_bowl", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_photo_alternate": { - "name": "add_photo_alternate", + "soap": { + "name": "soap", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_to_photos": { - "name": "add_to_photos", + "chalet": { + "name": "chalet", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "adjust": { - "name": "adjust", + "do_not_step": { + "name": "do_not_step", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "animation": { - "name": "animation", + "checkroom": { + "name": "checkroom", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assistant": { - "name": "assistant", + "backpack": { + "name": "backpack", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assistant_photo": { - "name": "assistant_photo", + "sports_bar": { + "name": "sports_bar", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "audiotrack": { - "name": "audiotrack", + "hot_tub": { + "name": "hot_tub", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "autofps_select": { - "name": "autofps_select", + "iron": { + "name": "iron", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_awesome": { - "name": "auto_awesome", + "bathtub": { + "name": "bathtub", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_awesome_mosaic": { - "name": "auto_awesome_mosaic", + "umbrella": { + "name": "umbrella", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_awesome_motion": { - "name": "auto_awesome_motion", + "baby_changing_station": { + "name": "baby_changing_station", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_fix_high": { - "name": "auto_fix_high", + "crib": { + "name": "crib", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_fix_normal": { - "name": "auto_fix_normal", + "golf_course": { + "name": "golf_course", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_fix_off": { - "name": "auto_fix_off", + "wash": { + "name": "wash", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "auto_stories": { - "name": "auto_stories", + "no_flash": { + "name": "no_flash", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedtime": { - "name": "bedtime", + "carpenter": { + "name": "carpenter", "keywords": [ - "image" + "places" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_circular": { - "name": "blur_circular", + "balcony": { + "name": "balcony", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_linear": { - "name": "blur_linear", + "kitchen": { + "name": "kitchen", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_off": { - "name": "blur_off", + "escalator_warning": { + "name": "escalator_warning", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "blur_on": { - "name": "blur_on", + "house": { + "name": "house", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_1": { - "name": "brightness_1", + "escalator": { + "name": "escalator", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_2": { - "name": "brightness_2", + "free_breakfast": { + "name": "free_breakfast", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_3": { - "name": "brightness_3", + "corporate_fare": { + "name": "corporate_fare", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_4": { - "name": "brightness_4", + "no_food": { + "name": "no_food", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_5": { - "name": "brightness_5", + "night_shelter": { + "name": "night_shelter", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_6": { - "name": "brightness_6", + "bento": { + "name": "bento", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brightness_7": { - "name": "brightness_7", + "cabin": { + "name": "cabin", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "broken_image": { - "name": "broken_image", + "water_damage": { + "name": "water_damage", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "brush": { - "name": "brush", + "room_service": { + "name": "room_service", "keywords": [ - "image" + "places" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "burst_mode": { - "name": "burst_mode", + "villa": { + "name": "villa", "keywords": [ - "image" + "places" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera": { - "name": "camera", + "mood": { + "name": "mood", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_alt": { - "name": "camera_alt", + "snowboarding": { + "name": "snowboarding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_front": { - "name": "camera_front", + "whatsapp": { + "name": "whatsapp", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_rear": { - "name": "camera_rear", + "safety_divider": { + "name": "safety_divider", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_roll": { - "name": "camera_roll", + "people": { + "name": "people", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cases": { - "name": "cases", + "history_edu": { + "name": "history_edu", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "center_focus_strong": { - "name": "center_focus_strong", + "pages": { + "name": "pages", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "center_focus_weak": { - "name": "center_focus_weak", + "groups": { + "name": "groups", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "circle": { - "name": "circle", + "sentiment_neutral": { + "name": "sentiment_neutral", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "collections": { - "name": "collections", + "cookie": { + "name": "cookie", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "collections_bookmark": { - "name": "collections_bookmark", + "sports_hockey": { + "name": "sports_hockey", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "colorize": { - "name": "colorize", + "workspace_premium": { + "name": "workspace_premium", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "color_lens": { - "name": "color_lens", + "sentiment_very_dissatisfied": { + "name": "sentiment_very_dissatisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "compare": { - "name": "compare", + "sports_soccer": { + "name": "sports_soccer", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "control_point": { - "name": "control_point", + "sledding": { + "name": "sledding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "control_point_duplicate": { - "name": "control_point_duplicate", + "emoji_symbols": { + "name": "emoji_symbols", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop": { - "name": "crop", + "emoji_nature": { + "name": "emoji_nature", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_16_9": { - "name": "crop_16_9", + "sports_handball": { + "name": "sports_handball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_3_2": { - "name": "crop_3_2", + "follow_the_signs": { + "name": "follow_the_signs", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_5_4": { - "name": "crop_5_4", + "sports_basketball": { + "name": "sports_basketball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_7_5": { - "name": "crop_7_5", + "pix": { + "name": "pix", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_din": { - "name": "crop_din", + "hiking": { + "name": "hiking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_free": { - "name": "crop_free", + "sports_martial_arts": { + "name": "sports_martial_arts", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_landscape": { - "name": "crop_landscape", + "construction": { + "name": "construction", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_original": { - "name": "crop_original", + "public_off": { + "name": "public_off", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_portrait": { - "name": "crop_portrait", + "sports_tennis": { + "name": "sports_tennis", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_rotate": { - "name": "crop_rotate", + "group_add": { + "name": "group_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "crop_square": { - "name": "crop_square", + "poll": { + "name": "poll", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dehaze": { - "name": "dehaze", + "military_tech": { + "name": "military_tech", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "details": { - "name": "details", + "connect_without_contact": { + "name": "connect_without_contact", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dirty_lens": { - "name": "dirty_lens", + "recommend": { + "name": "recommend", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit": { - "name": "edit", + "king_bed": { + "name": "king_bed", "keywords": [ - "image" + "social" ], "heights": { - "24": { - "width": 24, - "path": "" + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" } } }, - "euro": { - "name": "euro", + "skateboarding": { + "name": "skateboarding", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure": { - "name": "exposure", + "facebook": { + "name": "facebook", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_neg_1": { - "name": "exposure_neg_1", + "man": { + "name": "man", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_neg_2": { - "name": "exposure_neg_2", + "school": { + "name": "school", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_plus_1": { - "name": "exposure_plus_1", + "female": { + "name": "female", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_plus_2": { - "name": "exposure_plus_2", + "notifications": { + "name": "notifications", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "exposure_zero": { - "name": "exposure_zero", + "notifications_paused": { + "name": "notifications_paused", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "face_retouching_natural": { - "name": "face_retouching_natural", + "reduce_capacity": { + "name": "reduce_capacity", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "face_retouching_off": { - "name": "face_retouching_off", + "sports_esports": { + "name": "sports_esports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter": { - "name": "filter", + "thumb_down_alt": { + "name": "thumb_down_alt", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_1": { - "name": "filter_1", + "ios_share": { + "name": "ios_share", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_2": { - "name": "filter_2", + "sports_volleyball": { + "name": "sports_volleyball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_3": { - "name": "filter_3", + "sports_golf": { + "name": "sports_golf", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_4": { - "name": "filter_4", + "sentiment_satisfied": { + "name": "sentiment_satisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_5": { - "name": "filter_5", + "kitesurfing": { + "name": "kitesurfing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_6": { - "name": "filter_6", + "add_moderator": { + "name": "add_moderator", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_7": { - "name": "filter_7", + "emoji_events": { + "name": "emoji_events", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_8": { - "name": "filter_8", + "psychology": { + "name": "psychology", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_9": { - "name": "filter_9", + "outdoor_grill": { + "name": "outdoor_grill", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_9_plus": { - "name": "filter_9_plus", + "heart_broken": { + "name": "heart_broken", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_b_and_w": { - "name": "filter_b_and_w", + "sentiment_very_satisfied": { + "name": "sentiment_very_satisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_center_focus": { - "name": "filter_center_focus", + "fitbit": { + "name": "fitbit", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_drama": { - "name": "filter_drama", + "transgender": { + "name": "transgender", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_frames": { - "name": "filter_frames", + "piano": { + "name": "piano", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_hdr": { - "name": "filter_hdr", + "whatshot": { + "name": "whatshot", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_none": { - "name": "filter_none", + "sanitizer": { + "name": "sanitizer", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_tilt_shift": { - "name": "filter_tilt_shift", + "person_add": { + "name": "person_add", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "filter_vintage": { - "name": "filter_vintage", + "share": { + "name": "share", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flare": { - "name": "flare", + "emoji_objects": { + "name": "emoji_objects", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flash_auto": { - "name": "flash_auto", + "male": { + "name": "male", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flash_off": { - "name": "flash_off", + "piano_off": { + "name": "piano_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flash_on": { - "name": "flash_on", + "architecture": { + "name": "architecture", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip": { - "name": "flip", + "science": { + "name": "science", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_camera_android": { - "name": "flip_camera_android", + "surfing": { + "name": "surfing", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flip_camera_ios": { - "name": "flip_camera_ios", + "person_add_alt_1": { + "name": "person_add_alt_1", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gradient": { - "name": "gradient", + "co2": { + "name": "co2", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grain": { - "name": "grain", + "public": { + "name": "public", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_off": { - "name": "grid_off", + "luggage": { + "name": "luggage", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "grid_on": { - "name": "grid_on", + "emoji_food_beverage": { + "name": "emoji_food_beverage", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_enhanced_select": { - "name": "hdr_enhanced_select", + "personal_injury": { + "name": "personal_injury", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_off": { - "name": "hdr_off", + "person_add_alt": { + "name": "person_add_alt", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_on": { - "name": "hdr_on", + "person_remove_alt_1": { + "name": "person_remove_alt_1", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_plus": { - "name": "hdr_plus", + "engineering": { + "name": "engineering", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_strong": { - "name": "hdr_strong", + "group_remove": { + "name": "group_remove", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hdr_weak": { - "name": "hdr_weak", + "party_mode": { + "name": "party_mode", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "healing": { - "name": "healing", + "sports_football": { + "name": "sports_football", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hevc": { - "name": "hevc", + "downhill_skiing": { + "name": "downhill_skiing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hide_image": { - "name": "hide_image", + "coronavirus": { + "name": "coronavirus", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "image": { - "name": "image", + "thumb_up_alt": { + "name": "thumb_up_alt", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "image_aspect_ratio": { - "name": "image_aspect_ratio", + "people_outline": { + "name": "people_outline", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "image_not_supported": { - "name": "image_not_supported", + "south_america": { + "name": "south_america", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "image_search": { - "name": "image_search", + "paragliding": { + "name": "paragliding", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "incomplete_circle": { - "name": "incomplete_circle", + "single_bed": { + "name": "single_bed", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "iso": { - "name": "iso", + "boy": { + "name": "boy", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "landscape": { - "name": "landscape", + "person_remove": { + "name": "person_remove", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "leak_add": { - "name": "leak_add", + "front_hand": { + "name": "front_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "leak_remove": { - "name": "leak_remove", + "sick": { + "name": "sick", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lens": { - "name": "lens", + "elderly": { + "name": "elderly", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "linked_camera": { - "name": "linked_camera", + "girl": { + "name": "girl", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks": { - "name": "looks", + "kayaking": { + "name": "kayaking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_3": { - "name": "looks_3", + "add_reaction": { + "name": "add_reaction", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_4": { - "name": "looks_4", + "sports_kabaddi": { + "name": "sports_kabaddi", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_5": { - "name": "looks_5", + "recycling": { + "name": "recycling", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_6": { - "name": "looks_6", + "nordic_walking": { + "name": "nordic_walking", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_one": { - "name": "looks_one", + "sentiment_dissatisfied": { + "name": "sentiment_dissatisfied", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "looks_two": { - "name": "looks_two", + "fireplace": { + "name": "fireplace", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "loupe": { - "name": "loupe", + "person_off": { + "name": "person_off", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_external_off": { - "name": "mic_external_off", + "masks": { + "name": "masks", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mic_external_on": { - "name": "mic_external_on", + "back_hand": { + "name": "back_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "monochrome_photos": { - "name": "monochrome_photos", + "compost": { + "name": "compost", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_auto": { - "name": "motion_photos_auto", + "water_drop": { + "name": "water_drop", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_off": { - "name": "motion_photos_off", + "catching_pokemon": { + "name": "catching_pokemon", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_on": { - "name": "motion_photos_on", + "sports_cricket": { + "name": "sports_cricket", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_pause": { - "name": "motion_photos_pause", + "location_city": { + "name": "location_city", "keywords": [ - "image" + "social" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "motion_photos_paused": { - "name": "motion_photos_paused", + "person_outline": { + "name": "person_outline", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "movie_creation": { - "name": "movie_creation", + "plus_one": { + "name": "plus_one", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "movie_filter": { - "name": "movie_filter", + "nights_stay": { + "name": "nights_stay", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mp": { - "name": "mp", + "notifications_off": { + "name": "notifications_off", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "music_note": { - "name": "music_note", + "emoji_transportation": { + "name": "emoji_transportation", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "music_off": { - "name": "music_off", + "notifications_active": { + "name": "notifications_active", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nature": { - "name": "nature", + "ice_skating": { + "name": "ice_skating", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nature_people": { - "name": "nature_people", + "sports_rugby": { + "name": "sports_rugby", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "navigate_before": { - "name": "navigate_before", + "woman": { + "name": "woman", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "navigate_next": { - "name": "navigate_next", + "group": { + "name": "group", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "palette": { - "name": "palette", + "group_off": { + "name": "group_off", "keywords": [ - "image" + "social" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama": { - "name": "panorama", + "scale": { + "name": "scale", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_fish_eye": { - "name": "panorama_fish_eye", + "no_luggage": { + "name": "no_luggage", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_horizontal": { - "name": "panorama_horizontal", + "clean_hands": { + "name": "clean_hands", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_horizontal_select": { - "name": "panorama_horizontal_select", + "real_estate_agent": { + "name": "real_estate_agent", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_photosphere": { - "name": "panorama_photosphere", + "waving_hand": { + "name": "waving_hand", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_photosphere_select": { - "name": "panorama_photosphere_select", + "vaccines": { + "name": "vaccines", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_vertical": { - "name": "panorama_vertical", + "switch_account": { + "name": "switch_account", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_vertical_select": { - "name": "panorama_vertical_select", + "snowshoeing": { + "name": "snowshoeing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_wide_angle": { - "name": "panorama_wide_angle", + "sports_motorsports": { + "name": "sports_motorsports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "panorama_wide_angle_select": { - "name": "panorama_wide_angle_select", + "travel_explore": { + "name": "travel_explore", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo": { - "name": "photo", + "cruelty_free": { + "name": "cruelty_free", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_album": { - "name": "photo_album", + "notifications_none": { + "name": "notifications_none", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_camera": { - "name": "photo_camera", + "precision_manufacturing": { + "name": "precision_manufacturing", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_camera_back": { - "name": "photo_camera_back", + "elderly_woman": { + "name": "elderly_woman", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_camera_front": { - "name": "photo_camera_front", + "social_distance": { + "name": "social_distance", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_filter": { - "name": "photo_filter", + "cake": { + "name": "cake", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_library": { - "name": "photo_library", + "interests": { + "name": "interests", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_size_select_actual": { - "name": "photo_size_select_actual", - "keywords": [ - "image" + "edit_notifications": { + "name": "edit_notifications", + "keywords": [ + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_size_select_large": { - "name": "photo_size_select_large", + "emoji_emotions": { + "name": "emoji_emotions", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "photo_size_select_small": { - "name": "photo_size_select_small", + "notification_add": { + "name": "notification_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "picture_as_pdf": { - "name": "picture_as_pdf", + "mood_bad": { + "name": "mood_bad", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "portrait": { - "name": "portrait", + "person": { + "name": "person", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "raw_off": { - "name": "raw_off", + "remove_moderator": { + "name": "remove_moderator", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "raw_on": { - "name": "raw_on", + "6_ft_apart": { + "name": "6_ft_apart", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "receipt_long": { - "name": "receipt_long", + "deck": { + "name": "deck", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_red_eye": { - "name": "remove_red_eye", + "sports": { + "name": "sports", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rotate_90_degrees_ccw": { - "name": "rotate_90_degrees_ccw", + "sports_baseball": { + "name": "sports_baseball", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rotate_left": { - "name": "rotate_left", + "people_alt": { + "name": "people_alt", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rotate_right": { - "name": "rotate_right", + "hive": { + "name": "hive", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shutter_speed": { - "name": "shutter_speed", + "self_improvement": { + "name": "self_improvement", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "slideshow": { - "name": "slideshow", + "domain_add": { + "name": "domain_add", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "straighten": { - "name": "straighten", + "health_and_safety": { + "name": "health_and_safety", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "style": { - "name": "style", + "emoji_flags": { + "name": "emoji_flags", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_camera": { - "name": "switch_camera", + "domain": { + "name": "domain", "keywords": [ - "image" + "social" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_video": { - "name": "switch_video", + "sports_mma": { + "name": "sports_mma", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tag_faces": { - "name": "tag_faces", + "emoji_people": { + "name": "emoji_people", "keywords": [ - "image" + "social" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "texture": { - "name": "texture", + "unsubscribe": { + "name": "unsubscribe", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thermostat_auto": { - "name": "thermostat_auto", + "rss_feed": { + "name": "rss_feed", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timelapse": { - "name": "timelapse", + "forum": { + "name": "forum", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer": { - "name": "timer", + "call_received": { + "name": "call_received", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_10": { - "name": "timer_10", + "wifi_calling": { + "name": "wifi_calling", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_3": { - "name": "timer_3", + "portable_wifi_off": { + "name": "portable_wifi_off", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "timer_off": { - "name": "timer_off", + "key_off": { + "name": "key_off", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tonality": { - "name": "tonality", - "keywords": [ - "image" + "domain_disabled": { + "name": "domain_disabled", + "keywords": [ + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "transform": { - "name": "transform", + "alternate_email": { + "name": "alternate_email", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tune": { - "name": "tune", + "key": { + "name": "key", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_camera_back": { - "name": "video_camera_back", + "call_missed": { + "name": "call_missed", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_camera_front": { - "name": "video_camera_front", + "sentiment_satisfied_alt": { + "name": "sentiment_satisfied_alt", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "video_stable": { - "name": "video_stable", + "chat_bubble_outline": { + "name": "chat_bubble_outline", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_comfy": { - "name": "view_comfy", + "phonelink_lock": { + "name": "phonelink_lock", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "view_compact": { - "name": "view_compact", + "email": { + "name": "email", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vignette": { - "name": "vignette", + "chat_bubble": { + "name": "chat_bubble", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vrpano": { - "name": "vrpano", + "mark_email_unread": { + "name": "mark_email_unread", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_auto": { - "name": "wb_auto", + "stay_current_landscape": { + "name": "stay_current_landscape", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_cloudy": { - "name": "wb_cloudy", + "person_search": { + "name": "person_search", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_incandescent": { - "name": "wb_incandescent", + "mobile_screen_share": { + "name": "mobile_screen_share", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_iridescent": { - "name": "wb_iridescent", + "dialpad": { + "name": "dialpad", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_shade": { - "name": "wb_shade", + "hourglass_top": { + "name": "hourglass_top", "keywords": [ - "image" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_sunny": { - "name": "wb_sunny", + "swap_calls": { + "name": "swap_calls", "keywords": [ - "image" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wb_twilight": { - "name": "wb_twilight", + "desktop_access_disabled": { + "name": "desktop_access_disabled", "keywords": [ - "image" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "360": { - "name": "360", + "mark_chat_read": { + "name": "mark_chat_read", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_business": { - "name": "add_business", + "hub": { + "name": "hub", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_location": { - "name": "add_location", + "location_on": { + "name": "location_on", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_location_alt": { - "name": "add_location_alt", + "rtt": { + "name": "rtt", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_road": { - "name": "add_road", + "read_more": { + "name": "read_more", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "agriculture": { - "name": "agriculture", + "contact_phone": { + "name": "contact_phone", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "alt_route": { - "name": "alt_route", + "list_alt": { + "name": "list_alt", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "atm": { - "name": "atm", + "phone_enabled": { + "name": "phone_enabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "attractions": { - "name": "attractions", + "app_registration": { + "name": "app_registration", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "badge": { - "name": "badge", + "present_to_all": { + "name": "present_to_all", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bakery_dining": { - "name": "bakery_dining", + "comment": { + "name": "comment", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "beenhere": { - "name": "beenhere", + "cancel_presentation": { + "name": "cancel_presentation", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bike_scooter": { - "name": "bike_scooter", + "sip": { + "name": "sip", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "breakfast_dining": { - "name": "breakfast_dining", + "location_off": { + "name": "location_off", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "brunch_dining": { - "name": "brunch_dining", + "invert_colors_off": { + "name": "invert_colors_off", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" - } - } - }, - "bus_alert": { - "name": "bus_alert", - "keywords": [ - "maps" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "car_rental": { - "name": "car_rental", + "cell_wifi": { + "name": "cell_wifi", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "car_repair": { - "name": "car_repair", + "message": { + "name": "message", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "category": { - "name": "category", + "chat": { + "name": "chat", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "celebration": { - "name": "celebration", + "qr_code": { + "name": "qr_code", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cleaning_services": { - "name": "cleaning_services", + "no_sim": { + "name": "no_sim", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "compass_calibration": { - "name": "compass_calibration", + "dialer_sip": { + "name": "dialer_sip", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "delivery_dining": { - "name": "delivery_dining", + "phone": { + "name": "phone", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "departure_board": { - "name": "departure_board", + "speaker_phone": { + "name": "speaker_phone", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "design_services": { - "name": "design_services", + "document_scanner": { + "name": "document_scanner", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dinner_dining": { - "name": "dinner_dining", + "cell_tower": { + "name": "cell_tower", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions": { - "name": "directions", + "ring_volume": { + "name": "ring_volume", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_bike": { - "name": "directions_bike", + "more_time": { + "name": "more_time", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_boat": { - "name": "directions_boat", + "send_time_extension": { + "name": "send_time_extension", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_boat_filled": { - "name": "directions_boat_filled", + "mail_outline": { + "name": "mail_outline", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_bus": { - "name": "directions_bus", + "qr_code_2": { + "name": "qr_code_2", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_bus_filled": { - "name": "directions_bus_filled", + "call": { + "name": "call", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_car": { - "name": "directions_car", + "live_help": { + "name": "live_help", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_car_filled": { - "name": "directions_car_filled", + "stay_current_portrait": { + "name": "stay_current_portrait", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_railway": { - "name": "directions_railway", + "clear_all": { + "name": "clear_all", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_railway_filled": { - "name": "directions_railway_filled", + "stay_primary_landscape": { + "name": "stay_primary_landscape", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_run": { - "name": "directions_run", + "domain_verification": { + "name": "domain_verification", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_subway": { - "name": "directions_subway", - "keywords": [ - "maps" + "3p": { + "name": "3p", + "keywords": [ + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_subway_filled": { - "name": "directions_subway_filled", + "import_export": { + "name": "import_export", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_transit": { - "name": "directions_transit", + "stop_screen_share": { + "name": "stop_screen_share", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_transit_filled": { - "name": "directions_transit_filled", + "comments_disabled": { + "name": "comments_disabled", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_walk": { - "name": "directions_walk", + "phonelink_setup": { + "name": "phonelink_setup", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dry_cleaning": { - "name": "dry_cleaning", + "contacts": { + "name": "contacts", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_attributes": { - "name": "edit_attributes", + "import_contacts": { + "name": "import_contacts", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_location": { - "name": "edit_location", + "call_made": { + "name": "call_made", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_location_alt": { - "name": "edit_location_alt", + "hourglass_bottom": { + "name": "hourglass_bottom", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_road": { - "name": "edit_road", + "phonelink_ring": { + "name": "phonelink_ring", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electrical_services": { - "name": "electrical_services", + "call_missed_outgoing": { + "name": "call_missed_outgoing", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_bike": { - "name": "electric_bike", + "textsms": { + "name": "textsms", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_car": { - "name": "electric_car", + "mark_email_read": { + "name": "mark_email_read", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_moped": { - "name": "electric_moped", + "nat": { + "name": "nat", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_rickshaw": { - "name": "electric_rickshaw", + "voicemail": { + "name": "voicemail", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "electric_scooter": { - "name": "electric_scooter", + "stay_primary_portrait": { + "name": "stay_primary_portrait", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emergency": { - "name": "emergency", + "add_ic_call": { + "name": "add_ic_call", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ev_station": { - "name": "ev_station", + "pause_presentation": { + "name": "pause_presentation", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fastfood": { - "name": "fastfood", + "vpn_key_off": { + "name": "vpn_key_off", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "festival": { - "name": "festival", + "co_present": { + "name": "co_present", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "flight": { - "name": "flight", + "person_add_disabled": { + "name": "person_add_disabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hail": { - "name": "hail", + "business": { + "name": "business", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "handyman": { - "name": "handyman", + "duo": { + "name": "duo", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hardware": { - "name": "hardware", + "call_merge": { + "name": "call_merge", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_repair_service": { - "name": "home_repair_service", + "qr_code_scanner": { + "name": "qr_code_scanner", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hotel": { - "name": "hotel", + "call_split": { + "name": "call_split", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hvac": { - "name": "hvac", + "mark_unread_chat_alt": { + "name": "mark_unread_chat_alt", "keywords": [ - "maps" + "communication" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "icecream": { - "name": "icecream", + "vpn_key": { + "name": "vpn_key", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "layers": { - "name": "layers", + "phone_disabled": { + "name": "phone_disabled", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "layers_clear": { - "name": "layers_clear", + "forward_to_inbox": { + "name": "forward_to_inbox", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "liquor": { - "name": "liquor", + "print_disabled": { + "name": "print_disabled", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_activity": { - "name": "local_activity", + "spoke": { + "name": "spoke", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_airport": { - "name": "local_airport", + "screen_share": { + "name": "screen_share", "keywords": [ - "maps" + "communication" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_atm": { - "name": "local_atm", + "mark_chat_unread": { + "name": "mark_chat_unread", "keywords": [ - "maps" + "communication" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_bar": { - "name": "local_bar", + "phonelink_erase": { + "name": "phonelink_erase", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_cafe": { - "name": "local_cafe", + "call_end": { + "name": "call_end", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_car_wash": { - "name": "local_car_wash", + "contact_mail": { + "name": "contact_mail", "keywords": [ - "maps" + "communication" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_convenience_store": { - "name": "local_convenience_store", + "electrical_services": { + "name": "electrical_services", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_dining": { - "name": "local_dining", + "taxi_alert": { + "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_drink": { - "name": "local_drink", + "zoom_out_map": { + "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_fire_department": { - "name": "local_fire_department", + "edit_attributes": { + "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -17463,891 +18015,931 @@ } } }, - "local_gas_station": { - "name": "local_gas_station", + "home_repair_service": { + "name": "home_repair_service", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_grocery_store": { - "name": "local_grocery_store", + "pest_control": { + "name": "pest_control", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_hospital": { - "name": "local_hospital", + "person_pin": { + "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_hotel": { - "name": "local_hotel", + "temple_buddhist": { + "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_laundry_service": { - "name": "local_laundry_service", + "money": { + "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_library": { - "name": "local_library", + "directions_railway_filled": { + "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_mall": { - "name": "local_mall", + "electric_bike": { + "name": "electric_bike", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_movies": { - "name": "local_movies", + "alt_route": { + "name": "alt_route", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_offer": { - "name": "local_offer", + "local_post_office": { + "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_parking": { - "name": "local_parking", + "two_wheeler": { + "name": "two_wheeler", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_pharmacy": { - "name": "local_pharmacy", + "icecream": { + "name": "icecream", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_phone": { - "name": "local_phone", + "add_location_alt": { + "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_pizza": { - "name": "local_pizza", + "directions_boat": { + "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_play": { - "name": "local_play", + "menu_book": { + "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_police": { - "name": "local_police", + "360": { + "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_post_office": { - "name": "local_post_office", + "moving": { + "name": "moving", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_printshop": { - "name": "local_printshop", + "turn_right": { + "name": "turn_right", "keywords": [ "maps" ], "heights": { - "24": { + "20": { + "width": 20, + "path": "" + }, + "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_see": { - "name": "local_see", + "satellite": { + "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_shipping": { - "name": "local_shipping", + "train": { + "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "local_taxi": { - "name": "local_taxi", + "local_cafe": { + "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "lunch_dining": { - "name": "lunch_dining", + "roundabout_left": { + "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" - } - } - }, - "map": { - "name": "map", - "keywords": [ - "maps" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "maps_ugc": { - "name": "maps_ugc", + "agriculture": { + "name": "agriculture", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "medical_services": { - "name": "medical_services", + "attractions": { + "name": "attractions", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "menu_book": { - "name": "menu_book", + "my_location": { + "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "miscellaneous_services": { - "name": "miscellaneous_services", + "local_police": { + "name": "local_police", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "money": { - "name": "money", + "local_convenience_store": { + "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "moped": { - "name": "moped", + "restaurant": { + "name": "restaurant", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "moving": { - "name": "moving", + "synagogue": { + "name": "synagogue", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "multiple_stop": { - "name": "multiple_stop", + "railway_alert": { + "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "museum": { - "name": "museum", + "wrong_location": { + "name": "wrong_location", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "my_location": { - "name": "my_location", + "turn_slight_right": { + "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "navigation": { - "name": "navigation", + "pin_drop": { + "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "near_me": { - "name": "near_me", + "medical_services": { + "name": "medical_services", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "near_me_disabled": { - "name": "near_me_disabled", + "signpost": { + "name": "signpost", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nightlife": { - "name": "nightlife", + "park": { + "name": "park", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "not_listed_location": { - "name": "not_listed_location", + "ev_station": { + "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_meals": { - "name": "no_meals", + "breakfast_dining": { + "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_transfer": { - "name": "no_transfer", + "handyman": { + "name": "handyman", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "park": { - "name": "park", + "forest": { + "name": "forest", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pedal_bike": { - "name": "pedal_bike", + "place": { + "name": "place", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_pin": { - "name": "person_pin", + "subway": { + "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_pin_circle": { - "name": "person_pin_circle", + "local_play": { + "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pest_control": { - "name": "pest_control", + "person_pin_circle": { + "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pest_control_rodent": { - "name": "pest_control_rodent", + "wine_bar": { + "name": "wine_bar", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pin_drop": { - "name": "pin_drop", + "bakery_dining": { + "name": "bakery_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "place": { - "name": "place", + "u_turn_left": { + "name": "u_turn_left", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "plumbing": { - "name": "plumbing", + "miscellaneous_services": { + "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "railway_alert": { - "name": "railway_alert", + "local_phone": { + "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ramen_dining": { - "name": "ramen_dining", + "layers_clear": { + "name": "layers_clear", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "rate_review": { - "name": "rate_review", + "local_movies": { + "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restaurant": { - "name": "restaurant", + "local_grocery_store": { + "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "restaurant_menu": { - "name": "restaurant_menu", + "mosque": { + "name": "mosque", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "run_circle": { - "name": "run_circle", + "add_road": { + "name": "add_road", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sailing": { - "name": "sailing", + "set_meal": { + "name": "set_meal", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "satellite": { - "name": "satellite", + "add_location": { + "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "set_meal": { - "name": "set_meal", + "stadium": { + "name": "stadium", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snowmobile": { - "name": "snowmobile", + "zoom_in_map": { + "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "store_mall_directory": { - "name": "store_mall_directory", + "map": { + "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "streetview": { - "name": "streetview", + "directions_bus_filled": { + "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subway": { - "name": "subway", + "local_see": { + "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "takeout_dining": { - "name": "takeout_dining", + "local_activity": { + "name": "local_activity", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "taxi_alert": { - "name": "taxi_alert", + "local_atm": { + "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "terrain": { - "name": "terrain", + "brunch_dining": { + "name": "brunch_dining", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "theater_comedy": { - "name": "theater_comedy", + "pest_control_rodent": { + "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "traffic": { - "name": "traffic", + "moped": { + "name": "moped", "keywords": [ "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "train": { - "name": "train", + "layers": { + "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tram": { - "name": "tram", + "directions_run": { + "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -18363,4847 +18955,7551 @@ } } }, - "transit_enterexit": { - "name": "transit_enterexit", + "local_mall": { + "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "trip_origin": { - "name": "trip_origin", + "local_shipping": { + "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "two_wheeler": { - "name": "two_wheeler", + "local_drink": { + "name": "local_drink", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "volunteer_activism": { - "name": "volunteer_activism", + "ramp_left": { + "name": "ramp_left", "keywords": [ "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wine_bar": { - "name": "wine_bar", + "not_listed_location": { + "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wrong_location": { - "name": "wrong_location", + "near_me": { + "name": "near_me", "keywords": [ "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "zoom_out_map": { - "name": "zoom_out_map", + "directions_subway": { + "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "apps": { - "name": "apps", + "flight_class": { + "name": "flight_class", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "app_settings_alt": { - "name": "app_settings_alt", + "atm": { + "name": "atm", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_back": { - "name": "arrow_back", + "snowmobile": { + "name": "snowmobile", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_back_ios": { - "name": "arrow_back_ios", + "emergency": { + "name": "emergency", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_back_ios_new": { - "name": "arrow_back_ios_new", + "cleaning_services": { + "name": "cleaning_services", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_downward": { - "name": "arrow_downward", + "store_mall_directory": { + "name": "store_mall_directory", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_drop_down": { - "name": "arrow_drop_down", + "turn_sharp_left": { + "name": "turn_sharp_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_drop_down_circle": { - "name": "arrow_drop_down_circle", + "turn_slight_left": { + "name": "turn_slight_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_drop_up": { - "name": "arrow_drop_up", + "directions_boat_filled": { + "name": "directions_boat_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_forward": { - "name": "arrow_forward", + "festival": { + "name": "festival", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_forward_ios": { - "name": "arrow_forward_ios", + "lunch_dining": { + "name": "lunch_dining", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_left": { - "name": "arrow_left", + "directions_transit_filled": { + "name": "directions_transit_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_right": { - "name": "arrow_right", + "design_services": { + "name": "design_services", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "arrow_upward": { - "name": "arrow_upward", + "bus_alert": { + "name": "bus_alert", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "assistant_direction": { - "name": "assistant_direction", + "warehouse": { + "name": "warehouse", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "campaign": { - "name": "campaign", + "turn_sharp_right": { + "name": "turn_sharp_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cancel": { - "name": "cancel", + "liquor": { + "name": "liquor", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "check": { - "name": "check", + "electric_scooter": { + "name": "electric_scooter", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chevron_left": { - "name": "chevron_left", + "pedal_bike": { + "name": "pedal_bike", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chevron_right": { - "name": "chevron_right", + "local_taxi": { + "name": "local_taxi", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "close": { - "name": "close", + "local_parking": { + "name": "local_parking", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "double_arrow": { - "name": "double_arrow", + "near_me_disabled": { + "name": "near_me_disabled", "keywords": [ - "navigation" + "maps" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "east": { - "name": "east", + "category": { + "name": "category", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "expand_less": { - "name": "expand_less", + "turn_left": { + "name": "turn_left", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "expand_more": { - "name": "expand_more", + "local_hotel": { + "name": "local_hotel", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "first_page": { - "name": "first_page", + "egg": { + "name": "egg", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fullscreen": { - "name": "fullscreen", + "local_airport": { + "name": "local_airport", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fullscreen_exit": { - "name": "fullscreen_exit", + "ramp_right": { + "name": "ramp_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "home_work": { - "name": "home_work", + "local_bar": { + "name": "local_bar", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "last_page": { - "name": "last_page", + "castle": { + "name": "castle", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "legend_toggle": { - "name": "legend_toggle", + "kebab_dining": { + "name": "kebab_dining", "keywords": [ - "navigation" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "maps_home_work": { - "name": "maps_home_work", + "no_transfer": { + "name": "no_transfer", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "menu": { - "name": "menu", + "roundabout_right": { + "name": "roundabout_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "menu_open": { - "name": "menu_open", + "directions": { + "name": "directions", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "more_horiz": { - "name": "more_horiz", + "terrain": { + "name": "terrain", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "more_vert": { - "name": "more_vert", + "local_offer": { + "name": "local_offer", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "north": { - "name": "north", + "merge": { + "name": "merge", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "north_east": { - "name": "north_east", + "mode_of_travel": { + "name": "mode_of_travel", "keywords": [ - "navigation" + "maps" ], "heights": { - "24": { + "20": { + "width": 20, + "path": "" + }, + "24": { "width": 24, - "path": "" + "path": "" } } }, - "north_west": { - "name": "north_west", + "multiple_stop": { + "name": "multiple_stop", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "offline_share": { - "name": "offline_share", + "diamond": { + "name": "diamond", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "payments": { - "name": "payments", + "local_hospital": { + "name": "local_hospital", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "pivot_table_chart": { - "name": "pivot_table_chart", + "edit_location": { + "name": "edit_location", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "refresh": { - "name": "refresh", + "sailing": { + "name": "sailing", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "south": { - "name": "south", + "airlines": { + "name": "airlines", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "south_east": { - "name": "south_east", + "car_rental": { + "name": "car_rental", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "south_west": { - "name": "south_west", + "directions_bike": { + "name": "directions_bike", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "subdirectory_arrow_left": { - "name": "subdirectory_arrow_left", + "hvac": { + "name": "hvac", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "subdirectory_arrow_right": { - "name": "subdirectory_arrow_right", + "badge": { + "name": "badge", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_left": { - "name": "switch_left", + "directions_car_filled": { + "name": "directions_car_filled", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_right": { - "name": "switch_right", + "directions_railway": { + "name": "directions_railway", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "unfold_less": { - "name": "unfold_less", + "u_turn_right": { + "name": "u_turn_right", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "unfold_more": { - "name": "unfold_more", + "electric_rickshaw": { + "name": "electric_rickshaw", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "waterfall_chart": { - "name": "waterfall_chart", + "hardware": { + "name": "hardware", "keywords": [ - "navigation" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "west": { - "name": "west", + "local_gas_station": { + "name": "local_gas_station", "keywords": [ - "navigation" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "account_tree": { - "name": "account_tree", + "fork_right": { + "name": "fork_right", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "adb": { - "name": "adb", + "departure_board": { + "name": "departure_board", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_flat": { - "name": "airline_seat_flat", + "restaurant_menu": { + "name": "restaurant_menu", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_flat_angled": { - "name": "airline_seat_flat_angled", + "soup_kitchen": { + "name": "soup_kitchen", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_individual_suite": { - "name": "airline_seat_individual_suite", + "navigation": { + "name": "navigation", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_legroom_extra": { - "name": "airline_seat_legroom_extra", + "temple_hindu": { + "name": "temple_hindu", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_legroom_normal": { - "name": "airline_seat_legroom_normal", + "flight": { + "name": "flight", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_legroom_reduced": { - "name": "airline_seat_legroom_reduced", + "egg_alt": { + "name": "egg_alt", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_recline_extra": { - "name": "airline_seat_recline_extra", + "edit_location_alt": { + "name": "edit_location_alt", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "airline_seat_recline_normal": { - "name": "airline_seat_recline_normal", + "ramen_dining": { + "name": "ramen_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bluetooth_audio": { - "name": "bluetooth_audio", + "car_repair": { + "name": "car_repair", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "confirmation_number": { - "name": "confirmation_number", + "run_circle": { + "name": "run_circle", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "directions_off": { - "name": "directions_off", + "takeout_dining": { + "name": "takeout_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "disc_full": { - "name": "disc_full", + "fastfood": { + "name": "fastfood", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb": { - "name": "do_disturb", + "theater_comedy": { + "name": "theater_comedy", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb_alt": { - "name": "do_disturb_alt", + "connecting_airports": { + "name": "connecting_airports", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb_off": { - "name": "do_disturb_off", + "fort": { + "name": "fort", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_disturb_on": { - "name": "do_disturb_on", + "church": { + "name": "church", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb": { - "name": "do_not_disturb", + "directions_car": { + "name": "directions_car", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_alt": { - "name": "do_not_disturb_alt", + "rate_review": { + "name": "rate_review", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_off": { - "name": "do_not_disturb_off", + "add_business": { + "name": "add_business", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_disturb_on": { - "name": "do_not_disturb_on", + "transit_enterexit": { + "name": "transit_enterexit", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "drive_eta": { - "name": "drive_eta", + "celebration": { + "name": "celebration", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "enhanced_encryption": { - "name": "enhanced_encryption", + "airline_stops": { + "name": "airline_stops", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_available": { - "name": "event_available", + "directions_bus": { + "name": "directions_bus", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_busy": { - "name": "event_busy", + "streetview": { + "name": "streetview", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "event_note": { - "name": "event_note", + "tram": { + "name": "tram", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "folder_special": { - "name": "folder_special", + "fork_left": { + "name": "fork_left", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "imagesearch_roller": { - "name": "imagesearch_roller", + "hotel": { + "name": "hotel", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "live_tv": { - "name": "live_tv", + "compass_calibration": { + "name": "compass_calibration", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "mms": { - "name": "mms", + "factory": { + "name": "factory", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "more": { - "name": "more", + "dinner_dining": { + "name": "dinner_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_check": { - "name": "network_check", + "edit_road": { + "name": "edit_road", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "network_locked": { - "name": "network_locked", + "local_library": { + "name": "local_library", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_encryption": { - "name": "no_encryption", + "plumbing": { + "name": "plumbing", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_encryption_gmailerrorred": { - "name": "no_encryption_gmailerrorred", + "local_pizza": { + "name": "local_pizza", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "ondemand_video": { - "name": "ondemand_video", + "no_meals": { + "name": "no_meals", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "personal_video": { - "name": "personal_video", + "local_fire_department": { + "name": "local_fire_department", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_bluetooth_speaker": { - "name": "phone_bluetooth_speaker", + "bike_scooter": { + "name": "bike_scooter", "keywords": [ - "notification" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "phone_callback": { - "name": "phone_callback", - "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_forwarded": { - "name": "phone_forwarded", + "hail": { + "name": "hail", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_in_talk": { - "name": "phone_in_talk", + "local_pharmacy": { + "name": "local_pharmacy", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_locked": { - "name": "phone_locked", + "traffic": { + "name": "traffic", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_missed": { - "name": "phone_missed", + "dry_cleaning": { + "name": "dry_cleaning", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "phone_paused": { - "name": "phone_paused", + "local_dining": { + "name": "local_dining", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "power": { - "name": "power", + "trip_origin": { + "name": "trip_origin", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "power_off": { - "name": "power_off", + "delivery_dining": { + "name": "delivery_dining", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "priority_high": { - "name": "priority_high", + "directions_walk": { + "name": "directions_walk", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "running_with_errors": { - "name": "running_with_errors", + "electric_car": { + "name": "electric_car", "keywords": [ - "notification" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd_card": { - "name": "sd_card", + "route": { + "name": "route", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sd_card_alert": { - "name": "sd_card_alert", + "museum": { + "name": "museum", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sim_card_alert": { - "name": "sim_card_alert", + "straight": { + "name": "straight", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sms": { - "name": "sms", + "directions_subway_filled": { + "name": "directions_subway_filled", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sms_failed": { - "name": "sms_failed", + "directions_transit": { + "name": "directions_transit", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "support_agent": { - "name": "support_agent", + "nightlife": { + "name": "nightlife", "keywords": [ - "notification" + "maps" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync": { - "name": "sync", + "maps_ugc": { + "name": "maps_ugc", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync_disabled": { - "name": "sync_disabled", + "local_car_wash": { + "name": "local_car_wash", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sync_problem": { - "name": "sync_problem", + "electric_moped": { + "name": "electric_moped", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "system_update": { - "name": "system_update", + "local_laundry_service": { + "name": "local_laundry_service", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tap_and_play": { - "name": "tap_and_play", + "local_printshop": { + "name": "local_printshop", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "time_to_leave": { - "name": "time_to_leave", + "beenhere": { + "name": "beenhere", "keywords": [ - "notification" + "maps" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "tv_off": { - "name": "tv_off", + "volunteer_activism": { + "name": "volunteer_activism", "keywords": [ - "notification" + "maps" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "vibration": { - "name": "vibration", + "sort": { + "name": "sort", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "voice_chat": { - "name": "voice_chat", + "create": { + "name": "create", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "vpn_lock": { - "name": "vpn_lock", + "stacked_bar_chart": { + "name": "stacked_bar_chart", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wc": { - "name": "wc", + "add_link": { + "name": "add_link", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi": { - "name": "wifi", + "redo": { + "name": "redo", "keywords": [ - "notification" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wifi_off": { - "name": "wifi_off", + "content_paste_go": { + "name": "content_paste_go", "keywords": [ - "notification" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ac_unit": { - "name": "ac_unit", + "clear": { + "name": "clear", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "airport_shuttle": { - "name": "airport_shuttle", + "next_week": { + "name": "next_week", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "all_inclusive": { - "name": "all_inclusive", + "amp_stories": { + "name": "amp_stories", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "apartment": { - "name": "apartment", + "flag": { + "name": "flag", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "baby_changing_station": { - "name": "baby_changing_station", + "dynamic_feed": { + "name": "dynamic_feed", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "backpack": { - "name": "backpack", + "drafts": { + "name": "drafts", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "balcony": { - "name": "balcony", + "select_all": { + "name": "select_all", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bathtub": { - "name": "bathtub", + "deselect": { + "name": "deselect", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "beach_access": { - "name": "beach_access", + "font_download": { + "name": "font_download", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bento": { - "name": "bento", + "add_box": { + "name": "add_box", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bungalow": { - "name": "bungalow", + "add": { + "name": "add", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "business_center": { - "name": "business_center", + "outlined_flag": { + "name": "outlined_flag", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cabin": { - "name": "cabin", + "calculate": { + "name": "calculate", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "carpenter": { - "name": "carpenter", + "push_pin": { + "name": "push_pin", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "casino": { - "name": "casino", + "filter_list": { + "name": "filter_list", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chalet": { - "name": "chalet", + "filter_list_off": { + "name": "filter_list_off", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" - } - } - }, - "charging_station": { - "name": "charging_station", - "keywords": [ - "places" - ], - "heights": { - "24": { - "width": 24, - "path": "" + "path": "" } } }, - "checkroom": { - "name": "checkroom", + "link": { + "name": "link", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "child_care": { - "name": "child_care", + "how_to_vote": { + "name": "how_to_vote", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "child_friendly": { - "name": "child_friendly", + "add_circle_outline": { + "name": "add_circle_outline", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "corporate_fare": { - "name": "corporate_fare", + "markunread": { + "name": "markunread", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cottage": { - "name": "cottage", + "attribution": { + "name": "attribution", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "countertops": { - "name": "countertops", + "shield": { + "name": "shield", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "crib": { - "name": "crib", + "font_download_off": { + "name": "font_download_off", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_step": { - "name": "do_not_step", + "content_copy": { + "name": "content_copy", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "do_not_touch": { - "name": "do_not_touch", + "low_priority": { + "name": "low_priority", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "dry": { - "name": "dry", + "unarchive": { + "name": "unarchive", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "elevator": { - "name": "elevator", + "inventory_2": { + "name": "inventory_2", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "escalator": { - "name": "escalator", + "move_to_inbox": { + "name": "move_to_inbox", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "escalator_warning": { - "name": "escalator_warning", + "undo": { + "name": "undo", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "family_restroom": { - "name": "family_restroom", + "text_format": { + "name": "text_format", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fence": { - "name": "fence", + "waves": { + "name": "waves", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fire_extinguisher": { - "name": "fire_extinguisher", + "file_copy": { + "name": "file_copy", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "fitness_center": { - "name": "fitness_center", + "link_off": { + "name": "link_off", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "food_bank": { - "name": "food_bank", + "content_paste": { + "name": "content_paste", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "foundation": { - "name": "foundation", + "reply_all": { + "name": "reply_all", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "free_breakfast": { - "name": "free_breakfast", + "copy_all": { + "name": "copy_all", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "gite": { - "name": "gite", + "weekend": { + "name": "weekend", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "golf_course": { - "name": "golf_course", + "save_as": { + "name": "save_as", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "grass": { - "name": "grass", + "remove_circle_outline": { + "name": "remove_circle_outline", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "holiday_village": { - "name": "holiday_village", + "content_paste_off": { + "name": "content_paste_off", "keywords": [ - "places" + "content" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "hot_tub": { - "name": "hot_tub", + "report_off": { + "name": "report_off", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "house": { - "name": "house", + "report_gmailerrorred": { + "name": "report_gmailerrorred", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "houseboat": { - "name": "houseboat", + "save": { + "name": "save", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "house_siding": { - "name": "house_siding", + "bolt": { + "name": "bolt", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "iron": { - "name": "iron", + "content_cut": { + "name": "content_cut", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "kitchen": { - "name": "kitchen", + "flag_circle": { + "name": "flag_circle", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "meeting_room": { - "name": "meeting_room", + "block": { + "name": "block", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "microwave": { - "name": "microwave", + "remove_circle": { + "name": "remove_circle", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "night_shelter": { - "name": "night_shelter", + "square_foot": { + "name": "square_foot", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_backpack": { - "name": "no_backpack", + "archive": { + "name": "archive", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_cell": { - "name": "no_cell", + "add_circle": { + "name": "add_circle", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_drinks": { - "name": "no_drinks", + "tag": { + "name": "tag", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_flash": { - "name": "no_flash", + "remove": { + "name": "remove", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_food": { - "name": "no_food", + "gesture": { + "name": "gesture", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_meeting_room": { - "name": "no_meeting_room", + "inventory": { + "name": "inventory", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_photography": { - "name": "no_photography", + "where_to_vote": { + "name": "where_to_vote", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_stroller": { - "name": "no_stroller", + "how_to_reg": { + "name": "how_to_reg", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "other_houses": { - "name": "other_houses", + "delete_sweep": { + "name": "delete_sweep", "keywords": [ - "places" + "content" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pool": { - "name": "pool", + "report": { + "name": "report", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rice_bowl": { - "name": "rice_bowl", + "inbox": { + "name": "inbox", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "roofing": { - "name": "roofing", + "upcoming": { + "name": "upcoming", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "room_preferences": { - "name": "room_preferences", + "stream": { + "name": "stream", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "room_service": { - "name": "room_service", + "save_alt": { + "name": "save_alt", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "rv_hookup": { - "name": "rv_hookup", + "insights": { + "name": "insights", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "smoke_free": { - "name": "smoke_free", + "backspace": { + "name": "backspace", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "smoking_rooms": { - "name": "smoking_rooms", + "reply": { + "name": "reply", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "soap": { - "name": "soap", + "mail": { + "name": "mail", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "spa": { - "name": "spa", + "change_circle": { + "name": "change_circle", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_bar": { - "name": "sports_bar", + "send": { + "name": "send", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stairs": { - "name": "stairs", + "ballot": { + "name": "ballot", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "storefront": { - "name": "storefront", + "forward": { + "name": "forward", "keywords": [ - "places" + "content" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "stroller": { - "name": "stroller", + "policy": { + "name": "policy", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tapas": { - "name": "tapas", + "content_paste_search": { + "name": "content_paste_search", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "tty": { - "name": "tty", + "biotech": { + "name": "biotech", "keywords": [ - "places" + "content" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "umbrella": { - "name": "umbrella", + "attach_money": { + "name": "attach_money", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "villa": { - "name": "villa", + "bar_chart": { + "name": "bar_chart", "keywords": [ - "places" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "wash": { - "name": "wash", + "border_clear": { + "name": "border_clear", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "water_damage": { - "name": "water_damage", + "title": { + "name": "title", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "wheelchair_pickup": { - "name": "wheelchair_pickup", + "format_align_justify": { + "name": "format_align_justify", "keywords": [ - "places" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bathroom": { - "name": "bathroom", + "move_down": { + "name": "move_down", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "bed": { - "name": "bed", + "format_size": { + "name": "format_size", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedroom_baby": { - "name": "bedroom_baby", + "insert_chart": { + "name": "insert_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedroom_child": { - "name": "bedroom_child", + "scatter_plot": { + "name": "scatter_plot", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "bedroom_parent": { - "name": "bedroom_parent", + "align_vertical_top": { + "name": "align_vertical_top", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "blender": { - "name": "blender", + "border_all": { + "name": "border_all", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_indoor": { - "name": "camera_indoor", + "move_up": { + "name": "move_up", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "camera_outdoor": { - "name": "camera_outdoor", + "polyline": { + "name": "polyline", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "chair": { - "name": "chair", + "format_list_numbered": { + "name": "format_list_numbered", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "chair_alt": { - "name": "chair_alt", + "format_underlined": { + "name": "format_underlined", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "coffee": { - "name": "coffee", + "format_strikethrough": { + "name": "format_strikethrough", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "coffee_maker": { - "name": "coffee_maker", + "schema": { + "name": "schema", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "dining": { - "name": "dining", + "border_outer": { + "name": "border_outer", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "doorbell": { - "name": "doorbell", + "short_text": { + "name": "short_text", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "door_back": { - "name": "door_back", + "border_style": { + "name": "border_style", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "door_front": { - "name": "door_front", + "subscript": { + "name": "subscript", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "door_sliding": { - "name": "door_sliding", + "border_right": { + "name": "border_right", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "feed": { - "name": "feed", + "add_chart": { + "name": "add_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "flatware": { - "name": "flatware", + "format_align_center": { + "name": "format_align_center", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "garage": { - "name": "garage", + "format_clear": { + "name": "format_clear", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "light": { - "name": "light", + "margin": { + "name": "margin", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "living": { - "name": "living", + "format_list_bulleted": { + "name": "format_list_bulleted", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "manage_search": { - "name": "manage_search", + "checklist_rtl": { + "name": "checklist_rtl", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "podcasts": { - "name": "podcasts", + "data_array": { + "name": "data_array", "keywords": [ - "search" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "shower": { - "name": "shower", + "bubble_chart": { + "name": "bubble_chart", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "window": { - "name": "window", + "border_color": { + "name": "border_color", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "yard": { - "name": "yard", + "vertical_align_bottom": { + "name": "vertical_align_bottom", "keywords": [ - "search" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "6_ft_apart": { - "name": "6_ft_apart", + "vertical_distribute": { + "name": "vertical_distribute", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_moderator": { - "name": "add_moderator", + "data_object": { + "name": "data_object", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "add_reaction": { - "name": "add_reaction", + "mode": { + "name": "mode", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "architecture": { - "name": "architecture", + "text_fields": { + "name": "text_fields", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "back_hand": { - "name": "back_hand", + "insert_emoticon": { + "name": "insert_emoticon", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "cake": { - "name": "cake", + "horizontal_distribute": { + "name": "horizontal_distribute", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "catching_pokemon": { - "name": "catching_pokemon", + "money_off_csred": { + "name": "money_off_csred", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "clean_hands": { - "name": "clean_hands", + "border_horizontal": { + "name": "border_horizontal", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "compost": { - "name": "compost", + "functions": { + "name": "functions", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "connect_without_contact": { - "name": "connect_without_contact", + "format_align_left": { + "name": "format_align_left", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "construction": { - "name": "construction", + "multiline_chart": { + "name": "multiline_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "coronavirus": { - "name": "coronavirus", + "stacked_line_chart": { + "name": "stacked_line_chart", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "cruelty_free": { - "name": "cruelty_free", + "money_off": { + "name": "money_off", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "deck": { - "name": "deck", + "format_list_numbered_rtl": { + "name": "format_list_numbered_rtl", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "domain": { - "name": "domain", + "align_horizontal_center": { + "name": "align_horizontal_center", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "downhill_skiing": { - "name": "downhill_skiing", + "pentagon": { + "name": "pentagon", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "edit_notifications": { - "name": "edit_notifications", + "format_indent_increase": { + "name": "format_indent_increase", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "elderly": { - "name": "elderly", + "table_rows": { + "name": "table_rows", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_emotions": { - "name": "emoji_emotions", + "query_stats": { + "name": "query_stats", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_events": { - "name": "emoji_events", + "pie_chart_outline": { + "name": "pie_chart_outline", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_flags": { - "name": "emoji_flags", + "square": { + "name": "square", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_food_beverage": { - "name": "emoji_food_beverage", + "format_color_text": { + "name": "format_color_text", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_nature": { - "name": "emoji_nature", + "candlestick_chart": { + "name": "candlestick_chart", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_objects": { - "name": "emoji_objects", + "mode_comment": { + "name": "mode_comment", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_people": { - "name": "emoji_people", + "checklist": { + "name": "checklist", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_symbols": { - "name": "emoji_symbols", + "pie_chart": { + "name": "pie_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "emoji_transportation": { - "name": "emoji_transportation", + "format_textdirection_l_to_r": { + "name": "format_textdirection_l_to_r", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "engineering": { - "name": "engineering", + "format_align_right": { + "name": "format_align_right", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "facebook": { - "name": "facebook", + "align_vertical_bottom": { + "name": "align_vertical_bottom", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "female": { - "name": "female", + "notes": { + "name": "notes", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "fireplace": { - "name": "fireplace", + "insert_comment": { + "name": "insert_comment", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "follow_the_signs": { - "name": "follow_the_signs", + "height": { + "name": "height", "keywords": [ - "social" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "front_hand": { - "name": "front_hand", - "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "group": { - "name": "group", + "format_shapes": { + "name": "format_shapes", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "groups": { - "name": "groups", + "hexagon": { + "name": "hexagon", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "group_add": { - "name": "group_add", + "align_horizontal_right": { + "name": "align_horizontal_right", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "group_off": { - "name": "group_off", + "merge_type": { + "name": "merge_type", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "health_and_safety": { - "name": "health_and_safety", + "vertical_align_top": { + "name": "vertical_align_top", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "hiking": { - "name": "hiking", + "text_increase": { + "name": "text_increase", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "history_edu": { - "name": "history_edu", + "border_vertical": { + "name": "border_vertical", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ice_skating": { - "name": "ice_skating", + "format_bold": { + "name": "format_bold", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "ios_share": { - "name": "ios_share", + "format_textdirection_r_to_l": { + "name": "format_textdirection_r_to_l", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "kayaking": { - "name": "kayaking", + "format_paint": { + "name": "format_paint", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "king_bed": { - "name": "king_bed", + "drag_handle": { + "name": "drag_handle", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "kitesurfing": { - "name": "kitesurfing", + "space_bar": { + "name": "space_bar", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "location_city": { - "name": "location_city", + "format_color_reset": { + "name": "format_color_reset", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "luggage": { - "name": "luggage", + "post_add": { + "name": "post_add", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "male": { - "name": "male", + "border_top": { + "name": "border_top", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "masks": { - "name": "masks", + "border_bottom": { + "name": "border_bottom", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "military_tech": { - "name": "military_tech", + "insert_photo": { + "name": "insert_photo", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mood": { - "name": "mood", + "insert_page_break": { + "name": "insert_page_break", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "mood_bad": { - "name": "mood_bad", + "attach_file": { + "name": "attach_file", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "nights_stay": { - "name": "nights_stay", + "text_decrease": { + "name": "text_decrease", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "nordic_walking": { - "name": "nordic_walking", + "horizontal_rule": { + "name": "horizontal_rule", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications": { - "name": "notifications", + "score": { + "name": "score", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_active": { - "name": "notifications_active", + "format_indent_decrease": { + "name": "format_indent_decrease", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_none": { - "name": "notifications_none", + "monetization_on": { + "name": "monetization_on", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_off": { - "name": "notifications_off", + "padding": { + "name": "padding", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notifications_paused": { - "name": "notifications_paused", + "format_quote": { + "name": "format_quote", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "notification_add": { - "name": "notification_add", + "vertical_align_center": { + "name": "vertical_align_center", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "no_luggage": { - "name": "no_luggage", + "mode_edit_outline": { + "name": "mode_edit_outline", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "outdoor_grill": { - "name": "outdoor_grill", + "insert_chart_outlined": { + "name": "insert_chart_outlined", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "pages": { - "name": "pages", + "add_comment": { + "name": "add_comment", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "paragliding": { - "name": "paragliding", + "border_left": { + "name": "border_left", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "party_mode": { - "name": "party_mode", + "linear_scale": { + "name": "linear_scale", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "people": { - "name": "people", + "align_horizontal_left": { + "name": "align_horizontal_left", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "people_alt": { - "name": "people_alt", + "align_vertical_center": { + "name": "align_vertical_center", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "people_outline": { - "name": "people_outline", + "line_axis": { + "name": "line_axis", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person": { - "name": "person", + "format_color_fill": { + "name": "format_color_fill", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "personal_injury": { - "name": "personal_injury", + "area_chart": { + "name": "area_chart", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add": { - "name": "person_add", + "format_italic": { + "name": "format_italic", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add_alt": { - "name": "person_add_alt", + "numbers": { + "name": "numbers", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_add_alt_1": { - "name": "person_add_alt_1", + "format_line_spacing": { + "name": "format_line_spacing", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_off": { - "name": "person_off", + "superscript": { + "name": "superscript", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_outline": { - "name": "person_outline", + "mode_edit": { + "name": "mode_edit", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_remove": { - "name": "person_remove", + "edit_note": { + "name": "edit_note", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "person_remove_alt_1": { - "name": "person_remove_alt_1", + "auto_graph": { + "name": "auto_graph", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "piano": { - "name": "piano", + "show_chart": { + "name": "show_chart", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "piano_off": { - "name": "piano_off", + "draw": { + "name": "draw", "keywords": [ - "social" + "editor" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "plus_one": { - "name": "plus_one", + "wrap_text": { + "name": "wrap_text", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "poll": { - "name": "poll", + "table_chart": { + "name": "table_chart", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "precision_manufacturing": { - "name": "precision_manufacturing", + "highlight": { + "name": "highlight", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "psychology": { - "name": "psychology", + "insert_invitation": { + "name": "insert_invitation", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "public": { - "name": "public", + "insert_link": { + "name": "insert_link", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "public_off": { - "name": "public_off", + "publish": { + "name": "publish", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "real_estate_agent": { - "name": "real_estate_agent", + "border_inner": { + "name": "border_inner", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "recommend": { - "name": "recommend", + "rectangle": { + "name": "rectangle", "keywords": [ - "social" + "editor" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "recycling": { - "name": "recycling", + "insert_drive_file": { + "name": "insert_drive_file", "keywords": [ - "social" + "editor" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "reduce_capacity": { - "name": "reduce_capacity", + "strikethrough_s": { + "name": "strikethrough_s", "keywords": [ - "social" + "editor" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "remove_moderator": { - "name": "remove_moderator", + "home_max": { + "name": "home_max", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "safety_divider": { - "name": "safety_divider", + "speaker": { + "name": "speaker", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sanitizer": { - "name": "sanitizer", + "keyboard_arrow_down": { + "name": "keyboard_arrow_down", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "school": { - "name": "school", + "keyboard_arrow_up": { + "name": "keyboard_arrow_up", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "science": { - "name": "science", + "desktop_mac": { + "name": "desktop_mac", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "self_improvement": { - "name": "self_improvement", + "earbuds": { + "name": "earbuds", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_dissatisfied": { - "name": "sentiment_dissatisfied", + "laptop_chromebook": { + "name": "laptop_chromebook", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_neutral": { - "name": "sentiment_neutral", + "computer": { + "name": "computer", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_satisfied": { - "name": "sentiment_satisfied", + "keyboard_return": { + "name": "keyboard_return", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_very_dissatisfied": { - "name": "sentiment_very_dissatisfied", + "headset": { + "name": "headset", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sentiment_very_satisfied": { - "name": "sentiment_very_satisfied", + "keyboard_double_arrow_left": { + "name": "keyboard_double_arrow_left", "keywords": [ - "social" + "hardware" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "share": { - "name": "share", + "adf_scanner": { + "name": "adf_scanner", "keywords": [ - "social" + "hardware" ], "heights": { + "20": { + "width": 20, + "path": "" + }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sick": { - "name": "sick", + "smart_display": { + "name": "smart_display", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "single_bed": { - "name": "single_bed", + "browser_updated": { + "name": "browser_updated", "keywords": [ - "social" + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "skateboarding": { - "name": "skateboarding", + "device_hub": { + "name": "device_hub", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sledding": { - "name": "sledding", + "smart_toy": { + "name": "smart_toy", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snowboarding": { - "name": "snowboarding", + "watch": { + "name": "watch", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "snowshoeing": { - "name": "snowshoeing", + "keyboard_alt": { + "name": "keyboard_alt", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "social_distance": { - "name": "social_distance", + "headset_off": { + "name": "headset_off", "keywords": [ - "social" + "hardware" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports": { - "name": "sports", + "gamepad": { + "name": "gamepad", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_baseball": { - "name": "sports_baseball", + "dock": { + "name": "dock", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_basketball": { - "name": "sports_basketball", + "scanner": { + "name": "scanner", "keywords": [ - "social" + "hardware" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_cricket": { - "name": "sports_cricket", - "keywords": [ - "social" + "phonelink": { + "name": "phonelink", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smartphone": { + "name": "smartphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_left": { + "name": "keyboard_arrow_left", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_for_education": { + "name": "cast_for_education", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_option_key": { + "name": "keyboard_option_key", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_esports": { - "name": "sports_esports", + "headphones_battery": { + "name": "headphones_battery", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "start": { + "name": "start", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_football": { - "name": "sports_football", + "keyboard": { + "name": "keyboard", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_iphone": { + "name": "phone_iphone", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "monitor": { + "name": "monitor", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_windows": { + "name": "laptop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "browser_not_supported": { + "name": "browser_not_supported", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_golf": { - "name": "sports_golf", + "sim_card": { + "name": "sim_card", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_control_key": { + "name": "keyboard_control_key", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_handball": { - "name": "sports_handball", + "earbuds_battery": { + "name": "earbuds_battery", "keywords": [ - "social" + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset_off": { + "name": "videogame_asset_off", + "keywords": [ + "hardware" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "memory": { + "name": "memory", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop": { + "name": "laptop", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "laptop_mac": { + "name": "laptop_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cast_connected": { + "name": "cast_connected", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet": { + "name": "tablet", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "videogame_asset": { + "name": "videogame_asset", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_double_arrow_down": { + "name": "keyboard_double_arrow_down", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" + } + } + }, + "keyboard_capslock": { + "name": "keyboard_capslock", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_double_arrow_up": { + "name": "keyboard_double_arrow_up", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cast": { + "name": "cast", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_voice": { + "name": "keyboard_voice", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_backspace": { + "name": "keyboard_backspace", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "point_of_sale": { + "name": "point_of_sale", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "watch_off": { + "name": "watch_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board_off": { + "name": "developer_board_off", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_double_arrow_right": { + "name": "keyboard_double_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet_android": { + "name": "tablet_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_command_key": { + "name": "keyboard_command_key", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "headset_mic": { + "name": "headset_mic", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "desktop_windows": { + "name": "desktop_windows", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tablet_mac": { + "name": "tablet_mac", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power_input": { + "name": "power_input", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv": { + "name": "tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_android": { + "name": "phone_android", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "security": { + "name": "security", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_arrow_right": { + "name": "keyboard_arrow_right", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "speaker_group": { + "name": "speaker_group", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "smart_screen": { + "name": "smart_screen", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_tab": { + "name": "keyboard_tab", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phonelink_off": { + "name": "phonelink_off", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "keyboard_hide": { + "name": "keyboard_hide", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "connected_tv": { + "name": "connected_tv", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "developer_board": { + "name": "developer_board", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "toys": { + "name": "toys", + "keywords": [ + "hardware" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "router": { + "name": "router", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "home_mini": { + "name": "home_mini", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "device_unknown": { + "name": "device_unknown", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "headphones": { + "name": "headphones", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mouse": { + "name": "mouse", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "devices_other": { + "name": "devices_other", + "keywords": [ + "hardware" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "offline_share": { + "name": "offline_share", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_vert": { + "name": "more_vert", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "app_settings_alt": { + "name": "app_settings_alt", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "pivot_table_chart": { + "name": "pivot_table_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fullscreen": { + "name": "fullscreen", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "close": { + "name": "close", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps_outage": { + "name": "apps_outage", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "home_work": { + "name": "home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back": { + "name": "arrow_back", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu": { + "name": "menu", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios": { + "name": "arrow_back_ios", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "last_page": { + "name": "last_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "double_arrow": { + "name": "double_arrow", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "legend_toggle": { + "name": "legend_toggle", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_left": { + "name": "switch_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_right": { + "name": "subdirectory_arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_right": { + "name": "chevron_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_left": { + "name": "arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north": { + "name": "north", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more_horiz": { + "name": "more_horiz", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "apps": { + "name": "apps", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "west": { + "name": "west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "maps_home_work": { + "name": "maps_home_work", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cancel": { + "name": "cancel", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "first_page": { + "name": "first_page", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "east": { + "name": "east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_upward": { + "name": "arrow_upward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "check": { + "name": "check", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "chevron_left": { + "name": "chevron_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "menu_open": { + "name": "menu_open", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_downward": { + "name": "arrow_downward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "payments": { + "name": "payments", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_back_ios_new": { + "name": "arrow_back_ios_new", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_up": { + "name": "arrow_drop_up", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_more": { + "name": "unfold_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_east": { + "name": "south_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down_circle": { + "name": "arrow_drop_down_circle", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_more": { + "name": "expand_more", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_east": { + "name": "north_east", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward_ios": { + "name": "arrow_forward_ios", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "south": { + "name": "south", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_less": { + "name": "expand_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_right": { + "name": "arrow_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "campaign": { + "name": "campaign", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "fullscreen_exit": { + "name": "fullscreen_exit", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_drop_down": { + "name": "arrow_drop_down", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "arrow_forward": { + "name": "arrow_forward", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "expand_circle_down": { + "name": "expand_circle_down", + "keywords": [ + "navigation" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "switch_right": { + "name": "switch_right", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "refresh": { + "name": "refresh", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "subdirectory_arrow_left": { + "name": "subdirectory_arrow_left", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "unfold_less": { + "name": "unfold_less", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "waterfall_chart": { + "name": "waterfall_chart", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "south_west": { + "name": "south_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "north_west": { + "name": "north_west", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "assistant_direction": { + "name": "assistant_direction", + "keywords": [ + "navigation" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_rename_outline": { + "name": "drive_file_rename_outline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "request_quote": { + "name": "request_quote", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_for_offline": { + "name": "download_for_offline", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "approval": { + "name": "approval", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attachment": { + "name": "attachment", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_done": { + "name": "file_download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder": { + "name": "folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "download_done": { + "name": "download_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "text_snippet": { + "name": "text_snippet", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "grid_view": { + "name": "grid_view", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_upload": { + "name": "file_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "create_new_folder": { + "name": "create_new_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download": { + "name": "file_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "topic": { + "name": "topic", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_zip": { + "name": "folder_zip", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_off": { + "name": "cloud_off", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_sync": { + "name": "cloud_sync", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_shared": { + "name": "folder_shared", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_open": { + "name": "file_open", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_download": { + "name": "cloud_download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "format_overline": { + "name": "format_overline", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "snippet_folder": { + "name": "snippet_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "attach_email": { + "name": "attach_email", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_off": { + "name": "folder_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "newspaper": { + "name": "newspaper", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "difference": { + "name": "difference", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "downloading": { + "name": "downloading", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_circle": { + "name": "cloud_circle", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "workspaces": { + "name": "workspaces", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_move_rtl": { + "name": "drive_file_move_rtl", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "download": { + "name": "download", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload": { + "name": "upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_delete": { + "name": "folder_delete", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_done": { + "name": "cloud_done", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_queue": { + "name": "cloud_queue", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "file_download_off": { + "name": "file_download_off", + "keywords": [ + "file" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud": { + "name": "cloud", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_file_move": { + "name": "drive_file_move", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "rule_folder": { + "name": "rule_folder", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_open": { + "name": "folder_open", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "cloud_upload": { + "name": "cloud_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_folder_upload": { + "name": "drive_folder_upload", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "upload_file": { + "name": "upload_file", + "keywords": [ + "file" + ], + "heights": { + "24": { + "width": 24, + "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": "" + } + } + }, + "warning_amber": { + "name": "warning_amber", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "warning": { + "name": "warning", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "auto_delete": { + "name": "auto_delete", + "keywords": [ + "alert" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "add_alert": { + "name": "add_alert", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "error": { + "name": "error", + "keywords": [ + "alert" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "system_update": { + "name": "system_update", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tap_and_play": { + "name": "tap_and_play", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption": { + "name": "no_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_legroom_normal": { + "name": "airline_seat_legroom_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "bluetooth_audio": { + "name": "bluetooth_audio", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wifi_off": { + "name": "wifi_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_disabled": { + "name": "sync_disabled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "mms": { + "name": "mms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_lock": { + "name": "sync_lock", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_alt": { + "name": "do_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_paused": { + "name": "phone_paused", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "wc": { + "name": "wc", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "tv_off": { + "name": "tv_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sync_problem": { + "name": "sync_problem", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_locked": { + "name": "phone_locked", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "power_off": { + "name": "power_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "no_encryption_gmailerrorred": { + "name": "no_encryption_gmailerrorred", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "drive_eta": { + "name": "drive_eta", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "folder_special": { + "name": "folder_special", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sim_card_alert": { + "name": "sim_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_on": { + "name": "do_not_disturb_on", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "personal_video": { + "name": "personal_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "running_with_errors": { + "name": "running_with_errors", + "keywords": [ + "notification" + ], + "heights": { + "20": { + "width": 20, + "path": "" + }, + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_extra": { + "name": "airline_seat_recline_extra", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat_angled": { + "name": "airline_seat_flat_angled", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "voice_chat": { + "name": "voice_chat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms": { + "name": "sms", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_note": { + "name": "event_note", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_missed": { + "name": "phone_missed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb_alt": { + "name": "do_not_disturb_alt", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "more": { + "name": "more", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card_alert": { + "name": "sd_card_alert", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "power": { + "name": "power", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_callback": { + "name": "phone_callback", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_not_disturb": { + "name": "do_not_disturb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "disc_full": { + "name": "disc_full", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "phone_in_talk": { + "name": "phone_in_talk", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "event_available": { + "name": "event_available", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "live_tv": { + "name": "live_tv", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb_off": { + "name": "do_disturb_off", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "ondemand_video": { + "name": "ondemand_video", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_recline_normal": { + "name": "airline_seat_recline_normal", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "network_check": { + "name": "network_check", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sd_card": { + "name": "sd_card", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "adb": { + "name": "adb", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "sms_failed": { + "name": "sms_failed", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_individual_suite": { + "name": "airline_seat_individual_suite", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "time_to_leave": { + "name": "time_to_leave", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "airline_seat_flat": { + "name": "airline_seat_flat", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "do_disturb": { + "name": "do_disturb", + "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": "" + } + } + }, + "enhanced_encryption": { + "name": "enhanced_encryption", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" + } + } + }, + "account_tree": { + "name": "account_tree", + "keywords": [ + "notification" + ], + "heights": { + "24": { + "width": 24, + "path": "" } } }, - "sports_hockey": { - "name": "sports_hockey", + "network_locked": { + "name": "network_locked", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_kabaddi": { - "name": "sports_kabaddi", + "sync": { + "name": "sync", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_mma": { - "name": "sports_mma", + "priority_high": { + "name": "priority_high", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_motorsports": { - "name": "sports_motorsports", + "event_busy": { + "name": "event_busy", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_rugby": { - "name": "sports_rugby", + "phone_bluetooth_speaker": { + "name": "phone_bluetooth_speaker", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_soccer": { - "name": "sports_soccer", + "airline_seat_legroom_reduced": { + "name": "airline_seat_legroom_reduced", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_tennis": { - "name": "sports_tennis", + "support_agent": { + "name": "support_agent", "keywords": [ - "social" + "notification" ], "heights": { "20": { "width": 20, - "path": "" + "path": "" }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "sports_volleyball": { - "name": "sports_volleyball", + "phone_forwarded": { + "name": "phone_forwarded", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "surfing": { - "name": "surfing", + "do_disturb_on": { + "name": "do_disturb_on", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "switch_account": { - "name": "switch_account", + "do_not_disturb_off": { + "name": "do_not_disturb_off", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_down_alt": { - "name": "thumb_down_alt", + "directions_off": { + "name": "directions_off", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "thumb_up_alt": { - "name": "thumb_up_alt", + "vibration": { + "name": "vibration", "keywords": [ - "social" + "notification" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "transgender": { - "name": "transgender", + "vpn_lock": { + "name": "vpn_lock", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "travel_explore": { - "name": "travel_explore", + "imagesearch_roller": { + "name": "imagesearch_roller", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "water_drop": { - "name": "water_drop", + "airline_seat_legroom_extra": { + "name": "airline_seat_legroom_extra", "keywords": [ - "social" + "notification" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "waving_hand": { - "name": "waving_hand", + "star_border": { + "name": "star_border", "keywords": [ - "social" + "toggle" ], "heights": { - "20": { - "width": 20, - "path": "" - }, "24": { "width": 24, - "path": "" + "path": "" } } }, - "whatshot": { - "name": "whatshot", + "radio_button_unchecked": { + "name": "radio_button_unchecked", "keywords": [ - "social" + "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "check_box": { - "name": "check_box", + "star": { + "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -23219,63 +26515,63 @@ } } }, - "indeterminate_check_box": { - "name": "indeterminate_check_box", + "toggle_on": { + "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radio_button_checked": { - "name": "radio_button_checked", + "indeterminate_check_box": { + "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "radio_button_unchecked": { - "name": "radio_button_unchecked", + "star_purple500": { + "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star": { - "name": "star", + "toggle_off": { + "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, - "star_border": { - "name": "star_border", + "check_box": { + "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } }, @@ -23315,40 +26611,16 @@ } } }, - "star_purple500": { - "name": "star_purple500", - "keywords": [ - "toggle" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "toggle_off": { - "name": "toggle_off", - "keywords": [ - "toggle" - ], - "heights": { - "24": { - "width": 24, - "path": "" - } - } - }, - "toggle_on": { - "name": "toggle_on", + "radio_button_checked": { + "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, - "path": "" + "path": "" } } } -} +} \ No newline at end of file From d3679020929f03094c467ad260203d2621453cc3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 1 Dec 2021 23:49:18 +0000 Subject: [PATCH 06/12] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- sphinx_design/compiled/material_outlined.json | 2 +- sphinx_design/compiled/material_regular.json | 2 +- sphinx_design/compiled/material_round.json | 2 +- sphinx_design/compiled/material_sharp.json | 2 +- sphinx_design/compiled/material_twotone.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sphinx_design/compiled/material_outlined.json b/sphinx_design/compiled/material_outlined.json index 9547610..e59aac4 100644 --- a/sphinx_design/compiled/material_outlined.json +++ b/sphinx_design/compiled/material_outlined.json @@ -26107,4 +26107,4 @@ } } } -} \ No newline at end of file +} diff --git a/sphinx_design/compiled/material_regular.json b/sphinx_design/compiled/material_regular.json index b3c9b94..584fd2d 100644 --- a/sphinx_design/compiled/material_regular.json +++ b/sphinx_design/compiled/material_regular.json @@ -26435,4 +26435,4 @@ } } } -} \ No newline at end of file +} diff --git a/sphinx_design/compiled/material_round.json b/sphinx_design/compiled/material_round.json index d4caec2..1f04805 100644 --- a/sphinx_design/compiled/material_round.json +++ b/sphinx_design/compiled/material_round.json @@ -26167,4 +26167,4 @@ } } } -} \ No newline at end of file +} diff --git a/sphinx_design/compiled/material_sharp.json b/sphinx_design/compiled/material_sharp.json index cda7c28..f1f9458 100644 --- a/sphinx_design/compiled/material_sharp.json +++ b/sphinx_design/compiled/material_sharp.json @@ -26167,4 +26167,4 @@ } } } -} \ No newline at end of file +} diff --git a/sphinx_design/compiled/material_twotone.json b/sphinx_design/compiled/material_twotone.json index 4f46b32..ac439f7 100644 --- a/sphinx_design/compiled/material_twotone.json +++ b/sphinx_design/compiled/material_twotone.json @@ -26623,4 +26623,4 @@ } } } -} \ No newline at end of file +} From 051292ebd77ff5be9b9564cd47240fbd91508952 Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Thu, 16 Dec 2021 14:06:22 +0100 Subject: [PATCH 07/12] fix tests --- setup.cfg | 4 ++-- tests/test_snippets.py | 10 ++++++++-- .../snippet_post_icon-material-design.xml | 2 +- .../test_snippets/snippet_pre_icon-material-design.xml | 2 +- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/setup.cfg b/setup.cfg index 770dae5..cf373b0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -44,9 +44,9 @@ exclude = code_style = pre-commit~=2.12 rtd = - myst-parser~=0.15.0 + myst-parser~=0.16.0 testing = - myst-parser~=0.15.0 + myst-parser~=0.16.0 pytest~=6.2 pytest-cov pytest-regressions diff --git a/tests/test_snippets.py b/tests/test_snippets.py index 10738ab..da167a8 100644 --- a/tests/test_snippets.py +++ b/tests/test_snippets.py @@ -33,8 +33,11 @@ def test_snippets_rst( builder.src_path.joinpath("index.rst").write_text(content, encoding="utf8") write_assets(builder.src_path) builder.build() + pformat = builder.get_doctree("index").pformat() + # fixed in https://github.com/executablebooks/MyST-Parser/pull/465 + pformat = pformat.replace('', "") file_regression.check( - builder.get_doctree("index").pformat(), + pformat, basename=f"snippet_pre_{path.name[:-len(path.suffix)]}", extension=".xml", encoding="utf8", @@ -77,8 +80,11 @@ def test_snippets_rst_post( builder.src_path.joinpath("index.rst").write_text(content, encoding="utf8") write_assets(builder.src_path) builder.build() + pformat = builder.get_doctree("index", post_transforms=True).pformat() + # fixed in https://github.com/executablebooks/MyST-Parser/pull/465 + pformat = pformat.replace('', "") file_regression.check( - builder.get_doctree("index", post_transforms=True).pformat(), + pformat, basename=f"snippet_post_{path.name[:-len(path.suffix)]}", extension=".xml", encoding="utf8", diff --git a/tests/test_snippets/snippet_post_icon-material-design.xml b/tests/test_snippets/snippet_post_icon-material-design.xml index 7b0a08e..ddf43a3 100644 --- a/tests/test_snippets/snippet_post_icon-material-design.xml +++ b/tests/test_snippets/snippet_post_icon-material-design.xml @@ -2,7 +2,7 @@
Heading - <bullet_list bullet="-"> + <bullet_list> <list_item> <paragraph> A coloured icon: diff --git a/tests/test_snippets/snippet_pre_icon-material-design.xml b/tests/test_snippets/snippet_pre_icon-material-design.xml index 7b0a08e..ddf43a3 100644 --- a/tests/test_snippets/snippet_pre_icon-material-design.xml +++ b/tests/test_snippets/snippet_pre_icon-material-design.xml @@ -2,7 +2,7 @@ <section ids="heading" names="heading"> <title> Heading - <bullet_list bullet="-"> + <bullet_list> <list_item> <paragraph> A coloured icon: From 08b4ac66ff4cbeccafc84d5e1818785d6783cfe1 Mon Sep 17 00:00:00 2001 From: Chris Sewell <chrisj_sewell@hotmail.com> Date: Thu, 16 Dec 2021 14:22:35 +0100 Subject: [PATCH 08/12] Improve test coverage --- docs/badges_buttons.md | 11 ++++++----- docs/snippets/myst/icon-material-design.txt | 11 ++++++----- docs/snippets/rst/icon-material-design.txt | 11 ++++++----- .../snippet_post_icon-material-design.xml | 16 +++++++++++----- .../snippet_pre_icon-material-design.xml | 16 +++++++++++----- 5 files changed, 40 insertions(+), 25 deletions(-) diff --git a/docs/badges_buttons.md b/docs/badges_buttons.md index f9fe134..606e1c1 100644 --- a/docs/badges_buttons.md +++ b/docs/badges_buttons.md @@ -215,11 +215,12 @@ Material Design icons come as several flavors. Each flavor represents a differen 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 coloured icon: {material-regular}`settings;3em;sd-text-success`, some more text. -- A coloured icon: {material-outlined}`settings;3em;sd-text-success`, some more text. -- A coloured icon: {material-sharp}`settings;3em;sd-text-success`, some more text. -- A coloured icon: {material-round}`settings;3em;sd-text-success`, some more text. -- A coloured icon: {material-twotone}`settings;3em;sd-text-success`, some more text. +- A regular icon: {material-regular}`thumbs_up_down`, 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 diff --git a/docs/snippets/myst/icon-material-design.txt b/docs/snippets/myst/icon-material-design.txt index e1d2b95..bfae9fc 100644 --- a/docs/snippets/myst/icon-material-design.txt +++ b/docs/snippets/myst/icon-material-design.txt @@ -1,5 +1,6 @@ -- A coloured icon: {material-regular}`settings;3em;sd-text-success`, some more text. -- A coloured icon: {material-outlined}`settings;3em;sd-text-success`, some more text. -- A coloured icon: {material-sharp}`settings;3em;sd-text-success`, some more text. -- A coloured icon: {material-round}`settings;3em;sd-text-success`, some more text. -- A coloured icon: {material-twotone}`settings;3em;sd-text-success`, some more text. +- A regular icon: {material-regular}`thumbs_up_down`, 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. diff --git a/docs/snippets/rst/icon-material-design.txt b/docs/snippets/rst/icon-material-design.txt index bcb49d7..18c36e0 100644 --- a/docs/snippets/rst/icon-material-design.txt +++ b/docs/snippets/rst/icon-material-design.txt @@ -1,5 +1,6 @@ -- A coloured icon: :material-regular:`settings;3em;sd-text-success`, some more text. -- A coloured icon: :material-outlined:`settings;3em;sd-text-success`, some more text. -- A coloured icon: :material-sharp:`settings;3em;sd-text-success`, some more text. -- A coloured icon: :material-round:`settings;3em;sd-text-success`, some more text. -- A coloured icon: :material-twotone:`settings;3em;sd-text-success`, some more text. +- A regular icon: :material-regular:`thumbs_up_down`, 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. diff --git a/tests/test_snippets/snippet_post_icon-material-design.xml b/tests/test_snippets/snippet_post_icon-material-design.xml index ddf43a3..fdf5008 100644 --- a/tests/test_snippets/snippet_post_icon-material-design.xml +++ b/tests/test_snippets/snippet_post_icon-material-design.xml @@ -5,31 +5,37 @@ <bullet_list> <list_item> <paragraph> - A coloured icon: + A regular icon: + <raw format="html" xml:space="preserve"> + <svg version="4.0.0.63c5cb3" width="1.0em" height="1.0em" class="sd-material-icon sd-material-icon-thumbs_up_down" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"></path><path d="M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm10.5 4h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.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 icon: + 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 icon: + 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 icon: + 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 icon: + 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. diff --git a/tests/test_snippets/snippet_pre_icon-material-design.xml b/tests/test_snippets/snippet_pre_icon-material-design.xml index ddf43a3..fdf5008 100644 --- a/tests/test_snippets/snippet_pre_icon-material-design.xml +++ b/tests/test_snippets/snippet_pre_icon-material-design.xml @@ -5,31 +5,37 @@ <bullet_list> <list_item> <paragraph> - A coloured icon: + A regular icon: + <raw format="html" xml:space="preserve"> + <svg version="4.0.0.63c5cb3" width="1.0em" height="1.0em" class="sd-material-icon sd-material-icon-thumbs_up_down" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"></path><path d="M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm10.5 4h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.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 icon: + 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 icon: + 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 icon: + 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 icon: + 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. From 7712c8e19f2e3953a975ae9a85a352e60820e267 Mon Sep 17 00:00:00 2001 From: Chris Sewell <chrisj_sewell@hotmail.com> Date: Thu, 16 Dec 2021 14:24:37 +0100 Subject: [PATCH 09/12] improve test coverage take 2 --- docs/badges_buttons.md | 2 +- docs/snippets/myst/icon-material-design.txt | 2 +- docs/snippets/rst/icon-material-design.txt | 2 +- tests/test_snippets/snippet_post_icon-material-design.xml | 2 +- tests/test_snippets/snippet_pre_icon-material-design.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/badges_buttons.md b/docs/badges_buttons.md index 606e1c1..ad673ef 100644 --- a/docs/badges_buttons.md +++ b/docs/badges_buttons.md @@ -215,7 +215,7 @@ Material Design icons come as several flavors. Each flavor represents a differen 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}`thumbs_up_down`, some more text +- A regular icon: {material-regular}`data_exploration`, 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. diff --git a/docs/snippets/myst/icon-material-design.txt b/docs/snippets/myst/icon-material-design.txt index bfae9fc..9e400e5 100644 --- a/docs/snippets/myst/icon-material-design.txt +++ b/docs/snippets/myst/icon-material-design.txt @@ -1,4 +1,4 @@ -- A regular icon: {material-regular}`thumbs_up_down`, some more text +- A regular icon: {material-regular}`data_exploration`, 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. diff --git a/docs/snippets/rst/icon-material-design.txt b/docs/snippets/rst/icon-material-design.txt index 18c36e0..621ce41 100644 --- a/docs/snippets/rst/icon-material-design.txt +++ b/docs/snippets/rst/icon-material-design.txt @@ -1,4 +1,4 @@ -- A regular icon: :material-regular:`thumbs_up_down`, some more text +- A regular icon: :material-regular:`data_exploration`, 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. diff --git a/tests/test_snippets/snippet_post_icon-material-design.xml b/tests/test_snippets/snippet_post_icon-material-design.xml index fdf5008..8aaded5 100644 --- a/tests/test_snippets/snippet_post_icon-material-design.xml +++ b/tests/test_snippets/snippet_post_icon-material-design.xml @@ -7,7 +7,7 @@ <paragraph> A regular icon: <raw format="html" xml:space="preserve"> - <svg version="4.0.0.63c5cb3" width="1.0em" height="1.0em" class="sd-material-icon sd-material-icon-thumbs_up_down" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"></path><path d="M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm10.5 4h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5z"></path></svg> + <svg version="4.0.0.63c5cb3" width="1.0em" height="1.0em" class="sd-material-icon sd-material-icon-data_exploration" viewBox="0 0 20 20" aria-hidden="true"><rect fill="none" height="20" width="20"></rect><path d="M10,2c-4.42,0-8,3.58-8,8c0,1.17,0.25,2.29,0.71,3.29L7,9l2.49,2.44l2.94-2.94H11V7h4v4h-1.5V9.55l-4,4l-2.49-2.44 l-3.53,3.53C4.93,16.67,7.31,18,10,18l0,0h6.5c0.83,0,1.5-0.67,1.5-1.5V10C18,5.58,14.42,2,10,2z M16,16.75 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75C16.75,16.41,16.41,16.75,16,16.75z"></path></svg> , some more text <list_item> <paragraph> diff --git a/tests/test_snippets/snippet_pre_icon-material-design.xml b/tests/test_snippets/snippet_pre_icon-material-design.xml index fdf5008..8aaded5 100644 --- a/tests/test_snippets/snippet_pre_icon-material-design.xml +++ b/tests/test_snippets/snippet_pre_icon-material-design.xml @@ -7,7 +7,7 @@ <paragraph> A regular icon: <raw format="html" xml:space="preserve"> - <svg version="4.0.0.63c5cb3" width="1.0em" height="1.0em" class="sd-material-icon sd-material-icon-thumbs_up_down" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0z" fill="none"></path><path d="M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm10.5 4h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5z"></path></svg> + <svg version="4.0.0.63c5cb3" width="1.0em" height="1.0em" class="sd-material-icon sd-material-icon-data_exploration" viewBox="0 0 20 20" aria-hidden="true"><rect fill="none" height="20" width="20"></rect><path d="M10,2c-4.42,0-8,3.58-8,8c0,1.17,0.25,2.29,0.71,3.29L7,9l2.49,2.44l2.94-2.94H11V7h4v4h-1.5V9.55l-4,4l-2.49-2.44 l-3.53,3.53C4.93,16.67,7.31,18,10,18l0,0h6.5c0.83,0,1.5-0.67,1.5-1.5V10C18,5.58,14.42,2,10,2z M16,16.75 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75C16.75,16.41,16.41,16.75,16,16.75z"></path></svg> , some more text <list_item> <paragraph> From b11618d6c4fd685751ed1a4a852ba4f0bb0a8b96 Mon Sep 17 00:00:00 2001 From: Chris Sewell <chrisj_sewell@hotmail.com> Date: Thu, 16 Dec 2021 14:29:51 +0100 Subject: [PATCH 10/12] improve test coverage take 3 --- docs/badges_buttons.md | 2 +- docs/snippets/myst/icon-material-design.txt | 2 +- docs/snippets/rst/icon-material-design.txt | 2 +- tests/test_snippets/snippet_post_icon-material-design.xml | 2 +- tests/test_snippets/snippet_pre_icon-material-design.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/badges_buttons.md b/docs/badges_buttons.md index ad673ef..c46569a 100644 --- a/docs/badges_buttons.md +++ b/docs/badges_buttons.md @@ -215,7 +215,7 @@ Material Design icons come as several flavors. Each flavor represents a differen 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`, some more text +- 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. diff --git a/docs/snippets/myst/icon-material-design.txt b/docs/snippets/myst/icon-material-design.txt index 9e400e5..c50c180 100644 --- a/docs/snippets/myst/icon-material-design.txt +++ b/docs/snippets/myst/icon-material-design.txt @@ -1,4 +1,4 @@ -- A regular icon: {material-regular}`data_exploration`, some more text +- 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. diff --git a/docs/snippets/rst/icon-material-design.txt b/docs/snippets/rst/icon-material-design.txt index 621ce41..067ea2a 100644 --- a/docs/snippets/rst/icon-material-design.txt +++ b/docs/snippets/rst/icon-material-design.txt @@ -1,4 +1,4 @@ -- A regular icon: :material-regular:`data_exploration`, some more text +- 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. diff --git a/tests/test_snippets/snippet_post_icon-material-design.xml b/tests/test_snippets/snippet_post_icon-material-design.xml index 8aaded5..51f9951 100644 --- a/tests/test_snippets/snippet_post_icon-material-design.xml +++ b/tests/test_snippets/snippet_post_icon-material-design.xml @@ -7,7 +7,7 @@ <paragraph> A regular icon: <raw format="html" xml:space="preserve"> - <svg version="4.0.0.63c5cb3" width="1.0em" height="1.0em" class="sd-material-icon sd-material-icon-data_exploration" viewBox="0 0 20 20" aria-hidden="true"><rect fill="none" height="20" width="20"></rect><path d="M10,2c-4.42,0-8,3.58-8,8c0,1.17,0.25,2.29,0.71,3.29L7,9l2.49,2.44l2.94-2.94H11V7h4v4h-1.5V9.55l-4,4l-2.49-2.44 l-3.53,3.53C4.93,16.67,7.31,18,10,18l0,0h6.5c0.83,0,1.5-0.67,1.5-1.5V10C18,5.58,14.42,2,10,2z M16,16.75 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75C16.75,16.41,16.41,16.75,16,16.75z"></path></svg> + <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> diff --git a/tests/test_snippets/snippet_pre_icon-material-design.xml b/tests/test_snippets/snippet_pre_icon-material-design.xml index 8aaded5..51f9951 100644 --- a/tests/test_snippets/snippet_pre_icon-material-design.xml +++ b/tests/test_snippets/snippet_pre_icon-material-design.xml @@ -7,7 +7,7 @@ <paragraph> A regular icon: <raw format="html" xml:space="preserve"> - <svg version="4.0.0.63c5cb3" width="1.0em" height="1.0em" class="sd-material-icon sd-material-icon-data_exploration" viewBox="0 0 20 20" aria-hidden="true"><rect fill="none" height="20" width="20"></rect><path d="M10,2c-4.42,0-8,3.58-8,8c0,1.17,0.25,2.29,0.71,3.29L7,9l2.49,2.44l2.94-2.94H11V7h4v4h-1.5V9.55l-4,4l-2.49-2.44 l-3.53,3.53C4.93,16.67,7.31,18,10,18l0,0h6.5c0.83,0,1.5-0.67,1.5-1.5V10C18,5.58,14.42,2,10,2z M16,16.75 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75C16.75,16.41,16.41,16.75,16,16.75z"></path></svg> + <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> From f25a9053d9949fd85a325c1ec4685e73cad2a09b Mon Sep 17 00:00:00 2001 From: Chris Sewell <chrisj_sewell@hotmail.com> Date: Thu, 16 Dec 2021 14:36:04 +0100 Subject: [PATCH 11/12] improve test coverage take 4 --- docs/snippets/myst/icon-material-design.txt | 1 + docs/snippets/rst/icon-material-design.txt | 1 + tests/test_snippets/snippet_post_icon-material-design.xml | 6 ++++++ tests/test_snippets/snippet_pre_icon-material-design.xml | 6 ++++++ 4 files changed, 14 insertions(+) diff --git a/docs/snippets/myst/icon-material-design.txt b/docs/snippets/myst/icon-material-design.txt index c50c180..936666e 100644 --- a/docs/snippets/myst/icon-material-design.txt +++ b/docs/snippets/myst/icon-material-design.txt @@ -4,3 +4,4 @@ - 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}`settings;24px`, some more text. diff --git a/docs/snippets/rst/icon-material-design.txt b/docs/snippets/rst/icon-material-design.txt index 067ea2a..ca0e8e6 100644 --- a/docs/snippets/rst/icon-material-design.txt +++ b/docs/snippets/rst/icon-material-design.txt @@ -4,3 +4,4 @@ - 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:`settings;24px`, some more text. diff --git a/tests/test_snippets/snippet_post_icon-material-design.xml b/tests/test_snippets/snippet_post_icon-material-design.xml index 51f9951..a3149e5 100644 --- a/tests/test_snippets/snippet_post_icon-material-design.xml +++ b/tests/test_snippets/snippet_post_icon-material-design.xml @@ -39,3 +39,9 @@ <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-settings" 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. diff --git a/tests/test_snippets/snippet_pre_icon-material-design.xml b/tests/test_snippets/snippet_pre_icon-material-design.xml index 51f9951..a3149e5 100644 --- a/tests/test_snippets/snippet_pre_icon-material-design.xml +++ b/tests/test_snippets/snippet_pre_icon-material-design.xml @@ -39,3 +39,9 @@ <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-settings" 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. From de347e2398a692a9c488640c292ba1bda87a77f5 Mon Sep 17 00:00:00 2001 From: Chris Sewell <chrisj_sewell@hotmail.com> Date: Thu, 16 Dec 2021 14:49:01 +0100 Subject: [PATCH 12/12] improve test coverage, again! --- docs/snippets/myst/icon-material-design.txt | 2 +- docs/snippets/rst/icon-material-design.txt | 2 +- tests/test_snippets/snippet_post_icon-material-design.xml | 2 +- tests/test_snippets/snippet_pre_icon-material-design.xml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/snippets/myst/icon-material-design.txt b/docs/snippets/myst/icon-material-design.txt index 936666e..f635158 100644 --- a/docs/snippets/myst/icon-material-design.txt +++ b/docs/snippets/myst/icon-material-design.txt @@ -4,4 +4,4 @@ - 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}`settings;24px`, some more text. +- A fixed size icon: {material-regular}`data_exploration;24px`, some more text. diff --git a/docs/snippets/rst/icon-material-design.txt b/docs/snippets/rst/icon-material-design.txt index ca0e8e6..05ed334 100644 --- a/docs/snippets/rst/icon-material-design.txt +++ b/docs/snippets/rst/icon-material-design.txt @@ -4,4 +4,4 @@ - 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:`settings;24px`, some more text. +- A fixed size icon: :material-regular:`data_exploration;24px`, some more text. diff --git a/tests/test_snippets/snippet_post_icon-material-design.xml b/tests/test_snippets/snippet_post_icon-material-design.xml index a3149e5..f76936f 100644 --- a/tests/test_snippets/snippet_post_icon-material-design.xml +++ b/tests/test_snippets/snippet_post_icon-material-design.xml @@ -43,5 +43,5 @@ <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-settings" 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> + <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. diff --git a/tests/test_snippets/snippet_pre_icon-material-design.xml b/tests/test_snippets/snippet_pre_icon-material-design.xml index a3149e5..f76936f 100644 --- a/tests/test_snippets/snippet_pre_icon-material-design.xml +++ b/tests/test_snippets/snippet_pre_icon-material-design.xml @@ -43,5 +43,5 @@ <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-settings" 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> + <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.