diff --git a/bin/start b/bin/start new file mode 100755 index 0000000..e484ba9 --- /dev/null +++ b/bin/start @@ -0,0 +1,6 @@ +#!/bin/bash + +./bin/composer install +docker-compose up -d wordpress +./bin/npm install +./bin/npm run start diff --git a/composer.json b/composer.json index 653c126..ea3e291 100644 --- a/composer.json +++ b/composer.json @@ -18,6 +18,7 @@ } ], "require": { + "swaggest/json-schema": "^0.12", "symfony/validator": "^7.0 || ^6.0" }, "scripts": { @@ -44,6 +45,10 @@ "Boxuk\\BoxWpEditorTools\\": [ "packages/editor-tools/src", "plugins/editor-tools/src/" + ], + "Boxuk\\Iconography\\": [ + "packages/iconography/includes/", + "plugins/iconography/includes/" ] } }, diff --git a/docker/wordpress/Dockerfile b/docker/wordpress/Dockerfile index ff2fd3b..76cdefe 100644 --- a/docker/wordpress/Dockerfile +++ b/docker/wordpress/Dockerfile @@ -1 +1,6 @@ FROM wordpress:6.5.3 + +COPY ./wp-config.php /var/www/html/wp-config.php +COPY ./db.php /var/www/html/wp-content/db.php +COPY ./mu-plugins /var/www/html/wp-content/mu-plugins +COPY ./themes /var/www/html/wp-content/themes diff --git a/docker/wordpress/wp-config.php b/docker/wordpress/wp-config.php index 8f1c3b2..65efd27 100644 --- a/docker/wordpress/wp-config.php +++ b/docker/wordpress/wp-config.php @@ -34,7 +34,7 @@ /**#@-*/ $table_prefix = 'wp_'; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited define( 'WP_DEBUG', true ); -define( 'WP_SCRIPT_DEBUG', true ); +define( 'SCRIPT_DEBUG', true ); /** Absolute path to the WordPress directory. */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/docs/iconography/index.md b/docs/iconography/index.md deleted file mode 100644 index f78760b..0000000 --- a/docs/iconography/index.md +++ /dev/null @@ -1,16 +0,0 @@ -# Box WordPress Iconography Support - -Add the ability to add icons inline to your content in the WordPress block editor. - -## Quick Start! -~Add this plugin to your WordPress site and off you go! If you're using composer, then -it's as simple as `composer require boxuk/wp-iconography`.~ - -We need to setup packaging this as a plugin to be distrubutable, so watch this space - for now you'll need to include this repo and build the assets yourself using `npm run build`. - -## Contributing -Working on the repo requires packaging this into a functioning WordPress installation. A ready-to-go solution is yet to be developed so a PR is welcome, preferrably where Docker is the only dependancy. - -This package doesn't necessarily require composer dependancies to be installed, so `npm install` and `npm run start` should get you started. - -The composer dependancies include [WordPress Stubs](https://github.com/php-stubs/wordpress-stubs), so your IDE should automatically include type information for all WP core functions if you need to edit the PHP file. If they're not, it's likely a mis-configuration of your IDE. There's helper guides in the WordPress Stubs repo. diff --git a/docs/index.md b/docs/index.md index 741950f..2b820d1 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,4 +2,4 @@ Contents: - [Editor Tools](../packages/editor-tools/README.md) -- [Iconography](./iconography/index.md) \ No newline at end of file +- [Iconography](../packages/iconography/README.md) diff --git a/package-lock.json b/package-lock.json index efddcc4..9a13254 100644 --- a/package-lock.json +++ b/package-lock.json @@ -81,30 +81,30 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", - "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", + "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", - "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", + "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.24.5", - "@babel/helpers": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helpers": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -161,37 +161,38 @@ } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", - "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", "dev": true, "dependencies": { - "@babel/types": "^7.22.15" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", - "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", + "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", + "@babel/compat-data": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" @@ -201,19 +202,19 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.5.tgz", - "integrity": "sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-member-expression-to-functions": "^7.24.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.24.5", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz", + "integrity": "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", "semver": "^6.3.1" }, "engines": { @@ -224,12 +225,12 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", - "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz", + "integrity": "sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-annotate-as-pure": "^7.24.7", "regexpu-core": "^5.3.1", "semver": "^6.3.1" }, @@ -261,7 +262,6 @@ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", "dev": true, - "license": "MIT", "dependencies": { "@babel/types": "^7.24.7" }, @@ -297,12 +297,13 @@ } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.5.tgz", - "integrity": "sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz", + "integrity": "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==", "dev": true, "dependencies": { - "@babel/types": "^7.24.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -323,16 +324,16 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz", - "integrity": "sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", + "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.24.3", - "@babel/helper-simple-access": "^7.24.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "@babel/helper-validator-identifier": "^7.24.5" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -342,12 +343,12 @@ } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -364,14 +365,14 @@ } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", - "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz", + "integrity": "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-wrap-function": "^7.22.20" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-wrap-function": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -381,14 +382,14 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz", - "integrity": "sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz", + "integrity": "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-optimise-call-expression": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -398,24 +399,26 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz", - "integrity": "sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", "dev": true, "dependencies": { - "@babel/types": "^7.24.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -455,37 +458,37 @@ } }, "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", + "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.5.tgz", - "integrity": "sha512-/xxzuNvgRl4/HLNKvnFwdhdgN3cpLxgLROeLDl83Yx0AJ1SGvq1ak0OszTOjDfiB8Vx03eJbeDWh9r+jCCWttw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz", + "integrity": "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==", "dev": true, "dependencies": { - "@babel/helper-function-name": "^7.23.0", - "@babel/template": "^7.24.0", - "@babel/types": "^7.24.5" + "@babel/helper-function-name": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.5.tgz", - "integrity": "sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", + "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", "dev": true, "dependencies": { - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5" + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -599,13 +602,13 @@ } }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.5.tgz", - "integrity": "sha512-LdXRi1wEMTrHVR4Zc9F8OewC3vdm5h4QB6L71zy6StmYeqGi1b3ttIO8UC+BfZKcH9jdr4aI249rBkm+3+YvHw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz", + "integrity": "sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -615,12 +618,12 @@ } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz", - "integrity": "sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz", + "integrity": "sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -630,14 +633,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz", - "integrity": "sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.24.1" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -647,13 +650,13 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz", - "integrity": "sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz", + "integrity": "sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -750,12 +753,12 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz", - "integrity": "sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", + "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -765,12 +768,12 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz", - "integrity": "sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -804,12 +807,12 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz", - "integrity": "sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", + "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -921,12 +924,12 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz", - "integrity": "sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz", + "integrity": "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -952,12 +955,12 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz", - "integrity": "sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -967,14 +970,14 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", - "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz", + "integrity": "sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7", "@babel/plugin-syntax-async-generators": "^7.8.4" }, "engines": { @@ -985,14 +988,14 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", - "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20" + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1002,12 +1005,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz", - "integrity": "sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1017,12 +1020,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.5.tgz", - "integrity": "sha512-sMfBc3OxghjC95BkYrYocHL3NaOplrcaunblzwXhGmlPwpmfsxr4vK+mBBt49r+S240vahmv+kUxkeKgs+haCw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz", + "integrity": "sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1032,13 +1035,13 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz", - "integrity": "sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", + "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1048,13 +1051,13 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.4.tgz", - "integrity": "sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.4", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "engines": { @@ -1065,18 +1068,18 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.5.tgz", - "integrity": "sha512-gWkLP25DFj2dwe9Ck8uwMOpko4YsqyfZJrOmqqcegeDYEbp7rmn4U6UQZNj08UF6MaX39XenSpKRCvpDRBtZ7Q==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-split-export-declaration": "^7.24.5", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.7.tgz", + "integrity": "sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", "globals": "^11.1.0" }, "engines": { @@ -1087,13 +1090,13 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz", - "integrity": "sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/template": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1103,12 +1106,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.5.tgz", - "integrity": "sha512-SZuuLyfxvsm+Ah57I/i1HVjveBENYK9ue8MJ7qkc7ndoNjqquJiElzA7f5yaAXjyW2hKojosOTAQQRX50bPSVg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz", + "integrity": "sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1118,13 +1121,13 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz", - "integrity": "sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1134,12 +1137,12 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz", - "integrity": "sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1149,12 +1152,12 @@ } }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz", - "integrity": "sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { @@ -1165,13 +1168,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz", - "integrity": "sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", "dev": true, "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1181,12 +1184,12 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz", - "integrity": "sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { @@ -1197,13 +1200,13 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz", - "integrity": "sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", + "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1213,14 +1216,14 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz", - "integrity": "sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz", + "integrity": "sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1230,12 +1233,12 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz", - "integrity": "sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { @@ -1246,12 +1249,12 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz", - "integrity": "sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", + "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1261,12 +1264,12 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz", - "integrity": "sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { @@ -1277,12 +1280,12 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz", - "integrity": "sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1292,13 +1295,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz", - "integrity": "sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1308,14 +1311,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz", - "integrity": "sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz", + "integrity": "sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-simple-access": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1325,15 +1328,15 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz", - "integrity": "sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz", + "integrity": "sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==", "dev": true, "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1343,13 +1346,13 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz", - "integrity": "sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1359,13 +1362,13 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1375,12 +1378,12 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz", - "integrity": "sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1390,12 +1393,12 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz", - "integrity": "sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { @@ -1406,12 +1409,12 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz", - "integrity": "sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { @@ -1422,15 +1425,15 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.5.tgz", - "integrity": "sha512-7EauQHszLGM3ay7a161tTQH7fj+3vVM/gThlz5HpFtnygTxjrlvoeq7MPVA1Vy9Q555OB8SnAOsMkLShNkkrHA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", + "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.5", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.24.5" + "@babel/plugin-transform-parameters": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1440,13 +1443,13 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz", - "integrity": "sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-replace-supers": "^7.24.1" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1456,12 +1459,12 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz", - "integrity": "sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, "engines": { @@ -1472,13 +1475,13 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.5.tgz", - "integrity": "sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz", + "integrity": "sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { @@ -1489,12 +1492,12 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.5.tgz", - "integrity": "sha512-9Co00MqZ2aoky+4j2jhofErthm6QVLKbpQrvz20c3CH9KQCLHyNB+t2ya4/UrRpQGR+Wrwjg9foopoeSdnHOkA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", + "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1504,13 +1507,13 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz", - "integrity": "sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", + "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1520,14 +1523,14 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.5.tgz", - "integrity": "sha512-JM4MHZqnWR04jPMujQDTBVRnqxpLLpx2tkn7iPn+Hmsc0Gnb79yvRWOkvqFOx3Z7P7VxiRIR22c4eGSNj87OBQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.24.5", - "@babel/helper-plugin-utils": "^7.24.5", + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { @@ -1538,12 +1541,12 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz", - "integrity": "sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1553,12 +1556,12 @@ } }, "node_modules/@babel/plugin-transform-react-constant-elements": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.24.1.tgz", - "integrity": "sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.24.7.tgz", + "integrity": "sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1568,12 +1571,12 @@ } }, "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.1.tgz", - "integrity": "sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.7.tgz", + "integrity": "sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1583,16 +1586,16 @@ } }, "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", - "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.24.7.tgz", + "integrity": "sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.23.3", - "@babel/types": "^7.23.4" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1602,12 +1605,12 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", - "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.24.7.tgz", + "integrity": "sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==", "dev": true, "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.22.5" + "@babel/plugin-transform-react-jsx": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1617,13 +1620,13 @@ } }, "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.1.tgz", - "integrity": "sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.7.tgz", + "integrity": "sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1633,12 +1636,12 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz", - "integrity": "sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "regenerator-transform": "^0.15.2" }, "engines": { @@ -1649,12 +1652,12 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz", - "integrity": "sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1685,12 +1688,12 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", - "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1700,13 +1703,13 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz", - "integrity": "sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1716,12 +1719,12 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz", - "integrity": "sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1731,12 +1734,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz", - "integrity": "sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1746,12 +1749,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.5.tgz", - "integrity": "sha512-UTGnhYVZtTAjdwOTzT+sCyXmTn8AhaxOS/MjG9REclZ6ULHWF9KoCZur0HSGU7hk8PdBFKKbYe6+gqdXWz84Jg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz", + "integrity": "sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1761,15 +1764,15 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.5.tgz", - "integrity": "sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.7.tgz", + "integrity": "sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.24.5", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/plugin-syntax-typescript": "^7.24.1" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-typescript": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1779,12 +1782,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz", - "integrity": "sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1794,13 +1797,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz", - "integrity": "sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1810,13 +1813,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz", - "integrity": "sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1826,13 +1829,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz", - "integrity": "sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", + "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1842,27 +1845,27 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.5.tgz", - "integrity": "sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.24.4", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.7.tgz", + "integrity": "sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.7", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.24.1", - "@babel/plugin-syntax-import-attributes": "^7.24.1", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", @@ -1874,54 +1877,54 @@ "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.24.1", - "@babel/plugin-transform-async-generator-functions": "^7.24.3", - "@babel/plugin-transform-async-to-generator": "^7.24.1", - "@babel/plugin-transform-block-scoped-functions": "^7.24.1", - "@babel/plugin-transform-block-scoping": "^7.24.5", - "@babel/plugin-transform-class-properties": "^7.24.1", - "@babel/plugin-transform-class-static-block": "^7.24.4", - "@babel/plugin-transform-classes": "^7.24.5", - "@babel/plugin-transform-computed-properties": "^7.24.1", - "@babel/plugin-transform-destructuring": "^7.24.5", - "@babel/plugin-transform-dotall-regex": "^7.24.1", - "@babel/plugin-transform-duplicate-keys": "^7.24.1", - "@babel/plugin-transform-dynamic-import": "^7.24.1", - "@babel/plugin-transform-exponentiation-operator": "^7.24.1", - "@babel/plugin-transform-export-namespace-from": "^7.24.1", - "@babel/plugin-transform-for-of": "^7.24.1", - "@babel/plugin-transform-function-name": "^7.24.1", - "@babel/plugin-transform-json-strings": "^7.24.1", - "@babel/plugin-transform-literals": "^7.24.1", - "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", - "@babel/plugin-transform-member-expression-literals": "^7.24.1", - "@babel/plugin-transform-modules-amd": "^7.24.1", - "@babel/plugin-transform-modules-commonjs": "^7.24.1", - "@babel/plugin-transform-modules-systemjs": "^7.24.1", - "@babel/plugin-transform-modules-umd": "^7.24.1", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.24.1", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", - "@babel/plugin-transform-numeric-separator": "^7.24.1", - "@babel/plugin-transform-object-rest-spread": "^7.24.5", - "@babel/plugin-transform-object-super": "^7.24.1", - "@babel/plugin-transform-optional-catch-binding": "^7.24.1", - "@babel/plugin-transform-optional-chaining": "^7.24.5", - "@babel/plugin-transform-parameters": "^7.24.5", - "@babel/plugin-transform-private-methods": "^7.24.1", - "@babel/plugin-transform-private-property-in-object": "^7.24.5", - "@babel/plugin-transform-property-literals": "^7.24.1", - "@babel/plugin-transform-regenerator": "^7.24.1", - "@babel/plugin-transform-reserved-words": "^7.24.1", - "@babel/plugin-transform-shorthand-properties": "^7.24.1", - "@babel/plugin-transform-spread": "^7.24.1", - "@babel/plugin-transform-sticky-regex": "^7.24.1", - "@babel/plugin-transform-template-literals": "^7.24.1", - "@babel/plugin-transform-typeof-symbol": "^7.24.5", - "@babel/plugin-transform-unicode-escapes": "^7.24.1", - "@babel/plugin-transform-unicode-property-regex": "^7.24.1", - "@babel/plugin-transform-unicode-regex": "^7.24.1", - "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.24.7", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.24.7", + "@babel/plugin-transform-class-properties": "^7.24.7", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.24.7", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.7", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.24.7", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.24.7", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-modules-systemjs": "^7.24.7", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.7", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.10.4", @@ -1951,17 +1954,17 @@ } }, "node_modules/@babel/preset-react": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.1.tgz", - "integrity": "sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.7.tgz", + "integrity": "sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-transform-react-display-name": "^7.24.1", - "@babel/plugin-transform-react-jsx": "^7.23.4", - "@babel/plugin-transform-react-jsx-development": "^7.22.5", - "@babel/plugin-transform-react-pure-annotations": "^7.24.1" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-transform-react-display-name": "^7.24.7", + "@babel/plugin-transform-react-jsx": "^7.24.7", + "@babel/plugin-transform-react-jsx-development": "^7.24.7", + "@babel/plugin-transform-react-pure-annotations": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1971,16 +1974,16 @@ } }, "node_modules/@babel/preset-typescript": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.1.tgz", - "integrity": "sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz", + "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-syntax-jsx": "^7.24.1", - "@babel/plugin-transform-modules-commonjs": "^7.24.1", - "@babel/plugin-transform-typescript": "^7.24.1" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-typescript": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1996,9 +1999,9 @@ "dev": true }, "node_modules/@babel/runtime": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.5.tgz", - "integrity": "sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.7.tgz", + "integrity": "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==", "dev": true, "dependencies": { "regenerator-runtime": "^0.14.0" @@ -3049,17 +3052,17 @@ } }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.13.tgz", - "integrity": "sha512-odZVYXly+JwzYri9rKqqUAk0cY6zLpv4dxoKinhoJNShV36Gpxf+CyDIILJ4tYsJ1ZxIWs233Y39iVnynvDA/g==", + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz", + "integrity": "sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==", "dev": true, "dependencies": { - "ansi-html-community": "^0.0.8", + "ansi-html": "^0.0.9", "core-js-pure": "^3.23.3", "error-stack-parser": "^2.0.6", "html-entities": "^2.1.0", "loader-utils": "^2.0.4", - "schema-utils": "^3.0.0", + "schema-utils": "^4.2.0", "source-map": "^0.7.3" }, "engines": { @@ -3141,6 +3144,23 @@ } } }, + "node_modules/@puppeteer/browsers/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, "node_modules/@puppeteer/browsers/node_modules/tar-fs": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz", @@ -4155,9 +4175,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.1.tgz", - "integrity": "sha512-ej0phymbFLoCB26dbbq5PGScsf2JAJ4IJHjG10LalgUV36XKTmA4GdA+PVllKvRk0sEKt64X8975qFnkSi0hqA==", + "version": "4.19.3", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.3.tgz", + "integrity": "sha512-KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==", "dev": true, "dependencies": { "@types/node": "*", @@ -4286,9 +4306,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.12.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.12.tgz", - "integrity": "sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==", + "version": "20.14.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.2.tgz", + "integrity": "sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -4335,9 +4355,9 @@ "dev": true }, "node_modules/@types/react": { - "version": "18.3.2", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.2.tgz", - "integrity": "sha512-Btgg89dAnqD4vV7R3hlwOxgqobUQKgx3MmrQRi0yYbs/P0ym8XozIAlkqVilPqHQwXs4e9Tf63rrCgl58BcO4w==", + "version": "18.3.3", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz", + "integrity": "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==", "dev": true, "dependencies": { "@types/prop-types": "*", @@ -4500,6 +4520,40 @@ "node": ">=0.10.0" } }, + "node_modules/@types/wordpress__block-editor": { + "version": "11.5.14", + "resolved": "https://registry.npmjs.org/@types/wordpress__block-editor/-/wordpress__block-editor-11.5.14.tgz", + "integrity": "sha512-qW1yD9Nrsy6x4cxMYCSXW6v74bXfcstPQeOV+uQbMejd5zxrBGytH9OQvcrIJrDquPzDf5+We8VqnsIWTF/Rpg==", + "dev": true, + "dependencies": { + "@types/react": "*", + "@types/wordpress__blocks": "*", + "@wordpress/components": "^27.2.0", + "@wordpress/data": "^9.13.0", + "@wordpress/element": "^5.0.0", + "@wordpress/keycodes": "^3.54.0", + "react-autosize-textarea": "^7.1.0" + } + }, + "node_modules/@types/wordpress__blocks": { + "version": "12.5.14", + "resolved": "https://registry.npmjs.org/@types/wordpress__blocks/-/wordpress__blocks-12.5.14.tgz", + "integrity": "sha512-eXEnCRKYu+39KEJ/OYpoYxWTATxI+eJHd+meMGZ14hYydFtxA0Y8M7zJT8D8f4klBo8wINLvP7zrO8vYrjWjPQ==", + "dev": true, + "dependencies": { + "@types/react": "*", + "@types/wordpress__shortcode": "*", + "@wordpress/components": "^27.2.0", + "@wordpress/data": "^9.13.0", + "@wordpress/element": "^5.0.0" + } + }, + "node_modules/@types/wordpress__shortcode": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/@types/wordpress__shortcode/-/wordpress__shortcode-2.3.6.tgz", + "integrity": "sha512-H8BVov7QWyLLoxCaI9QyZVC4zTi1mFkZ+eEKiXBCFlaJ0XV8UVfQk+cAetqD5mWOeWv2d4b8uzzyn0TTQ/ep2g==", + "dev": true + }, "node_modules/@types/ws": { "version": "8.5.10", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", @@ -5000,43 +5054,52 @@ } }, "node_modules/@wordpress/a11y": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.1.0.tgz", - "integrity": "sha512-3sElZpfb72mWBRLD3k5YqwJi4zKQUQ6fBNrrNI+nY8/X8IyKWb5rDsNslqCkc3Zb+PpvtXns8hV3bQnoc+NUZA==", + "version": "3.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-3.58.0.tgz", + "integrity": "sha512-7NnJKl4+pxP6kV/jvXaJcZZCGzW7zaj6YeMnyjUd96cH4ta1ykBIveWgejerFOGsbK+88FnStcxSFj+dbDXs/w==", "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/dom-ready": "^4.1.0", - "@wordpress/i18n": "^5.1.0" + "@wordpress/dom-ready": "^3.58.0", + "@wordpress/i18n": "^4.58.0" }, "engines": { - "node": ">=18.12.0", - "npm": ">=8.19.2" + "node": ">=12" + } + }, + "node_modules/@wordpress/a11y/node_modules/@wordpress/dom-ready": { + "version": "3.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom-ready/-/dom-ready-3.58.0.tgz", + "integrity": "sha512-sDgRPjNBToRKgYrpwvMRv2Yc7/17+sp8hm/rRnbubwb+d/DbGkK4Tc/r4sNLSZCqUAtcBXq9uk1lzvhge3QUSg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=12" } }, "node_modules/@wordpress/api-fetch": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-7.1.0.tgz", - "integrity": "sha512-mtEJi9IBPCRtNxyhP1VAwcLmncpQzt7CQX8rxhC4eAMnicamCG/fwZ3pFEKGXk3MUul3Bl1Q7y/UhdMtCGktGg==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-7.0.0.tgz", + "integrity": "sha512-njpOgHmg7iQ512eGOqF6shRzSlaUgh0xg126vYC7MFWV8IWOnJy3eYjOmqOIkvfYamOmcyZWb37CBa5SFrZvEg==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/i18n": "^5.1.0", - "@wordpress/url": "^4.1.0" + "@wordpress/i18n": "^5.0.0", + "@wordpress/url": "^4.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/autop": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/autop/-/autop-4.1.0.tgz", - "integrity": "sha512-zA/7cAqrrM7hL/CZUlqBX38LS9vj3ho0wegREYsFhgLhLQ2Yxs8L+pslkN8WaRnBMOl7e7fQ16OYCtbjtlKekA==", + "node_modules/@wordpress/api-fetch/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" }, @@ -5045,41 +5108,48 @@ "npm": ">=8.19.2" } }, - "node_modules/@wordpress/babel-preset-default": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-8.1.0.tgz", - "integrity": "sha512-3KXhocrFT+PKVXHWeCwTphPr2RRWiIx9mQBuFlNfTlf/zd2fMob4ZIHkG6zNsidP+afnFTdrZR3tTI0TL9/uAg==", + "node_modules/@wordpress/api-fetch/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", "dev": true, "license": "GPL-2.0-or-later", "dependencies": { - "@babel/core": "^7.16.0", - "@babel/plugin-transform-react-jsx": "^7.16.0", - "@babel/plugin-transform-runtime": "^7.16.0", - "@babel/preset-env": "^7.16.0", - "@babel/preset-typescript": "^7.16.0", "@babel/runtime": "^7.16.0", - "@wordpress/browserslist-config": "^6.1.0", - "@wordpress/warning": "^3.1.0", - "browserslist": "^4.21.10", - "core-js": "^3.31.0", - "react": "^18.3.0" + "@wordpress/i18n": "^5.1.0", + "@wordpress/url": "^4.1.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/base-styles": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-5.1.0.tgz", - "integrity": "sha512-HVUuN+y9UwnIgLQj1lYC71jP+JPWuW9WWCVSLPVwKTJtwrxAVKxSf3PLUaXRhhhNt5NXSqev2wuR3qQbZJ/L+g==", + "node_modules/@wordpress/autop": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/autop/-/autop-4.1.0.tgz", + "integrity": "sha512-zA/7cAqrrM7hL/CZUlqBX38LS9vj3ho0wegREYsFhgLhLQ2Yxs8L+pslkN8WaRnBMOl7e7fQ16OYCtbjtlKekA==", "dev": true, "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0" + }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, + "node_modules/@wordpress/babel-plugin-import-jsx-pragma": { + "version": "4.41.0", + "resolved": "https://registry.npmjs.org/@wordpress/babel-plugin-import-jsx-pragma/-/babel-plugin-import-jsx-pragma-4.41.0.tgz", + "integrity": "sha512-hYxj2Uobxk86ctlfaJou9v13XqXZ30yx4ZwRNu5cH5/LWXe2MIXBTPv7dUk6wqN/qFOjsFvP9jCB0NsW6MnkrA==", + "dev": true, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@babel/core": "^7.12.9" + } + }, "node_modules/@wordpress/blob": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/@wordpress/blob/-/blob-4.1.0.tgz", @@ -5157,108 +5227,28 @@ "react-dom": "^18.0.0" } }, - "node_modules/@wordpress/block-serialization-default-parser": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/block-serialization-default-parser/-/block-serialization-default-parser-5.1.0.tgz", - "integrity": "sha512-aSBHoliIQXWBGVB9E62qrNG9wihAthZwQ5tvcah6dwWU9I3McMqmuvPmFii0EmkNW/sGn4Ji2hDkc8aWzyZUbA==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/a11y": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.0.0.tgz", + "integrity": "sha512-w+H4VcL8DuT82kHDmT07Y2cFxG2IGOT8ylZj2tsXbSILkwwaEquq+kAFBBM7YTxUqazaHW19MHkpVA7Fniq6kA==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/runtime": "^7.16.0" + "@babel/runtime": "^7.16.0", + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/i18n": "^5.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/blocks": { - "version": "13.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/blocks/-/blocks-13.1.0.tgz", - "integrity": "sha512-utqXpeA7U8uuamIhHOC2/YXv6zSMuvuhtLNat4BT8g6oIIGm9qNSXIx7twkO8cAV9UJHgsN1wGVl1NADvxjoYw==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/components": { + "version": "28.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/components/-/components-28.0.0.tgz", + "integrity": "sha512-55VEwJmiA9QSg2bnRtHIRxkjbV9wYLfzaCfWgksd018kkLtwXpZcKeQQvevmKTdL9PeIeLC1lDO4H+cdExcOXw==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/runtime": "^7.16.0", - "@wordpress/autop": "^4.1.0", - "@wordpress/blob": "^4.1.0", - "@wordpress/block-serialization-default-parser": "^5.1.0", - "@wordpress/data": "^10.1.0", - "@wordpress/deprecated": "^4.1.0", - "@wordpress/dom": "^4.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/hooks": "^4.1.0", - "@wordpress/html-entities": "^4.1.0", - "@wordpress/i18n": "^5.1.0", - "@wordpress/is-shallow-equal": "^5.1.0", - "@wordpress/private-apis": "^1.1.0", - "@wordpress/rich-text": "^7.1.0", - "@wordpress/shortcode": "^4.1.0", - "change-case": "^4.1.2", - "colord": "^2.7.0", - "fast-deep-equal": "^3.1.3", - "hpq": "^1.3.0", - "is-plain-object": "^5.0.0", - "memize": "^2.1.0", - "react-is": "^18.3.0", - "remove-accents": "^0.5.0", - "showdown": "^1.9.1", - "simple-html-tokenizer": "^0.5.7", - "uuid": "^9.0.1" - }, - "engines": { - "node": ">=18.12.0", - "npm": ">=8.19.2" - }, - "peerDependencies": { - "react": "^18.0.0" - } - }, - "node_modules/@wordpress/browserslist-config": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-6.1.0.tgz", - "integrity": "sha512-cf5iwPq6JetQjiaRwlvzW5eX0S3OphVmy1YTxHQdrVqp79rOGvamVftxqvmf3C/GSRaNyI4eZV+nNwNRN0DkrQ==", - "dev": true, - "license": "GPL-2.0-or-later", - "engines": { - "node": ">=18.12.0", - "npm": ">=8.19.2" - } - }, - "node_modules/@wordpress/commands": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/commands/-/commands-1.1.0.tgz", - "integrity": "sha512-RWdSdcxtGbyYdWPi3W789Zmf5EUfa3Nlqm9PAfc0TRIhZArp5ahesbLbiD7ZAKswCX2kS7pbqU71fuvgsolt/Q==", - "dev": true, - "license": "GPL-2.0-or-later", - "dependencies": { - "@babel/runtime": "^7.16.0", - "@wordpress/components": "^28.1.0", - "@wordpress/data": "^10.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/i18n": "^5.1.0", - "@wordpress/icons": "^10.1.0", - "@wordpress/keyboard-shortcuts": "^5.1.0", - "@wordpress/private-apis": "^1.1.0", - "clsx": "^2.1.1", - "cmdk": "^0.2.0" - }, - "engines": { - "node": ">=18.12.0", - "npm": ">=8.19.2" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@wordpress/components": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/components/-/components-28.1.0.tgz", - "integrity": "sha512-GIiwHbjlhxj4Eou/ObLEibU/nXNhQaXYJm41x73jptZ8n0wDw7Bl/GJ+nlQu7tDrliaCJ5mwp3zPLhmbjif53A==", - "dev": true, - "license": "GPL-2.0-or-later", - "dependencies": { - "@ariakit/react": "^0.3.12", + "@ariakit/react": "^0.3.12", "@babel/runtime": "^7.16.0", "@emotion/cache": "^11.7.1", "@emotion/css": "^11.7.1", @@ -5270,23 +5260,23 @@ "@types/gradient-parser": "0.1.3", "@types/highlight-words-core": "1.2.1", "@use-gesture/react": "^10.3.1", - "@wordpress/a11y": "^4.1.0", - "@wordpress/compose": "^7.1.0", - "@wordpress/date": "^5.1.0", - "@wordpress/deprecated": "^4.1.0", - "@wordpress/dom": "^4.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/escape-html": "^3.1.0", - "@wordpress/hooks": "^4.1.0", - "@wordpress/html-entities": "^4.1.0", - "@wordpress/i18n": "^5.1.0", - "@wordpress/icons": "^10.1.0", - "@wordpress/is-shallow-equal": "^5.1.0", - "@wordpress/keycodes": "^4.1.0", - "@wordpress/primitives": "^4.1.0", - "@wordpress/private-apis": "^1.1.0", - "@wordpress/rich-text": "^7.1.0", - "@wordpress/warning": "^3.1.0", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/date": "^5.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/hooks": "^4.0.0", + "@wordpress/html-entities": "^4.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/icons": "^10.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/primitives": "^4.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/rich-text": "^7.0.0", + "@wordpress/warning": "^3.0.0", "change-case": "^4.1.2", "clsx": "^2.1.1", "colord": "^2.7.0", @@ -5315,22 +5305,21 @@ "react-dom": "^18.0.0" } }, - "node_modules/@wordpress/compose": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.1.0.tgz", - "integrity": "sha512-YxH191innNfsCzloxPLhxJh98avjMqYKH8as9srXqy6alN6QDQX7t4JYqT3+vjgRpJPwfzW7aBP2IO+u0cAz2w==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", "@types/mousetrap": "^1.6.8", - "@wordpress/deprecated": "^4.1.0", - "@wordpress/dom": "^4.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/is-shallow-equal": "^5.1.0", - "@wordpress/keycodes": "^4.1.0", - "@wordpress/priority-queue": "^3.1.0", - "@wordpress/undo-manager": "^1.1.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", "change-case": "^4.1.2", "clipboard": "^2.0.11", "mousetrap": "^1.6.5", @@ -5344,59 +5333,20 @@ "react": "^18.0.0" } }, - "node_modules/@wordpress/core-data": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/core-data/-/core-data-7.1.0.tgz", - "integrity": "sha512-FbtldbDCB2YQDuZAFe2CM3aydOw/n6CRooQ4ifUE8JQ1aWITBZAlwkMKqTiMX5xkxtzt5xLPKyzsHOJB93YJTQ==", - "dev": true, - "license": "GPL-2.0-or-later", - "dependencies": { - "@babel/runtime": "^7.16.0", - "@wordpress/api-fetch": "^7.1.0", - "@wordpress/block-editor": "^13.1.0", - "@wordpress/blocks": "^13.1.0", - "@wordpress/compose": "^7.1.0", - "@wordpress/data": "^10.1.0", - "@wordpress/deprecated": "^4.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/html-entities": "^4.1.0", - "@wordpress/i18n": "^5.1.0", - "@wordpress/is-shallow-equal": "^5.1.0", - "@wordpress/private-apis": "^1.1.0", - "@wordpress/rich-text": "^7.1.0", - "@wordpress/sync": "^1.1.0", - "@wordpress/undo-manager": "^1.1.0", - "@wordpress/url": "^4.1.0", - "change-case": "^4.1.2", - "equivalent-key-map": "^0.2.2", - "fast-deep-equal": "^3.1.3", - "memize": "^2.1.0", - "uuid": "^9.0.1" - }, - "engines": { - "node": ">=18.12.0", - "npm": ">=8.19.2" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@wordpress/data": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.1.0.tgz", - "integrity": "sha512-qMG9vNRMaxqDn9R35+SM6ga8ebiIxgUNbPKtv5Y+JQza/bvKU8vH3HogOeu6wUCI1epgvQbDtnKxsoDMnNdXXw==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/compose": "^7.1.0", - "@wordpress/deprecated": "^4.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/is-shallow-equal": "^5.1.0", - "@wordpress/priority-queue": "^3.1.0", - "@wordpress/private-apis": "^1.1.0", - "@wordpress/redux-routine": "^5.1.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", "deepmerge": "^4.3.0", "equivalent-key-map": "^0.2.2", "is-plain-object": "^5.0.0", @@ -5413,15 +5363,14 @@ "react": "^18.0.0" } }, - "node_modules/@wordpress/date": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/date/-/date-5.1.0.tgz", - "integrity": "sha512-YSoiT+sHCT1y7e9G5VIEIlMJZt0M2nmPHZ6AFdFHx4GOzNk5OwNeQqRrAy3IzHpVTi7V5Vgdaw437io9dbLyCA==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/date": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/date/-/date-5.0.0.tgz", + "integrity": "sha512-50FGIawpM6IccH2ujR5MsGlBM7fIIT2MfZMfh5QtRXdDO0M5Jul+TI6HkF9+oZlNGzc1q2FTrkopHXNvkxPAeA==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/deprecated": "^4.1.0", + "@wordpress/deprecated": "^4.0.0", "moment": "^2.29.4", "moment-timezone": "^0.5.40" }, @@ -5430,59 +5379,59 @@ "npm": ">=8.19.2" } }, - "node_modules/@wordpress/dependency-extraction-webpack-plugin": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-6.1.0.tgz", - "integrity": "sha512-Dodnc0yn6Q7jZW2S5hUFa/3Ls6/OVUp6mXsPr6HvaTZsy9IzrNJJdTiIbk5nNRXDFt7Yv+f8CB/QIdwV0tweag==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "json2php": "^0.0.7" + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" - }, - "peerDependencies": { - "webpack": "^5.0.0" } }, - "node_modules/@wordpress/deprecated": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.1.0.tgz", - "integrity": "sha512-iZ/Vmhf3Tkq03DIuyef/+ZXsQanCZJsUc8xFPFXKn4ACHeo6Ds0krfFZ/AC0qwpW+cnHCaIEdqoEosHUnemGsQ==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/hooks": "^4.1.0" + "@wordpress/deprecated": "^4.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/dom": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.1.0.tgz", - "integrity": "sha512-G3RhtPkuOLy/q46W4PWC5hMPX7Y7Gn7MLzbmOi1M5z0xUIWJWKXaxXx1hm6qgmRokY/Z8yRHl/PqEGe/UQIV6w==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/deprecated": "^4.1.0" + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/dom-ready": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/dom-ready/-/dom-ready-4.1.0.tgz", - "integrity": "sha512-FxlhDPGpe29rWLph3GpkQUG3sRSNRxji871S9+DviE4zt/872rKe6caum1QptsJN8rcn/hm+HIOS7qrYFjS2Xg==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" }, @@ -5491,119 +5440,58 @@ "npm": ">=8.19.2" } }, - "node_modules/@wordpress/e2e-test-utils-playwright": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-1.1.0.tgz", - "integrity": "sha512-lGA7/6S1Rsa9Zf7qnAs1nOWn8lPpg8vBOwUWHPBqV1a79r7nsD2KQqsrqsKy8wIJ763fIt5LljjD9VSca0UtIQ==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@wordpress/api-fetch": "^7.1.0", - "@wordpress/keycodes": "^4.1.0", - "@wordpress/url": "^4.1.0", - "change-case": "^4.1.2", - "form-data": "^4.0.0", - "get-port": "^5.1.1", - "lighthouse": "^10.4.0", - "mime": "^3.0.0", - "web-vitals": "^3.5.0" + "@babel/runtime": "^7.16.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" - }, - "peerDependencies": { - "@playwright/test": ">=1" } }, - "node_modules/@wordpress/editor": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/editor/-/editor-14.1.0.tgz", - "integrity": "sha512-oYHlMgTiiGgUDT+kvmIX+pWsCol1hp1O50U+MknT/lmMNzi+ibwc8nOKpLYdSTQswasHtn5F92Q39q6r867Eyg==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/html-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.0.0.tgz", + "integrity": "sha512-0CHyxa4ZPeo2osUv9Ghz95sD00+HBF7N61ysToqcg1+EOWe8HWhUl74HNDlOe1n/KYFDxXN0wKfYqPkKTQk7DA==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/runtime": "^7.16.0", - "@wordpress/a11y": "^4.1.0", - "@wordpress/api-fetch": "^7.1.0", - "@wordpress/blob": "^4.1.0", - "@wordpress/block-editor": "^13.1.0", - "@wordpress/blocks": "^13.1.0", - "@wordpress/commands": "^1.1.0", - "@wordpress/components": "^28.1.0", - "@wordpress/compose": "^7.1.0", - "@wordpress/core-data": "^7.1.0", - "@wordpress/data": "^10.1.0", - "@wordpress/date": "^5.1.0", - "@wordpress/deprecated": "^4.1.0", - "@wordpress/dom": "^4.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/hooks": "^4.1.0", - "@wordpress/html-entities": "^4.1.0", - "@wordpress/i18n": "^5.1.0", - "@wordpress/icons": "^10.1.0", - "@wordpress/interface": "^6.1.0", - "@wordpress/keyboard-shortcuts": "^5.1.0", - "@wordpress/keycodes": "^4.1.0", - "@wordpress/media-utils": "^5.1.0", - "@wordpress/notices": "^5.1.0", - "@wordpress/patterns": "^2.1.0", - "@wordpress/plugins": "^7.1.0", - "@wordpress/preferences": "^4.1.0", - "@wordpress/private-apis": "^1.1.0", - "@wordpress/reusable-blocks": "^5.1.0", - "@wordpress/rich-text": "^7.1.0", - "@wordpress/server-side-render": "^5.1.0", - "@wordpress/url": "^4.1.0", - "@wordpress/warning": "^3.1.0", - "@wordpress/wordcount": "^4.1.0", - "change-case": "^4.1.2", - "client-zip": "^2.4.5", - "clsx": "^2.1.1", - "date-fns": "^3.6.0", - "deepmerge": "^4.3.0", - "fast-deep-equal": "^3.1.3", - "is-plain-object": "^5.0.0", - "memize": "^2.1.0", - "react-autosize-textarea": "^7.1.0", - "remove-accents": "^0.5.0" + "@babel/runtime": "^7.16.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" } }, - "node_modules/@wordpress/element": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.1.0.tgz", - "integrity": "sha512-DqAGqal1i6gTfYxz95zHnckbweS43MroHqMcz/Rww60pysTCoaRG5KZ/v4/3hry1tNCem1WQguY4ZMTF0MMTBQ==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@types/react": "^18.2.79", - "@types/react-dom": "^18.2.25", - "@wordpress/escape-html": "^3.1.0", - "change-case": "^4.1.2", - "is-plain-object": "^5.0.0", - "react": "^18.3.0", - "react-dom": "^18.3.0" + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/escape-html": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.1.0.tgz", - "integrity": "sha512-wcRGrGuGV4kTd5hJMXy/bdjCObqcwqFmd/HkDAUi2pfngEsv2aJhAeTfkGP5NwmY/F03Oqz2Qgd4UzTiIu2bjQ==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" }, @@ -5612,469 +5500,399 @@ "npm": ">=8.19.2" } }, - "node_modules/@wordpress/eslint-plugin": { - "version": "19.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-19.1.0.tgz", - "integrity": "sha512-/qh8Q5VWg6xoVS6x5KnRmLQeKIquVs/kmHkgatljF9mqPV4QVL12LQoc4DO0QbQq5Jz2aqk/jod/UHYwEWrv+Q==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/eslint-parser": "^7.16.0", - "@typescript-eslint/eslint-plugin": "^6.4.1", - "@typescript-eslint/parser": "^6.4.1", - "@wordpress/babel-preset-default": "^8.1.0", - "@wordpress/prettier-config": "^4.1.0", - "cosmiconfig": "^7.0.0", - "eslint-config-prettier": "^8.3.0", - "eslint-plugin-import": "^2.25.2", - "eslint-plugin-jest": "^27.2.3", - "eslint-plugin-jsdoc": "^46.4.6", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-playwright": "^0.15.3", - "eslint-plugin-prettier": "^5.0.0", - "eslint-plugin-react": "^7.27.0", - "eslint-plugin-react-hooks": "^4.3.0", - "globals": "^13.12.0", - "requireindex": "^1.2.0" + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" - }, - "peerDependencies": { - "@babel/core": ">=7", - "eslint": ">=8", - "prettier": ">=3", - "typescript": ">=4" - }, - "peerDependenciesMeta": { - "prettier": { - "optional": true - }, - "typescript": { - "optional": true - } } }, - "node_modules/@wordpress/eslint-plugin/node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/primitives": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.0.0.tgz", + "integrity": "sha512-NMzDEFxfRwh1IAbf4fJHz6UmvIyfHmId6/1UjueCgpON0LR0y5ydjB6Pd4AngkMcO2qOjD9XNP6MKAOzdjw54g==", "dev": true, - "license": "MIT", "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.0.0", + "clsx": "^2.1.1" }, "engines": { - "node": ">=10" + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/@wordpress/eslint-plugin/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", "dev": true, - "license": "MIT", "dependencies": { - "type-fest": "^0.20.2" + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/@wordpress/eslint-plugin/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" + "dependencies": { + "@babel/runtime": "^7.16.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/@wordpress/hooks": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.1.0.tgz", - "integrity": "sha512-uJ2zyLLs6AwWuEdLGv/P7oSXJuX27Ym6JglzWGBavxAKNXpTCCjiJwgxlZJbSjT3BzhRsRGl3bUMmzt3eh50Pg==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/runtime": "^7.16.0" + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" } }, - "node_modules/@wordpress/html-entities": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.1.0.tgz", - "integrity": "sha512-9VXyZy99hZwkBK8p8p4bOo7oGOhyLlaVPoIX2D/bspcSh1r58CPXkHq8jK/+uqE8ihLs+WnW21Lud8qe0tg4Bw==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/rich-text": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-7.0.0.tgz", + "integrity": "sha512-OV1OTUkK7oHzJpsNUGwpZAHcXtubohFGY5TRiKobFHAhDuhML0tXWLKEwwsbBZj7v2t6YTWakD+WC6449IZn7w==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/runtime": "^7.16.0" + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/data": "^10.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "memize": "^2.1.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" } }, - "node_modules/@wordpress/i18n": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.1.0.tgz", - "integrity": "sha512-zNJiudByLnpIVhIS45hr92r53t+wRYp9a6XOJ585xNYeUmoUpymY5GTdLSrExmQaytMhV5cSXSn3qMMDBMjUsg==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/hooks": "^4.1.0", - "gettext-parser": "^1.3.1", - "memize": "^2.1.0", - "sprintf-js": "^1.1.1", - "tannin": "^1.2.0" - }, - "bin": { - "pot-to-php": "tools/pot-to-php.js" + "@wordpress/is-shallow-equal": "^5.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/icons": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-10.1.0.tgz", - "integrity": "sha512-s0USxIPq54Ubmsrz+lHepgJieKhi/PyvS/EI/ZVsFnyQbNKwuTSVHY2vifWrkZffwdG1XeP6Cz2Qnoy2cs9TeQ==", + "node_modules/@wordpress/block-editor/node_modules/@wordpress/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-vZ7SH4lwnwglsZC+5dmrMJS/9lZXn7BvADC+ZHzrRM0s6Ufumi1RdG0QJr/HJuTRY9fX5bbPNdUQVyrv+weSEg==", + "dev": true, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/block-serialization-default-parser": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/block-serialization-default-parser/-/block-serialization-default-parser-5.1.0.tgz", + "integrity": "sha512-aSBHoliIQXWBGVB9E62qrNG9wihAthZwQ5tvcah6dwWU9I3McMqmuvPmFii0EmkNW/sGn4Ji2hDkc8aWzyZUbA==", "dev": true, "license": "GPL-2.0-or-later", "dependencies": { - "@babel/runtime": "^7.16.0", - "@wordpress/element": "^6.1.0", - "@wordpress/primitives": "^4.1.0" + "@babel/runtime": "^7.16.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/interface": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/interface/-/interface-6.1.0.tgz", - "integrity": "sha512-tL1oRtXDXx1MpYhIwhPcaL/n9Q7QlDNANY3ZL6Um3LLuf4bJwkIW8L6j8dBKq/8yTKhnIKIoo3QINjCLDbz5CA==", + "node_modules/@wordpress/blocks": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/blocks/-/blocks-13.1.0.tgz", + "integrity": "sha512-utqXpeA7U8uuamIhHOC2/YXv6zSMuvuhtLNat4BT8g6oIIGm9qNSXIx7twkO8cAV9UJHgsN1wGVl1NADvxjoYw==", "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/a11y": "^4.1.0", - "@wordpress/components": "^28.1.0", - "@wordpress/compose": "^7.1.0", + "@wordpress/autop": "^4.1.0", + "@wordpress/blob": "^4.1.0", + "@wordpress/block-serialization-default-parser": "^5.1.0", "@wordpress/data": "^10.1.0", "@wordpress/deprecated": "^4.1.0", + "@wordpress/dom": "^4.1.0", "@wordpress/element": "^6.1.0", + "@wordpress/hooks": "^4.1.0", + "@wordpress/html-entities": "^4.1.0", "@wordpress/i18n": "^5.1.0", - "@wordpress/icons": "^10.1.0", - "@wordpress/plugins": "^7.1.0", - "@wordpress/preferences": "^4.1.0", + "@wordpress/is-shallow-equal": "^5.1.0", "@wordpress/private-apis": "^1.1.0", - "@wordpress/viewport": "^6.1.0", - "clsx": "^2.1.1" + "@wordpress/rich-text": "^7.1.0", + "@wordpress/shortcode": "^4.1.0", + "change-case": "^4.1.2", + "colord": "^2.7.0", + "fast-deep-equal": "^3.1.3", + "hpq": "^1.3.0", + "is-plain-object": "^5.0.0", + "memize": "^2.1.0", + "react-is": "^18.3.0", + "remove-accents": "^0.5.0", + "showdown": "^1.9.1", + "simple-html-tokenizer": "^0.5.7", + "uuid": "^9.0.1" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^18.0.0" } }, - "node_modules/@wordpress/is-shallow-equal": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.1.0.tgz", - "integrity": "sha512-OZH/p43ZNJaSF40oi6dNdlsLqxjd4pZ1H4QxDg46vXT0TztU1rT/HOeJWyVmHIjx/4utuGaLJBZcfK4cKPQXUg==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/a11y": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.0.0.tgz", + "integrity": "sha512-w+H4VcL8DuT82kHDmT07Y2cFxG2IGOT8ylZj2tsXbSILkwwaEquq+kAFBBM7YTxUqazaHW19MHkpVA7Fniq6kA==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/runtime": "^7.16.0" + "@babel/runtime": "^7.16.0", + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/i18n": "^5.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/jest-console": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-8.1.0.tgz", - "integrity": "sha512-yTgZ+JdM3e2dhhfMtEJLDZwmUWAv2a4Asy+1uu/ZzY+ChsPPBNgHLxQtyTOknnyJtfwLm+gQfFxpiS/OwyzMVQ==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "jest-matcher-utils": "^29.6.2" + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" }, "peerDependencies": { - "jest": ">=29" + "react": "^18.0.0" } }, - "node_modules/@wordpress/jest-preset-default": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-12.1.0.tgz", - "integrity": "sha512-Qp+2PFMkJw+dh+y/OlUkV7AoRwK6q3Cd0gXXotChO7wi6/xp7LeFmdjjRIC5IERQ0AeaWUS44MF5lb0GSSmCEQ==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@wordpress/jest-console": "^8.1.0", - "babel-jest": "^29.6.2" + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" }, "peerDependencies": { - "@babel/core": ">=7", - "jest": ">=29" + "react": "^18.0.0" } }, - "node_modules/@wordpress/keyboard-shortcuts": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/keyboard-shortcuts/-/keyboard-shortcuts-5.1.0.tgz", - "integrity": "sha512-3FdZT+YjcbLbUVrWWbSWoNB79SdV93SNBk8N/5+f5ckQoG3z/A+jl9tUTUnI/Y/cf3HXEXmOpvH6423sQw+Taw==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/data": "^10.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/keycodes": "^4.1.0" + "@wordpress/hooks": "^4.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" - }, - "peerDependencies": { - "react": "^18.0.0" } }, - "node_modules/@wordpress/keycodes": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.1.0.tgz", - "integrity": "sha512-ibAR7qg4q7082s9kOPnZ0Hqb6KM/zjAZBjEH2Yrc2jwLJ83QDGKDWCSx6dNYkN7m9jGpH52w8j4nz1wcbFZSiw==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/i18n": "^5.1.0" + "@wordpress/deprecated": "^4.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/media-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/media-utils/-/media-utils-5.1.0.tgz", - "integrity": "sha512-Zh2kgvalXrd2ZvUH07lnrHQTY2K8rsOoI60wYKAIWfiqchx8QHG79Ic0IhZRkq8c7i9egUIlC0hDM9vsXF8x7g==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/api-fetch": "^7.1.0", - "@wordpress/blob": "^4.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/i18n": "^5.1.0" + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/notices": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/notices/-/notices-5.1.0.tgz", - "integrity": "sha512-9UaeEfwaF3At3idyMW3iRf6LvL3/ztgMR5goars3UZch0RPpGugl1rRZQBAi3I/NvUoiF3HhYdPxUhB/bQYHBg==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/runtime": "^7.16.0", - "@wordpress/a11y": "^4.1.0", - "@wordpress/data": "^10.1.0" + "@babel/runtime": "^7.16.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" - }, - "peerDependencies": { - "react": "^18.0.0" - } - }, - "node_modules/@wordpress/npm-package-json-lint-config": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-5.1.0.tgz", - "integrity": "sha512-eYT737t5i051V2RG5+/dP/3uXvtoR2e+liewKbgkanvdKotRT2XbXdiDSodiSjF8N7f8YrthvMF4Y2Mw9AVtSQ==", - "dev": true, - "license": "GPL-2.0-or-later", - "engines": { - "node": ">=18.12.0", - "npm": ">=8.19.2" - }, - "peerDependencies": { - "npm-package-json-lint": ">=6.0.0" } }, - "node_modules/@wordpress/patterns": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/patterns/-/patterns-2.1.0.tgz", - "integrity": "sha512-Cnqi5AqdZGppS9I8PaJLr5wLvglUCYyU1upt8lMunW4uyX+OrMLMqQhbyjzjFEKIXqaXyZG4uJF127ddzrOuhg==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/runtime": "^7.16.0", - "@wordpress/a11y": "^4.1.0", - "@wordpress/block-editor": "^13.1.0", - "@wordpress/blocks": "^13.1.0", - "@wordpress/components": "^28.1.0", - "@wordpress/compose": "^7.1.0", - "@wordpress/core-data": "^7.1.0", - "@wordpress/data": "^10.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/html-entities": "^4.1.0", - "@wordpress/i18n": "^5.1.0", - "@wordpress/icons": "^10.1.0", - "@wordpress/notices": "^5.1.0", - "@wordpress/private-apis": "^1.1.0", - "@wordpress/url": "^4.1.0" + "@babel/runtime": "^7.16.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" } }, - "node_modules/@wordpress/plugins": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/plugins/-/plugins-7.1.0.tgz", - "integrity": "sha512-pLe5Q5o4L2aYezK+ozGX5iGIx7I7Fipez0Qek9ByhylY8nWVojU8uTlIK0iDSL35J36TOviy/suvctoEjtW8TA==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/html-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.0.0.tgz", + "integrity": "sha512-0CHyxa4ZPeo2osUv9Ghz95sD00+HBF7N61ysToqcg1+EOWe8HWhUl74HNDlOe1n/KYFDxXN0wKfYqPkKTQk7DA==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/runtime": "^7.16.0", - "@wordpress/components": "^28.1.0", - "@wordpress/compose": "^7.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/hooks": "^4.1.0", - "@wordpress/icons": "^10.1.0", - "@wordpress/is-shallow-equal": "^5.1.0", - "memize": "^2.0.1" + "@babel/runtime": "^7.16.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" } }, - "node_modules/@wordpress/postcss-plugins-preset": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-5.1.0.tgz", - "integrity": "sha512-t6szmy/pmhx0vu8Spa1sBMN6XX94bMXVfKZ/Az1X1R+bzgya+PAGhJBYZL9szHGzavW9aaiA32xPRc8Rr0YfcA==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@wordpress/base-styles": "^5.1.0", - "autoprefixer": "^10.2.5" + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" - }, - "peerDependencies": { - "postcss": "^8.0.0" } }, - "node_modules/@wordpress/preferences": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/preferences/-/preferences-4.1.0.tgz", - "integrity": "sha512-4BGXljtwtYOYu9+UUgkQki/BpSE9G3KibeylyqLZk4+RadyHh0nYqPHlwDcyZ37MaNvmJ3EWpoWfgQ0oEPJ2CA==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/runtime": "^7.16.0", - "@wordpress/a11y": "^4.1.0", - "@wordpress/components": "^28.1.0", - "@wordpress/compose": "^7.1.0", - "@wordpress/data": "^10.1.0", - "@wordpress/deprecated": "^4.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/i18n": "^5.1.0", - "@wordpress/icons": "^10.1.0", - "@wordpress/private-apis": "^1.1.0", - "clsx": "^2.1.1" - }, - "engines": { - "node": ">=18.12.0", - "npm": ">=8.19.2" + "@babel/runtime": "^7.16.0" }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@wordpress/prettier-config": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-4.1.0.tgz", - "integrity": "sha512-sWqX/hKvXne6QhTGWW8LbYSiNc2xLfuVcInrBaam4uMvZeCqWQUS90VAhNvBF0e6wRnMFqxcUKDF1xDGmVheGA==", - "dev": true, - "license": "GPL-2.0-or-later", "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" - }, - "peerDependencies": { - "prettier": ">=3" } }, - "node_modules/@wordpress/primitives": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.1.0.tgz", - "integrity": "sha512-+SSPqaHLz6ZNu+jDLoXYW+TFWyLsvZBQYjfU46YT6l6eWq3o7YO6Exrbr4wtEgXv1AY+b/9GJ8OUMPPywrXw0A==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/element": "^6.1.0", - "clsx": "^2.1.1" + "@wordpress/i18n": "^5.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/priority-queue": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.1.0.tgz", - "integrity": "sha512-soJddzCToRuF5ofayRUo0YYeJ9KZLM7ROzwwKIANOEcDt8+hnFRGmGorpfHYiDSThI4PtNqy6PdMOSy5/hvbFw==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", "requestidlecallback": "^0.3.0" @@ -6084,12 +5902,11 @@ "npm": ">=8.19.2" } }, - "node_modules/@wordpress/private-apis": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.1.0.tgz", - "integrity": "sha512-xsROx+IVeqaSTPDOToRnWVf1/K3K3P8qwxjN4EFVBA6KD1a53TG6iQkYBjm5DSBl4HNMheT2qTZc3nsaDiDFrw==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" }, @@ -6098,12 +5915,11 @@ "npm": ">=8.19.2" } }, - "node_modules/@wordpress/redux-routine": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.1.0.tgz", - "integrity": "sha512-YKtJEOPdn5rpiSMJaWE+dz0P2p15uQS5Uqg5dSjrivvfmgW2JHp1E3HNTDLpmE/qHbBvSdrU8hx9qu7nS0tZZg==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", "is-plain-object": "^5.0.0", @@ -6118,51 +5934,21 @@ "redux": ">=4" } }, - "node_modules/@wordpress/reusable-blocks": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/reusable-blocks/-/reusable-blocks-5.1.0.tgz", - "integrity": "sha512-rtWE9iNaNN8m63al2W3j53VkVPbOPQa8TzoBM4GPrWrjnLFJJ8boD1OoPGEDst771lBaPUU3nXna+vnnWL0zpg==", - "dev": true, - "license": "GPL-2.0-or-later", - "dependencies": { - "@babel/runtime": "^7.16.0", - "@wordpress/block-editor": "^13.1.0", - "@wordpress/blocks": "^13.1.0", - "@wordpress/components": "^28.1.0", - "@wordpress/core-data": "^7.1.0", - "@wordpress/data": "^10.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/i18n": "^5.1.0", - "@wordpress/icons": "^10.1.0", - "@wordpress/notices": "^5.1.0", - "@wordpress/private-apis": "^1.1.0", - "@wordpress/url": "^4.1.0" - }, - "engines": { - "node": ">=18.12.0", - "npm": ">=8.19.2" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@wordpress/rich-text": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-7.1.0.tgz", - "integrity": "sha512-PXwfAQ6cRnrsKorUmZiGH1D6CX3ywlp3T2odfrkj5dMhpWRnArJczQqI8lsAFB653PeX+7NCbtOsO/HXiGWajQ==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/rich-text": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-7.0.0.tgz", + "integrity": "sha512-OV1OTUkK7oHzJpsNUGwpZAHcXtubohFGY5TRiKobFHAhDuhML0tXWLKEwwsbBZj7v2t6YTWakD+WC6449IZn7w==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/a11y": "^4.1.0", - "@wordpress/compose": "^7.1.0", - "@wordpress/data": "^10.1.0", - "@wordpress/deprecated": "^4.1.0", - "@wordpress/element": "^6.1.0", - "@wordpress/escape-html": "^3.1.0", - "@wordpress/i18n": "^5.1.0", - "@wordpress/keycodes": "^4.1.0", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/data": "^10.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", "memize": "^2.1.0" }, "engines": { @@ -6173,103 +5959,37 @@ "react": "^18.0.0" } }, - "node_modules/@wordpress/scripts": { - "version": "28.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-28.1.0.tgz", - "integrity": "sha512-BWmYA0fqOhfMcl20ppcJA/nw/zixt0FP6KPV+IiI560qpSHx6ZZieU354oX/5Vdaoe4O3ahPlGdUr9fWcprApQ==", + "node_modules/@wordpress/blocks/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/core": "^7.16.0", - "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11", - "@svgr/webpack": "^8.0.1", - "@wordpress/babel-preset-default": "^8.1.0", - "@wordpress/browserslist-config": "^6.1.0", - "@wordpress/dependency-extraction-webpack-plugin": "^6.1.0", - "@wordpress/e2e-test-utils-playwright": "^1.1.0", - "@wordpress/eslint-plugin": "^19.1.0", - "@wordpress/jest-preset-default": "^12.1.0", - "@wordpress/npm-package-json-lint-config": "^5.1.0", - "@wordpress/postcss-plugins-preset": "^5.1.0", - "@wordpress/prettier-config": "^4.1.0", - "@wordpress/stylelint-config": "^22.1.0", - "adm-zip": "^0.5.9", - "babel-jest": "^29.6.2", - "babel-loader": "^8.2.3", - "browserslist": "^4.21.10", - "chalk": "^4.0.0", - "check-node-version": "^4.1.0", - "clean-webpack-plugin": "^3.0.0", - "copy-webpack-plugin": "^10.2.0", - "cross-spawn": "^5.1.0", - "css-loader": "^6.2.0", - "cssnano": "^6.0.1", - "cwd": "^0.10.0", - "dir-glob": "^3.0.1", - "eslint": "^8.3.0", - "expect-puppeteer": "^4.4.0", - "fast-glob": "^3.2.7", - "filenamify": "^4.2.0", - "jest": "^29.6.2", - "jest-dev-server": "^9.0.1", - "jest-environment-jsdom": "^29.6.2", - "jest-environment-node": "^29.6.2", - "markdownlint-cli": "^0.31.1", - "merge-deep": "^3.0.3", - "mini-css-extract-plugin": "^2.5.1", - "minimist": "^1.2.0", - "npm-package-json-lint": "^6.4.0", - "npm-packlist": "^3.0.0", - "postcss": "^8.4.5", - "postcss-loader": "^6.2.1", - "prettier": "npm:wp-prettier@3.0.3", - "puppeteer-core": "^13.2.0", - "react-refresh": "^0.14.0", - "read-pkg-up": "^7.0.1", - "resolve-bin": "^0.4.0", - "rtlcss-webpack-plugin": "^4.0.7", - "sass": "^1.35.2", - "sass-loader": "^12.1.0", - "source-map-loader": "^3.0.0", - "stylelint": "^14.2.0", - "terser-webpack-plugin": "^5.3.9", - "url-loader": "^4.1.1", - "webpack": "^5.88.2", - "webpack-bundle-analyzer": "^4.9.1", - "webpack-cli": "^5.1.4", - "webpack-dev-server": "^4.15.1" - }, - "bin": { - "wp-scripts": "bin/wp-scripts.js" + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" - }, - "peerDependencies": { - "@playwright/test": "^1.43.0", - "react": "^18.0.0", - "react-dom": "^18.0.0" } }, - "node_modules/@wordpress/server-side-render": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/server-side-render/-/server-side-render-5.1.0.tgz", - "integrity": "sha512-AayRrxBJ3PSr+XrZ3EbAjqpk6I5iWh62XnwHyAnRtSae9ubj3QnzRIoTVMnqGMiu9vCuo1i2SPJfhkS3IC2glg==", + "node_modules/@wordpress/commands": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/commands/-/commands-1.1.0.tgz", + "integrity": "sha512-RWdSdcxtGbyYdWPi3W789Zmf5EUfa3Nlqm9PAfc0TRIhZArp5ahesbLbiD7ZAKswCX2kS7pbqU71fuvgsolt/Q==", "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/api-fetch": "^7.1.0", - "@wordpress/blocks": "^13.1.0", "@wordpress/components": "^28.1.0", - "@wordpress/compose": "^7.1.0", "@wordpress/data": "^10.1.0", - "@wordpress/deprecated": "^4.1.0", "@wordpress/element": "^6.1.0", "@wordpress/i18n": "^5.1.0", - "@wordpress/url": "^4.1.0", - "fast-deep-equal": "^3.1.3" + "@wordpress/icons": "^10.1.0", + "@wordpress/keyboard-shortcuts": "^5.1.0", + "@wordpress/private-apis": "^1.1.0", + "clsx": "^2.1.1", + "cmdk": "^0.2.0" }, "engines": { "node": ">=18.12.0", @@ -6280,158 +6000,226 @@ "react-dom": "^18.0.0" } }, - "node_modules/@wordpress/shortcode": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/shortcode/-/shortcode-4.1.0.tgz", - "integrity": "sha512-uK+VbeVd9NdJvh88mxqqMZ9Bt5aXvKFjuxI1f3+8yNfPyRJKMuWD1ZqGw5LvhEh5pXtyAsOcSgPb4O0AZvhnbQ==", + "node_modules/@wordpress/commands/node_modules/@wordpress/a11y": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.0.0.tgz", + "integrity": "sha512-w+H4VcL8DuT82kHDmT07Y2cFxG2IGOT8ylZj2tsXbSILkwwaEquq+kAFBBM7YTxUqazaHW19MHkpVA7Fniq6kA==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "memize": "^2.0.1" + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/i18n": "^5.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/style-engine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/style-engine/-/style-engine-2.1.0.tgz", - "integrity": "sha512-OOSzArFGjN0CuyHKXDjl1rqJPAsjAZ/73UaEpx3MNvsXZL1nPfdK0dqIIHt3aEmYy44xAEoFDqhQPSiNIYAJgQ==", + "node_modules/@wordpress/commands/node_modules/@wordpress/components": { + "version": "28.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/components/-/components-28.0.0.tgz", + "integrity": "sha512-55VEwJmiA9QSg2bnRtHIRxkjbV9wYLfzaCfWgksd018kkLtwXpZcKeQQvevmKTdL9PeIeLC1lDO4H+cdExcOXw==", "dev": true, "license": "GPL-2.0-or-later", "dependencies": { + "@ariakit/react": "^0.3.12", "@babel/runtime": "^7.16.0", - "change-case": "^4.1.2" + "@emotion/cache": "^11.7.1", + "@emotion/css": "^11.7.1", + "@emotion/react": "^11.7.1", + "@emotion/serialize": "^1.0.2", + "@emotion/styled": "^11.6.0", + "@emotion/utils": "^1.0.0", + "@floating-ui/react-dom": "^2.0.8", + "@types/gradient-parser": "0.1.3", + "@types/highlight-words-core": "1.2.1", + "@use-gesture/react": "^10.3.1", + "@wordpress/a11y": "^4.1.0", + "@wordpress/compose": "^7.1.0", + "@wordpress/date": "^5.1.0", + "@wordpress/deprecated": "^4.1.0", + "@wordpress/dom": "^4.1.0", + "@wordpress/element": "^6.1.0", + "@wordpress/escape-html": "^3.1.0", + "@wordpress/hooks": "^4.1.0", + "@wordpress/html-entities": "^4.1.0", + "@wordpress/i18n": "^5.1.0", + "@wordpress/icons": "^10.1.0", + "@wordpress/is-shallow-equal": "^5.1.0", + "@wordpress/keycodes": "^4.1.0", + "@wordpress/primitives": "^4.1.0", + "@wordpress/private-apis": "^1.1.0", + "@wordpress/rich-text": "^7.1.0", + "@wordpress/warning": "^3.1.0", + "change-case": "^4.1.2", + "clsx": "^2.1.1", + "colord": "^2.7.0", + "date-fns": "^3.6.0", + "deepmerge": "^4.3.0", + "downshift": "^6.0.15", + "fast-deep-equal": "^3.1.3", + "framer-motion": "^11.1.9", + "gradient-parser": "^0.1.5", + "highlight-words-core": "^1.2.2", + "is-plain-object": "^5.0.0", + "memize": "^2.1.0", + "path-to-regexp": "^6.2.1", + "re-resizable": "^6.4.0", + "react-colorful": "^5.3.1", + "remove-accents": "^0.5.0", + "use-lilius": "^2.0.5", + "uuid": "^9.0.1" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@wordpress/stylelint-config": { - "version": "22.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-22.1.0.tgz", - "integrity": "sha512-5XgYdcReIBecKCem5i1kbf3YnqocWW2nW1mnm6oPJpkimih2f/CWJQUtgATtdsgMjsgDVoQcrfQ9OrJeokB3fA==", + "node_modules/@wordpress/commands/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", "dev": true, - "license": "MIT", + "license": "GPL-2.0-or-later", "dependencies": { - "stylelint-config-recommended": "^6.0.0", - "stylelint-config-recommended-scss": "^5.0.2" + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.1.0", + "@wordpress/dom": "^4.1.0", + "@wordpress/element": "^6.1.0", + "@wordpress/is-shallow-equal": "^5.1.0", + "@wordpress/keycodes": "^4.1.0", + "@wordpress/priority-queue": "^3.1.0", + "@wordpress/undo-manager": "^1.1.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" }, "peerDependencies": { - "stylelint": "^14.2" + "react": "^18.0.0" } }, - "node_modules/@wordpress/sync": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/sync/-/sync-1.1.0.tgz", - "integrity": "sha512-9iyFbNo2xQxljoA+zlRlv71YONMKCM3Xfa0qThuqd5n8B4ZfQB1Bzf29OiVw9RftwIUs1SkRjGWbqG3Kr1SbFQ==", + "node_modules/@wordpress/commands/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@types/simple-peer": "^9.11.5", - "@wordpress/url": "^4.1.0", - "import-locals": "^2.0.0", - "lib0": "^0.2.42", - "simple-peer": "^9.11.0", - "y-indexeddb": "~9.0.11", - "y-protocols": "^1.0.5", - "y-webrtc": "~10.2.5", - "yjs": "~13.6.6" + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" } }, - "node_modules/@wordpress/token-list": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/token-list/-/token-list-3.1.0.tgz", - "integrity": "sha512-Fw+MdhCMVhkoYA6qOAzIa2aaIvicsuE7rxUBJnrEZOH6XO4uksqql+rLHlf3BplzFowYo+lPKTHQKraaGHE9qw==", + "node_modules/@wordpress/commands/node_modules/@wordpress/date": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/date/-/date-5.0.0.tgz", + "integrity": "sha512-50FGIawpM6IccH2ujR5MsGlBM7fIIT2MfZMfh5QtRXdDO0M5Jul+TI6HkF9+oZlNGzc1q2FTrkopHXNvkxPAeA==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { - "@babel/runtime": "^7.16.0" + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0", + "moment": "^2.29.4", + "moment-timezone": "^0.5.40" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/undo-manager": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.1.0.tgz", - "integrity": "sha512-9n+tSxWomyfvGhCWA2fevIgP8/sLcMX3kwdBAwr3PQJ/EbOoamFh7BLMRbSk2oKfXaPSwk8aN4QE92BQpYnL5g==", + "node_modules/@wordpress/commands/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/is-shallow-equal": "^5.1.0" + "@wordpress/hooks": "^4.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/url": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-4.1.0.tgz", - "integrity": "sha512-6Yi9EbTgUGJgsm6XtfO4By8q2+9pTzWkxzx27ShKGF+PqIgIZjiDssf2NfD/oNUevIy48LbQMbyEyK+9r2Bw9A==", + "node_modules/@wordpress/commands/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "remove-accents": "^0.5.0" + "@wordpress/deprecated": "^4.0.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/viewport": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/viewport/-/viewport-6.1.0.tgz", - "integrity": "sha512-D5Ik47d/8ERc6ti/lxqJqHCtWV5sj1SJKZvsVJ4YvMyeMafam0J7Uxzlw1nJcUdSWZcz8IrfEmExbUf6eIQF3g==", + "node_modules/@wordpress/commands/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", - "@wordpress/compose": "^7.1.0", - "@wordpress/data": "^10.1.0", - "@wordpress/element": "^6.1.0" + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" - }, - "peerDependencies": { - "react": "^18.0.0" } }, - "node_modules/@wordpress/warning": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.1.0.tgz", - "integrity": "sha512-NKFqBXszT9YFpZJQQyEYqvTtkXse3XT3CDyV8gGWSeKhY4be1nDtFyGdZYYREGXccsGb8ftUmpilTDEVwNnsMA==", + "node_modules/@wordpress/commands/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", "dev": true, - "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0" + }, "engines": { "node": ">=18.12.0", "npm": ">=8.19.2" } }, - "node_modules/@wordpress/wordcount": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@wordpress/wordcount/-/wordcount-4.1.0.tgz", - "integrity": "sha512-M20Iconm130KDIZSFmfIuaVgX7gbyf9oLUTN9i9RtvAxsirALcKSS+Gr3H4y58ndVRCRbmoKTHajE2FGUvyQUA==", + "node_modules/@wordpress/commands/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", "dev": true, - "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" }, @@ -6440,101 +6228,5113 @@ "npm": ">=8.19.2" } }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "deprecated": "Use your platform's native atob() and btoa() methods instead", - "dev": true - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "node_modules/@wordpress/commands/node_modules/@wordpress/html-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.0.0.tgz", + "integrity": "sha512-0CHyxa4ZPeo2osUv9Ghz95sD00+HBF7N61ysToqcg1+EOWe8HWhUl74HNDlOe1n/KYFDxXN0wKfYqPkKTQk7DA==", "dev": true, "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "@babel/runtime": "^7.16.0" }, "engines": { - "node": ">= 0.6" + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "node_modules/@wordpress/commands/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, "bin": { - "acorn": "bin/acorn" + "pot-to-php": "tools/pot-to-php.js" }, "engines": { - "node": ">=0.4.0" + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/acorn-globals": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", - "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "node_modules/@wordpress/commands/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", "dev": true, "dependencies": { - "acorn": "^8.1.0", - "acorn-walk": "^8.0.2" + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "node_modules/@wordpress/commands/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", "dev": true, - "peerDependencies": { - "acorn": "^8" + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/@wordpress/commands/node_modules/@wordpress/primitives": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.0.0.tgz", + "integrity": "sha512-NMzDEFxfRwh1IAbf4fJHz6UmvIyfHmId6/1UjueCgpON0LR0y5ydjB6Pd4AngkMcO2qOjD9XNP6MKAOzdjw54g==", "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.0.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/acorn-walk": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", - "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", + "node_modules/@wordpress/commands/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, "engines": { - "node": ">=0.4.0" + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/adm-zip": { - "version": "0.5.12", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.12.tgz", - "integrity": "sha512-6TVU49mK6KZb4qG6xWaaM4C7sA/sgUMLy/JYMOzkcp3BvVLpW0fXDFQiIzAuxFCt/2+xD7fNIiPFAoLZPhVNLQ==", + "node_modules/@wordpress/commands/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, "engines": { - "node": ">=6.0" + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "node_modules/@wordpress/commands/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/commands/node_modules/@wordpress/rich-text": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-7.0.0.tgz", + "integrity": "sha512-OV1OTUkK7oHzJpsNUGwpZAHcXtubohFGY5TRiKobFHAhDuhML0tXWLKEwwsbBZj7v2t6YTWakD+WC6449IZn7w==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/data": "^10.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "memize": "^2.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/commands/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/commands/node_modules/@wordpress/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-vZ7SH4lwnwglsZC+5dmrMJS/9lZXn7BvADC+ZHzrRM0s6Ufumi1RdG0QJr/HJuTRY9fX5bbPNdUQVyrv+weSEg==", + "dev": true, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/components": { + "version": "27.6.0", + "resolved": "https://registry.npmjs.org/@wordpress/components/-/components-27.6.0.tgz", + "integrity": "sha512-f+fXENkgrPs5GLo2yu9fEAdVX0KriEatRcjDUyw0+DbNbJR62sCdDtGdhJRW4jPUUoUowxaGO0y4+jvQWxnbyg==", + "dev": true, + "dependencies": { + "@ariakit/react": "^0.3.12", + "@babel/runtime": "^7.16.0", + "@emotion/cache": "^11.7.1", + "@emotion/css": "^11.7.1", + "@emotion/react": "^11.7.1", + "@emotion/serialize": "^1.0.2", + "@emotion/styled": "^11.6.0", + "@emotion/utils": "^1.0.0", + "@floating-ui/react-dom": "^2.0.8", + "@types/gradient-parser": "0.1.3", + "@types/highlight-words-core": "1.2.1", + "@use-gesture/react": "^10.3.1", + "@wordpress/a11y": "^3.58.0", + "@wordpress/compose": "^6.35.0", + "@wordpress/date": "^4.58.0", + "@wordpress/deprecated": "^3.58.0", + "@wordpress/dom": "^3.58.0", + "@wordpress/element": "^5.35.0", + "@wordpress/escape-html": "^2.58.0", + "@wordpress/hooks": "^3.58.0", + "@wordpress/html-entities": "^3.58.0", + "@wordpress/i18n": "^4.58.0", + "@wordpress/icons": "^9.49.0", + "@wordpress/is-shallow-equal": "^4.58.0", + "@wordpress/keycodes": "^3.58.0", + "@wordpress/primitives": "^3.56.0", + "@wordpress/private-apis": "^0.40.0", + "@wordpress/rich-text": "^6.35.0", + "@wordpress/warning": "^2.58.0", + "change-case": "^4.1.2", + "clsx": "^2.1.1", + "colord": "^2.7.0", + "date-fns": "^3.6.0", + "deepmerge": "^4.3.0", + "downshift": "^6.0.15", + "fast-deep-equal": "^3.1.3", + "framer-motion": "^11.1.9", + "gradient-parser": "^0.1.5", + "highlight-words-core": "^1.2.2", + "is-plain-object": "^5.0.0", + "memize": "^2.1.0", + "path-to-regexp": "^6.2.1", + "re-resizable": "^6.4.0", + "react-colorful": "^5.3.1", + "remove-accents": "^0.5.0", + "use-lilius": "^2.0.5", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/components/node_modules/@wordpress/icons": { + "version": "9.49.0", + "resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-9.49.0.tgz", + "integrity": "sha512-Z8F+ledkfkcKDuS1c/RkM0dEWdfv2AXs6bCgey89p0atJSscf7qYbMJR9zE5rZ5aqXyFfV0DAFKJEgayNqneNQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^5.35.0", + "@wordpress/primitives": "^3.56.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/compose": { + "version": "6.35.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-6.35.0.tgz", + "integrity": "sha512-PfruhCxxxJokDQHc2YBgerEiHV7BIxQk9g5vU4/f9X/0PBQWUTuxOzSFcAba03vnjfAgtPTSMp50T50hcJwXfA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^3.58.0", + "@wordpress/dom": "^3.58.0", + "@wordpress/element": "^5.35.0", + "@wordpress/is-shallow-equal": "^4.58.0", + "@wordpress/keycodes": "^3.58.0", + "@wordpress/priority-queue": "^2.58.0", + "@wordpress/undo-manager": "^0.18.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/core-data": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/core-data/-/core-data-7.1.0.tgz", + "integrity": "sha512-FbtldbDCB2YQDuZAFe2CM3aydOw/n6CRooQ4ifUE8JQ1aWITBZAlwkMKqTiMX5xkxtzt5xLPKyzsHOJB93YJTQ==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/api-fetch": "^7.1.0", + "@wordpress/block-editor": "^13.1.0", + "@wordpress/blocks": "^13.1.0", + "@wordpress/compose": "^7.1.0", + "@wordpress/data": "^10.1.0", + "@wordpress/deprecated": "^4.1.0", + "@wordpress/element": "^6.1.0", + "@wordpress/html-entities": "^4.1.0", + "@wordpress/i18n": "^5.1.0", + "@wordpress/is-shallow-equal": "^5.1.0", + "@wordpress/private-apis": "^1.1.0", + "@wordpress/rich-text": "^7.1.0", + "@wordpress/sync": "^1.1.0", + "@wordpress/undo-manager": "^1.1.0", + "@wordpress/url": "^4.1.0", + "change-case": "^4.1.2", + "equivalent-key-map": "^0.2.2", + "fast-deep-equal": "^3.1.3", + "memize": "^2.1.0", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/a11y": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.0.0.tgz", + "integrity": "sha512-w+H4VcL8DuT82kHDmT07Y2cFxG2IGOT8ylZj2tsXbSILkwwaEquq+kAFBBM7YTxUqazaHW19MHkpVA7Fniq6kA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/html-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.0.0.tgz", + "integrity": "sha512-0CHyxa4ZPeo2osUv9Ghz95sD00+HBF7N61ysToqcg1+EOWe8HWhUl74HNDlOe1n/KYFDxXN0wKfYqPkKTQk7DA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/rich-text": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-7.0.0.tgz", + "integrity": "sha512-OV1OTUkK7oHzJpsNUGwpZAHcXtubohFGY5TRiKobFHAhDuhML0tXWLKEwwsbBZj7v2t6YTWakD+WC6449IZn7w==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/data": "^10.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "memize": "^2.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/core-data/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/data": { + "version": "9.28.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-9.28.0.tgz", + "integrity": "sha512-EDPpZdkngdoW7EMzPpGj0BmNcr7syJO67pgTODtN/4XFIdYL2RKzFyn3nlLBKhX17UsE/ALq9WdijacH4QJ9qw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^6.35.0", + "@wordpress/deprecated": "^3.58.0", + "@wordpress/element": "^5.35.0", + "@wordpress/is-shallow-equal": "^4.58.0", + "@wordpress/priority-queue": "^2.58.0", + "@wordpress/private-apis": "^0.40.0", + "@wordpress/redux-routine": "^4.58.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/date": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/date/-/date-4.58.0.tgz", + "integrity": "sha512-yFT7DU0H9W0lsDytMaVMmjho08X1LeBMIQMppxdtKB04Ujx58hVh7gtunOsstUQ7pVg23nE2eLaVfx5JOdjzAw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^3.58.0", + "moment": "^2.29.4", + "moment-timezone": "^0.5.40" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/deprecated": { + "version": "3.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-3.58.0.tgz", + "integrity": "sha512-knweE2lLEUxWRr6A48sHiO0ww5pPybGe2NVIZVq/y7EaYCMdpy6gYA0ZdVqMKZvtxKKqicJfwigcn+hinsTvUQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^3.58.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/dom": { + "version": "3.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-3.58.0.tgz", + "integrity": "sha512-t3xSr/nqekj2qwUGRAqSeGx6116JOBxzI+VBiUfZrjGEnuyKdLelXDEeYtcwbb7etMkj/6F60/NB7GTl5IwizQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^3.58.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/dom-ready": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom-ready/-/dom-ready-4.0.0.tgz", + "integrity": "sha512-MTlk7LNe6kW/248250lfwRgMl05bbmYKlJaSxEDH49QwKyI6Ft2jxhDNKjYpAcja7XfivsUITr3muBKJ/Fnydw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/editor/-/editor-14.1.0.tgz", + "integrity": "sha512-oYHlMgTiiGgUDT+kvmIX+pWsCol1hp1O50U+MknT/lmMNzi+ibwc8nOKpLYdSTQswasHtn5F92Q39q6r867Eyg==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.1.0", + "@wordpress/api-fetch": "^7.1.0", + "@wordpress/blob": "^4.1.0", + "@wordpress/block-editor": "^13.1.0", + "@wordpress/blocks": "^13.1.0", + "@wordpress/commands": "^1.1.0", + "@wordpress/components": "^28.1.0", + "@wordpress/compose": "^7.1.0", + "@wordpress/core-data": "^7.1.0", + "@wordpress/data": "^10.1.0", + "@wordpress/date": "^5.1.0", + "@wordpress/deprecated": "^4.1.0", + "@wordpress/dom": "^4.1.0", + "@wordpress/element": "^6.1.0", + "@wordpress/hooks": "^4.1.0", + "@wordpress/html-entities": "^4.1.0", + "@wordpress/i18n": "^5.1.0", + "@wordpress/icons": "^10.1.0", + "@wordpress/interface": "^6.1.0", + "@wordpress/keyboard-shortcuts": "^5.1.0", + "@wordpress/keycodes": "^4.1.0", + "@wordpress/media-utils": "^5.1.0", + "@wordpress/notices": "^5.1.0", + "@wordpress/patterns": "^2.1.0", + "@wordpress/plugins": "^7.1.0", + "@wordpress/preferences": "^4.1.0", + "@wordpress/private-apis": "^1.1.0", + "@wordpress/reusable-blocks": "^5.1.0", + "@wordpress/rich-text": "^7.1.0", + "@wordpress/server-side-render": "^5.1.0", + "@wordpress/url": "^4.1.0", + "@wordpress/warning": "^3.1.0", + "@wordpress/wordcount": "^4.1.0", + "change-case": "^4.1.2", + "client-zip": "^2.4.5", + "clsx": "^2.1.1", + "date-fns": "^3.6.0", + "deepmerge": "^4.3.0", + "fast-deep-equal": "^3.1.3", + "is-plain-object": "^5.0.0", + "memize": "^2.1.0", + "react-autosize-textarea": "^7.1.0", + "remove-accents": "^0.5.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/a11y": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.0.0.tgz", + "integrity": "sha512-w+H4VcL8DuT82kHDmT07Y2cFxG2IGOT8ylZj2tsXbSILkwwaEquq+kAFBBM7YTxUqazaHW19MHkpVA7Fniq6kA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/components": { + "version": "28.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/components/-/components-28.0.0.tgz", + "integrity": "sha512-55VEwJmiA9QSg2bnRtHIRxkjbV9wYLfzaCfWgksd018kkLtwXpZcKeQQvevmKTdL9PeIeLC1lDO4H+cdExcOXw==", + "dev": true, + "dependencies": { + "@ariakit/react": "^0.3.12", + "@babel/runtime": "^7.16.0", + "@emotion/cache": "^11.7.1", + "@emotion/css": "^11.7.1", + "@emotion/react": "^11.7.1", + "@emotion/serialize": "^1.0.2", + "@emotion/styled": "^11.6.0", + "@emotion/utils": "^1.0.0", + "@floating-ui/react-dom": "^2.0.8", + "@types/gradient-parser": "0.1.3", + "@types/highlight-words-core": "1.2.1", + "@use-gesture/react": "^10.3.1", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/date": "^5.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/hooks": "^4.0.0", + "@wordpress/html-entities": "^4.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/icons": "^10.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/primitives": "^4.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/rich-text": "^7.0.0", + "@wordpress/warning": "^3.0.0", + "change-case": "^4.1.2", + "clsx": "^2.1.1", + "colord": "^2.7.0", + "date-fns": "^3.6.0", + "deepmerge": "^4.3.0", + "downshift": "^6.0.15", + "fast-deep-equal": "^3.1.3", + "framer-motion": "^11.1.9", + "gradient-parser": "^0.1.5", + "highlight-words-core": "^1.2.2", + "is-plain-object": "^5.0.0", + "memize": "^2.1.0", + "path-to-regexp": "^6.2.1", + "re-resizable": "^6.4.0", + "react-colorful": "^5.3.1", + "remove-accents": "^0.5.0", + "use-lilius": "^2.0.5", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/date": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/date/-/date-5.0.0.tgz", + "integrity": "sha512-50FGIawpM6IccH2ujR5MsGlBM7fIIT2MfZMfh5QtRXdDO0M5Jul+TI6HkF9+oZlNGzc1q2FTrkopHXNvkxPAeA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0", + "moment": "^2.29.4", + "moment-timezone": "^0.5.40" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/html-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.0.0.tgz", + "integrity": "sha512-0CHyxa4ZPeo2osUv9Ghz95sD00+HBF7N61ysToqcg1+EOWe8HWhUl74HNDlOe1n/KYFDxXN0wKfYqPkKTQk7DA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/primitives": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.0.0.tgz", + "integrity": "sha512-NMzDEFxfRwh1IAbf4fJHz6UmvIyfHmId6/1UjueCgpON0LR0y5ydjB6Pd4AngkMcO2qOjD9XNP6MKAOzdjw54g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.0.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/rich-text": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-7.0.0.tgz", + "integrity": "sha512-OV1OTUkK7oHzJpsNUGwpZAHcXtubohFGY5TRiKobFHAhDuhML0tXWLKEwwsbBZj7v2t6YTWakD+WC6449IZn7w==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/data": "^10.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "memize": "^2.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/editor/node_modules/@wordpress/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-vZ7SH4lwnwglsZC+5dmrMJS/9lZXn7BvADC+ZHzrRM0s6Ufumi1RdG0QJr/HJuTRY9fX5bbPNdUQVyrv+weSEg==", + "dev": true, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/element": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-5.35.0.tgz", + "integrity": "sha512-puswpGcIdS+0A2g28uHriMkZqqRCmzFczue5Tk99VNtzBdehyk7Ae+DZ4xw5yT6GqYai8NTqv6MRwCB78uh5Mw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^2.58.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/escape-html": { + "version": "2.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-2.58.0.tgz", + "integrity": "sha512-9YJXMNfzkrhHEVP1jFEhgijbZqW8Mt3NHIMZjIQoWtBf7QE86umpYpGGBXzYC0YlpGTRGzZTBwYaqFKxjeaSgA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/hooks": { + "version": "3.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-3.58.0.tgz", + "integrity": "sha512-9LB0ZHnZRQlORttux9t/xbAskF+dk2ujqzPGsVzc92mSKpQP3K2a5Wy74fUnInguB1vLUNHT6nrNdkVom5qX1Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/html-entities": { + "version": "3.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-3.58.0.tgz", + "integrity": "sha512-FU7b6QZdwTCuLKq6wCl0IZqqOMcMRxMcekVVytzTse7hYk9dvL1qQL/U4eQ/CNyKqiT9u7fb5NKTQILOzoolVQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/i18n": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.58.0.tgz", + "integrity": "sha512-VfvS3BWv/RDjRKD6PscIcvYfWKnGJcI/DEqyDgUMhxCM6NRwoL478CsUKTiGJIymeyRodNRfprdcF086DpGKYw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^3.58.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/icons": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-10.0.0.tgz", + "integrity": "sha512-BL1LtPgfFZdMLd2EUmckX8EXo10LDGDlQZx4CyyL0Vnx/6HcR/H3Z5EN6yeJl57fbjPg7noyOZVCdvG1EiiZnA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.0.0", + "@wordpress/primitives": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/icons/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.1.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/icons/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/icons/node_modules/@wordpress/primitives": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.0.0.tgz", + "integrity": "sha512-NMzDEFxfRwh1IAbf4fJHz6UmvIyfHmId6/1UjueCgpON0LR0y5ydjB6Pd4AngkMcO2qOjD9XNP6MKAOzdjw54g==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.0.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/interface/-/interface-6.0.0.tgz", + "integrity": "sha512-7nx+3cJfGzpR/0+i2I8nVLH+OtkNEVGP9eG7oVli+IrCisOzIqK2d5R6+c7mmD8m16ypul+PKnhTRF3QGmt+4Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.0.0", + "@wordpress/components": "^28.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/data": "^10.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/icons": "^10.0.0", + "@wordpress/plugins": "^7.0.0", + "@wordpress/preferences": "^4.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/viewport": "^6.0.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/a11y": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.0.0.tgz", + "integrity": "sha512-w+H4VcL8DuT82kHDmT07Y2cFxG2IGOT8ylZj2tsXbSILkwwaEquq+kAFBBM7YTxUqazaHW19MHkpVA7Fniq6kA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/components": { + "version": "28.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/components/-/components-28.0.0.tgz", + "integrity": "sha512-55VEwJmiA9QSg2bnRtHIRxkjbV9wYLfzaCfWgksd018kkLtwXpZcKeQQvevmKTdL9PeIeLC1lDO4H+cdExcOXw==", + "dev": true, + "dependencies": { + "@ariakit/react": "^0.3.12", + "@babel/runtime": "^7.16.0", + "@emotion/cache": "^11.7.1", + "@emotion/css": "^11.7.1", + "@emotion/react": "^11.7.1", + "@emotion/serialize": "^1.0.2", + "@emotion/styled": "^11.6.0", + "@emotion/utils": "^1.0.0", + "@floating-ui/react-dom": "^2.0.8", + "@types/gradient-parser": "0.1.3", + "@types/highlight-words-core": "1.2.1", + "@use-gesture/react": "^10.3.1", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/date": "^5.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/hooks": "^4.0.0", + "@wordpress/html-entities": "^4.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/icons": "^10.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/primitives": "^4.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/rich-text": "^7.0.0", + "@wordpress/warning": "^3.0.0", + "change-case": "^4.1.2", + "clsx": "^2.1.1", + "colord": "^2.7.0", + "date-fns": "^3.6.0", + "deepmerge": "^4.3.0", + "downshift": "^6.0.15", + "fast-deep-equal": "^3.1.3", + "framer-motion": "^11.1.9", + "gradient-parser": "^0.1.5", + "highlight-words-core": "^1.2.2", + "is-plain-object": "^5.0.0", + "memize": "^2.1.0", + "path-to-regexp": "^6.2.1", + "re-resizable": "^6.4.0", + "react-colorful": "^5.3.1", + "remove-accents": "^0.5.0", + "use-lilius": "^2.0.5", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/date": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/date/-/date-5.0.0.tgz", + "integrity": "sha512-50FGIawpM6IccH2ujR5MsGlBM7fIIT2MfZMfh5QtRXdDO0M5Jul+TI6HkF9+oZlNGzc1q2FTrkopHXNvkxPAeA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0", + "moment": "^2.29.4", + "moment-timezone": "^0.5.40" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/html-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.0.0.tgz", + "integrity": "sha512-0CHyxa4ZPeo2osUv9Ghz95sD00+HBF7N61ysToqcg1+EOWe8HWhUl74HNDlOe1n/KYFDxXN0wKfYqPkKTQk7DA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.1.0", + "@wordpress/primitives": "^4.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/interface/-/interface-6.1.0.tgz", + "integrity": "sha512-tL1oRtXDXx1MpYhIwhPcaL/n9Q7QlDNANY3ZL6Um3LLuf4bJwkIW8L6j8dBKq/8yTKhnIKIoo3QINjCLDbz5CA==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.1.0", + "@wordpress/components": "^28.1.0", + "@wordpress/compose": "^7.1.0", + "@wordpress/data": "^10.1.0", + "@wordpress/deprecated": "^4.1.0", + "@wordpress/element": "^6.1.0", + "@wordpress/i18n": "^5.1.0", + "@wordpress/icons": "^10.1.0", + "@wordpress/plugins": "^7.1.0", + "@wordpress/preferences": "^4.1.0", + "@wordpress/private-apis": "^1.1.0", + "@wordpress/viewport": "^6.1.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/is-shallow-equal": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.1.0.tgz", + "integrity": "sha512-OZH/p43ZNJaSF40oi6dNdlsLqxjd4pZ1H4QxDg46vXT0TztU1rT/HOeJWyVmHIjx/4utuGaLJBZcfK4cKPQXUg==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/primitives": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.0.0.tgz", + "integrity": "sha512-NMzDEFxfRwh1IAbf4fJHz6UmvIyfHmId6/1UjueCgpON0LR0y5ydjB6Pd4AngkMcO2qOjD9XNP6MKAOzdjw54g==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.0.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/rich-text": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-7.0.0.tgz", + "integrity": "sha512-OV1OTUkK7oHzJpsNUGwpZAHcXtubohFGY5TRiKobFHAhDuhML0tXWLKEwwsbBZj7v2t6YTWakD+WC6449IZn7w==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/data": "^10.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "memize": "^2.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/interface/node_modules/@wordpress/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-vZ7SH4lwnwglsZC+5dmrMJS/9lZXn7BvADC+ZHzrRM0s6Ufumi1RdG0QJr/HJuTRY9fX5bbPNdUQVyrv+weSEg==", + "dev": true, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/is-shallow-equal": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-4.58.0.tgz", + "integrity": "sha512-NH2lbXo/6ix1t4Zu9UBXpXNtoLwSaYmIRSyDH34XNb0ic8a7yjEOhYWVW3LTfSCv9dJVyxlM5TJPtL85q7LdeQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/keyboard-shortcuts": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/keyboard-shortcuts/-/keyboard-shortcuts-5.1.0.tgz", + "integrity": "sha512-3FdZT+YjcbLbUVrWWbSWoNB79SdV93SNBk8N/5+f5ckQoG3z/A+jl9tUTUnI/Y/cf3HXEXmOpvH6423sQw+Taw==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/data": "^10.1.0", + "@wordpress/element": "^6.1.0", + "@wordpress/keycodes": "^4.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/keyboard-shortcuts/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/keycodes": { + "version": "3.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-3.58.0.tgz", + "integrity": "sha512-Q/LRKpx8ndzuHlkxSQ2BD+NTYYKQPIneNNMng8hTAfyU7RFwXpqj06HpeOFGh4XIdPKCs/8hmucoLJRmmLmZJA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^4.58.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/media-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/media-utils/-/media-utils-5.1.0.tgz", + "integrity": "sha512-Zh2kgvalXrd2ZvUH07lnrHQTY2K8rsOoI60wYKAIWfiqchx8QHG79Ic0IhZRkq8c7i9egUIlC0hDM9vsXF8x7g==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/api-fetch": "^7.0.0", + "@wordpress/blob": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/media-utils/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/media-utils/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/media-utils/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/media-utils/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/notices": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/notices/-/notices-5.1.0.tgz", + "integrity": "sha512-9UaeEfwaF3At3idyMW3iRf6LvL3/ztgMR5goars3UZch0RPpGugl1rRZQBAi3I/NvUoiF3HhYdPxUhB/bQYHBg==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.1.0", + "@wordpress/data": "^10.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/a11y": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.0.0.tgz", + "integrity": "sha512-w+H4VcL8DuT82kHDmT07Y2cFxG2IGOT8ylZj2tsXbSILkwwaEquq+kAFBBM7YTxUqazaHW19MHkpVA7Fniq6kA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/notices/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/patterns/-/patterns-2.1.0.tgz", + "integrity": "sha512-Cnqi5AqdZGppS9I8PaJLr5wLvglUCYyU1upt8lMunW4uyX+OrMLMqQhbyjzjFEKIXqaXyZG4uJF127ddzrOuhg==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.1.0", + "@wordpress/block-editor": "^13.1.0", + "@wordpress/blocks": "^13.1.0", + "@wordpress/components": "^28.1.0", + "@wordpress/compose": "^7.1.0", + "@wordpress/core-data": "^7.1.0", + "@wordpress/data": "^10.1.0", + "@wordpress/element": "^6.1.0", + "@wordpress/html-entities": "^4.1.0", + "@wordpress/i18n": "^5.1.0", + "@wordpress/icons": "^10.1.0", + "@wordpress/notices": "^5.1.0", + "@wordpress/private-apis": "^1.1.0", + "@wordpress/url": "^4.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/a11y": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.0.0.tgz", + "integrity": "sha512-w+H4VcL8DuT82kHDmT07Y2cFxG2IGOT8ylZj2tsXbSILkwwaEquq+kAFBBM7YTxUqazaHW19MHkpVA7Fniq6kA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/components": { + "version": "28.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/components/-/components-28.0.0.tgz", + "integrity": "sha512-55VEwJmiA9QSg2bnRtHIRxkjbV9wYLfzaCfWgksd018kkLtwXpZcKeQQvevmKTdL9PeIeLC1lDO4H+cdExcOXw==", + "dev": true, + "dependencies": { + "@ariakit/react": "^0.3.12", + "@babel/runtime": "^7.16.0", + "@emotion/cache": "^11.7.1", + "@emotion/css": "^11.7.1", + "@emotion/react": "^11.7.1", + "@emotion/serialize": "^1.0.2", + "@emotion/styled": "^11.6.0", + "@emotion/utils": "^1.0.0", + "@floating-ui/react-dom": "^2.0.8", + "@types/gradient-parser": "0.1.3", + "@types/highlight-words-core": "1.2.1", + "@use-gesture/react": "^10.3.1", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/date": "^5.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/hooks": "^4.0.0", + "@wordpress/html-entities": "^4.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/icons": "^10.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/primitives": "^4.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/rich-text": "^7.0.0", + "@wordpress/warning": "^3.0.0", + "change-case": "^4.1.2", + "clsx": "^2.1.1", + "colord": "^2.7.0", + "date-fns": "^3.6.0", + "deepmerge": "^4.3.0", + "downshift": "^6.0.15", + "fast-deep-equal": "^3.1.3", + "framer-motion": "^11.1.9", + "gradient-parser": "^0.1.5", + "highlight-words-core": "^1.2.2", + "is-plain-object": "^5.0.0", + "memize": "^2.1.0", + "path-to-regexp": "^6.2.1", + "re-resizable": "^6.4.0", + "react-colorful": "^5.3.1", + "remove-accents": "^0.5.0", + "use-lilius": "^2.0.5", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/date": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/date/-/date-5.0.0.tgz", + "integrity": "sha512-50FGIawpM6IccH2ujR5MsGlBM7fIIT2MfZMfh5QtRXdDO0M5Jul+TI6HkF9+oZlNGzc1q2FTrkopHXNvkxPAeA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0", + "moment": "^2.29.4", + "moment-timezone": "^0.5.40" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/html-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.0.0.tgz", + "integrity": "sha512-0CHyxa4ZPeo2osUv9Ghz95sD00+HBF7N61ysToqcg1+EOWe8HWhUl74HNDlOe1n/KYFDxXN0wKfYqPkKTQk7DA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/primitives": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.0.0.tgz", + "integrity": "sha512-NMzDEFxfRwh1IAbf4fJHz6UmvIyfHmId6/1UjueCgpON0LR0y5ydjB6Pd4AngkMcO2qOjD9XNP6MKAOzdjw54g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.0.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/rich-text": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-7.0.0.tgz", + "integrity": "sha512-OV1OTUkK7oHzJpsNUGwpZAHcXtubohFGY5TRiKobFHAhDuhML0tXWLKEwwsbBZj7v2t6YTWakD+WC6449IZn7w==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/data": "^10.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "memize": "^2.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/patterns/node_modules/@wordpress/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-vZ7SH4lwnwglsZC+5dmrMJS/9lZXn7BvADC+ZHzrRM0s6Ufumi1RdG0QJr/HJuTRY9fX5bbPNdUQVyrv+weSEg==", + "dev": true, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/plugins/-/plugins-7.1.0.tgz", + "integrity": "sha512-pLe5Q5o4L2aYezK+ozGX5iGIx7I7Fipez0Qek9ByhylY8nWVojU8uTlIK0iDSL35J36TOviy/suvctoEjtW8TA==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/components": "^28.1.0", + "@wordpress/compose": "^7.1.0", + "@wordpress/element": "^6.1.0", + "@wordpress/hooks": "^4.1.0", + "@wordpress/icons": "^10.1.0", + "@wordpress/is-shallow-equal": "^5.1.0", + "memize": "^2.0.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/a11y": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.0.0.tgz", + "integrity": "sha512-w+H4VcL8DuT82kHDmT07Y2cFxG2IGOT8ylZj2tsXbSILkwwaEquq+kAFBBM7YTxUqazaHW19MHkpVA7Fniq6kA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/components": { + "version": "28.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/components/-/components-28.0.0.tgz", + "integrity": "sha512-55VEwJmiA9QSg2bnRtHIRxkjbV9wYLfzaCfWgksd018kkLtwXpZcKeQQvevmKTdL9PeIeLC1lDO4H+cdExcOXw==", + "dev": true, + "dependencies": { + "@ariakit/react": "^0.3.12", + "@babel/runtime": "^7.16.0", + "@emotion/cache": "^11.7.1", + "@emotion/css": "^11.7.1", + "@emotion/react": "^11.7.1", + "@emotion/serialize": "^1.0.2", + "@emotion/styled": "^11.6.0", + "@emotion/utils": "^1.0.0", + "@floating-ui/react-dom": "^2.0.8", + "@types/gradient-parser": "0.1.3", + "@types/highlight-words-core": "1.2.1", + "@use-gesture/react": "^10.3.1", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/date": "^5.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/hooks": "^4.0.0", + "@wordpress/html-entities": "^4.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/icons": "^10.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/primitives": "^4.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/rich-text": "^7.0.0", + "@wordpress/warning": "^3.0.0", + "change-case": "^4.1.2", + "clsx": "^2.1.1", + "colord": "^2.7.0", + "date-fns": "^3.6.0", + "deepmerge": "^4.3.0", + "downshift": "^6.0.15", + "fast-deep-equal": "^3.1.3", + "framer-motion": "^11.1.9", + "gradient-parser": "^0.1.5", + "highlight-words-core": "^1.2.2", + "is-plain-object": "^5.0.0", + "memize": "^2.1.0", + "path-to-regexp": "^6.2.1", + "re-resizable": "^6.4.0", + "react-colorful": "^5.3.1", + "remove-accents": "^0.5.0", + "use-lilius": "^2.0.5", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/date": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/date/-/date-5.0.0.tgz", + "integrity": "sha512-50FGIawpM6IccH2ujR5MsGlBM7fIIT2MfZMfh5QtRXdDO0M5Jul+TI6HkF9+oZlNGzc1q2FTrkopHXNvkxPAeA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0", + "moment": "^2.29.4", + "moment-timezone": "^0.5.40" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/html-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.0.0.tgz", + "integrity": "sha512-0CHyxa4ZPeo2osUv9Ghz95sD00+HBF7N61ysToqcg1+EOWe8HWhUl74HNDlOe1n/KYFDxXN0wKfYqPkKTQk7DA==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/primitives": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.0.0.tgz", + "integrity": "sha512-NMzDEFxfRwh1IAbf4fJHz6UmvIyfHmId6/1UjueCgpON0LR0y5ydjB6Pd4AngkMcO2qOjD9XNP6MKAOzdjw54g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.0.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/rich-text": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-7.0.0.tgz", + "integrity": "sha512-OV1OTUkK7oHzJpsNUGwpZAHcXtubohFGY5TRiKobFHAhDuhML0tXWLKEwwsbBZj7v2t6YTWakD+WC6449IZn7w==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/data": "^10.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "memize": "^2.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/plugins/node_modules/@wordpress/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-vZ7SH4lwnwglsZC+5dmrMJS/9lZXn7BvADC+ZHzrRM0s6Ufumi1RdG0QJr/HJuTRY9fX5bbPNdUQVyrv+weSEg==", + "dev": true, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/preferences/-/preferences-4.1.0.tgz", + "integrity": "sha512-4BGXljtwtYOYu9+UUgkQki/BpSE9G3KibeylyqLZk4+RadyHh0nYqPHlwDcyZ37MaNvmJ3EWpoWfgQ0oEPJ2CA==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.1.0", + "@wordpress/components": "^28.1.0", + "@wordpress/compose": "^7.1.0", + "@wordpress/data": "^10.1.0", + "@wordpress/deprecated": "^4.1.0", + "@wordpress/element": "^6.1.0", + "@wordpress/i18n": "^5.1.0", + "@wordpress/icons": "^10.1.0", + "@wordpress/private-apis": "^1.1.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/a11y": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.0.0.tgz", + "integrity": "sha512-w+H4VcL8DuT82kHDmT07Y2cFxG2IGOT8ylZj2tsXbSILkwwaEquq+kAFBBM7YTxUqazaHW19MHkpVA7Fniq6kA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/components": { + "version": "28.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/components/-/components-28.0.0.tgz", + "integrity": "sha512-55VEwJmiA9QSg2bnRtHIRxkjbV9wYLfzaCfWgksd018kkLtwXpZcKeQQvevmKTdL9PeIeLC1lDO4H+cdExcOXw==", + "dev": true, + "dependencies": { + "@ariakit/react": "^0.3.12", + "@babel/runtime": "^7.16.0", + "@emotion/cache": "^11.7.1", + "@emotion/css": "^11.7.1", + "@emotion/react": "^11.7.1", + "@emotion/serialize": "^1.0.2", + "@emotion/styled": "^11.6.0", + "@emotion/utils": "^1.0.0", + "@floating-ui/react-dom": "^2.0.8", + "@types/gradient-parser": "0.1.3", + "@types/highlight-words-core": "1.2.1", + "@use-gesture/react": "^10.3.1", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/date": "^5.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/hooks": "^4.0.0", + "@wordpress/html-entities": "^4.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/icons": "^10.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/primitives": "^4.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/rich-text": "^7.0.0", + "@wordpress/warning": "^3.0.0", + "change-case": "^4.1.2", + "clsx": "^2.1.1", + "colord": "^2.7.0", + "date-fns": "^3.6.0", + "deepmerge": "^4.3.0", + "downshift": "^6.0.15", + "fast-deep-equal": "^3.1.3", + "framer-motion": "^11.1.9", + "gradient-parser": "^0.1.5", + "highlight-words-core": "^1.2.2", + "is-plain-object": "^5.0.0", + "memize": "^2.1.0", + "path-to-regexp": "^6.2.1", + "re-resizable": "^6.4.0", + "react-colorful": "^5.3.1", + "remove-accents": "^0.5.0", + "use-lilius": "^2.0.5", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/date": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/date/-/date-5.0.0.tgz", + "integrity": "sha512-50FGIawpM6IccH2ujR5MsGlBM7fIIT2MfZMfh5QtRXdDO0M5Jul+TI6HkF9+oZlNGzc1q2FTrkopHXNvkxPAeA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0", + "moment": "^2.29.4", + "moment-timezone": "^0.5.40" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/html-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.0.0.tgz", + "integrity": "sha512-0CHyxa4ZPeo2osUv9Ghz95sD00+HBF7N61ysToqcg1+EOWe8HWhUl74HNDlOe1n/KYFDxXN0wKfYqPkKTQk7DA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/primitives": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.0.0.tgz", + "integrity": "sha512-NMzDEFxfRwh1IAbf4fJHz6UmvIyfHmId6/1UjueCgpON0LR0y5ydjB6Pd4AngkMcO2qOjD9XNP6MKAOzdjw54g==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.1.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/rich-text": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-7.0.0.tgz", + "integrity": "sha512-OV1OTUkK7oHzJpsNUGwpZAHcXtubohFGY5TRiKobFHAhDuhML0tXWLKEwwsbBZj7v2t6YTWakD+WC6449IZn7w==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/data": "^10.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "memize": "^2.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/preferences/node_modules/@wordpress/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-vZ7SH4lwnwglsZC+5dmrMJS/9lZXn7BvADC+ZHzrRM0s6Ufumi1RdG0QJr/HJuTRY9fX5bbPNdUQVyrv+weSEg==", + "dev": true, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/primitives": { + "version": "3.56.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-3.56.0.tgz", + "integrity": "sha512-NXBq1ODjl6inMWx/l7KCbATcjdoeIOqYeL9i9alqdAfWeKx1EH9PIvKWylIkqZk7erXxCxldiRkuyjTtwjNBxw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^5.35.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/priority-queue": { + "version": "2.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-2.58.0.tgz", + "integrity": "sha512-W+qCS8HJWsXG8gE6yK/H/IObowcghPrQMM3cQHtfd/U05yFNU1Bd/fbj3AO1fVRztktS47lIpi9m3ll1evPEHA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/private-apis": { + "version": "0.40.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-0.40.0.tgz", + "integrity": "sha512-ZX/9Y8eA3C3K6LOj32bHFj+9tNV819CBd8+chqMmmlvQRcTngiuXbMbnSdZnnAr1gLQgNpH9PJ60dIwJnGSEtQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/redux-routine": { + "version": "4.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-4.58.0.tgz", + "integrity": "sha512-r0mMWFeJr93yPy2uY/M5+gdUUYj0Zu8+21OFFb5hyQ0z7UHIa3IdgQxzCaTbV1LDA1ZYJrjHeCnA6s4gNHjA2Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/reusable-blocks": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/reusable-blocks/-/reusable-blocks-5.1.0.tgz", + "integrity": "sha512-rtWE9iNaNN8m63al2W3j53VkVPbOPQa8TzoBM4GPrWrjnLFJJ8boD1OoPGEDst771lBaPUU3nXna+vnnWL0zpg==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/block-editor": "^13.1.0", + "@wordpress/blocks": "^13.1.0", + "@wordpress/components": "^28.1.0", + "@wordpress/core-data": "^7.1.0", + "@wordpress/data": "^10.1.0", + "@wordpress/element": "^6.1.0", + "@wordpress/i18n": "^5.1.0", + "@wordpress/icons": "^10.1.0", + "@wordpress/notices": "^5.1.0", + "@wordpress/private-apis": "^1.1.0", + "@wordpress/url": "^4.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/a11y": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.0.0.tgz", + "integrity": "sha512-w+H4VcL8DuT82kHDmT07Y2cFxG2IGOT8ylZj2tsXbSILkwwaEquq+kAFBBM7YTxUqazaHW19MHkpVA7Fniq6kA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/components": { + "version": "28.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/components/-/components-28.0.0.tgz", + "integrity": "sha512-55VEwJmiA9QSg2bnRtHIRxkjbV9wYLfzaCfWgksd018kkLtwXpZcKeQQvevmKTdL9PeIeLC1lDO4H+cdExcOXw==", + "dev": true, + "dependencies": { + "@ariakit/react": "^0.3.12", + "@babel/runtime": "^7.16.0", + "@emotion/cache": "^11.7.1", + "@emotion/css": "^11.7.1", + "@emotion/react": "^11.7.1", + "@emotion/serialize": "^1.0.2", + "@emotion/styled": "^11.6.0", + "@emotion/utils": "^1.0.0", + "@floating-ui/react-dom": "^2.0.8", + "@types/gradient-parser": "0.1.3", + "@types/highlight-words-core": "1.2.1", + "@use-gesture/react": "^10.3.1", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/date": "^5.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/hooks": "^4.0.0", + "@wordpress/html-entities": "^4.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/icons": "^10.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/primitives": "^4.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/rich-text": "^7.0.0", + "@wordpress/warning": "^3.0.0", + "change-case": "^4.1.2", + "clsx": "^2.1.1", + "colord": "^2.7.0", + "date-fns": "^3.6.0", + "deepmerge": "^4.3.0", + "downshift": "^6.0.15", + "fast-deep-equal": "^3.1.3", + "framer-motion": "^11.1.9", + "gradient-parser": "^0.1.5", + "highlight-words-core": "^1.2.2", + "is-plain-object": "^5.0.0", + "memize": "^2.1.0", + "path-to-regexp": "^6.2.1", + "re-resizable": "^6.4.0", + "react-colorful": "^5.3.1", + "remove-accents": "^0.5.0", + "use-lilius": "^2.0.5", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/date": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/date/-/date-5.0.0.tgz", + "integrity": "sha512-50FGIawpM6IccH2ujR5MsGlBM7fIIT2MfZMfh5QtRXdDO0M5Jul+TI6HkF9+oZlNGzc1q2FTrkopHXNvkxPAeA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0", + "moment": "^2.29.4", + "moment-timezone": "^0.5.40" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/html-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.0.0.tgz", + "integrity": "sha512-0CHyxa4ZPeo2osUv9Ghz95sD00+HBF7N61ysToqcg1+EOWe8HWhUl74HNDlOe1n/KYFDxXN0wKfYqPkKTQk7DA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/primitives": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.0.0.tgz", + "integrity": "sha512-NMzDEFxfRwh1IAbf4fJHz6UmvIyfHmId6/1UjueCgpON0LR0y5ydjB6Pd4AngkMcO2qOjD9XNP6MKAOzdjw54g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.0.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/rich-text": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-7.0.0.tgz", + "integrity": "sha512-OV1OTUkK7oHzJpsNUGwpZAHcXtubohFGY5TRiKobFHAhDuhML0tXWLKEwwsbBZj7v2t6YTWakD+WC6449IZn7w==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.1.0", + "@wordpress/compose": "^7.1.0", + "@wordpress/data": "^10.1.0", + "@wordpress/deprecated": "^4.1.0", + "@wordpress/element": "^6.1.0", + "@wordpress/escape-html": "^3.1.0", + "@wordpress/i18n": "^5.1.0", + "@wordpress/keycodes": "^4.1.0", + "memize": "^2.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/reusable-blocks/node_modules/@wordpress/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-vZ7SH4lwnwglsZC+5dmrMJS/9lZXn7BvADC+ZHzrRM0s6Ufumi1RdG0QJr/HJuTRY9fX5bbPNdUQVyrv+weSEg==", + "dev": true, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/rich-text": { + "version": "6.35.0", + "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-6.35.0.tgz", + "integrity": "sha512-h6/XftSqo9UQZebuNZyLfOVu+ButBLITW/BILsKeJhSpmM19VNdz8UhVGLp+xQPE+/GPCIMJrhhqipISDfc2Ig==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^3.58.0", + "@wordpress/compose": "^6.35.0", + "@wordpress/data": "^9.28.0", + "@wordpress/deprecated": "^3.58.0", + "@wordpress/element": "^5.35.0", + "@wordpress/escape-html": "^2.58.0", + "@wordpress/i18n": "^4.58.0", + "@wordpress/keycodes": "^3.58.0", + "memize": "^2.1.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/server-side-render": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/server-side-render/-/server-side-render-5.1.0.tgz", + "integrity": "sha512-AayRrxBJ3PSr+XrZ3EbAjqpk6I5iWh62XnwHyAnRtSae9ubj3QnzRIoTVMnqGMiu9vCuo1i2SPJfhkS3IC2glg==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/api-fetch": "^7.1.0", + "@wordpress/blocks": "^13.1.0", + "@wordpress/components": "^28.1.0", + "@wordpress/compose": "^7.1.0", + "@wordpress/data": "^10.1.0", + "@wordpress/deprecated": "^4.1.0", + "@wordpress/element": "^6.1.0", + "@wordpress/i18n": "^5.1.0", + "@wordpress/url": "^4.1.0", + "fast-deep-equal": "^3.1.3" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/a11y": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-4.0.0.tgz", + "integrity": "sha512-w+H4VcL8DuT82kHDmT07Y2cFxG2IGOT8ylZj2tsXbSILkwwaEquq+kAFBBM7YTxUqazaHW19MHkpVA7Fniq6kA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/components": { + "version": "28.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/components/-/components-28.0.0.tgz", + "integrity": "sha512-55VEwJmiA9QSg2bnRtHIRxkjbV9wYLfzaCfWgksd018kkLtwXpZcKeQQvevmKTdL9PeIeLC1lDO4H+cdExcOXw==", + "dev": true, + "dependencies": { + "@ariakit/react": "^0.3.12", + "@babel/runtime": "^7.16.0", + "@emotion/cache": "^11.7.1", + "@emotion/css": "^11.7.1", + "@emotion/react": "^11.7.1", + "@emotion/serialize": "^1.0.2", + "@emotion/styled": "^11.6.0", + "@emotion/utils": "^1.0.0", + "@floating-ui/react-dom": "^2.0.8", + "@types/gradient-parser": "0.1.3", + "@types/highlight-words-core": "1.2.1", + "@use-gesture/react": "^10.3.1", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/date": "^5.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/hooks": "^4.0.0", + "@wordpress/html-entities": "^4.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/icons": "^10.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/primitives": "^4.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/rich-text": "^7.0.0", + "@wordpress/warning": "^3.0.0", + "change-case": "^4.1.2", + "clsx": "^2.1.1", + "colord": "^2.7.0", + "date-fns": "^3.6.0", + "deepmerge": "^4.3.0", + "downshift": "^6.0.15", + "fast-deep-equal": "^3.1.3", + "framer-motion": "^11.1.9", + "gradient-parser": "^0.1.5", + "highlight-words-core": "^1.2.2", + "is-plain-object": "^5.0.0", + "memize": "^2.1.0", + "path-to-regexp": "^6.2.1", + "re-resizable": "^6.4.0", + "react-colorful": "^5.3.1", + "remove-accents": "^0.5.0", + "use-lilius": "^2.0.5", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/date": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/date/-/date-5.0.0.tgz", + "integrity": "sha512-50FGIawpM6IccH2ujR5MsGlBM7fIIT2MfZMfh5QtRXdDO0M5Jul+TI6HkF9+oZlNGzc1q2FTrkopHXNvkxPAeA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0", + "moment": "^2.29.4", + "moment-timezone": "^0.5.40" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/html-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-4.0.0.tgz", + "integrity": "sha512-0CHyxa4ZPeo2osUv9Ghz95sD00+HBF7N61ysToqcg1+EOWe8HWhUl74HNDlOe1n/KYFDxXN0wKfYqPkKTQk7DA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/primitives": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.0.0.tgz", + "integrity": "sha512-NMzDEFxfRwh1IAbf4fJHz6UmvIyfHmId6/1UjueCgpON0LR0y5ydjB6Pd4AngkMcO2qOjD9XNP6MKAOzdjw54g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.0.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/rich-text": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-7.0.0.tgz", + "integrity": "sha512-OV1OTUkK7oHzJpsNUGwpZAHcXtubohFGY5TRiKobFHAhDuhML0tXWLKEwwsbBZj7v2t6YTWakD+WC6449IZn7w==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/a11y": "^4.0.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/data": "^10.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/escape-html": "^3.0.0", + "@wordpress/i18n": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "memize": "^2.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/server-side-render/node_modules/@wordpress/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-vZ7SH4lwnwglsZC+5dmrMJS/9lZXn7BvADC+ZHzrRM0s6Ufumi1RdG0QJr/HJuTRY9fX5bbPNdUQVyrv+weSEg==", + "dev": true, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/shortcode": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/shortcode/-/shortcode-4.1.0.tgz", + "integrity": "sha512-uK+VbeVd9NdJvh88mxqqMZ9Bt5aXvKFjuxI1f3+8yNfPyRJKMuWD1ZqGw5LvhEh5pXtyAsOcSgPb4O0AZvhnbQ==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "memize": "^2.0.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/style-engine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/style-engine/-/style-engine-2.1.0.tgz", + "integrity": "sha512-OOSzArFGjN0CuyHKXDjl1rqJPAsjAZ/73UaEpx3MNvsXZL1nPfdK0dqIIHt3aEmYy44xAEoFDqhQPSiNIYAJgQ==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "change-case": "^4.1.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/sync": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/sync/-/sync-1.1.0.tgz", + "integrity": "sha512-9iyFbNo2xQxljoA+zlRlv71YONMKCM3Xfa0qThuqd5n8B4ZfQB1Bzf29OiVw9RftwIUs1SkRjGWbqG3Kr1SbFQ==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/simple-peer": "^9.11.5", + "@wordpress/url": "^4.1.0", + "import-locals": "^2.0.0", + "lib0": "^0.2.42", + "simple-peer": "^9.11.0", + "y-indexeddb": "~9.0.11", + "y-protocols": "^1.0.5", + "y-webrtc": "~10.2.5", + "yjs": "~13.6.6" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/token-list": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/token-list/-/token-list-3.1.0.tgz", + "integrity": "sha512-Fw+MdhCMVhkoYA6qOAzIa2aaIvicsuE7rxUBJnrEZOH6XO4uksqql+rLHlf3BplzFowYo+lPKTHQKraaGHE9qw==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/undo-manager": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-0.18.0.tgz", + "integrity": "sha512-upbzPEToa095XG+2JXLHaolF1LfXEMFS0lNMYV37myoUS+eZ7/tl9Gx+yU2+OqWy57TMwx33NlWUX/n+ynzPRw==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^4.58.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/url": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-4.0.0.tgz", + "integrity": "sha512-eqOj2kH8azTrA7r3qIipPQuoghdMs1DzSwnjwt4Ja0BZvZLyaacL5p5p4+/nfALXgHuk3OnAsnkecevAlyTGgg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "remove-accents": "^0.5.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/viewport": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/viewport/-/viewport-6.1.0.tgz", + "integrity": "sha512-D5Ik47d/8ERc6ti/lxqJqHCtWV5sj1SJKZvsVJ4YvMyeMafam0J7Uxzlw1nJcUdSWZcz8IrfEmExbUf6eIQF3g==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.1.0", + "@wordpress/data": "^10.1.0", + "@wordpress/element": "^6.1.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/compose": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-7.0.0.tgz", + "integrity": "sha512-TXVGa2M96y/pRRVzh8iDMuktoseTEcQGOqBZQ9Pr1kk+mAPYCEUnGpactoZQxDlznQiM5vaD79aEQu04s1AHXA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/mousetrap": "^1.6.8", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/dom": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/keycodes": "^4.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/undo-manager": "^1.0.0", + "change-case": "^4.1.2", + "clipboard": "^2.0.11", + "mousetrap": "^1.6.5", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/data": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/data/-/data-10.0.0.tgz", + "integrity": "sha512-TCRlzYIVrQqAkjgVevJYzkga2zt+lHI6m3rnBzCH2QUvv/p/L388pMCNWUByhjhXNnsHRdY1/FeqYQmG+LwQ0g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/compose": "^7.0.0", + "@wordpress/deprecated": "^4.0.0", + "@wordpress/element": "^6.0.0", + "@wordpress/is-shallow-equal": "^5.0.0", + "@wordpress/priority-queue": "^3.0.0", + "@wordpress/private-apis": "^1.0.0", + "@wordpress/redux-routine": "^5.0.0", + "deepmerge": "^4.3.0", + "equivalent-key-map": "^0.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "redux": "^4.1.2", + "rememo": "^4.0.2", + "use-memo-one": "^1.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/deprecated": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-4.0.0.tgz", + "integrity": "sha512-sm+p+0N3u9/mvZdmTwZ578sLu7ABQdpjzJZfpVhpiAkx3bcosE+tDkjQ6xiQOE6rilXzRDWSymDwlMqO10JEsg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/dom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-4.0.0.tgz", + "integrity": "sha512-/HWOSG+yq5i7GZyL7lETeQHKWDjxv9FwIjEXYV1NjuHPbWmmQqOveMqrqmZtw/9AuwqIrF+MX0mLwxNyUCwr9Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/deprecated": "^4.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/hooks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-4.0.0.tgz", + "integrity": "sha512-Bpw4kjnaouc+sy3LFtiSYtyl/SmiMtGa4hhxWtpN4bNGIPfOnMixNKBbm289Bn+aoU7GrOPifP/gWTKW98Rs4A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/i18n": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-5.0.0.tgz", + "integrity": "sha512-WlOcpLuQgeUho2TxYcCBW9K9VaBNCaCJKSWoL9QxCqxDUecTn8tyIJ/PLDKW/v4kkQnzhI5RlB7XFqQdGmgUbw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/hooks": "^4.0.0", + "gettext-parser": "^1.3.1", + "memize": "^2.1.0", + "sprintf-js": "^1.1.1", + "tannin": "^1.2.0" + }, + "bin": { + "pot-to-php": "tools/pot-to-php.js" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/is-shallow-equal": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-5.0.0.tgz", + "integrity": "sha512-SHSQ4yHu3+ENICj1441J4iNy54zjSURyaZK1gZRxoJsWtiWbM6umdipIlFIKVPNGRSXtQvmt38vs54XVyCCjwg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/keycodes": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-4.0.0.tgz", + "integrity": "sha512-zN+E4kQ8W8tM9uLZX0yzpk+qJFs5PHDcKrbSB8HMia8/TDLeJCLv6W/eUHDa9c8KUDJC1IVek7JHwFFYtZkemw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/priority-queue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-3.0.0.tgz", + "integrity": "sha512-jaNvsBBmMIAml7acJORopVzDRNAHPI1eKdnwY5gYICllmksd8FfpV8kopmTmVLYECHf1GI1gtxrjFGB//ASc+A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "requestidlecallback": "^0.3.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/private-apis": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/private-apis/-/private-apis-1.0.0.tgz", + "integrity": "sha512-UKpTXQWu8qMlnNdGDfxbvuH7b70JLBLj4JVMwTtT5LYeDRWlPNbJZv0g2ENRL3Okd++uK4wN1yf9fQOOgOUP8Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/redux-routine": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-5.0.0.tgz", + "integrity": "sha512-jgM/ZN1aZU/f674memEAXeIzazM9+utErBXot8FBKDylmeSjqXc+0i5Q0YMjt0i9P9j4ivVEIAWiZUUj2/RQDw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "rungen": "^0.3.2" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + }, + "peerDependencies": { + "redux": ">=4" + } + }, + "node_modules/@wordpress/viewport/node_modules/@wordpress/undo-manager": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/undo-manager/-/undo-manager-1.0.0.tgz", + "integrity": "sha512-NHaIQv3lfgDawF4EsSCfb6ZE/WJ+Dw3UBrOEBC/nSntyrrLNIg4F5ZrhMMtRxhjsXSx+Tf8MSCRN6R0rX5zj6g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/is-shallow-equal": "^5.0.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/warning": { + "version": "2.58.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-2.58.0.tgz", + "integrity": "sha512-9bZlORhyMY2nbWozeyC5kqJsFzEPP4DCLhGmjtbv+YWGHttUrxUZEfrKdqO+rUODA8rP5zeIly1nCQOUnkw4Lg==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@wordpress/wordcount": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/wordcount/-/wordcount-4.0.0.tgz", + "integrity": "sha512-g734YzL5n/96qx6SPTtOxWIFjSOU036ICCjPAUqSULO4Z61QgbKh0IPvajAvJD5Tq++FyaFPSVNlky40qJCLkA==", + "dev": true, + "license": "GPL-2.0-or-later", + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@wordpress/wordcount": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/wordcount/-/wordcount-4.1.0.tgz", + "integrity": "sha512-M20Iconm130KDIZSFmfIuaVgX7gbyf9oLUTN9i9RtvAxsirALcKSS+Gr3H4y58ndVRCRbmoKTHajE2FGUvyQUA==", + "dev": true, + "license": "GPL-2.0-or-later", + "dependencies": { + "@babel/runtime": "^7.16.0" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "dev": true, + "dependencies": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", + "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/adm-zip": { + "version": "0.5.14", + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.14.tgz", + "integrity": "sha512-DnyqqifT4Jrcvb8USYjp6FHtBpEIz1mnXu6pTRHZ0RL69LbQYiO+0lDFg5+OKA7U29oWSs3a/i8fhn8ZcceIWg==", + "dev": true, + "engines": { + "node": ">=12.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, "dependencies": { "debug": "4" @@ -6587,9 +11387,9 @@ } }, "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz", + "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.3", @@ -6643,6 +11443,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/ansi-html": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", + "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, "node_modules/ansi-html-community": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", @@ -7290,30 +12102,6 @@ "@babel/core": "^7.0.0" } }, - "node_modules/babel-runtime": { - "version": "6.25.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.25.0.tgz", - "integrity": "sha512-zeCYxDePWYAT/DfmQWIHsMSFW2vv45UIwIAMjGvQVsTd47RwsiRH0uK1yzyWZ7LDBKdhnGDPM6NYEO5CZyhPrg==", - "dev": true, - "dependencies": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.10.0" - } - }, - "node_modules/babel-runtime/node_modules/core-js": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", - "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", - "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", - "dev": true, - "hasInstallScript": true - }, - "node_modules/babel-runtime/node_modules/regenerator-runtime": { - "version": "0.10.5", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz", - "integrity": "sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==", - "dev": true - }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -7518,9 +12306,9 @@ } }, "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "version": "4.23.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", + "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", "dev": true, "funding": [ { @@ -7537,10 +12325,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", + "caniuse-lite": "^1.0.30001629", + "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" @@ -7711,9 +12499,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001621", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001621.tgz", - "integrity": "sha512-+NLXZiviFFKX0fk8Piwv3PfLPGtRqJeq2TiNoUff/qB5KJgwecJTvCXDpmlyP/eCI/GUEmp/h/y5j0yckiiZrA==", + "version": "1.0.30001632", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001632.tgz", + "integrity": "sha512-udx3o7yHJfUxMLkGohMlVHCvFvWmirKh9JAH/d7WOLPetlH+LTL5cocMZ0t7oZx/mdlOWXti97xLZWc8uURRHg==", "dev": true, "funding": [ { @@ -7882,9 +12670,9 @@ } }, "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", "dev": true, "engines": { "node": ">=6.0" @@ -8283,34 +13071,6 @@ "webpack": "^5.1.0" } }, - "node_modules/copy-webpack-plugin/node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/copy-webpack-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, "node_modules/copy-webpack-plugin/node_modules/array-union": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", @@ -8343,31 +13103,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/copy-webpack-plugin/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/copy-webpack-plugin/node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, "node_modules/copy-webpack-plugin/node_modules/slash": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", @@ -8917,9 +13652,9 @@ "dev": true }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", "dev": true, "dependencies": { "ms": "2.1.2" @@ -9403,9 +14138,9 @@ "dev": true }, "node_modules/electron-to-chromium": { - "version": "1.4.777", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.777.tgz", - "integrity": "sha512-n02NCwLJ3wexLfK/yQeqfywCblZqLcXphzmid5e8yVPdtEcida7li0A5WQKghHNG0FeOMCzeFOzEbtAh5riXFw==", + "version": "1.4.796", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.796.tgz", + "integrity": "sha512-NglN/xprcM+SHD2XCli4oC6bWe6kHoytcyLKCWXmRL854F0qhPhaYgUswUsglnPxYaNQIg2uMY4BvaomIf3kLA==", "dev": true }, "node_modules/emittery": { @@ -9465,9 +14200,9 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.16.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.1.tgz", - "integrity": "sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==", + "version": "5.17.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz", + "integrity": "sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==", "dev": true, "dependencies": { "graceful-fs": "^4.2.4", @@ -10999,8 +15734,7 @@ "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/fastest-levenshtein": { "version": "1.0.16", @@ -11352,9 +16086,9 @@ } }, "node_modules/framer-motion": { - "version": "11.2.6", - "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-11.2.6.tgz", - "integrity": "sha512-XUrjjBt57e5YoHQtjwc3eNchFBuHvIgN/cS8SC4oIaAn2J/0+bLanUxXizidJKZVeHJam/JrmMnPRjYMglVn5g==", + "version": "11.2.10", + "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-11.2.10.tgz", + "integrity": "sha512-/gr3PLZUVFCc86a9MqCUboVrALscrdluzTb3yew+2/qKBU8CX6nzs918/SRBRCqaPbx0TZP10CB6yFgK2C5cYQ==", "dev": true, "dependencies": { "tslib": "^2.4.0" @@ -11637,6 +16371,7 @@ "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", @@ -12410,6 +17145,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, "dependencies": { "once": "^1.3.0", @@ -14554,6 +19290,23 @@ "node-fetch": "^2.6.12" } }, + "node_modules/lighthouse/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, "node_modules/lighthouse/node_modules/node-fetch": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", @@ -14701,9 +19454,9 @@ } }, "node_modules/lilconfig": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz", - "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", "dev": true, "engines": { "node": ">=14" @@ -15254,98 +20007,42 @@ "node_modules/mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/mini-css-extract-plugin": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz", - "integrity": "sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==", - "dev": true, - "dependencies": { - "schema-utils": "^4.0.0", - "tapable": "^2.2.1" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - } - }, - "node_modules/mini-css-extract-plugin/node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.3" + "mime-db": "1.52.0" }, - "peerDependencies": { - "ajv": "^8.8.2" + "engines": { + "node": ">= 0.6" } }, - "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } }, - "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz", + "integrity": "sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" }, "engines": { "node": ">= 12.13.0" @@ -15353,6 +20050,9 @@ "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, "node_modules/minimalistic-assert": { @@ -17091,9 +21791,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.16", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", - "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", + "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", "dev": true, "dependencies": { "cssesc": "^3.0.0", @@ -17439,6 +22139,23 @@ "node": ">=10.18.1" } }, + "node_modules/puppeteer-core/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, "node_modules/puppeteer-core/node_modules/devtools-protocol": { "version": "0.0.981744", "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.981744.tgz", @@ -17449,6 +22166,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "dependencies": { "glob": "^7.1.3" @@ -17611,9 +22329,9 @@ } }, "node_modules/re-resizable": { - "version": "6.9.16", - "resolved": "https://registry.npmjs.org/re-resizable/-/re-resizable-6.9.16.tgz", - "integrity": "sha512-D9+ofwgPQRC6PL6cwavCZO9MUR8TKKxV1nHjbutSdNaFHK9v5k8m6DcESMXrw1+mRJn7fBHJRhZpa7EQ1ZWEEA==", + "version": "6.9.17", + "resolved": "https://registry.npmjs.org/re-resizable/-/re-resizable-6.9.17.tgz", + "integrity": "sha512-OBqd1BwVXpEJJn/yYROG+CbeqIDBWIp6wathlpB0kzZWWZIY1gPTsgK2yJEui5hOvkCdC2mcexF2V3DZVfLq2g==", "dev": true, "peerDependencies": { "react": "^16.13.1 || ^17.0.0 || ^18.0.0", @@ -18185,6 +22903,7 @@ "version": "2.7.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "dependencies": { "glob": "^7.1.3" @@ -18203,77 +22922,6 @@ "node": ">=10.0.0" } }, - "node_modules/rtlcss": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-3.5.0.tgz", - "integrity": "sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==", - "dev": true, - "dependencies": { - "find-up": "^5.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.3.11", - "strip-json-comments": "^3.1.1" - }, - "bin": { - "rtlcss": "bin/rtlcss.js" - } - }, - "node_modules/rtlcss-webpack-plugin": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/rtlcss-webpack-plugin/-/rtlcss-webpack-plugin-4.0.7.tgz", - "integrity": "sha512-ouSbJtgcLBBQIsMgarxsDnfgRqm/AS4BKls/mz/Xb6HSl+PdEzefTR+Wz5uWQx4odoX0g261Z7yb3QBz0MTm0g==", - "dev": true, - "dependencies": { - "babel-runtime": "~6.25.0", - "rtlcss": "^3.5.0" - } - }, - "node_modules/rtlcss/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/rtlcss/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/rtlcss/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/run-con": { "version": "1.2.12", "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.12.tgz", @@ -18401,9 +23049,9 @@ "dev": true }, "node_modules/sass": { - "version": "1.77.2", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.2.tgz", - "integrity": "sha512-eb4GZt1C3avsX3heBNlrc7I09nyT00IUuo4eFhAbeXWU2fvA7oXI53SxODVAA+zgZCk9aunAZgO+losjR3fAwA==", + "version": "1.77.4", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.4.tgz", + "integrity": "sha512-vcF3Ckow6g939GMA4PeU7b2K/9FALXk2KF9J87txdHzXbUF9XRQRwSxcAs/fGaTnJeBFd7UoV22j3lzMLdM0Pw==", "dev": true, "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -18477,23 +23125,58 @@ } }, "node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" }, "engines": { - "node": ">= 10.13.0" + "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" } }, + "node_modules/schema-utils/node_modules/ajv": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz", + "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/schema-utils/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/schema-utils/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, "node_modules/select": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", @@ -20061,9 +24744,9 @@ } }, "node_modules/terser": { - "version": "5.31.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.0.tgz", - "integrity": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==", + "version": "5.31.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.1.tgz", + "integrity": "sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==", "dev": true, "dependencies": { "@jridgewell/source-map": "^0.3.3", @@ -20126,6 +24809,24 @@ "node": ">= 10.13.0" } }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/terser-webpack-plugin/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", @@ -20406,9 +25107,9 @@ } }, "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", + "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", "dev": true }, "node_modules/tsutils": { @@ -20929,6 +25630,24 @@ } } }, + "node_modules/url-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/url-parse": { "version": "1.5.10", "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", @@ -21407,65 +26126,9 @@ "dependencies": { "colorette": "^2.0.10", "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" - } - }, - "node_modules/webpack-dev-middleware/node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/webpack-dev-middleware/node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" }, "engines": { "node": ">= 12.13.0" @@ -21473,6 +26136,9 @@ "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, "node_modules/webpack-dev-server": { @@ -21534,559 +26200,959 @@ } } }, - "node_modules/webpack-dev-server/node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "node_modules/webpack-dev-server/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.3", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/webpack-dev-server/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "node_modules/webpack-merge": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-merge/node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-merge/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-merge/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-merge/node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dev": true, + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", "dev": true, + "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.3" + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" }, - "peerDependencies": { - "ajv": "^8.8.2" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", "dev": true }, - "node_modules/webpack-dev-server/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/webpack-dev-server/node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, + "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/webpack-merge": { - "version": "5.10.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", - "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, "dependencies": { - "clone-deep": "^4.0.1", - "flat": "^5.0.2", - "wildcard": "^2.0.0" + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" }, "engines": { - "node": ">=10.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/webpack-merge/node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "node_modules/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", "dev": true, - "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, + "license": "MIT", "engines": { - "node": ">=6" + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, - "node_modules/webpack-merge/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/webpack-merge/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/webpack-merge/node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "node_modules/y-indexeddb": { + "version": "9.0.12", + "resolved": "https://registry.npmjs.org/y-indexeddb/-/y-indexeddb-9.0.12.tgz", + "integrity": "sha512-9oCFRSPPzBK7/w5vOkJBaVCQZKHXB/v6SIT+WYhnJxlEC61juqG0hBrAf+y3gmSMLFLwICNH9nQ53uscuse6Hg==", "dev": true, + "license": "MIT", "dependencies": { - "kind-of": "^6.0.2" + "lib0": "^0.2.74" }, "engines": { - "node": ">=8" + "node": ">=16.0.0", + "npm": ">=8.0.0" + }, + "funding": { + "type": "GitHub Sponsors ❤", + "url": "https://github.com/sponsors/dmonad" + }, + "peerDependencies": { + "yjs": "^13.0.0" } }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "node_modules/y-protocols": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/y-protocols/-/y-protocols-1.0.6.tgz", + "integrity": "sha512-vHRF2L6iT3rwj1jub/K5tYcTT/mEYDUppgNPXwp8fmLpui9f7Yeq3OEtTLVF012j39QnV+KEQpNqoN7CWU7Y9Q==", "dev": true, + "license": "MIT", + "dependencies": { + "lib0": "^0.2.85" + }, "engines": { - "node": ">=10.13.0" + "node": ">=16.0.0", + "npm": ">=8.0.0" + }, + "funding": { + "type": "GitHub Sponsors ❤", + "url": "https://github.com/sponsors/dmonad" + }, + "peerDependencies": { + "yjs": "^13.0.0" } }, - "node_modules/websocket-driver": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "node_modules/y-webrtc": { + "version": "10.2.6", + "resolved": "https://registry.npmjs.org/y-webrtc/-/y-webrtc-10.2.6.tgz", + "integrity": "sha512-1kZ4YYwksFZi8+l8mTebVX9vW6Q5MnqxMkvNU700X5dBE38usurt/JgeXSIQRpK3NwUYYb9y63Jn9FMpMH6/vA==", "dev": true, + "license": "MIT", "dependencies": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" + "lib0": "^0.2.42", + "simple-peer": "^9.11.0", + "y-protocols": "^1.0.6" + }, + "bin": { + "y-webrtc-signaling": "bin/server.js" }, "engines": { - "node": ">=0.8.0" + "node": ">=12" + }, + "funding": { + "type": "GitHub Sponsors ❤", + "url": "https://github.com/sponsors/dmonad" + }, + "optionalDependencies": { + "ws": "^8.14.2" + }, + "peerDependencies": { + "yjs": "^13.6.8" } }, - "node_modules/websocket-extensions": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, + "license": "ISC", "engines": { - "node": ">=0.8.0" + "node": ">=10" } }, - "node_modules/whatwg-encoding": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", - "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "dev": true, - "dependencies": { - "iconv-lite": "0.6.3" - }, "engines": { - "node": ">=12" + "node": ">= 6" } }, - "node_modules/whatwg-mimetype": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, "engines": { "node": ">=12" } }, - "node_modules/whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, - "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - }, + "license": "ISC", "engines": { "node": ">=12" } }, - "node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", "dev": true, "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" } }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "node_modules/yjs": { + "version": "13.6.16", + "resolved": "https://registry.npmjs.org/yjs/-/yjs-13.6.16.tgz", + "integrity": "sha512-uEq+n/dFIecBElEdeQea8nDnltScBfuhCSyAxDw4CosveP9Ag0eW6iZi2mdpW7EgxSFT7VXK2MJl3tKaLTmhAQ==", "dev": true, "license": "MIT", "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "lib0": "^0.2.86" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=8.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "GitHub Sponsors ❤", + "url": "https://github.com/sponsors/dmonad" } }, - "node_modules/which-builtin-type": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", - "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, - "license": "MIT", - "dependencies": { - "function.prototype.name": "^1.1.5", - "has-tostringtag": "^1.0.0", - "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", - "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", - "is-weakref": "^1.0.2", - "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/which-collection": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", - "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "packages/iconography": { + "version": "1.0.0", + "license": "ISC", + "devDependencies": { + "@jest/globals": "^29.7.0", + "@testing-library/react": "^16.0.0", + "@types/wordpress__block-editor": "^11.5.14", + "@wordpress/dom-ready": "^4.0.0", + "@wordpress/editor": "^14.1.0", + "@wordpress/icons": "^10.0.0", + "@wordpress/interface": "^6.0.0", + "@wordpress/scripts": "^27.8.0", + "react": "^18.2.0", + "type-coverage": "^2.29.0" + } + }, + "packages/iconography/node_modules/@wordpress/api-fetch": { + "version": "6.55.0", + "resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-6.55.0.tgz", + "integrity": "sha512-1HrCUsJdeRY5Y0IjplotINwqMRO81e7O7VhBScuKk7iOuDm/E1ioKv2uLGnPNWziYu+Zf025byxOqVzXDyM2gw==", "dev": true, - "license": "MIT", "dependencies": { - "is-map": "^2.0.3", - "is-set": "^2.0.3", - "is-weakmap": "^2.0.2", - "is-weakset": "^2.0.3" + "@babel/runtime": "^7.16.0", + "@wordpress/i18n": "^4.58.0", + "@wordpress/url": "^3.59.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/which-module": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", - "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "packages/iconography/node_modules/@wordpress/babel-preset-default": { + "version": "7.42.0", + "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-7.42.0.tgz", + "integrity": "sha512-AWSxWuEuzazt/nWomKiaVhYQeXuqxTniPCKhvks58wB3P4UXvSe3hRnO+nujz20IuxIk2xHT6x47HgpDZy30jw==", "dev": true, - "license": "MIT", "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.2" + "@babel/core": "^7.16.0", + "@babel/plugin-transform-react-jsx": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.0", + "@babel/preset-env": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.0", + "@wordpress/babel-plugin-import-jsx-pragma": "^4.41.0", + "@wordpress/browserslist-config": "^5.41.0", + "@wordpress/warning": "^2.58.0", + "browserslist": "^4.21.10", + "core-js": "^3.31.0", + "react": "^18.3.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=14" } }, - "node_modules/wildcard": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", - "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "packages/iconography/node_modules/@wordpress/base-styles": { + "version": "4.49.0", + "resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-4.49.0.tgz", + "integrity": "sha512-yFRYqNtd26ULZ0oAHhCu/IcaA0XHI3E7kRCKajZqUvyRQj7YprXnpD3o0/pnwvF6ZFTXzCX8pXHjUc2TIv97ig==", "dev": true }, - "node_modules/word-wrap": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", - "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "packages/iconography/node_modules/@wordpress/browserslist-config": { + "version": "5.41.0", + "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-5.41.0.tgz", + "integrity": "sha512-J7ejzzDpPZddVIiq2YiK8J/pNTJDy3X1s+5ZtwkwklCxBMZJurxf9pEhtbaf7us0Q6c1j8Ubv7Fpx3lqk2ypxA==", "dev": true, - "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=14" } }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "packages/iconography/node_modules/@wordpress/dependency-extraction-webpack-plugin": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-5.9.0.tgz", + "integrity": "sha512-hXbCkbG1XES47t7hFSETRrLfaRSPyQPlCnhlCx7FfhYFD0wh1jVArApXX5dD+A6wTrayXX/a16MpfaNqE662XA==", "dev": true, - "license": "MIT", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "json2php": "^0.0.7" }, "engines": { - "node": ">=10" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "peerDependencies": { + "webpack": "^5.0.0" } }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "packages/iconography/node_modules/@wordpress/e2e-test-utils-playwright": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-0.25.0.tgz", + "integrity": "sha512-6KhYvOeCjiwGqb6V2pc8pdzIaee9annctrpoBBCZDC+LOeW+8DLKZeQYAn9CV3Lmeq1Pxn+9dvHsaV/4+nSHBg==", "dev": true, "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" + "@wordpress/api-fetch": "^6.54.0", + "@wordpress/keycodes": "^3.57.0", + "@wordpress/url": "^3.58.0", + "change-case": "^4.1.2", + "form-data": "^4.0.0", + "get-port": "^5.1.1", + "lighthouse": "^10.4.0", + "mime": "^3.0.0", + "web-vitals": "^3.5.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=12" + }, + "peerDependencies": { + "@playwright/test": ">=1" } }, - "node_modules/ws": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", - "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "packages/iconography/node_modules/@wordpress/element": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-6.0.0.tgz", + "integrity": "sha512-YaLki9alJIiGbpozTLhsSQesyVFGlY4uP2XmDzroqnUul7ixEn2s6xUGlaSz9Q3TD2RIl+ml9JqAy/kc8vXLFg==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.0.0" + "dependencies": { + "@babel/runtime": "^7.16.0", + "@types/react": "^18.2.79", + "@types/react-dom": "^18.2.25", + "@wordpress/escape-html": "^3.0.0", + "change-case": "^4.1.2", + "is-plain-object": "^5.0.0", + "react": "^18.3.0", + "react-dom": "^18.3.0" }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } + }, + "packages/iconography/node_modules/@wordpress/escape-html": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-3.0.0.tgz", + "integrity": "sha512-gNdX2+8IQ/yH+d26w1+tJ7zZqUZ59SQRXkgsH0dGOo0LjaSMkhngSnGTVFmhxWo37Td5WzrMREzd6hM3P6RJJg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0" }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/xdg-basedir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", - "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "packages/iconography/node_modules/@wordpress/eslint-plugin": { + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-18.1.0.tgz", + "integrity": "sha512-5eGpXEwaZsKbEh9040nVr4ggmrpPmltP+Ie4iGruWvCme6ZIFYw70CyWEV8S102IkqjH/BaH6d+CWg8tN7sc/g==", "dev": true, - "license": "MIT", + "dependencies": { + "@babel/eslint-parser": "^7.16.0", + "@typescript-eslint/eslint-plugin": "^6.4.1", + "@typescript-eslint/parser": "^6.4.1", + "@wordpress/babel-preset-default": "^7.42.0", + "@wordpress/prettier-config": "^3.15.0", + "cosmiconfig": "^7.0.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-jest": "^27.2.3", + "eslint-plugin-jsdoc": "^46.4.6", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-playwright": "^0.15.3", + "eslint-plugin-prettier": "^5.0.0", + "eslint-plugin-react": "^7.27.0", + "eslint-plugin-react-hooks": "^4.3.0", + "globals": "^13.12.0", + "requireindex": "^1.2.0" + }, "engines": { - "node": ">=8" + "node": ">=14", + "npm": ">=6.14.4" + }, + "peerDependencies": { + "@babel/core": ">=7", + "eslint": ">=8", + "prettier": ">=3", + "typescript": ">=4" + }, + "peerDependenciesMeta": { + "prettier": { + "optional": true + }, + "typescript": { + "optional": true + } } }, - "node_modules/xml-name-validator": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "packages/iconography/node_modules/@wordpress/icons": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-10.0.0.tgz", + "integrity": "sha512-BL1LtPgfFZdMLd2EUmckX8EXo10LDGDlQZx4CyyL0Vnx/6HcR/H3Z5EN6yeJl57fbjPg7noyOZVCdvG1EiiZnA==", "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.0.0", + "@wordpress/primitives": "^4.0.0" + }, "engines": { - "node": ">=12" + "node": ">=18.12.0", + "npm": ">=8.19.2" } }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "dev": true - }, - "node_modules/y-indexeddb": { - "version": "9.0.12", - "resolved": "https://registry.npmjs.org/y-indexeddb/-/y-indexeddb-9.0.12.tgz", - "integrity": "sha512-9oCFRSPPzBK7/w5vOkJBaVCQZKHXB/v6SIT+WYhnJxlEC61juqG0hBrAf+y3gmSMLFLwICNH9nQ53uscuse6Hg==", + "packages/iconography/node_modules/@wordpress/jest-console": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-7.29.0.tgz", + "integrity": "sha512-/9PZJhyszdRX4mka7t1WzoooM+Q/DwC4jkNVtJxqci5lbL3Lrhy1cCJGCgMr1n/9w+zs7eLmExFBvV4v44iyNw==", "dev": true, - "license": "MIT", "dependencies": { - "lib0": "^0.2.74" + "@babel/runtime": "^7.16.0", + "jest-matcher-utils": "^29.6.2" }, "engines": { - "node": ">=16.0.0", - "npm": ">=8.0.0" - }, - "funding": { - "type": "GitHub Sponsors ❤", - "url": "https://github.com/sponsors/dmonad" + "node": ">=14" }, "peerDependencies": { - "yjs": "^13.0.0" + "jest": ">=29" } }, - "node_modules/y-protocols": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/y-protocols/-/y-protocols-1.0.6.tgz", - "integrity": "sha512-vHRF2L6iT3rwj1jub/K5tYcTT/mEYDUppgNPXwp8fmLpui9f7Yeq3OEtTLVF012j39QnV+KEQpNqoN7CWU7Y9Q==", + "packages/iconography/node_modules/@wordpress/jest-preset-default": { + "version": "11.29.0", + "resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-11.29.0.tgz", + "integrity": "sha512-7LA0ZS5t0Thn7xrdwPL3hLgjB9LKloneGhMwnnDUTgJP330lyfdDfJ+O6Lnz3iL+bg68mkA3AzrT9Fs9f3WKww==", "dev": true, - "license": "MIT", "dependencies": { - "lib0": "^0.2.85" + "@wordpress/jest-console": "^7.29.0", + "babel-jest": "^29.6.2" }, "engines": { - "node": ">=16.0.0", - "npm": ">=8.0.0" + "node": ">=14" }, - "funding": { - "type": "GitHub Sponsors ❤", - "url": "https://github.com/sponsors/dmonad" + "peerDependencies": { + "@babel/core": ">=7", + "jest": ">=29" + } + }, + "packages/iconography/node_modules/@wordpress/npm-package-json-lint-config": { + "version": "4.43.0", + "resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-4.43.0.tgz", + "integrity": "sha512-XSb7AdDC7yGTBVYeRM4oqmOygEB+/+tk7lobLIGDmlZJs+M3F/NUvQq0Vcas1pojq2fyPYTUwOlu81ga33fNwQ==", + "dev": true, + "engines": { + "node": ">=14" }, "peerDependencies": { - "yjs": "^13.0.0" + "npm-package-json-lint": ">=6.0.0" } }, - "node_modules/y-webrtc": { - "version": "10.2.6", - "resolved": "https://registry.npmjs.org/y-webrtc/-/y-webrtc-10.2.6.tgz", - "integrity": "sha512-1kZ4YYwksFZi8+l8mTebVX9vW6Q5MnqxMkvNU700X5dBE38usurt/JgeXSIQRpK3NwUYYb9y63Jn9FMpMH6/vA==", + "packages/iconography/node_modules/@wordpress/postcss-plugins-preset": { + "version": "4.42.0", + "resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-4.42.0.tgz", + "integrity": "sha512-5xmKF7IUsqS5JcmJlHKHq7RaR6ZpaLj3n9c+X0X0/Oo7ZCIGp6WeDQngx13sH4NJoKXrZ9g4n1rbzhEKeo/Wtg==", "dev": true, - "license": "MIT", "dependencies": { - "lib0": "^0.2.42", - "simple-peer": "^9.11.0", - "y-protocols": "^1.0.6" - }, - "bin": { - "y-webrtc-signaling": "bin/server.js" + "@wordpress/base-styles": "^4.49.0", + "autoprefixer": "^10.2.5" }, "engines": { - "node": ">=12" - }, - "funding": { - "type": "GitHub Sponsors ❤", - "url": "https://github.com/sponsors/dmonad" - }, - "optionalDependencies": { - "ws": "^8.14.2" + "node": ">=14" }, "peerDependencies": { - "yjs": "^13.6.8" + "postcss": "^8.0.0" } }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "packages/iconography/node_modules/@wordpress/prettier-config": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-3.15.0.tgz", + "integrity": "sha512-exC2rkEioTt//AnzPRyaaFv8FNYIvamPDytNol5bKQ6Qh65QSdZZE9V+GtRCrIPL7/Bq6xba03XuRVxl9TjtJg==", "dev": true, - "license": "ISC", "engines": { - "node": ">=10" + "node": ">=14" + }, + "peerDependencies": { + "prettier": ">=3" } }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true + "packages/iconography/node_modules/@wordpress/primitives": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-4.0.0.tgz", + "integrity": "sha512-NMzDEFxfRwh1IAbf4fJHz6UmvIyfHmId6/1UjueCgpON0LR0y5ydjB6Pd4AngkMcO2qOjD9XNP6MKAOzdjw54g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.16.0", + "@wordpress/element": "^6.0.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=18.12.0", + "npm": ">=8.19.2" + } }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "packages/iconography/node_modules/@wordpress/scripts": { + "version": "27.8.0", + "resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-27.8.0.tgz", + "integrity": "sha512-tG333hEHwoi91wHlZK68AGXoD/DxXc2Sg8HmUjFkalZNDO5GRONT+arPxv6jFHYa2hKZrzlCK2NJKNRa7RBrmA==", "dev": true, + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11", + "@svgr/webpack": "^8.0.1", + "@wordpress/babel-preset-default": "^7.41.0", + "@wordpress/browserslist-config": "^5.40.0", + "@wordpress/dependency-extraction-webpack-plugin": "^5.8.0", + "@wordpress/e2e-test-utils-playwright": "^0.25.0", + "@wordpress/eslint-plugin": "^18.0.0", + "@wordpress/jest-preset-default": "^11.28.0", + "@wordpress/npm-package-json-lint-config": "^4.42.0", + "@wordpress/postcss-plugins-preset": "^4.41.0", + "@wordpress/prettier-config": "^3.14.0", + "@wordpress/stylelint-config": "^21.40.0", + "adm-zip": "^0.5.9", + "babel-jest": "^29.6.2", + "babel-loader": "^8.2.3", + "browserslist": "^4.21.10", + "chalk": "^4.0.0", + "check-node-version": "^4.1.0", + "clean-webpack-plugin": "^3.0.0", + "copy-webpack-plugin": "^10.2.0", + "cross-spawn": "^5.1.0", + "css-loader": "^6.2.0", + "cssnano": "^6.0.1", + "cwd": "^0.10.0", + "dir-glob": "^3.0.1", + "eslint": "^8.3.0", + "expect-puppeteer": "^4.4.0", + "fast-glob": "^3.2.7", + "filenamify": "^4.2.0", + "jest": "^29.6.2", + "jest-dev-server": "^9.0.1", + "jest-environment-jsdom": "^29.6.2", + "jest-environment-node": "^29.6.2", + "markdownlint-cli": "^0.31.1", + "merge-deep": "^3.0.3", + "mini-css-extract-plugin": "^2.5.1", + "minimist": "^1.2.0", + "npm-package-json-lint": "^6.4.0", + "npm-packlist": "^3.0.0", + "postcss": "^8.4.5", + "postcss-loader": "^6.2.1", + "prettier": "npm:wp-prettier@3.0.3", + "puppeteer-core": "^13.2.0", + "react-refresh": "^0.14.0", + "read-pkg-up": "^7.0.1", + "resolve-bin": "^0.4.0", + "sass": "^1.35.2", + "sass-loader": "^12.1.0", + "source-map-loader": "^3.0.0", + "stylelint": "^14.2.0", + "terser-webpack-plugin": "^5.3.9", + "url-loader": "^4.1.1", + "webpack": "^5.88.2", + "webpack-bundle-analyzer": "^4.9.1", + "webpack-cli": "^5.1.4", + "webpack-dev-server": "^4.15.1" + }, + "bin": { + "wp-scripts": "bin/wp-scripts.js" + }, "engines": { - "node": ">= 6" + "node": ">=18", + "npm": ">=6.14.4" + }, + "peerDependencies": { + "@playwright/test": "^1.43.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "packages/iconography/node_modules/@wordpress/stylelint-config": { + "version": "21.41.0", + "resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-21.41.0.tgz", + "integrity": "sha512-2wxFu8ICeRGF3Lxz7H7o2SU1u6pTI4mjuog39DgtCNb+v+f6yhgREDuNQEeti3Svb0rjj63AJ7r2CqLZk+EQIQ==", "dev": true, - "license": "MIT", "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" + "stylelint-config-recommended": "^6.0.0", + "stylelint-config-recommended-scss": "^5.0.2" }, "engines": { - "node": ">=12" + "node": ">=14" + }, + "peerDependencies": { + "stylelint": "^14.2" } }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "packages/iconography/node_modules/@wordpress/url": { + "version": "3.59.0", + "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-3.59.0.tgz", + "integrity": "sha512-GxvoMjYCav0w4CiX0i0h3qflrE/9rhLIZg5aPCQjbrBdwTxYR3Exfw0IJYcmVaTKXQOUU8fOxlDxULsbLmKe9w==", "dev": true, - "license": "ISC", + "dependencies": { + "@babel/runtime": "^7.16.0", + "remove-accents": "^0.5.0" + }, "engines": { "node": ">=12" } }, - "node_modules/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "packages/iconography/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dev": true, "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/yjs": { - "version": "13.6.16", - "resolved": "https://registry.npmjs.org/yjs/-/yjs-13.6.16.tgz", - "integrity": "sha512-uEq+n/dFIecBElEdeQea8nDnltScBfuhCSyAxDw4CosveP9Ag0eW6iZi2mdpW7EgxSFT7VXK2MJl3tKaLTmhAQ==", + "packages/iconography/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, - "license": "MIT", "dependencies": { - "lib0": "^0.2.86" + "type-fest": "^0.20.2" }, "engines": { - "node": ">=16.0.0", - "npm": ">=8.0.0" + "node": ">=8" }, "funding": { - "type": "GitHub Sponsors ❤", - "url": "https://github.com/sponsors/dmonad" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "packages/iconography/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "engines": { "node": ">=10" @@ -22094,21 +27160,6 @@ "funding": { "url": "https://github.com/sponsors/sindresorhus" } - }, - "packages/iconography": { - "version": "1.0.0", - "license": "ISC", - "devDependencies": { - "@jest/globals": "^29.7.0", - "@testing-library/react": "^16.0.0", - "@wordpress/dom-ready": "^4.0.0", - "@wordpress/editor": "^14.1.0", - "@wordpress/icons": "^10.0.0", - "@wordpress/interface": "^6.0.0", - "@wordpress/scripts": "^28.1.0", - "react": "^18.2.0", - "type-coverage": "^2.29.0" - } } } } diff --git a/packages/editor-tools/composer.json b/packages/editor-tools/composer.json index 7d54404..b481ce0 100644 --- a/packages/editor-tools/composer.json +++ b/packages/editor-tools/composer.json @@ -1,6 +1,6 @@ { "name": "boxuk/wp-editor-tools", - "type": "wordpress-muplugin", + "type": "wordpress-plugin", "autoload": { "psr-4": { "Boxuk\\BoxWpEditorTools\\": "src" diff --git a/packages/iconography/README.md b/packages/iconography/README.md index 9acae6f..989dd0e 100644 --- a/packages/iconography/README.md +++ b/packages/iconography/README.md @@ -1,3 +1,82 @@ +# Box WordPress Iconography Support + +Add the ability to add icons inline to your content in the WordPress block editor. + +## Quick Start! +Add this plugin to your WordPress site and include a configuration file and it's ready to use! + +If you're using composer, then it's as simple as `composer require boxuk/wp-iconography`. + +## Configuration + +Configuration files are based on a schema that allows you to quickly define the configuration. +They're loaded automatically from `wp-content/themes/{theme_name}/icons/*.config.json`, or you can define any custom paths using the filter available: +```php +add_filter( + 'boxuk_iconography_files', + function ( $config_files ) { + $config_files['example'] = __DIR__ . '/config/example.config.json'; + return $config_files; + } +); +``` + +There's also example configuration files included in the plugin, so if you want to load **Material Symbols** you can just load the config included using this snippet: +```php +add_filter( + 'boxuk_iconography_files', + function ( $config_files ) { + $plugin_dir = WP_CONTENT_DIR . '/mu-plugins/wp-iconography'; // make sure this is valid for your project! + + + // Remove any unnecessary + $config_files['material-symbols-outlined'] = $plugin_dir . '/config/material-symbols-outlined.config.json'; + $config_files['material-symbols-outlined-filled'] = $plugin_dir . '/config/material-symbols-outlined-filled.config.json'; + $config_files['material-symbols-sharp'] = $plugin_dir . '/config/material-symbols-sharp.config.json'; + $config_files['material-symbols-sharp-filled'] = $plugin_dir . '/config/material-symbols-sharp-filled.config.json'; + $config_files['material-symbols-rounded'] = $plugin_dir . '/config/material-symbols-rounded.config.json'; + $config_files['material-symbols-rounded-filled'] = $plugin_dir . '/config/material-symbols-rounded-filled.config.json'; + return $config_files; + } +); +``` + +There's loads of filters available to change the way icons load, so feel free to look through the source code at the available filters. And if there's function that doesn't work for you, PRs are always welcome! + +## Configuration Schema + +The Schema for configuration includes: + - **Title** - the name output in the editor. + - **Name** - the unique key/name for the icon set. I'd recommend `namespace/name` format. + - **Tag Name** - this is the HTML tag that will be used to generate the output for the icon. + - **Class Name** - this is used to generate the output for the icon + - **URL** - the CSS file to load + - **Additional CSS** - any inline CSS to include that might be relevant. + - **Icons** - an array of: + - **Label** - the value to use in the admin interface. Used for searches and is displayed on hover. + - **Content** - the content inside the HTML generated. + +Sample JSON file: +```json +{ + "title": "Example", + "name": "boxuk/example", + "tagName": "span", + "className": "boxuk-icon-example", + "url": "...", + "additionalCSS": ".boxuk-icon-example { font-weight: 700; }", + "icons": [ + { "label": "Example", "content": "example-content" } + ] +} +``` + +Generated output: +```html +example-content +``` + +## Contributing Please do not submit any Pull Requests here. They will be closed. --- diff --git a/packages/iconography/composer.json b/packages/iconography/composer.json index c619771..684e87a 100644 --- a/packages/iconography/composer.json +++ b/packages/iconography/composer.json @@ -1,25 +1,32 @@ { "name": "boxuk/wp-iconography", "description": "Adds Material Icons to the Block Editor", - "type": "wordpress-muplugin", + "type": "wordpress-plugin", "require-dev": { "10up/wp_mock": "^1.0", "automattic/vipwpcs": "^3.0", "szepeviktor/phpstan-wordpress": "^1.3" }, "scripts": { - "phpunit": "phpunit", - "phpstan": "phpstan analyse --memory-limit=1G", - "phpcs": "phpcs", - "phpcbf": "phpcbf" - }, + "phpunit": "phpunit", + "phpstan": "phpstan analyse --memory-limit=1G", + "phpcs": "phpcs", + "phpcbf": "phpcbf" + }, "authors": [ { "name": "BoxUK", "email": "developers@boxuk.com" } ], - "require": {}, + "autoload": { + "psr-4": { + "Boxuk\\Iconography\\": "includes/" + } + }, + "require": { + "swaggest/json-schema": "^0.12" + }, "config": { "allow-plugins": { "dealerdirect/phpcodesniffer-composer-installer": true diff --git a/packages/iconography/config/material-symbols-outlined-filled.config.json b/packages/iconography/config/material-symbols-outlined-filled.config.json new file mode 100644 index 0000000..e6615bc --- /dev/null +++ b/packages/iconography/config/material-symbols-outlined-filled.config.json @@ -0,0 +1,13263 @@ +{ + "$schema": "../schema.json", + "title": "Outlined (Filled)", + "name": "boxuk/material-symbols-outlined-filled", + "tagName": "span", + "className": "material-symbols-outlined-filled", + "url": "https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200", + "additionalCss": ".material-symbols-outlined-filled { font-family: 'Material Symbols Outlined', sans-serif; font-size: inherit !important; vertical-align: text-bottom; line-height: 1.333; text-decoration: inherit; font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }", + "icons": [ + { + "label": "123", + "content": "123" + }, + { + "label": "360", + "content": "360" + }, + { + "label": "10k", + "content": "10k" + }, + { + "label": "10mp", + "content": "10mp" + }, + { + "label": "11mp", + "content": "11mp" + }, + { + "label": "12mp", + "content": "12mp" + }, + { + "label": "13mp", + "content": "13mp" + }, + { + "label": "14mp", + "content": "14mp" + }, + { + "label": "15mp", + "content": "15mp" + }, + { + "label": "16mp", + "content": "16mp" + }, + { + "label": "17mp", + "content": "17mp" + }, + { + "label": "18_up_rating", + "content": "18_up_rating" + }, + { + "label": "18mp", + "content": "18mp" + }, + { + "label": "19mp", + "content": "19mp" + }, + { + "label": "1k", + "content": "1k" + }, + { + "label": "1k_plus", + "content": "1k_plus" + }, + { + "label": "1x_mobiledata", + "content": "1x_mobiledata" + }, + { + "label": "1x_mobiledata_badge", + "content": "1x_mobiledata_badge" + }, + { + "label": "20mp", + "content": "20mp" + }, + { + "label": "21mp", + "content": "21mp" + }, + { + "label": "22mp", + "content": "22mp" + }, + { + "label": "23mp", + "content": "23mp" + }, + { + "label": "24mp", + "content": "24mp" + }, + { + "label": "2d", + "content": "2d" + }, + { + "label": "2k", + "content": "2k" + }, + { + "label": "2k_plus", + "content": "2k_plus" + }, + { + "label": "2mp", + "content": "2mp" + }, + { + "label": "30fps", + "content": "30fps" + }, + { + "label": "30fps_select", + "content": "30fps_select" + }, + { + "label": "3d_rotation", + "content": "3d_rotation" + }, + { + "label": "3g_mobiledata", + "content": "3g_mobiledata" + }, + { + "label": "3g_mobiledata_badge", + "content": "3g_mobiledata_badge" + }, + { + "label": "3k", + "content": "3k" + }, + { + "label": "3k_plus", + "content": "3k_plus" + }, + { + "label": "3mp", + "content": "3mp" + }, + { + "label": "3p", + "content": "3p" + }, + { + "label": "4g_mobiledata", + "content": "4g_mobiledata" + }, + { + "label": "4g_mobiledata_badge", + "content": "4g_mobiledata_badge" + }, + { + "label": "4g_plus_mobiledata", + "content": "4g_plus_mobiledata" + }, + { + "label": "4k", + "content": "4k" + }, + { + "label": "4k_plus", + "content": "4k_plus" + }, + { + "label": "4mp", + "content": "4mp" + }, + { + "label": "50mp", + "content": "50mp" + }, + { + "label": "5g", + "content": "5g" + }, + { + "label": "5g_mobiledata_badge", + "content": "5g_mobiledata_badge" + }, + { + "label": "5k", + "content": "5k" + }, + { + "label": "5k_plus", + "content": "5k_plus" + }, + { + "label": "5mp", + "content": "5mp" + }, + { + "label": "60fps", + "content": "60fps" + }, + { + "label": "60fps_select", + "content": "60fps_select" + }, + { + "label": "6_ft_apart", + "content": "6_ft_apart" + }, + { + "label": "6k", + "content": "6k" + }, + { + "label": "6k_plus", + "content": "6k_plus" + }, + { + "label": "6mp", + "content": "6mp" + }, + { + "label": "7k", + "content": "7k" + }, + { + "label": "7k_plus", + "content": "7k_plus" + }, + { + "label": "7mp", + "content": "7mp" + }, + { + "label": "8k", + "content": "8k" + }, + { + "label": "8k_plus", + "content": "8k_plus" + }, + { + "label": "8mp", + "content": "8mp" + }, + { + "label": "9k", + "content": "9k" + }, + { + "label": "9k_plus", + "content": "9k_plus" + }, + { + "label": "9mp", + "content": "9mp" + }, + { + "label": "abc", + "content": "abc" + }, + { + "label": "ac_unit", + "content": "ac_unit" + }, + { + "label": "accessibility", + "content": "accessibility" + }, + { + "label": "accessibility_new", + "content": "accessibility_new" + }, + { + "label": "accessible", + "content": "accessible" + }, + { + "label": "accessible_forward", + "content": "accessible_forward" + }, + { + "label": "account_balance", + "content": "account_balance" + }, + { + "label": "account_balance_wallet", + "content": "account_balance_wallet" + }, + { + "label": "account_box", + "content": "account_box" + }, + { + "label": "account_child", + "content": "account_child" + }, + { + "label": "account_child_invert", + "content": "account_child_invert" + }, + { + "label": "account_circle", + "content": "account_circle" + }, + { + "label": "account_circle_off", + "content": "account_circle_off" + }, + { + "label": "account_tree", + "content": "account_tree" + }, + { + "label": "action_key", + "content": "action_key" + }, + { + "label": "activity_zone", + "content": "activity_zone" + }, + { + "label": "acute", + "content": "acute" + }, + { + "label": "ad", + "content": "ad" + }, + { + "label": "ad_group", + "content": "ad_group" + }, + { + "label": "ad_group_off", + "content": "ad_group_off" + }, + { + "label": "ad_off", + "content": "ad_off" + }, + { + "label": "ad_units", + "content": "ad_units" + }, + { + "label": "adaptive_audio_mic", + "content": "adaptive_audio_mic" + }, + { + "label": "adaptive_audio_mic_off", + "content": "adaptive_audio_mic_off" + }, + { + "label": "adb", + "content": "adb" + }, + { + "label": "add", + "content": "add" + }, + { + "label": "add_a_photo", + "content": "add_a_photo" + }, + { + "label": "add_ad", + "content": "add_ad" + }, + { + "label": "add_alert", + "content": "add_alert" + }, + { + "label": "add_box", + "content": "add_box" + }, + { + "label": "add_business", + "content": "add_business" + }, + { + "label": "add_call", + "content": "add_call" + }, + { + "label": "add_card", + "content": "add_card" + }, + { + "label": "add_chart", + "content": "add_chart" + }, + { + "label": "add_circle", + "content": "add_circle" + }, + { + "label": "add_comment", + "content": "add_comment" + }, + { + "label": "add_diamond", + "content": "add_diamond" + }, + { + "label": "add_home", + "content": "add_home" + }, + { + "label": "add_home_work", + "content": "add_home_work" + }, + { + "label": "add_link", + "content": "add_link" + }, + { + "label": "add_location", + "content": "add_location" + }, + { + "label": "add_location_alt", + "content": "add_location_alt" + }, + { + "label": "add_moderator", + "content": "add_moderator" + }, + { + "label": "add_notes", + "content": "add_notes" + }, + { + "label": "add_photo_alternate", + "content": "add_photo_alternate" + }, + { + "label": "add_reaction", + "content": "add_reaction" + }, + { + "label": "add_road", + "content": "add_road" + }, + { + "label": "add_shopping_cart", + "content": "add_shopping_cart" + }, + { + "label": "add_task", + "content": "add_task" + }, + { + "label": "add_to_drive", + "content": "add_to_drive" + }, + { + "label": "add_to_home_screen", + "content": "add_to_home_screen" + }, + { + "label": "add_to_photos", + "content": "add_to_photos" + }, + { + "label": "add_to_queue", + "content": "add_to_queue" + }, + { + "label": "add_triangle", + "content": "add_triangle" + }, + { + "label": "adf_scanner", + "content": "adf_scanner" + }, + { + "label": "adjust", + "content": "adjust" + }, + { + "label": "admin_meds", + "content": "admin_meds" + }, + { + "label": "admin_panel_settings", + "content": "admin_panel_settings" + }, + { + "label": "ads_click", + "content": "ads_click" + }, + { + "label": "agender", + "content": "agender" + }, + { + "label": "agriculture", + "content": "agriculture" + }, + { + "label": "air", + "content": "air" + }, + { + "label": "air_freshener", + "content": "air_freshener" + }, + { + "label": "air_purifier", + "content": "air_purifier" + }, + { + "label": "air_purifier_gen", + "content": "air_purifier_gen" + }, + { + "label": "airline_seat_flat", + "content": "airline_seat_flat" + }, + { + "label": "airline_seat_flat_angled", + "content": "airline_seat_flat_angled" + }, + { + "label": "airline_seat_individual_suite", + "content": "airline_seat_individual_suite" + }, + { + "label": "airline_seat_legroom_extra", + "content": "airline_seat_legroom_extra" + }, + { + "label": "airline_seat_legroom_normal", + "content": "airline_seat_legroom_normal" + }, + { + "label": "airline_seat_legroom_reduced", + "content": "airline_seat_legroom_reduced" + }, + { + "label": "airline_seat_recline_extra", + "content": "airline_seat_recline_extra" + }, + { + "label": "airline_seat_recline_normal", + "content": "airline_seat_recline_normal" + }, + { + "label": "airline_stops", + "content": "airline_stops" + }, + { + "label": "airlines", + "content": "airlines" + }, + { + "label": "airplane_ticket", + "content": "airplane_ticket" + }, + { + "label": "airplanemode_active", + "content": "airplanemode_active" + }, + { + "label": "airplanemode_inactive", + "content": "airplanemode_inactive" + }, + { + "label": "airplay", + "content": "airplay" + }, + { + "label": "airport_shuttle", + "content": "airport_shuttle" + }, + { + "label": "airware", + "content": "airware" + }, + { + "label": "airwave", + "content": "airwave" + }, + { + "label": "alarm", + "content": "alarm" + }, + { + "label": "alarm_add", + "content": "alarm_add" + }, + { + "label": "alarm_off", + "content": "alarm_off" + }, + { + "label": "alarm_on", + "content": "alarm_on" + }, + { + "label": "alarm_smart_wake", + "content": "alarm_smart_wake" + }, + { + "label": "album", + "content": "album" + }, + { + "label": "align_center", + "content": "align_center" + }, + { + "label": "align_end", + "content": "align_end" + }, + { + "label": "align_flex_center", + "content": "align_flex_center" + }, + { + "label": "align_flex_end", + "content": "align_flex_end" + }, + { + "label": "align_flex_start", + "content": "align_flex_start" + }, + { + "label": "align_horizontal_center", + "content": "align_horizontal_center" + }, + { + "label": "align_horizontal_left", + "content": "align_horizontal_left" + }, + { + "label": "align_horizontal_right", + "content": "align_horizontal_right" + }, + { + "label": "align_items_stretch", + "content": "align_items_stretch" + }, + { + "label": "align_justify_center", + "content": "align_justify_center" + }, + { + "label": "align_justify_flex_end", + "content": "align_justify_flex_end" + }, + { + "label": "align_justify_flex_start", + "content": "align_justify_flex_start" + }, + { + "label": "align_justify_space_around", + "content": "align_justify_space_around" + }, + { + "label": "align_justify_space_between", + "content": "align_justify_space_between" + }, + { + "label": "align_justify_space_even", + "content": "align_justify_space_even" + }, + { + "label": "align_justify_stretch", + "content": "align_justify_stretch" + }, + { + "label": "align_self_stretch", + "content": "align_self_stretch" + }, + { + "label": "align_space_around", + "content": "align_space_around" + }, + { + "label": "align_space_between", + "content": "align_space_between" + }, + { + "label": "align_space_even", + "content": "align_space_even" + }, + { + "label": "align_start", + "content": "align_start" + }, + { + "label": "align_stretch", + "content": "align_stretch" + }, + { + "label": "align_vertical_bottom", + "content": "align_vertical_bottom" + }, + { + "label": "align_vertical_center", + "content": "align_vertical_center" + }, + { + "label": "align_vertical_top", + "content": "align_vertical_top" + }, + { + "label": "all_inbox", + "content": "all_inbox" + }, + { + "label": "all_inclusive", + "content": "all_inclusive" + }, + { + "label": "all_match", + "content": "all_match" + }, + { + "label": "all_out", + "content": "all_out" + }, + { + "label": "allergies", + "content": "allergies" + }, + { + "label": "allergy", + "content": "allergy" + }, + { + "label": "alt_route", + "content": "alt_route" + }, + { + "label": "alternate_email", + "content": "alternate_email" + }, + { + "label": "altitude", + "content": "altitude" + }, + { + "label": "ambulance", + "content": "ambulance" + }, + { + "label": "amend", + "content": "amend" + }, + { + "label": "amp_stories", + "content": "amp_stories" + }, + { + "label": "analytics", + "content": "analytics" + }, + { + "label": "anchor", + "content": "anchor" + }, + { + "label": "android", + "content": "android" + }, + { + "label": "animated_images", + "content": "animated_images" + }, + { + "label": "animation", + "content": "animation" + }, + { + "label": "aod", + "content": "aod" + }, + { + "label": "aod_tablet", + "content": "aod_tablet" + }, + { + "label": "aod_watch", + "content": "aod_watch" + }, + { + "label": "apartment", + "content": "apartment" + }, + { + "label": "api", + "content": "api" + }, + { + "label": "apk_document", + "content": "apk_document" + }, + { + "label": "apk_install", + "content": "apk_install" + }, + { + "label": "app_badging", + "content": "app_badging" + }, + { + "label": "app_blocking", + "content": "app_blocking" + }, + { + "label": "app_promo", + "content": "app_promo" + }, + { + "label": "app_registration", + "content": "app_registration" + }, + { + "label": "app_shortcut", + "content": "app_shortcut" + }, + { + "label": "apparel", + "content": "apparel" + }, + { + "label": "approval", + "content": "approval" + }, + { + "label": "approval_delegation", + "content": "approval_delegation" + }, + { + "label": "apps", + "content": "apps" + }, + { + "label": "apps_outage", + "content": "apps_outage" + }, + { + "label": "aq", + "content": "aq" + }, + { + "label": "aq_indoor", + "content": "aq_indoor" + }, + { + "label": "ar_on_you", + "content": "ar_on_you" + }, + { + "label": "ar_stickers", + "content": "ar_stickers" + }, + { + "label": "architecture", + "content": "architecture" + }, + { + "label": "archive", + "content": "archive" + }, + { + "label": "area_chart", + "content": "area_chart" + }, + { + "label": "arming_countdown", + "content": "arming_countdown" + }, + { + "label": "arrow_and_edge", + "content": "arrow_and_edge" + }, + { + "label": "arrow_back", + "content": "arrow_back" + }, + { + "label": "arrow_back_ios", + "content": "arrow_back_ios" + }, + { + "label": "arrow_circle_down", + "content": "arrow_circle_down" + }, + { + "label": "arrow_circle_left", + "content": "arrow_circle_left" + }, + { + "label": "arrow_circle_right", + "content": "arrow_circle_right" + }, + { + "label": "arrow_circle_up", + "content": "arrow_circle_up" + }, + { + "label": "arrow_cool_down", + "content": "arrow_cool_down" + }, + { + "label": "arrow_downward", + "content": "arrow_downward" + }, + { + "label": "arrow_downward_alt", + "content": "arrow_downward_alt" + }, + { + "label": "arrow_drop_down", + "content": "arrow_drop_down" + }, + { + "label": "arrow_drop_down_circle", + "content": "arrow_drop_down_circle" + }, + { + "label": "arrow_drop_up", + "content": "arrow_drop_up" + }, + { + "label": "arrow_forward", + "content": "arrow_forward" + }, + { + "label": "arrow_forward_ios", + "content": "arrow_forward_ios" + }, + { + "label": "arrow_insert", + "content": "arrow_insert" + }, + { + "label": "arrow_left", + "content": "arrow_left" + }, + { + "label": "arrow_left_alt", + "content": "arrow_left_alt" + }, + { + "label": "arrow_or_edge", + "content": "arrow_or_edge" + }, + { + "label": "arrow_outward", + "content": "arrow_outward" + }, + { + "label": "arrow_range", + "content": "arrow_range" + }, + { + "label": "arrow_right", + "content": "arrow_right" + }, + { + "label": "arrow_right_alt", + "content": "arrow_right_alt" + }, + { + "label": "arrow_selector_tool", + "content": "arrow_selector_tool" + }, + { + "label": "arrow_split", + "content": "arrow_split" + }, + { + "label": "arrow_top_left", + "content": "arrow_top_left" + }, + { + "label": "arrow_top_right", + "content": "arrow_top_right" + }, + { + "label": "arrow_upward", + "content": "arrow_upward" + }, + { + "label": "arrow_upward_alt", + "content": "arrow_upward_alt" + }, + { + "label": "arrow_warm_up", + "content": "arrow_warm_up" + }, + { + "label": "arrows_more_down", + "content": "arrows_more_down" + }, + { + "label": "arrows_more_up", + "content": "arrows_more_up" + }, + { + "label": "arrows_outward", + "content": "arrows_outward" + }, + { + "label": "art_track", + "content": "art_track" + }, + { + "label": "article", + "content": "article" + }, + { + "label": "article_shortcut", + "content": "article_shortcut" + }, + { + "label": "artist", + "content": "artist" + }, + { + "label": "aspect_ratio", + "content": "aspect_ratio" + }, + { + "label": "assignment", + "content": "assignment" + }, + { + "label": "assignment_add", + "content": "assignment_add" + }, + { + "label": "assignment_ind", + "content": "assignment_ind" + }, + { + "label": "assignment_late", + "content": "assignment_late" + }, + { + "label": "assignment_return", + "content": "assignment_return" + }, + { + "label": "assignment_returned", + "content": "assignment_returned" + }, + { + "label": "assignment_turned_in", + "content": "assignment_turned_in" + }, + { + "label": "assist_walker", + "content": "assist_walker" + }, + { + "label": "assistant_device", + "content": "assistant_device" + }, + { + "label": "assistant_direction", + "content": "assistant_direction" + }, + { + "label": "assistant_navigation", + "content": "assistant_navigation" + }, + { + "label": "assistant_on_hub", + "content": "assistant_on_hub" + }, + { + "label": "assured_workload", + "content": "assured_workload" + }, + { + "label": "asterisk", + "content": "asterisk" + }, + { + "label": "atm", + "content": "atm" + }, + { + "label": "atr", + "content": "atr" + }, + { + "label": "attach_email", + "content": "attach_email" + }, + { + "label": "attach_file", + "content": "attach_file" + }, + { + "label": "attach_file_add", + "content": "attach_file_add" + }, + { + "label": "attach_file_off", + "content": "attach_file_off" + }, + { + "label": "attach_money", + "content": "attach_money" + }, + { + "label": "attachment", + "content": "attachment" + }, + { + "label": "attractions", + "content": "attractions" + }, + { + "label": "attribution", + "content": "attribution" + }, + { + "label": "audio_description", + "content": "audio_description" + }, + { + "label": "audio_file", + "content": "audio_file" + }, + { + "label": "audio_video_receiver", + "content": "audio_video_receiver" + }, + { + "label": "auto_awesome_mosaic", + "content": "auto_awesome_mosaic" + }, + { + "label": "auto_awesome_motion", + "content": "auto_awesome_motion" + }, + { + "label": "auto_delete", + "content": "auto_delete" + }, + { + "label": "auto_read_pause", + "content": "auto_read_pause" + }, + { + "label": "auto_read_play", + "content": "auto_read_play" + }, + { + "label": "auto_stories", + "content": "auto_stories" + }, + { + "label": "auto_towing", + "content": "auto_towing" + }, + { + "label": "auto_transmission", + "content": "auto_transmission" + }, + { + "label": "autofps_select", + "content": "autofps_select" + }, + { + "label": "autopause", + "content": "autopause" + }, + { + "label": "autoplay", + "content": "autoplay" + }, + { + "label": "autorenew", + "content": "autorenew" + }, + { + "label": "autostop", + "content": "autostop" + }, + { + "label": "av1", + "content": "av1" + }, + { + "label": "av_timer", + "content": "av_timer" + }, + { + "label": "avc", + "content": "avc" + }, + { + "label": "avg_pace", + "content": "avg_pace" + }, + { + "label": "avg_time", + "content": "avg_time" + }, + { + "label": "award_star", + "content": "award_star" + }, + { + "label": "azm", + "content": "azm" + }, + { + "label": "baby_changing_station", + "content": "baby_changing_station" + }, + { + "label": "back_hand", + "content": "back_hand" + }, + { + "label": "back_to_tab", + "content": "back_to_tab" + }, + { + "label": "background_dot_large", + "content": "background_dot_large" + }, + { + "label": "background_dot_small", + "content": "background_dot_small" + }, + { + "label": "background_grid_small", + "content": "background_grid_small" + }, + { + "label": "background_replace", + "content": "background_replace" + }, + { + "label": "backlight_high", + "content": "backlight_high" + }, + { + "label": "backlight_high_off", + "content": "backlight_high_off" + }, + { + "label": "backlight_low", + "content": "backlight_low" + }, + { + "label": "backpack", + "content": "backpack" + }, + { + "label": "backspace", + "content": "backspace" + }, + { + "label": "backup", + "content": "backup" + }, + { + "label": "backup_table", + "content": "backup_table" + }, + { + "label": "badge", + "content": "badge" + }, + { + "label": "badge_critical_battery", + "content": "badge_critical_battery" + }, + { + "label": "bakery_dining", + "content": "bakery_dining" + }, + { + "label": "balance", + "content": "balance" + }, + { + "label": "balcony", + "content": "balcony" + }, + { + "label": "ballot", + "content": "ballot" + }, + { + "label": "bar_chart", + "content": "bar_chart" + }, + { + "label": "bar_chart_4_bars", + "content": "bar_chart_4_bars" + }, + { + "label": "barcode", + "content": "barcode" + }, + { + "label": "barcode_reader", + "content": "barcode_reader" + }, + { + "label": "barcode_scanner", + "content": "barcode_scanner" + }, + { + "label": "barefoot", + "content": "barefoot" + }, + { + "label": "batch_prediction", + "content": "batch_prediction" + }, + { + "label": "bath_outdoor", + "content": "bath_outdoor" + }, + { + "label": "bath_private", + "content": "bath_private" + }, + { + "label": "bath_public_large", + "content": "bath_public_large" + }, + { + "label": "bathroom", + "content": "bathroom" + }, + { + "label": "bathtub", + "content": "bathtub" + }, + { + "label": "battery_0_bar", + "content": "battery_0_bar" + }, + { + "label": "battery_1_bar", + "content": "battery_1_bar" + }, + { + "label": "battery_2_bar", + "content": "battery_2_bar" + }, + { + "label": "battery_3_bar", + "content": "battery_3_bar" + }, + { + "label": "battery_4_bar", + "content": "battery_4_bar" + }, + { + "label": "battery_5_bar", + "content": "battery_5_bar" + }, + { + "label": "battery_6_bar", + "content": "battery_6_bar" + }, + { + "label": "battery_alert", + "content": "battery_alert" + }, + { + "label": "battery_change", + "content": "battery_change" + }, + { + "label": "battery_charging_20", + "content": "battery_charging_20" + }, + { + "label": "battery_charging_30", + "content": "battery_charging_30" + }, + { + "label": "battery_charging_50", + "content": "battery_charging_50" + }, + { + "label": "battery_charging_60", + "content": "battery_charging_60" + }, + { + "label": "battery_charging_80", + "content": "battery_charging_80" + }, + { + "label": "battery_charging_90", + "content": "battery_charging_90" + }, + { + "label": "battery_charging_full", + "content": "battery_charging_full" + }, + { + "label": "battery_error", + "content": "battery_error" + }, + { + "label": "battery_full", + "content": "battery_full" + }, + { + "label": "battery_full_alt", + "content": "battery_full_alt" + }, + { + "label": "battery_horiz_000", + "content": "battery_horiz_000" + }, + { + "label": "battery_horiz_050", + "content": "battery_horiz_050" + }, + { + "label": "battery_horiz_075", + "content": "battery_horiz_075" + }, + { + "label": "battery_low", + "content": "battery_low" + }, + { + "label": "battery_plus", + "content": "battery_plus" + }, + { + "label": "battery_profile", + "content": "battery_profile" + }, + { + "label": "battery_saver", + "content": "battery_saver" + }, + { + "label": "battery_share", + "content": "battery_share" + }, + { + "label": "battery_status_good", + "content": "battery_status_good" + }, + { + "label": "battery_unknown", + "content": "battery_unknown" + }, + { + "label": "battery_very_low", + "content": "battery_very_low" + }, + { + "label": "beach_access", + "content": "beach_access" + }, + { + "label": "bed", + "content": "bed" + }, + { + "label": "bedroom_baby", + "content": "bedroom_baby" + }, + { + "label": "bedroom_child", + "content": "bedroom_child" + }, + { + "label": "bedroom_parent", + "content": "bedroom_parent" + }, + { + "label": "bedtime", + "content": "bedtime" + }, + { + "label": "bedtime_off", + "content": "bedtime_off" + }, + { + "label": "beenhere", + "content": "beenhere" + }, + { + "label": "bento", + "content": "bento" + }, + { + "label": "bia", + "content": "bia" + }, + { + "label": "bid_landscape", + "content": "bid_landscape" + }, + { + "label": "bid_landscape_disabled", + "content": "bid_landscape_disabled" + }, + { + "label": "bigtop_updates", + "content": "bigtop_updates" + }, + { + "label": "bike_dock", + "content": "bike_dock" + }, + { + "label": "bike_lane", + "content": "bike_lane" + }, + { + "label": "bike_scooter", + "content": "bike_scooter" + }, + { + "label": "biotech", + "content": "biotech" + }, + { + "label": "blanket", + "content": "blanket" + }, + { + "label": "blender", + "content": "blender" + }, + { + "label": "blind", + "content": "blind" + }, + { + "label": "blinds", + "content": "blinds" + }, + { + "label": "blinds_closed", + "content": "blinds_closed" + }, + { + "label": "block", + "content": "block" + }, + { + "label": "blood_pressure", + "content": "blood_pressure" + }, + { + "label": "bloodtype", + "content": "bloodtype" + }, + { + "label": "bluetooth", + "content": "bluetooth" + }, + { + "label": "bluetooth_connected", + "content": "bluetooth_connected" + }, + { + "label": "bluetooth_disabled", + "content": "bluetooth_disabled" + }, + { + "label": "bluetooth_drive", + "content": "bluetooth_drive" + }, + { + "label": "bluetooth_searching", + "content": "bluetooth_searching" + }, + { + "label": "blur_circular", + "content": "blur_circular" + }, + { + "label": "blur_linear", + "content": "blur_linear" + }, + { + "label": "blur_medium", + "content": "blur_medium" + }, + { + "label": "blur_off", + "content": "blur_off" + }, + { + "label": "blur_on", + "content": "blur_on" + }, + { + "label": "blur_short", + "content": "blur_short" + }, + { + "label": "body_fat", + "content": "body_fat" + }, + { + "label": "body_system", + "content": "body_system" + }, + { + "label": "bolt", + "content": "bolt" + }, + { + "label": "bomb", + "content": "bomb" + }, + { + "label": "book", + "content": "book" + }, + { + "label": "book_2", + "content": "book_2" + }, + { + "label": "book_3", + "content": "book_3" + }, + { + "label": "book_4", + "content": "book_4" + }, + { + "label": "book_5", + "content": "book_5" + }, + { + "label": "book_online", + "content": "book_online" + }, + { + "label": "bookmark", + "content": "bookmark" + }, + { + "label": "bookmark_add", + "content": "bookmark_add" + }, + { + "label": "bookmark_added", + "content": "bookmark_added" + }, + { + "label": "bookmark_check", + "content": "bookmark_check" + }, + { + "label": "bookmark_flag", + "content": "bookmark_flag" + }, + { + "label": "bookmark_heart", + "content": "bookmark_heart" + }, + { + "label": "bookmark_manager", + "content": "bookmark_manager" + }, + { + "label": "bookmark_remove", + "content": "bookmark_remove" + }, + { + "label": "bookmark_star", + "content": "bookmark_star" + }, + { + "label": "bookmarks", + "content": "bookmarks" + }, + { + "label": "border_all", + "content": "border_all" + }, + { + "label": "border_bottom", + "content": "border_bottom" + }, + { + "label": "border_clear", + "content": "border_clear" + }, + { + "label": "border_color", + "content": "border_color" + }, + { + "label": "border_horizontal", + "content": "border_horizontal" + }, + { + "label": "border_inner", + "content": "border_inner" + }, + { + "label": "border_left", + "content": "border_left" + }, + { + "label": "border_outer", + "content": "border_outer" + }, + { + "label": "border_right", + "content": "border_right" + }, + { + "label": "border_style", + "content": "border_style" + }, + { + "label": "border_top", + "content": "border_top" + }, + { + "label": "border_vertical", + "content": "border_vertical" + }, + { + "label": "bottom_app_bar", + "content": "bottom_app_bar" + }, + { + "label": "bottom_drawer", + "content": "bottom_drawer" + }, + { + "label": "bottom_navigation", + "content": "bottom_navigation" + }, + { + "label": "bottom_panel_close", + "content": "bottom_panel_close" + }, + { + "label": "bottom_panel_open", + "content": "bottom_panel_open" + }, + { + "label": "bottom_right_click", + "content": "bottom_right_click" + }, + { + "label": "bottom_sheets", + "content": "bottom_sheets" + }, + { + "label": "box", + "content": "box" + }, + { + "label": "box_add", + "content": "box_add" + }, + { + "label": "box_edit", + "content": "box_edit" + }, + { + "label": "boy", + "content": "boy" + }, + { + "label": "brand_awareness", + "content": "brand_awareness" + }, + { + "label": "brand_family", + "content": "brand_family" + }, + { + "label": "branding_watermark", + "content": "branding_watermark" + }, + { + "label": "breakfast_dining", + "content": "breakfast_dining" + }, + { + "label": "breaking_news", + "content": "breaking_news" + }, + { + "label": "breaking_news_alt_1", + "content": "breaking_news_alt_1" + }, + { + "label": "breastfeeding", + "content": "breastfeeding" + }, + { + "label": "brightness_1", + "content": "brightness_1" + }, + { + "label": "brightness_2", + "content": "brightness_2" + }, + { + "label": "brightness_3", + "content": "brightness_3" + }, + { + "label": "brightness_4", + "content": "brightness_4" + }, + { + "label": "brightness_5", + "content": "brightness_5" + }, + { + "label": "brightness_6", + "content": "brightness_6" + }, + { + "label": "brightness_7", + "content": "brightness_7" + }, + { + "label": "brightness_alert", + "content": "brightness_alert" + }, + { + "label": "brightness_auto", + "content": "brightness_auto" + }, + { + "label": "brightness_empty", + "content": "brightness_empty" + }, + { + "label": "brightness_high", + "content": "brightness_high" + }, + { + "label": "brightness_low", + "content": "brightness_low" + }, + { + "label": "brightness_medium", + "content": "brightness_medium" + }, + { + "label": "bring_your_own_ip", + "content": "bring_your_own_ip" + }, + { + "label": "broadcast_on_home", + "content": "broadcast_on_home" + }, + { + "label": "broadcast_on_personal", + "content": "broadcast_on_personal" + }, + { + "label": "broken_image", + "content": "broken_image" + }, + { + "label": "browse", + "content": "browse" + }, + { + "label": "browse_activity", + "content": "browse_activity" + }, + { + "label": "browse_gallery", + "content": "browse_gallery" + }, + { + "label": "browser_updated", + "content": "browser_updated" + }, + { + "label": "brunch_dining", + "content": "brunch_dining" + }, + { + "label": "brush", + "content": "brush" + }, + { + "label": "bubble", + "content": "bubble" + }, + { + "label": "bubble_chart", + "content": "bubble_chart" + }, + { + "label": "bubbles", + "content": "bubbles" + }, + { + "label": "bug_report", + "content": "bug_report" + }, + { + "label": "build", + "content": "build" + }, + { + "label": "build_circle", + "content": "build_circle" + }, + { + "label": "bungalow", + "content": "bungalow" + }, + { + "label": "burst_mode", + "content": "burst_mode" + }, + { + "label": "bus_alert", + "content": "bus_alert" + }, + { + "label": "business_center", + "content": "business_center" + }, + { + "label": "business_chip", + "content": "business_chip" + }, + { + "label": "business_messages", + "content": "business_messages" + }, + { + "label": "buttons_alt", + "content": "buttons_alt" + }, + { + "label": "cabin", + "content": "cabin" + }, + { + "label": "cable", + "content": "cable" + }, + { + "label": "cable_car", + "content": "cable_car" + }, + { + "label": "cached", + "content": "cached" + }, + { + "label": "cadence", + "content": "cadence" + }, + { + "label": "cake", + "content": "cake" + }, + { + "label": "cake_add", + "content": "cake_add" + }, + { + "label": "calculate", + "content": "calculate" + }, + { + "label": "calendar_add_on", + "content": "calendar_add_on" + }, + { + "label": "calendar_apps_script", + "content": "calendar_apps_script" + }, + { + "label": "calendar_clock", + "content": "calendar_clock" + }, + { + "label": "calendar_month", + "content": "calendar_month" + }, + { + "label": "calendar_today", + "content": "calendar_today" + }, + { + "label": "calendar_view_day", + "content": "calendar_view_day" + }, + { + "label": "calendar_view_month", + "content": "calendar_view_month" + }, + { + "label": "calendar_view_week", + "content": "calendar_view_week" + }, + { + "label": "call", + "content": "call" + }, + { + "label": "call_end", + "content": "call_end" + }, + { + "label": "call_log", + "content": "call_log" + }, + { + "label": "call_made", + "content": "call_made" + }, + { + "label": "call_merge", + "content": "call_merge" + }, + { + "label": "call_missed", + "content": "call_missed" + }, + { + "label": "call_missed_outgoing", + "content": "call_missed_outgoing" + }, + { + "label": "call_quality", + "content": "call_quality" + }, + { + "label": "call_received", + "content": "call_received" + }, + { + "label": "call_split", + "content": "call_split" + }, + { + "label": "call_to_action", + "content": "call_to_action" + }, + { + "label": "camera", + "content": "camera" + }, + { + "label": "camera_front", + "content": "camera_front" + }, + { + "label": "camera_indoor", + "content": "camera_indoor" + }, + { + "label": "camera_outdoor", + "content": "camera_outdoor" + }, + { + "label": "camera_rear", + "content": "camera_rear" + }, + { + "label": "camera_roll", + "content": "camera_roll" + }, + { + "label": "camera_video", + "content": "camera_video" + }, + { + "label": "cameraswitch", + "content": "cameraswitch" + }, + { + "label": "campaign", + "content": "campaign" + }, + { + "label": "camping", + "content": "camping" + }, + { + "label": "cancel", + "content": "cancel" + }, + { + "label": "cancel_presentation", + "content": "cancel_presentation" + }, + { + "label": "cancel_schedule_send", + "content": "cancel_schedule_send" + }, + { + "label": "candle", + "content": "candle" + }, + { + "label": "candlestick_chart", + "content": "candlestick_chart" + }, + { + "label": "captive_portal", + "content": "captive_portal" + }, + { + "label": "capture", + "content": "capture" + }, + { + "label": "car_crash", + "content": "car_crash" + }, + { + "label": "car_rental", + "content": "car_rental" + }, + { + "label": "car_repair", + "content": "car_repair" + }, + { + "label": "car_tag", + "content": "car_tag" + }, + { + "label": "card_membership", + "content": "card_membership" + }, + { + "label": "card_travel", + "content": "card_travel" + }, + { + "label": "cardio_load", + "content": "cardio_load" + }, + { + "label": "cardiology", + "content": "cardiology" + }, + { + "label": "cards", + "content": "cards" + }, + { + "label": "carpenter", + "content": "carpenter" + }, + { + "label": "carry_on_bag", + "content": "carry_on_bag" + }, + { + "label": "carry_on_bag_checked", + "content": "carry_on_bag_checked" + }, + { + "label": "carry_on_bag_inactive", + "content": "carry_on_bag_inactive" + }, + { + "label": "carry_on_bag_question", + "content": "carry_on_bag_question" + }, + { + "label": "cases", + "content": "cases" + }, + { + "label": "casino", + "content": "casino" + }, + { + "label": "cast", + "content": "cast" + }, + { + "label": "cast_connected", + "content": "cast_connected" + }, + { + "label": "cast_for_education", + "content": "cast_for_education" + }, + { + "label": "cast_pause", + "content": "cast_pause" + }, + { + "label": "cast_warning", + "content": "cast_warning" + }, + { + "label": "castle", + "content": "castle" + }, + { + "label": "category", + "content": "category" + }, + { + "label": "celebration", + "content": "celebration" + }, + { + "label": "cell_merge", + "content": "cell_merge" + }, + { + "label": "cell_tower", + "content": "cell_tower" + }, + { + "label": "cell_wifi", + "content": "cell_wifi" + }, + { + "label": "center_focus_strong", + "content": "center_focus_strong" + }, + { + "label": "center_focus_weak", + "content": "center_focus_weak" + }, + { + "label": "chair", + "content": "chair" + }, + { + "label": "chair_alt", + "content": "chair_alt" + }, + { + "label": "chalet", + "content": "chalet" + }, + { + "label": "change_circle", + "content": "change_circle" + }, + { + "label": "change_history", + "content": "change_history" + }, + { + "label": "charger", + "content": "charger" + }, + { + "label": "charging_station", + "content": "charging_station" + }, + { + "label": "chart_data", + "content": "chart_data" + }, + { + "label": "chat", + "content": "chat" + }, + { + "label": "chat_add_on", + "content": "chat_add_on" + }, + { + "label": "chat_apps_script", + "content": "chat_apps_script" + }, + { + "label": "chat_bubble", + "content": "chat_bubble" + }, + { + "label": "chat_error", + "content": "chat_error" + }, + { + "label": "chat_info", + "content": "chat_info" + }, + { + "label": "chat_paste_go", + "content": "chat_paste_go" + }, + { + "label": "check", + "content": "check" + }, + { + "label": "check_box", + "content": "check_box" + }, + { + "label": "check_box_outline_blank", + "content": "check_box_outline_blank" + }, + { + "label": "check_circle", + "content": "check_circle" + }, + { + "label": "check_in_out", + "content": "check_in_out" + }, + { + "label": "check_indeterminate_small", + "content": "check_indeterminate_small" + }, + { + "label": "check_small", + "content": "check_small" + }, + { + "label": "checkbook", + "content": "checkbook" + }, + { + "label": "checked_bag", + "content": "checked_bag" + }, + { + "label": "checked_bag_question", + "content": "checked_bag_question" + }, + { + "label": "checklist", + "content": "checklist" + }, + { + "label": "checklist_rtl", + "content": "checklist_rtl" + }, + { + "label": "checkroom", + "content": "checkroom" + }, + { + "label": "cheer", + "content": "cheer" + }, + { + "label": "chess", + "content": "chess" + }, + { + "label": "chevron_backward", + "content": "chevron_backward" + }, + { + "label": "chevron_forward", + "content": "chevron_forward" + }, + { + "label": "chevron_left", + "content": "chevron_left" + }, + { + "label": "chevron_right", + "content": "chevron_right" + }, + { + "label": "child_care", + "content": "child_care" + }, + { + "label": "child_friendly", + "content": "child_friendly" + }, + { + "label": "chip_extraction", + "content": "chip_extraction" + }, + { + "label": "chips", + "content": "chips" + }, + { + "label": "chrome_reader_mode", + "content": "chrome_reader_mode" + }, + { + "label": "chromecast_2", + "content": "chromecast_2" + }, + { + "label": "chromecast_device", + "content": "chromecast_device" + }, + { + "label": "chronic", + "content": "chronic" + }, + { + "label": "church", + "content": "church" + }, + { + "label": "cinematic_blur", + "content": "cinematic_blur" + }, + { + "label": "circle", + "content": "circle" + }, + { + "label": "circle_notifications", + "content": "circle_notifications" + }, + { + "label": "circles", + "content": "circles" + }, + { + "label": "circles_ext", + "content": "circles_ext" + }, + { + "label": "clarify", + "content": "clarify" + }, + { + "label": "clean_hands", + "content": "clean_hands" + }, + { + "label": "cleaning", + "content": "cleaning" + }, + { + "label": "cleaning_bucket", + "content": "cleaning_bucket" + }, + { + "label": "cleaning_services", + "content": "cleaning_services" + }, + { + "label": "clear_all", + "content": "clear_all" + }, + { + "label": "clear_day", + "content": "clear_day" + }, + { + "label": "clear_night", + "content": "clear_night" + }, + { + "label": "climate_mini_split", + "content": "climate_mini_split" + }, + { + "label": "clinical_notes", + "content": "clinical_notes" + }, + { + "label": "clock_loader_10", + "content": "clock_loader_10" + }, + { + "label": "clock_loader_20", + "content": "clock_loader_20" + }, + { + "label": "clock_loader_40", + "content": "clock_loader_40" + }, + { + "label": "clock_loader_60", + "content": "clock_loader_60" + }, + { + "label": "clock_loader_80", + "content": "clock_loader_80" + }, + { + "label": "clock_loader_90", + "content": "clock_loader_90" + }, + { + "label": "close", + "content": "close" + }, + { + "label": "close_fullscreen", + "content": "close_fullscreen" + }, + { + "label": "close_small", + "content": "close_small" + }, + { + "label": "closed_caption", + "content": "closed_caption" + }, + { + "label": "closed_caption_add", + "content": "closed_caption_add" + }, + { + "label": "closed_caption_disabled", + "content": "closed_caption_disabled" + }, + { + "label": "cloud", + "content": "cloud" + }, + { + "label": "cloud_circle", + "content": "cloud_circle" + }, + { + "label": "cloud_done", + "content": "cloud_done" + }, + { + "label": "cloud_download", + "content": "cloud_download" + }, + { + "label": "cloud_off", + "content": "cloud_off" + }, + { + "label": "cloud_sync", + "content": "cloud_sync" + }, + { + "label": "cloud_upload", + "content": "cloud_upload" + }, + { + "label": "cloudy_snowing", + "content": "cloudy_snowing" + }, + { + "label": "co2", + "content": "co2" + }, + { + "label": "co_present", + "content": "co_present" + }, + { + "label": "code", + "content": "code" + }, + { + "label": "code_blocks", + "content": "code_blocks" + }, + { + "label": "code_off", + "content": "code_off" + }, + { + "label": "coffee", + "content": "coffee" + }, + { + "label": "coffee_maker", + "content": "coffee_maker" + }, + { + "label": "cognition", + "content": "cognition" + }, + { + "label": "collapse_all", + "content": "collapse_all" + }, + { + "label": "collapse_content", + "content": "collapse_content" + }, + { + "label": "collections_bookmark", + "content": "collections_bookmark" + }, + { + "label": "colorize", + "content": "colorize" + }, + { + "label": "colors", + "content": "colors" + }, + { + "label": "comedy_mask", + "content": "comedy_mask" + }, + { + "label": "comic_bubble", + "content": "comic_bubble" + }, + { + "label": "comment", + "content": "comment" + }, + { + "label": "comment_bank", + "content": "comment_bank" + }, + { + "label": "comments_disabled", + "content": "comments_disabled" + }, + { + "label": "commit", + "content": "commit" + }, + { + "label": "communication", + "content": "communication" + }, + { + "label": "communities", + "content": "communities" + }, + { + "label": "commute", + "content": "commute" + }, + { + "label": "compare", + "content": "compare" + }, + { + "label": "compare_arrows", + "content": "compare_arrows" + }, + { + "label": "compass_calibration", + "content": "compass_calibration" + }, + { + "label": "component_exchange", + "content": "component_exchange" + }, + { + "label": "compost", + "content": "compost" + }, + { + "label": "compress", + "content": "compress" + }, + { + "label": "computer", + "content": "computer" + }, + { + "label": "concierge", + "content": "concierge" + }, + { + "label": "conditions", + "content": "conditions" + }, + { + "label": "confirmation_number", + "content": "confirmation_number" + }, + { + "label": "congenital", + "content": "congenital" + }, + { + "label": "connect_without_contact", + "content": "connect_without_contact" + }, + { + "label": "connected_tv", + "content": "connected_tv" + }, + { + "label": "connecting_airports", + "content": "connecting_airports" + }, + { + "label": "construction", + "content": "construction" + }, + { + "label": "contact_emergency", + "content": "contact_emergency" + }, + { + "label": "contact_mail", + "content": "contact_mail" + }, + { + "label": "contact_page", + "content": "contact_page" + }, + { + "label": "contact_phone", + "content": "contact_phone" + }, + { + "label": "contact_support", + "content": "contact_support" + }, + { + "label": "contactless", + "content": "contactless" + }, + { + "label": "contactless_off", + "content": "contactless_off" + }, + { + "label": "contacts", + "content": "contacts" + }, + { + "label": "contacts_product", + "content": "contacts_product" + }, + { + "label": "content_copy", + "content": "content_copy" + }, + { + "label": "content_cut", + "content": "content_cut" + }, + { + "label": "content_paste", + "content": "content_paste" + }, + { + "label": "content_paste_go", + "content": "content_paste_go" + }, + { + "label": "content_paste_off", + "content": "content_paste_off" + }, + { + "label": "content_paste_search", + "content": "content_paste_search" + }, + { + "label": "contextual_token", + "content": "contextual_token" + }, + { + "label": "contextual_token_add", + "content": "contextual_token_add" + }, + { + "label": "contract", + "content": "contract" + }, + { + "label": "contract_delete", + "content": "contract_delete" + }, + { + "label": "contract_edit", + "content": "contract_edit" + }, + { + "label": "contrast", + "content": "contrast" + }, + { + "label": "contrast_circle", + "content": "contrast_circle" + }, + { + "label": "contrast_rtl_off", + "content": "contrast_rtl_off" + }, + { + "label": "contrast_square", + "content": "contrast_square" + }, + { + "label": "control_camera", + "content": "control_camera" + }, + { + "label": "control_point_duplicate", + "content": "control_point_duplicate" + }, + { + "label": "controller_gen", + "content": "controller_gen" + }, + { + "label": "conversion_path", + "content": "conversion_path" + }, + { + "label": "conversion_path_off", + "content": "conversion_path_off" + }, + { + "label": "conveyor_belt", + "content": "conveyor_belt" + }, + { + "label": "cookie", + "content": "cookie" + }, + { + "label": "cookie_off", + "content": "cookie_off" + }, + { + "label": "cooking", + "content": "cooking" + }, + { + "label": "cool_to_dry", + "content": "cool_to_dry" + }, + { + "label": "copy_all", + "content": "copy_all" + }, + { + "label": "copyright", + "content": "copyright" + }, + { + "label": "coronavirus", + "content": "coronavirus" + }, + { + "label": "corporate_fare", + "content": "corporate_fare" + }, + { + "label": "cottage", + "content": "cottage" + }, + { + "label": "counter_0", + "content": "counter_0" + }, + { + "label": "counter_1", + "content": "counter_1" + }, + { + "label": "counter_2", + "content": "counter_2" + }, + { + "label": "counter_3", + "content": "counter_3" + }, + { + "label": "counter_4", + "content": "counter_4" + }, + { + "label": "counter_5", + "content": "counter_5" + }, + { + "label": "counter_6", + "content": "counter_6" + }, + { + "label": "counter_7", + "content": "counter_7" + }, + { + "label": "counter_8", + "content": "counter_8" + }, + { + "label": "counter_9", + "content": "counter_9" + }, + { + "label": "countertops", + "content": "countertops" + }, + { + "label": "create_new_folder", + "content": "create_new_folder" + }, + { + "label": "credit_card", + "content": "credit_card" + }, + { + "label": "credit_card_gear", + "content": "credit_card_gear" + }, + { + "label": "credit_card_heart", + "content": "credit_card_heart" + }, + { + "label": "credit_card_off", + "content": "credit_card_off" + }, + { + "label": "credit_score", + "content": "credit_score" + }, + { + "label": "crib", + "content": "crib" + }, + { + "label": "crisis_alert", + "content": "crisis_alert" + }, + { + "label": "crop", + "content": "crop" + }, + { + "label": "crop_16_9", + "content": "crop_16_9" + }, + { + "label": "crop_3_2", + "content": "crop_3_2" + }, + { + "label": "crop_5_4", + "content": "crop_5_4" + }, + { + "label": "crop_7_5", + "content": "crop_7_5" + }, + { + "label": "crop_9_16", + "content": "crop_9_16" + }, + { + "label": "crop_free", + "content": "crop_free" + }, + { + "label": "crop_landscape", + "content": "crop_landscape" + }, + { + "label": "crop_portrait", + "content": "crop_portrait" + }, + { + "label": "crop_rotate", + "content": "crop_rotate" + }, + { + "label": "crop_square", + "content": "crop_square" + }, + { + "label": "crossword", + "content": "crossword" + }, + { + "label": "crowdsource", + "content": "crowdsource" + }, + { + "label": "cruelty_free", + "content": "cruelty_free" + }, + { + "label": "css", + "content": "css" + }, + { + "label": "csv", + "content": "csv" + }, + { + "label": "currency_bitcoin", + "content": "currency_bitcoin" + }, + { + "label": "currency_exchange", + "content": "currency_exchange" + }, + { + "label": "currency_franc", + "content": "currency_franc" + }, + { + "label": "currency_lira", + "content": "currency_lira" + }, + { + "label": "currency_pound", + "content": "currency_pound" + }, + { + "label": "currency_ruble", + "content": "currency_ruble" + }, + { + "label": "currency_rupee", + "content": "currency_rupee" + }, + { + "label": "currency_rupee_circle", + "content": "currency_rupee_circle" + }, + { + "label": "currency_yen", + "content": "currency_yen" + }, + { + "label": "currency_yuan", + "content": "currency_yuan" + }, + { + "label": "curtains", + "content": "curtains" + }, + { + "label": "curtains_closed", + "content": "curtains_closed" + }, + { + "label": "custom_typography", + "content": "custom_typography" + }, + { + "label": "cycle", + "content": "cycle" + }, + { + "label": "cyclone", + "content": "cyclone" + }, + { + "label": "dangerous", + "content": "dangerous" + }, + { + "label": "dark_mode", + "content": "dark_mode" + }, + { + "label": "dashboard", + "content": "dashboard" + }, + { + "label": "dashboard_customize", + "content": "dashboard_customize" + }, + { + "label": "data_alert", + "content": "data_alert" + }, + { + "label": "data_array", + "content": "data_array" + }, + { + "label": "data_check", + "content": "data_check" + }, + { + "label": "data_exploration", + "content": "data_exploration" + }, + { + "label": "data_info_alert", + "content": "data_info_alert" + }, + { + "label": "data_loss_prevention", + "content": "data_loss_prevention" + }, + { + "label": "data_object", + "content": "data_object" + }, + { + "label": "data_saver_on", + "content": "data_saver_on" + }, + { + "label": "data_table", + "content": "data_table" + }, + { + "label": "data_thresholding", + "content": "data_thresholding" + }, + { + "label": "data_usage", + "content": "data_usage" + }, + { + "label": "database", + "content": "database" + }, + { + "label": "dataset", + "content": "dataset" + }, + { + "label": "dataset_linked", + "content": "dataset_linked" + }, + { + "label": "date_range", + "content": "date_range" + }, + { + "label": "deblur", + "content": "deblur" + }, + { + "label": "deceased", + "content": "deceased" + }, + { + "label": "decimal_decrease", + "content": "decimal_decrease" + }, + { + "label": "decimal_increase", + "content": "decimal_increase" + }, + { + "label": "deck", + "content": "deck" + }, + { + "label": "dehaze", + "content": "dehaze" + }, + { + "label": "delete", + "content": "delete" + }, + { + "label": "delete_forever", + "content": "delete_forever" + }, + { + "label": "delete_history", + "content": "delete_history" + }, + { + "label": "delete_sweep", + "content": "delete_sweep" + }, + { + "label": "demography", + "content": "demography" + }, + { + "label": "density_large", + "content": "density_large" + }, + { + "label": "density_medium", + "content": "density_medium" + }, + { + "label": "density_small", + "content": "density_small" + }, + { + "label": "dentistry", + "content": "dentistry" + }, + { + "label": "departure_board", + "content": "departure_board" + }, + { + "label": "deployed_code", + "content": "deployed_code" + }, + { + "label": "deployed_code_account", + "content": "deployed_code_account" + }, + { + "label": "deployed_code_alert", + "content": "deployed_code_alert" + }, + { + "label": "deployed_code_history", + "content": "deployed_code_history" + }, + { + "label": "deployed_code_update", + "content": "deployed_code_update" + }, + { + "label": "dermatology", + "content": "dermatology" + }, + { + "label": "description", + "content": "description" + }, + { + "label": "deselect", + "content": "deselect" + }, + { + "label": "design_services", + "content": "design_services" + }, + { + "label": "desk", + "content": "desk" + }, + { + "label": "deskphone", + "content": "deskphone" + }, + { + "label": "desktop_access_disabled", + "content": "desktop_access_disabled" + }, + { + "label": "desktop_landscape", + "content": "desktop_landscape" + }, + { + "label": "desktop_mac", + "content": "desktop_mac" + }, + { + "label": "desktop_portrait", + "content": "desktop_portrait" + }, + { + "label": "desktop_windows", + "content": "desktop_windows" + }, + { + "label": "destruction", + "content": "destruction" + }, + { + "label": "details", + "content": "details" + }, + { + "label": "detection_and_zone", + "content": "detection_and_zone" + }, + { + "label": "detector", + "content": "detector" + }, + { + "label": "detector_alarm", + "content": "detector_alarm" + }, + { + "label": "detector_battery", + "content": "detector_battery" + }, + { + "label": "detector_co", + "content": "detector_co" + }, + { + "label": "detector_offline", + "content": "detector_offline" + }, + { + "label": "detector_smoke", + "content": "detector_smoke" + }, + { + "label": "detector_status", + "content": "detector_status" + }, + { + "label": "developer_board", + "content": "developer_board" + }, + { + "label": "developer_board_off", + "content": "developer_board_off" + }, + { + "label": "developer_guide", + "content": "developer_guide" + }, + { + "label": "developer_mode", + "content": "developer_mode" + }, + { + "label": "developer_mode_tv", + "content": "developer_mode_tv" + }, + { + "label": "device_hub", + "content": "device_hub" + }, + { + "label": "device_reset", + "content": "device_reset" + }, + { + "label": "device_thermostat", + "content": "device_thermostat" + }, + { + "label": "device_unknown", + "content": "device_unknown" + }, + { + "label": "devices", + "content": "devices" + }, + { + "label": "devices_fold", + "content": "devices_fold" + }, + { + "label": "devices_off", + "content": "devices_off" + }, + { + "label": "devices_other", + "content": "devices_other" + }, + { + "label": "devices_wearables", + "content": "devices_wearables" + }, + { + "label": "dew_point", + "content": "dew_point" + }, + { + "label": "diagnosis", + "content": "diagnosis" + }, + { + "label": "dialer_sip", + "content": "dialer_sip" + }, + { + "label": "dialogs", + "content": "dialogs" + }, + { + "label": "dialpad", + "content": "dialpad" + }, + { + "label": "diamond", + "content": "diamond" + }, + { + "label": "dictionary", + "content": "dictionary" + }, + { + "label": "difference", + "content": "difference" + }, + { + "label": "digital_out_of_home", + "content": "digital_out_of_home" + }, + { + "label": "digital_wellbeing", + "content": "digital_wellbeing" + }, + { + "label": "dining", + "content": "dining" + }, + { + "label": "dinner_dining", + "content": "dinner_dining" + }, + { + "label": "directions", + "content": "directions" + }, + { + "label": "directions_alt", + "content": "directions_alt" + }, + { + "label": "directions_alt_off", + "content": "directions_alt_off" + }, + { + "label": "directions_bike", + "content": "directions_bike" + }, + { + "label": "directions_boat", + "content": "directions_boat" + }, + { + "label": "directions_bus", + "content": "directions_bus" + }, + { + "label": "directions_car", + "content": "directions_car" + }, + { + "label": "directions_off", + "content": "directions_off" + }, + { + "label": "directions_railway", + "content": "directions_railway" + }, + { + "label": "directions_railway_2", + "content": "directions_railway_2" + }, + { + "label": "directions_run", + "content": "directions_run" + }, + { + "label": "directions_subway", + "content": "directions_subway" + }, + { + "label": "directions_walk", + "content": "directions_walk" + }, + { + "label": "directory_sync", + "content": "directory_sync" + }, + { + "label": "dirty_lens", + "content": "dirty_lens" + }, + { + "label": "disabled_by_default", + "content": "disabled_by_default" + }, + { + "label": "disabled_visible", + "content": "disabled_visible" + }, + { + "label": "disc_full", + "content": "disc_full" + }, + { + "label": "discover_tune", + "content": "discover_tune" + }, + { + "label": "dishwasher", + "content": "dishwasher" + }, + { + "label": "dishwasher_gen", + "content": "dishwasher_gen" + }, + { + "label": "display_external_input", + "content": "display_external_input" + }, + { + "label": "display_settings", + "content": "display_settings" + }, + { + "label": "distance", + "content": "distance" + }, + { + "label": "diversity_1", + "content": "diversity_1" + }, + { + "label": "diversity_2", + "content": "diversity_2" + }, + { + "label": "diversity_3", + "content": "diversity_3" + }, + { + "label": "diversity_4", + "content": "diversity_4" + }, + { + "label": "dns", + "content": "dns" + }, + { + "label": "do_not_disturb_off", + "content": "do_not_disturb_off" + }, + { + "label": "do_not_disturb_on", + "content": "do_not_disturb_on" + }, + { + "label": "do_not_disturb_on_total_silence", + "content": "do_not_disturb_on_total_silence" + }, + { + "label": "do_not_step", + "content": "do_not_step" + }, + { + "label": "do_not_touch", + "content": "do_not_touch" + }, + { + "label": "dock", + "content": "dock" + }, + { + "label": "dock_to_bottom", + "content": "dock_to_bottom" + }, + { + "label": "dock_to_left", + "content": "dock_to_left" + }, + { + "label": "dock_to_right", + "content": "dock_to_right" + }, + { + "label": "docs_add_on", + "content": "docs_add_on" + }, + { + "label": "docs_apps_script", + "content": "docs_apps_script" + }, + { + "label": "document_scanner", + "content": "document_scanner" + }, + { + "label": "domain", + "content": "domain" + }, + { + "label": "domain_add", + "content": "domain_add" + }, + { + "label": "domain_disabled", + "content": "domain_disabled" + }, + { + "label": "domain_verification", + "content": "domain_verification" + }, + { + "label": "domain_verification_off", + "content": "domain_verification_off" + }, + { + "label": "domino_mask", + "content": "domino_mask" + }, + { + "label": "done_all", + "content": "done_all" + }, + { + "label": "done_outline", + "content": "done_outline" + }, + { + "label": "donut_large", + "content": "donut_large" + }, + { + "label": "donut_small", + "content": "donut_small" + }, + { + "label": "door_back", + "content": "door_back" + }, + { + "label": "door_front", + "content": "door_front" + }, + { + "label": "door_open", + "content": "door_open" + }, + { + "label": "door_sensor", + "content": "door_sensor" + }, + { + "label": "door_sliding", + "content": "door_sliding" + }, + { + "label": "doorbell", + "content": "doorbell" + }, + { + "label": "doorbell_3p", + "content": "doorbell_3p" + }, + { + "label": "doorbell_chime", + "content": "doorbell_chime" + }, + { + "label": "double_arrow", + "content": "double_arrow" + }, + { + "label": "downhill_skiing", + "content": "downhill_skiing" + }, + { + "label": "download", + "content": "download" + }, + { + "label": "download_2", + "content": "download_2" + }, + { + "label": "download_done", + "content": "download_done" + }, + { + "label": "download_for_offline", + "content": "download_for_offline" + }, + { + "label": "downloading", + "content": "downloading" + }, + { + "label": "draft", + "content": "draft" + }, + { + "label": "draft_orders", + "content": "draft_orders" + }, + { + "label": "drafts", + "content": "drafts" + }, + { + "label": "drag_click", + "content": "drag_click" + }, + { + "label": "drag_handle", + "content": "drag_handle" + }, + { + "label": "drag_indicator", + "content": "drag_indicator" + }, + { + "label": "drag_pan", + "content": "drag_pan" + }, + { + "label": "draw", + "content": "draw" + }, + { + "label": "draw_abstract", + "content": "draw_abstract" + }, + { + "label": "draw_collage", + "content": "draw_collage" + }, + { + "label": "dresser", + "content": "dresser" + }, + { + "label": "drive_file_move", + "content": "drive_file_move" + }, + { + "label": "drive_folder_upload", + "content": "drive_folder_upload" + }, + { + "label": "dropdown", + "content": "dropdown" + }, + { + "label": "dry", + "content": "dry" + }, + { + "label": "dry_cleaning", + "content": "dry_cleaning" + }, + { + "label": "dual_screen", + "content": "dual_screen" + }, + { + "label": "duo", + "content": "duo" + }, + { + "label": "dvr", + "content": "dvr" + }, + { + "label": "dynamic_feed", + "content": "dynamic_feed" + }, + { + "label": "dynamic_form", + "content": "dynamic_form" + }, + { + "label": "e911_avatar", + "content": "e911_avatar" + }, + { + "label": "e911_emergency", + "content": "e911_emergency" + }, + { + "label": "e_mobiledata", + "content": "e_mobiledata" + }, + { + "label": "e_mobiledata_badge", + "content": "e_mobiledata_badge" + }, + { + "label": "earbuds", + "content": "earbuds" + }, + { + "label": "earbuds_battery", + "content": "earbuds_battery" + }, + { + "label": "early_on", + "content": "early_on" + }, + { + "label": "earthquake", + "content": "earthquake" + }, + { + "label": "east", + "content": "east" + }, + { + "label": "ecg", + "content": "ecg" + }, + { + "label": "ecg_heart", + "content": "ecg_heart" + }, + { + "label": "eco", + "content": "eco" + }, + { + "label": "eda", + "content": "eda" + }, + { + "label": "edgesensor_high", + "content": "edgesensor_high" + }, + { + "label": "edgesensor_low", + "content": "edgesensor_low" + }, + { + "label": "edit", + "content": "edit" + }, + { + "label": "edit_attributes", + "content": "edit_attributes" + }, + { + "label": "edit_calendar", + "content": "edit_calendar" + }, + { + "label": "edit_document", + "content": "edit_document" + }, + { + "label": "edit_location", + "content": "edit_location" + }, + { + "label": "edit_location_alt", + "content": "edit_location_alt" + }, + { + "label": "edit_note", + "content": "edit_note" + }, + { + "label": "edit_notifications", + "content": "edit_notifications" + }, + { + "label": "edit_off", + "content": "edit_off" + }, + { + "label": "edit_road", + "content": "edit_road" + }, + { + "label": "edit_square", + "content": "edit_square" + }, + { + "label": "editor_choice", + "content": "editor_choice" + }, + { + "label": "egg", + "content": "egg" + }, + { + "label": "egg_alt", + "content": "egg_alt" + }, + { + "label": "eject", + "content": "eject" + }, + { + "label": "elderly", + "content": "elderly" + }, + { + "label": "elderly_woman", + "content": "elderly_woman" + }, + { + "label": "electric_bike", + "content": "electric_bike" + }, + { + "label": "electric_bolt", + "content": "electric_bolt" + }, + { + "label": "electric_car", + "content": "electric_car" + }, + { + "label": "electric_meter", + "content": "electric_meter" + }, + { + "label": "electric_moped", + "content": "electric_moped" + }, + { + "label": "electric_rickshaw", + "content": "electric_rickshaw" + }, + { + "label": "electric_scooter", + "content": "electric_scooter" + }, + { + "label": "electrical_services", + "content": "electrical_services" + }, + { + "label": "elevation", + "content": "elevation" + }, + { + "label": "elevator", + "content": "elevator" + }, + { + "label": "emergency", + "content": "emergency" + }, + { + "label": "emergency_heat", + "content": "emergency_heat" + }, + { + "label": "emergency_heat_2", + "content": "emergency_heat_2" + }, + { + "label": "emergency_home", + "content": "emergency_home" + }, + { + "label": "emergency_recording", + "content": "emergency_recording" + }, + { + "label": "emergency_share", + "content": "emergency_share" + }, + { + "label": "emergency_share_off", + "content": "emergency_share_off" + }, + { + "label": "emoji_events", + "content": "emoji_events" + }, + { + "label": "emoji_food_beverage", + "content": "emoji_food_beverage" + }, + { + "label": "emoji_language", + "content": "emoji_language" + }, + { + "label": "emoji_nature", + "content": "emoji_nature" + }, + { + "label": "emoji_objects", + "content": "emoji_objects" + }, + { + "label": "emoji_people", + "content": "emoji_people" + }, + { + "label": "emoji_symbols", + "content": "emoji_symbols" + }, + { + "label": "emoji_transportation", + "content": "emoji_transportation" + }, + { + "label": "emoticon", + "content": "emoticon" + }, + { + "label": "empty_dashboard", + "content": "empty_dashboard" + }, + { + "label": "enable", + "content": "enable" + }, + { + "label": "encrypted", + "content": "encrypted" + }, + { + "label": "endocrinology", + "content": "endocrinology" + }, + { + "label": "energy", + "content": "energy" + }, + { + "label": "energy_program_saving", + "content": "energy_program_saving" + }, + { + "label": "energy_program_time_used", + "content": "energy_program_time_used" + }, + { + "label": "energy_savings_leaf", + "content": "energy_savings_leaf" + }, + { + "label": "engineering", + "content": "engineering" + }, + { + "label": "enhanced_encryption", + "content": "enhanced_encryption" + }, + { + "label": "ent", + "content": "ent" + }, + { + "label": "enterprise", + "content": "enterprise" + }, + { + "label": "enterprise_off", + "content": "enterprise_off" + }, + { + "label": "equal", + "content": "equal" + }, + { + "label": "equalizer", + "content": "equalizer" + }, + { + "label": "error", + "content": "error" + }, + { + "label": "error_med", + "content": "error_med" + }, + { + "label": "escalator", + "content": "escalator" + }, + { + "label": "escalator_warning", + "content": "escalator_warning" + }, + { + "label": "euro", + "content": "euro" + }, + { + "label": "euro_symbol", + "content": "euro_symbol" + }, + { + "label": "ev_charger", + "content": "ev_charger" + }, + { + "label": "ev_mobiledata_badge", + "content": "ev_mobiledata_badge" + }, + { + "label": "ev_shadow", + "content": "ev_shadow" + }, + { + "label": "ev_shadow_add", + "content": "ev_shadow_add" + }, + { + "label": "ev_shadow_minus", + "content": "ev_shadow_minus" + }, + { + "label": "ev_station", + "content": "ev_station" + }, + { + "label": "event", + "content": "event" + }, + { + "label": "event_available", + "content": "event_available" + }, + { + "label": "event_busy", + "content": "event_busy" + }, + { + "label": "event_list", + "content": "event_list" + }, + { + "label": "event_note", + "content": "event_note" + }, + { + "label": "event_repeat", + "content": "event_repeat" + }, + { + "label": "event_seat", + "content": "event_seat" + }, + { + "label": "event_upcoming", + "content": "event_upcoming" + }, + { + "label": "exclamation", + "content": "exclamation" + }, + { + "label": "exercise", + "content": "exercise" + }, + { + "label": "exit_to_app", + "content": "exit_to_app" + }, + { + "label": "expand", + "content": "expand" + }, + { + "label": "expand_all", + "content": "expand_all" + }, + { + "label": "expand_circle_down", + "content": "expand_circle_down" + }, + { + "label": "expand_circle_right", + "content": "expand_circle_right" + }, + { + "label": "expand_circle_up", + "content": "expand_circle_up" + }, + { + "label": "expand_content", + "content": "expand_content" + }, + { + "label": "experiment", + "content": "experiment" + }, + { + "label": "explicit", + "content": "explicit" + }, + { + "label": "explore", + "content": "explore" + }, + { + "label": "explore_nearby", + "content": "explore_nearby" + }, + { + "label": "explore_off", + "content": "explore_off" + }, + { + "label": "explosion", + "content": "explosion" + }, + { + "label": "export_notes", + "content": "export_notes" + }, + { + "label": "exposure", + "content": "exposure" + }, + { + "label": "exposure_neg_1", + "content": "exposure_neg_1" + }, + { + "label": "exposure_neg_2", + "content": "exposure_neg_2" + }, + { + "label": "exposure_plus_1", + "content": "exposure_plus_1" + }, + { + "label": "exposure_plus_2", + "content": "exposure_plus_2" + }, + { + "label": "exposure_zero", + "content": "exposure_zero" + }, + { + "label": "extension", + "content": "extension" + }, + { + "label": "extension_off", + "content": "extension_off" + }, + { + "label": "eye_tracking", + "content": "eye_tracking" + }, + { + "label": "eyeglasses", + "content": "eyeglasses" + }, + { + "label": "face", + "content": "face" + }, + { + "label": "face_2", + "content": "face_2" + }, + { + "label": "face_3", + "content": "face_3" + }, + { + "label": "face_4", + "content": "face_4" + }, + { + "label": "face_5", + "content": "face_5" + }, + { + "label": "face_6", + "content": "face_6" + }, + { + "label": "face_retouching_off", + "content": "face_retouching_off" + }, + { + "label": "fact_check", + "content": "fact_check" + }, + { + "label": "factory", + "content": "factory" + }, + { + "label": "falling", + "content": "falling" + }, + { + "label": "familiar_face_and_zone", + "content": "familiar_face_and_zone" + }, + { + "label": "family_history", + "content": "family_history" + }, + { + "label": "family_home", + "content": "family_home" + }, + { + "label": "family_link", + "content": "family_link" + }, + { + "label": "family_restroom", + "content": "family_restroom" + }, + { + "label": "family_star", + "content": "family_star" + }, + { + "label": "farsight_digital", + "content": "farsight_digital" + }, + { + "label": "fast_forward", + "content": "fast_forward" + }, + { + "label": "fast_rewind", + "content": "fast_rewind" + }, + { + "label": "fastfood", + "content": "fastfood" + }, + { + "label": "faucet", + "content": "faucet" + }, + { + "label": "favorite", + "content": "favorite" + }, + { + "label": "fax", + "content": "fax" + }, + { + "label": "feature_search", + "content": "feature_search" + }, + { + "label": "featured_play_list", + "content": "featured_play_list" + }, + { + "label": "featured_seasonal_and_gifts", + "content": "featured_seasonal_and_gifts" + }, + { + "label": "featured_video", + "content": "featured_video" + }, + { + "label": "feedback", + "content": "feedback" + }, + { + "label": "female", + "content": "female" + }, + { + "label": "femur", + "content": "femur" + }, + { + "label": "femur_alt", + "content": "femur_alt" + }, + { + "label": "fence", + "content": "fence" + }, + { + "label": "fertile", + "content": "fertile" + }, + { + "label": "festival", + "content": "festival" + }, + { + "label": "fiber_dvr", + "content": "fiber_dvr" + }, + { + "label": "fiber_manual_record", + "content": "fiber_manual_record" + }, + { + "label": "fiber_new", + "content": "fiber_new" + }, + { + "label": "fiber_pin", + "content": "fiber_pin" + }, + { + "label": "fiber_smart_record", + "content": "fiber_smart_record" + }, + { + "label": "file_copy", + "content": "file_copy" + }, + { + "label": "file_copy_off", + "content": "file_copy_off" + }, + { + "label": "file_download_off", + "content": "file_download_off" + }, + { + "label": "file_map", + "content": "file_map" + }, + { + "label": "file_open", + "content": "file_open" + }, + { + "label": "file_present", + "content": "file_present" + }, + { + "label": "file_save", + "content": "file_save" + }, + { + "label": "file_save_off", + "content": "file_save_off" + }, + { + "label": "file_upload_off", + "content": "file_upload_off" + }, + { + "label": "filter", + "content": "filter" + }, + { + "label": "filter_1", + "content": "filter_1" + }, + { + "label": "filter_2", + "content": "filter_2" + }, + { + "label": "filter_3", + "content": "filter_3" + }, + { + "label": "filter_4", + "content": "filter_4" + }, + { + "label": "filter_5", + "content": "filter_5" + }, + { + "label": "filter_6", + "content": "filter_6" + }, + { + "label": "filter_7", + "content": "filter_7" + }, + { + "label": "filter_8", + "content": "filter_8" + }, + { + "label": "filter_9", + "content": "filter_9" + }, + { + "label": "filter_9_plus", + "content": "filter_9_plus" + }, + { + "label": "filter_alt", + "content": "filter_alt" + }, + { + "label": "filter_alt_off", + "content": "filter_alt_off" + }, + { + "label": "filter_b_and_w", + "content": "filter_b_and_w" + }, + { + "label": "filter_center_focus", + "content": "filter_center_focus" + }, + { + "label": "filter_drama", + "content": "filter_drama" + }, + { + "label": "filter_frames", + "content": "filter_frames" + }, + { + "label": "filter_hdr", + "content": "filter_hdr" + }, + { + "label": "filter_list", + "content": "filter_list" + }, + { + "label": "filter_list_off", + "content": "filter_list_off" + }, + { + "label": "filter_none", + "content": "filter_none" + }, + { + "label": "filter_retrolux", + "content": "filter_retrolux" + }, + { + "label": "filter_tilt_shift", + "content": "filter_tilt_shift" + }, + { + "label": "filter_vintage", + "content": "filter_vintage" + }, + { + "label": "finance", + "content": "finance" + }, + { + "label": "finance_chip", + "content": "finance_chip" + }, + { + "label": "finance_mode", + "content": "finance_mode" + }, + { + "label": "find_in_page", + "content": "find_in_page" + }, + { + "label": "find_replace", + "content": "find_replace" + }, + { + "label": "fingerprint", + "content": "fingerprint" + }, + { + "label": "fingerprint_off", + "content": "fingerprint_off" + }, + { + "label": "fire_extinguisher", + "content": "fire_extinguisher" + }, + { + "label": "fire_hydrant", + "content": "fire_hydrant" + }, + { + "label": "fire_truck", + "content": "fire_truck" + }, + { + "label": "fireplace", + "content": "fireplace" + }, + { + "label": "first_page", + "content": "first_page" + }, + { + "label": "fit_page", + "content": "fit_page" + }, + { + "label": "fit_screen", + "content": "fit_screen" + }, + { + "label": "fit_width", + "content": "fit_width" + }, + { + "label": "fitness_center", + "content": "fitness_center" + }, + { + "label": "fitness_tracker", + "content": "fitness_tracker" + }, + { + "label": "flag", + "content": "flag" + }, + { + "label": "flag_circle", + "content": "flag_circle" + }, + { + "label": "flaky", + "content": "flaky" + }, + { + "label": "flare", + "content": "flare" + }, + { + "label": "flash_auto", + "content": "flash_auto" + }, + { + "label": "flash_off", + "content": "flash_off" + }, + { + "label": "flash_on", + "content": "flash_on" + }, + { + "label": "flashlight_off", + "content": "flashlight_off" + }, + { + "label": "flashlight_on", + "content": "flashlight_on" + }, + { + "label": "flatware", + "content": "flatware" + }, + { + "label": "flex_direction", + "content": "flex_direction" + }, + { + "label": "flex_no_wrap", + "content": "flex_no_wrap" + }, + { + "label": "flex_wrap", + "content": "flex_wrap" + }, + { + "label": "flight", + "content": "flight" + }, + { + "label": "flight_class", + "content": "flight_class" + }, + { + "label": "flight_land", + "content": "flight_land" + }, + { + "label": "flight_takeoff", + "content": "flight_takeoff" + }, + { + "label": "flights_and_hotels", + "content": "flights_and_hotels" + }, + { + "label": "flightsmode", + "content": "flightsmode" + }, + { + "label": "flip", + "content": "flip" + }, + { + "label": "flip_camera_android", + "content": "flip_camera_android" + }, + { + "label": "flip_camera_ios", + "content": "flip_camera_ios" + }, + { + "label": "flip_to_back", + "content": "flip_to_back" + }, + { + "label": "flip_to_front", + "content": "flip_to_front" + }, + { + "label": "float_landscape_2", + "content": "float_landscape_2" + }, + { + "label": "float_portrait_2", + "content": "float_portrait_2" + }, + { + "label": "flood", + "content": "flood" + }, + { + "label": "floor", + "content": "floor" + }, + { + "label": "floor_lamp", + "content": "floor_lamp" + }, + { + "label": "flowsheet", + "content": "flowsheet" + }, + { + "label": "fluid", + "content": "fluid" + }, + { + "label": "fluid_balance", + "content": "fluid_balance" + }, + { + "label": "fluid_med", + "content": "fluid_med" + }, + { + "label": "fluorescent", + "content": "fluorescent" + }, + { + "label": "flutter", + "content": "flutter" + }, + { + "label": "flutter_dash", + "content": "flutter_dash" + }, + { + "label": "flyover", + "content": "flyover" + }, + { + "label": "fmd_bad", + "content": "fmd_bad" + }, + { + "label": "foggy", + "content": "foggy" + }, + { + "label": "folded_hands", + "content": "folded_hands" + }, + { + "label": "folder", + "content": "folder" + }, + { + "label": "folder_copy", + "content": "folder_copy" + }, + { + "label": "folder_data", + "content": "folder_data" + }, + { + "label": "folder_delete", + "content": "folder_delete" + }, + { + "label": "folder_limited", + "content": "folder_limited" + }, + { + "label": "folder_managed", + "content": "folder_managed" + }, + { + "label": "folder_off", + "content": "folder_off" + }, + { + "label": "folder_open", + "content": "folder_open" + }, + { + "label": "folder_shared", + "content": "folder_shared" + }, + { + "label": "folder_special", + "content": "folder_special" + }, + { + "label": "folder_supervised", + "content": "folder_supervised" + }, + { + "label": "folder_zip", + "content": "folder_zip" + }, + { + "label": "follow_the_signs", + "content": "follow_the_signs" + }, + { + "label": "font_download", + "content": "font_download" + }, + { + "label": "font_download_off", + "content": "font_download_off" + }, + { + "label": "food_bank", + "content": "food_bank" + }, + { + "label": "foot_bones", + "content": "foot_bones" + }, + { + "label": "footprint", + "content": "footprint" + }, + { + "label": "for_you", + "content": "for_you" + }, + { + "label": "forest", + "content": "forest" + }, + { + "label": "fork_left", + "content": "fork_left" + }, + { + "label": "fork_right", + "content": "fork_right" + }, + { + "label": "forklift", + "content": "forklift" + }, + { + "label": "format_align_center", + "content": "format_align_center" + }, + { + "label": "format_align_justify", + "content": "format_align_justify" + }, + { + "label": "format_align_left", + "content": "format_align_left" + }, + { + "label": "format_align_right", + "content": "format_align_right" + }, + { + "label": "format_bold", + "content": "format_bold" + }, + { + "label": "format_clear", + "content": "format_clear" + }, + { + "label": "format_color_fill", + "content": "format_color_fill" + }, + { + "label": "format_color_reset", + "content": "format_color_reset" + }, + { + "label": "format_color_text", + "content": "format_color_text" + }, + { + "label": "format_h1", + "content": "format_h1" + }, + { + "label": "format_h2", + "content": "format_h2" + }, + { + "label": "format_h3", + "content": "format_h3" + }, + { + "label": "format_h4", + "content": "format_h4" + }, + { + "label": "format_h5", + "content": "format_h5" + }, + { + "label": "format_h6", + "content": "format_h6" + }, + { + "label": "format_image_left", + "content": "format_image_left" + }, + { + "label": "format_image_right", + "content": "format_image_right" + }, + { + "label": "format_indent_decrease", + "content": "format_indent_decrease" + }, + { + "label": "format_indent_increase", + "content": "format_indent_increase" + }, + { + "label": "format_ink_highlighter", + "content": "format_ink_highlighter" + }, + { + "label": "format_italic", + "content": "format_italic" + }, + { + "label": "format_letter_spacing", + "content": "format_letter_spacing" + }, + { + "label": "format_letter_spacing_2", + "content": "format_letter_spacing_2" + }, + { + "label": "format_letter_spacing_standard", + "content": "format_letter_spacing_standard" + }, + { + "label": "format_letter_spacing_wide", + "content": "format_letter_spacing_wide" + }, + { + "label": "format_letter_spacing_wider", + "content": "format_letter_spacing_wider" + }, + { + "label": "format_line_spacing", + "content": "format_line_spacing" + }, + { + "label": "format_list_bulleted", + "content": "format_list_bulleted" + }, + { + "label": "format_list_bulleted_add", + "content": "format_list_bulleted_add" + }, + { + "label": "format_list_numbered", + "content": "format_list_numbered" + }, + { + "label": "format_list_numbered_rtl", + "content": "format_list_numbered_rtl" + }, + { + "label": "format_overline", + "content": "format_overline" + }, + { + "label": "format_paint", + "content": "format_paint" + }, + { + "label": "format_paragraph", + "content": "format_paragraph" + }, + { + "label": "format_quote", + "content": "format_quote" + }, + { + "label": "format_shapes", + "content": "format_shapes" + }, + { + "label": "format_size", + "content": "format_size" + }, + { + "label": "format_strikethrough", + "content": "format_strikethrough" + }, + { + "label": "format_text_clip", + "content": "format_text_clip" + }, + { + "label": "format_text_overflow", + "content": "format_text_overflow" + }, + { + "label": "format_text_wrap", + "content": "format_text_wrap" + }, + { + "label": "format_textdirection_l_to_r", + "content": "format_textdirection_l_to_r" + }, + { + "label": "format_textdirection_r_to_l", + "content": "format_textdirection_r_to_l" + }, + { + "label": "format_textdirection_vertical", + "content": "format_textdirection_vertical" + }, + { + "label": "format_underlined", + "content": "format_underlined" + }, + { + "label": "format_underlined_squiggle", + "content": "format_underlined_squiggle" + }, + { + "label": "forms_add_on", + "content": "forms_add_on" + }, + { + "label": "forms_apps_script", + "content": "forms_apps_script" + }, + { + "label": "fort", + "content": "fort" + }, + { + "label": "forum", + "content": "forum" + }, + { + "label": "forward", + "content": "forward" + }, + { + "label": "forward_10", + "content": "forward_10" + }, + { + "label": "forward_30", + "content": "forward_30" + }, + { + "label": "forward_5", + "content": "forward_5" + }, + { + "label": "forward_circle", + "content": "forward_circle" + }, + { + "label": "forward_media", + "content": "forward_media" + }, + { + "label": "forward_to_inbox", + "content": "forward_to_inbox" + }, + { + "label": "foundation", + "content": "foundation" + }, + { + "label": "frame_inspect", + "content": "frame_inspect" + }, + { + "label": "frame_person", + "content": "frame_person" + }, + { + "label": "frame_person_mic", + "content": "frame_person_mic" + }, + { + "label": "frame_person_off", + "content": "frame_person_off" + }, + { + "label": "frame_reload", + "content": "frame_reload" + }, + { + "label": "frame_source", + "content": "frame_source" + }, + { + "label": "free_cancellation", + "content": "free_cancellation" + }, + { + "label": "front_hand", + "content": "front_hand" + }, + { + "label": "front_loader", + "content": "front_loader" + }, + { + "label": "full_coverage", + "content": "full_coverage" + }, + { + "label": "full_hd", + "content": "full_hd" + }, + { + "label": "full_stacked_bar_chart", + "content": "full_stacked_bar_chart" + }, + { + "label": "fullscreen", + "content": "fullscreen" + }, + { + "label": "fullscreen_exit", + "content": "fullscreen_exit" + }, + { + "label": "fullscreen_portrait", + "content": "fullscreen_portrait" + }, + { + "label": "function", + "content": "function" + }, + { + "label": "functions", + "content": "functions" + }, + { + "label": "funicular", + "content": "funicular" + }, + { + "label": "g_mobiledata", + "content": "g_mobiledata" + }, + { + "label": "g_mobiledata_badge", + "content": "g_mobiledata_badge" + }, + { + "label": "g_translate", + "content": "g_translate" + }, + { + "label": "gallery_thumbnail", + "content": "gallery_thumbnail" + }, + { + "label": "gamepad", + "content": "gamepad" + }, + { + "label": "garage", + "content": "garage" + }, + { + "label": "garage_door", + "content": "garage_door" + }, + { + "label": "garage_home", + "content": "garage_home" + }, + { + "label": "garden_cart", + "content": "garden_cart" + }, + { + "label": "gas_meter", + "content": "gas_meter" + }, + { + "label": "gastroenterology", + "content": "gastroenterology" + }, + { + "label": "gate", + "content": "gate" + }, + { + "label": "gavel", + "content": "gavel" + }, + { + "label": "general_device", + "content": "general_device" + }, + { + "label": "genetics", + "content": "genetics" + }, + { + "label": "genres", + "content": "genres" + }, + { + "label": "gesture", + "content": "gesture" + }, + { + "label": "gesture_select", + "content": "gesture_select" + }, + { + "label": "gif", + "content": "gif" + }, + { + "label": "gif_box", + "content": "gif_box" + }, + { + "label": "girl", + "content": "girl" + }, + { + "label": "gite", + "content": "gite" + }, + { + "label": "glass_cup", + "content": "glass_cup" + }, + { + "label": "globe", + "content": "globe" + }, + { + "label": "globe_asia", + "content": "globe_asia" + }, + { + "label": "globe_uk", + "content": "globe_uk" + }, + { + "label": "glucose", + "content": "glucose" + }, + { + "label": "glyphs", + "content": "glyphs" + }, + { + "label": "go_to_line", + "content": "go_to_line" + }, + { + "label": "golf_course", + "content": "golf_course" + }, + { + "label": "gondola_lift", + "content": "gondola_lift" + }, + { + "label": "google_home_devices", + "content": "google_home_devices" + }, + { + "label": "google_tv_remote", + "content": "google_tv_remote" + }, + { + "label": "google_wifi", + "content": "google_wifi" + }, + { + "label": "gpp_bad", + "content": "gpp_bad" + }, + { + "label": "gpp_maybe", + "content": "gpp_maybe" + }, + { + "label": "grade", + "content": "grade" + }, + { + "label": "gradient", + "content": "gradient" + }, + { + "label": "grading", + "content": "grading" + }, + { + "label": "grain", + "content": "grain" + }, + { + "label": "graphic_eq", + "content": "graphic_eq" + }, + { + "label": "grass", + "content": "grass" + }, + { + "label": "grid_3x3", + "content": "grid_3x3" + }, + { + "label": "grid_3x3_off", + "content": "grid_3x3_off" + }, + { + "label": "grid_4x4", + "content": "grid_4x4" + }, + { + "label": "grid_goldenratio", + "content": "grid_goldenratio" + }, + { + "label": "grid_guides", + "content": "grid_guides" + }, + { + "label": "grid_off", + "content": "grid_off" + }, + { + "label": "grid_on", + "content": "grid_on" + }, + { + "label": "grid_view", + "content": "grid_view" + }, + { + "label": "grocery", + "content": "grocery" + }, + { + "label": "group", + "content": "group" + }, + { + "label": "group_add", + "content": "group_add" + }, + { + "label": "group_off", + "content": "group_off" + }, + { + "label": "group_remove", + "content": "group_remove" + }, + { + "label": "group_work", + "content": "group_work" + }, + { + "label": "grouped_bar_chart", + "content": "grouped_bar_chart" + }, + { + "label": "groups", + "content": "groups" + }, + { + "label": "groups_2", + "content": "groups_2" + }, + { + "label": "groups_3", + "content": "groups_3" + }, + { + "label": "guardian", + "content": "guardian" + }, + { + "label": "gynecology", + "content": "gynecology" + }, + { + "label": "h_mobiledata", + "content": "h_mobiledata" + }, + { + "label": "h_mobiledata_badge", + "content": "h_mobiledata_badge" + }, + { + "label": "h_plus_mobiledata", + "content": "h_plus_mobiledata" + }, + { + "label": "h_plus_mobiledata_badge", + "content": "h_plus_mobiledata_badge" + }, + { + "label": "hail", + "content": "hail" + }, + { + "label": "hallway", + "content": "hallway" + }, + { + "label": "hand_bones", + "content": "hand_bones" + }, + { + "label": "hand_gesture", + "content": "hand_gesture" + }, + { + "label": "handheld_controller", + "content": "handheld_controller" + }, + { + "label": "handshake", + "content": "handshake" + }, + { + "label": "handyman", + "content": "handyman" + }, + { + "label": "hangout_video", + "content": "hangout_video" + }, + { + "label": "hangout_video_off", + "content": "hangout_video_off" + }, + { + "label": "hard_drive", + "content": "hard_drive" + }, + { + "label": "hard_drive_2", + "content": "hard_drive_2" + }, + { + "label": "hardware", + "content": "hardware" + }, + { + "label": "hd", + "content": "hd" + }, + { + "label": "hdr_auto", + "content": "hdr_auto" + }, + { + "label": "hdr_auto_select", + "content": "hdr_auto_select" + }, + { + "label": "hdr_enhanced_select", + "content": "hdr_enhanced_select" + }, + { + "label": "hdr_off", + "content": "hdr_off" + }, + { + "label": "hdr_off_select", + "content": "hdr_off_select" + }, + { + "label": "hdr_on", + "content": "hdr_on" + }, + { + "label": "hdr_on_select", + "content": "hdr_on_select" + }, + { + "label": "hdr_plus", + "content": "hdr_plus" + }, + { + "label": "hdr_plus_off", + "content": "hdr_plus_off" + }, + { + "label": "hdr_strong", + "content": "hdr_strong" + }, + { + "label": "hdr_weak", + "content": "hdr_weak" + }, + { + "label": "head_mounted_device", + "content": "head_mounted_device" + }, + { + "label": "headphones", + "content": "headphones" + }, + { + "label": "headphones_battery", + "content": "headphones_battery" + }, + { + "label": "headset_mic", + "content": "headset_mic" + }, + { + "label": "headset_off", + "content": "headset_off" + }, + { + "label": "healing", + "content": "healing" + }, + { + "label": "health_and_beauty", + "content": "health_and_beauty" + }, + { + "label": "health_and_safety", + "content": "health_and_safety" + }, + { + "label": "health_metrics", + "content": "health_metrics" + }, + { + "label": "heap_snapshot_large", + "content": "heap_snapshot_large" + }, + { + "label": "heap_snapshot_multiple", + "content": "heap_snapshot_multiple" + }, + { + "label": "heap_snapshot_thumbnail", + "content": "heap_snapshot_thumbnail" + }, + { + "label": "hearing", + "content": "hearing" + }, + { + "label": "hearing_aid", + "content": "hearing_aid" + }, + { + "label": "hearing_disabled", + "content": "hearing_disabled" + }, + { + "label": "heart_broken", + "content": "heart_broken" + }, + { + "label": "heart_check", + "content": "heart_check" + }, + { + "label": "heart_minus", + "content": "heart_minus" + }, + { + "label": "heart_plus", + "content": "heart_plus" + }, + { + "label": "heat", + "content": "heat" + }, + { + "label": "heat_pump", + "content": "heat_pump" + }, + { + "label": "heat_pump_balance", + "content": "heat_pump_balance" + }, + { + "label": "height", + "content": "height" + }, + { + "label": "helicopter", + "content": "helicopter" + }, + { + "label": "help", + "content": "help" + }, + { + "label": "help_center", + "content": "help_center" + }, + { + "label": "help_clinic", + "content": "help_clinic" + }, + { + "label": "hematology", + "content": "hematology" + }, + { + "label": "hevc", + "content": "hevc" + }, + { + "label": "hexagon", + "content": "hexagon" + }, + { + "label": "hide", + "content": "hide" + }, + { + "label": "hide_image", + "content": "hide_image" + }, + { + "label": "hide_source", + "content": "hide_source" + }, + { + "label": "high_density", + "content": "high_density" + }, + { + "label": "high_quality", + "content": "high_quality" + }, + { + "label": "high_res", + "content": "high_res" + }, + { + "label": "highlight", + "content": "highlight" + }, + { + "label": "highlight_keyboard_focus", + "content": "highlight_keyboard_focus" + }, + { + "label": "highlight_mouse_cursor", + "content": "highlight_mouse_cursor" + }, + { + "label": "highlight_text_cursor", + "content": "highlight_text_cursor" + }, + { + "label": "highlighter_size_1", + "content": "highlighter_size_1" + }, + { + "label": "highlighter_size_2", + "content": "highlighter_size_2" + }, + { + "label": "highlighter_size_3", + "content": "highlighter_size_3" + }, + { + "label": "highlighter_size_4", + "content": "highlighter_size_4" + }, + { + "label": "highlighter_size_5", + "content": "highlighter_size_5" + }, + { + "label": "hiking", + "content": "hiking" + }, + { + "label": "history", + "content": "history" + }, + { + "label": "history_edu", + "content": "history_edu" + }, + { + "label": "history_off", + "content": "history_off" + }, + { + "label": "history_toggle_off", + "content": "history_toggle_off" + }, + { + "label": "hive", + "content": "hive" + }, + { + "label": "hls", + "content": "hls" + }, + { + "label": "hls_off", + "content": "hls_off" + }, + { + "label": "holiday_village", + "content": "holiday_village" + }, + { + "label": "home", + "content": "home" + }, + { + "label": "home_and_garden", + "content": "home_and_garden" + }, + { + "label": "home_app_logo", + "content": "home_app_logo" + }, + { + "label": "home_health", + "content": "home_health" + }, + { + "label": "home_improvement_and_tools", + "content": "home_improvement_and_tools" + }, + { + "label": "home_iot_device", + "content": "home_iot_device" + }, + { + "label": "home_max", + "content": "home_max" + }, + { + "label": "home_max_dots", + "content": "home_max_dots" + }, + { + "label": "home_mini", + "content": "home_mini" + }, + { + "label": "home_pin", + "content": "home_pin" + }, + { + "label": "home_repair_service", + "content": "home_repair_service" + }, + { + "label": "home_speaker", + "content": "home_speaker" + }, + { + "label": "home_storage", + "content": "home_storage" + }, + { + "label": "home_work", + "content": "home_work" + }, + { + "label": "horizontal_distribute", + "content": "horizontal_distribute" + }, + { + "label": "horizontal_rule", + "content": "horizontal_rule" + }, + { + "label": "horizontal_split", + "content": "horizontal_split" + }, + { + "label": "hot_tub", + "content": "hot_tub" + }, + { + "label": "hotel", + "content": "hotel" + }, + { + "label": "hotel_class", + "content": "hotel_class" + }, + { + "label": "hourglass", + "content": "hourglass" + }, + { + "label": "hourglass_bottom", + "content": "hourglass_bottom" + }, + { + "label": "hourglass_disabled", + "content": "hourglass_disabled" + }, + { + "label": "hourglass_empty", + "content": "hourglass_empty" + }, + { + "label": "hourglass_top", + "content": "hourglass_top" + }, + { + "label": "house", + "content": "house" + }, + { + "label": "house_siding", + "content": "house_siding" + }, + { + "label": "house_with_shield", + "content": "house_with_shield" + }, + { + "label": "houseboat", + "content": "houseboat" + }, + { + "label": "household_supplies", + "content": "household_supplies" + }, + { + "label": "hov", + "content": "hov" + }, + { + "label": "how_to_reg", + "content": "how_to_reg" + }, + { + "label": "how_to_vote", + "content": "how_to_vote" + }, + { + "label": "hr_resting", + "content": "hr_resting" + }, + { + "label": "html", + "content": "html" + }, + { + "label": "http", + "content": "http" + }, + { + "label": "hub", + "content": "hub" + }, + { + "label": "humerus", + "content": "humerus" + }, + { + "label": "humerus_alt", + "content": "humerus_alt" + }, + { + "label": "humidity_high", + "content": "humidity_high" + }, + { + "label": "humidity_indoor", + "content": "humidity_indoor" + }, + { + "label": "humidity_low", + "content": "humidity_low" + }, + { + "label": "humidity_mid", + "content": "humidity_mid" + }, + { + "label": "humidity_percentage", + "content": "humidity_percentage" + }, + { + "label": "hvac", + "content": "hvac" + }, + { + "label": "ice_skating", + "content": "ice_skating" + }, + { + "label": "icecream", + "content": "icecream" + }, + { + "label": "id_card", + "content": "id_card" + }, + { + "label": "ifl", + "content": "ifl" + }, + { + "label": "iframe", + "content": "iframe" + }, + { + "label": "iframe_off", + "content": "iframe_off" + }, + { + "label": "image", + "content": "image" + }, + { + "label": "image_aspect_ratio", + "content": "image_aspect_ratio" + }, + { + "label": "image_search", + "content": "image_search" + }, + { + "label": "imagesearch_roller", + "content": "imagesearch_roller" + }, + { + "label": "imagesmode", + "content": "imagesmode" + }, + { + "label": "immunology", + "content": "immunology" + }, + { + "label": "import_contacts", + "content": "import_contacts" + }, + { + "label": "important_devices", + "content": "important_devices" + }, + { + "label": "in_home_mode", + "content": "in_home_mode" + }, + { + "label": "inactive_order", + "content": "inactive_order" + }, + { + "label": "inbox", + "content": "inbox" + }, + { + "label": "inbox_customize", + "content": "inbox_customize" + }, + { + "label": "incomplete_circle", + "content": "incomplete_circle" + }, + { + "label": "indeterminate_check_box", + "content": "indeterminate_check_box" + }, + { + "label": "indeterminate_question_box", + "content": "indeterminate_question_box" + }, + { + "label": "info", + "content": "info" + }, + { + "label": "info_i", + "content": "info_i" + }, + { + "label": "infrared", + "content": "infrared" + }, + { + "label": "ink_eraser", + "content": "ink_eraser" + }, + { + "label": "ink_eraser_off", + "content": "ink_eraser_off" + }, + { + "label": "ink_highlighter", + "content": "ink_highlighter" + }, + { + "label": "ink_highlighter_move", + "content": "ink_highlighter_move" + }, + { + "label": "ink_marker", + "content": "ink_marker" + }, + { + "label": "ink_pen", + "content": "ink_pen" + }, + { + "label": "inpatient", + "content": "inpatient" + }, + { + "label": "input", + "content": "input" + }, + { + "label": "input_circle", + "content": "input_circle" + }, + { + "label": "insert_chart", + "content": "insert_chart" + }, + { + "label": "insert_page_break", + "content": "insert_page_break" + }, + { + "label": "insert_text", + "content": "insert_text" + }, + { + "label": "install_desktop", + "content": "install_desktop" + }, + { + "label": "install_mobile", + "content": "install_mobile" + }, + { + "label": "instant_mix", + "content": "instant_mix" + }, + { + "label": "integration_instructions", + "content": "integration_instructions" + }, + { + "label": "interactive_space", + "content": "interactive_space" + }, + { + "label": "interests", + "content": "interests" + }, + { + "label": "interpreter_mode", + "content": "interpreter_mode" + }, + { + "label": "inventory", + "content": "inventory" + }, + { + "label": "inventory_2", + "content": "inventory_2" + }, + { + "label": "invert_colors", + "content": "invert_colors" + }, + { + "label": "invert_colors_off", + "content": "invert_colors_off" + }, + { + "label": "ios", + "content": "ios" + }, + { + "label": "ios_share", + "content": "ios_share" + }, + { + "label": "iron", + "content": "iron" + }, + { + "label": "jamboard_kiosk", + "content": "jamboard_kiosk" + }, + { + "label": "javascript", + "content": "javascript" + }, + { + "label": "join", + "content": "join" + }, + { + "label": "join_inner", + "content": "join_inner" + }, + { + "label": "join_left", + "content": "join_left" + }, + { + "label": "join_right", + "content": "join_right" + }, + { + "label": "joystick", + "content": "joystick" + }, + { + "label": "jump_to_element", + "content": "jump_to_element" + }, + { + "label": "kayaking", + "content": "kayaking" + }, + { + "label": "kebab_dining", + "content": "kebab_dining" + }, + { + "label": "keep", + "content": "keep" + }, + { + "label": "keep_off", + "content": "keep_off" + }, + { + "label": "keep_public", + "content": "keep_public" + }, + { + "label": "kettle", + "content": "kettle" + }, + { + "label": "key", + "content": "key" + }, + { + "label": "key_off", + "content": "key_off" + }, + { + "label": "key_vertical", + "content": "key_vertical" + }, + { + "label": "key_visualizer", + "content": "key_visualizer" + }, + { + "label": "keyboard", + "content": "keyboard" + }, + { + "label": "keyboard_alt", + "content": "keyboard_alt" + }, + { + "label": "keyboard_arrow_down", + "content": "keyboard_arrow_down" + }, + { + "label": "keyboard_arrow_left", + "content": "keyboard_arrow_left" + }, + { + "label": "keyboard_arrow_right", + "content": "keyboard_arrow_right" + }, + { + "label": "keyboard_arrow_up", + "content": "keyboard_arrow_up" + }, + { + "label": "keyboard_backspace", + "content": "keyboard_backspace" + }, + { + "label": "keyboard_capslock", + "content": "keyboard_capslock" + }, + { + "label": "keyboard_capslock_badge", + "content": "keyboard_capslock_badge" + }, + { + "label": "keyboard_command_key", + "content": "keyboard_command_key" + }, + { + "label": "keyboard_control_key", + "content": "keyboard_control_key" + }, + { + "label": "keyboard_double_arrow_down", + "content": "keyboard_double_arrow_down" + }, + { + "label": "keyboard_double_arrow_left", + "content": "keyboard_double_arrow_left" + }, + { + "label": "keyboard_double_arrow_right", + "content": "keyboard_double_arrow_right" + }, + { + "label": "keyboard_double_arrow_up", + "content": "keyboard_double_arrow_up" + }, + { + "label": "keyboard_external_input", + "content": "keyboard_external_input" + }, + { + "label": "keyboard_full", + "content": "keyboard_full" + }, + { + "label": "keyboard_hide", + "content": "keyboard_hide" + }, + { + "label": "keyboard_keys", + "content": "keyboard_keys" + }, + { + "label": "keyboard_lock", + "content": "keyboard_lock" + }, + { + "label": "keyboard_lock_off", + "content": "keyboard_lock_off" + }, + { + "label": "keyboard_off", + "content": "keyboard_off" + }, + { + "label": "keyboard_onscreen", + "content": "keyboard_onscreen" + }, + { + "label": "keyboard_option_key", + "content": "keyboard_option_key" + }, + { + "label": "keyboard_previous_language", + "content": "keyboard_previous_language" + }, + { + "label": "keyboard_return", + "content": "keyboard_return" + }, + { + "label": "keyboard_tab", + "content": "keyboard_tab" + }, + { + "label": "keyboard_tab_rtl", + "content": "keyboard_tab_rtl" + }, + { + "label": "kid_star", + "content": "kid_star" + }, + { + "label": "king_bed", + "content": "king_bed" + }, + { + "label": "kitchen", + "content": "kitchen" + }, + { + "label": "kitesurfing", + "content": "kitesurfing" + }, + { + "label": "lab_panel", + "content": "lab_panel" + }, + { + "label": "lab_profile", + "content": "lab_profile" + }, + { + "label": "lab_research", + "content": "lab_research" + }, + { + "label": "label", + "content": "label" + }, + { + "label": "label_important", + "content": "label_important" + }, + { + "label": "label_off", + "content": "label_off" + }, + { + "label": "labs", + "content": "labs" + }, + { + "label": "lan", + "content": "lan" + }, + { + "label": "landscape", + "content": "landscape" + }, + { + "label": "landscape_2", + "content": "landscape_2" + }, + { + "label": "landscape_2_off", + "content": "landscape_2_off" + }, + { + "label": "landslide", + "content": "landslide" + }, + { + "label": "language", + "content": "language" + }, + { + "label": "language_chinese_array", + "content": "language_chinese_array" + }, + { + "label": "language_chinese_cangjie", + "content": "language_chinese_cangjie" + }, + { + "label": "language_chinese_dayi", + "content": "language_chinese_dayi" + }, + { + "label": "language_chinese_pinyin", + "content": "language_chinese_pinyin" + }, + { + "label": "language_chinese_quick", + "content": "language_chinese_quick" + }, + { + "label": "language_chinese_wubi", + "content": "language_chinese_wubi" + }, + { + "label": "language_french", + "content": "language_french" + }, + { + "label": "language_gb_english", + "content": "language_gb_english" + }, + { + "label": "language_international", + "content": "language_international" + }, + { + "label": "language_japanese_kana", + "content": "language_japanese_kana" + }, + { + "label": "language_korean_latin", + "content": "language_korean_latin" + }, + { + "label": "language_pinyin", + "content": "language_pinyin" + }, + { + "label": "language_spanish", + "content": "language_spanish" + }, + { + "label": "language_us", + "content": "language_us" + }, + { + "label": "language_us_colemak", + "content": "language_us_colemak" + }, + { + "label": "language_us_dvorak", + "content": "language_us_dvorak" + }, + { + "label": "laps", + "content": "laps" + }, + { + "label": "laptop_chromebook", + "content": "laptop_chromebook" + }, + { + "label": "laptop_mac", + "content": "laptop_mac" + }, + { + "label": "laptop_windows", + "content": "laptop_windows" + }, + { + "label": "lasso_select", + "content": "lasso_select" + }, + { + "label": "last_page", + "content": "last_page" + }, + { + "label": "laundry", + "content": "laundry" + }, + { + "label": "layers", + "content": "layers" + }, + { + "label": "layers_clear", + "content": "layers_clear" + }, + { + "label": "lda", + "content": "lda" + }, + { + "label": "leaderboard", + "content": "leaderboard" + }, + { + "label": "leak_add", + "content": "leak_add" + }, + { + "label": "leak_remove", + "content": "leak_remove" + }, + { + "label": "left_click", + "content": "left_click" + }, + { + "label": "left_panel_close", + "content": "left_panel_close" + }, + { + "label": "left_panel_open", + "content": "left_panel_open" + }, + { + "label": "legend_toggle", + "content": "legend_toggle" + }, + { + "label": "lens", + "content": "lens" + }, + { + "label": "lens_blur", + "content": "lens_blur" + }, + { + "label": "letter_switch", + "content": "letter_switch" + }, + { + "label": "library_add", + "content": "library_add" + }, + { + "label": "library_add_check", + "content": "library_add_check" + }, + { + "label": "library_books", + "content": "library_books" + }, + { + "label": "library_music", + "content": "library_music" + }, + { + "label": "license", + "content": "license" + }, + { + "label": "lift_to_talk", + "content": "lift_to_talk" + }, + { + "label": "light", + "content": "light" + }, + { + "label": "light_group", + "content": "light_group" + }, + { + "label": "light_mode", + "content": "light_mode" + }, + { + "label": "light_off", + "content": "light_off" + }, + { + "label": "lightbulb", + "content": "lightbulb" + }, + { + "label": "lightbulb_circle", + "content": "lightbulb_circle" + }, + { + "label": "lightning_stand", + "content": "lightning_stand" + }, + { + "label": "line_axis", + "content": "line_axis" + }, + { + "label": "line_curve", + "content": "line_curve" + }, + { + "label": "line_end", + "content": "line_end" + }, + { + "label": "line_end_arrow", + "content": "line_end_arrow" + }, + { + "label": "line_end_arrow_notch", + "content": "line_end_arrow_notch" + }, + { + "label": "line_end_circle", + "content": "line_end_circle" + }, + { + "label": "line_end_diamond", + "content": "line_end_diamond" + }, + { + "label": "line_end_square", + "content": "line_end_square" + }, + { + "label": "line_start", + "content": "line_start" + }, + { + "label": "line_start_arrow", + "content": "line_start_arrow" + }, + { + "label": "line_start_arrow_notch", + "content": "line_start_arrow_notch" + }, + { + "label": "line_start_circle", + "content": "line_start_circle" + }, + { + "label": "line_start_diamond", + "content": "line_start_diamond" + }, + { + "label": "line_start_square", + "content": "line_start_square" + }, + { + "label": "line_style", + "content": "line_style" + }, + { + "label": "line_weight", + "content": "line_weight" + }, + { + "label": "linear_scale", + "content": "linear_scale" + }, + { + "label": "link", + "content": "link" + }, + { + "label": "link_off", + "content": "link_off" + }, + { + "label": "linked_camera", + "content": "linked_camera" + }, + { + "label": "linked_services", + "content": "linked_services" + }, + { + "label": "liquor", + "content": "liquor" + }, + { + "label": "list", + "content": "list" + }, + { + "label": "list_alt", + "content": "list_alt" + }, + { + "label": "list_alt_add", + "content": "list_alt_add" + }, + { + "label": "lists", + "content": "lists" + }, + { + "label": "live_help", + "content": "live_help" + }, + { + "label": "live_tv", + "content": "live_tv" + }, + { + "label": "living", + "content": "living" + }, + { + "label": "local_activity", + "content": "local_activity" + }, + { + "label": "local_atm", + "content": "local_atm" + }, + { + "label": "local_bar", + "content": "local_bar" + }, + { + "label": "local_cafe", + "content": "local_cafe" + }, + { + "label": "local_car_wash", + "content": "local_car_wash" + }, + { + "label": "local_convenience_store", + "content": "local_convenience_store" + }, + { + "label": "local_dining", + "content": "local_dining" + }, + { + "label": "local_drink", + "content": "local_drink" + }, + { + "label": "local_fire_department", + "content": "local_fire_department" + }, + { + "label": "local_florist", + "content": "local_florist" + }, + { + "label": "local_gas_station", + "content": "local_gas_station" + }, + { + "label": "local_hospital", + "content": "local_hospital" + }, + { + "label": "local_laundry_service", + "content": "local_laundry_service" + }, + { + "label": "local_library", + "content": "local_library" + }, + { + "label": "local_mall", + "content": "local_mall" + }, + { + "label": "local_parking", + "content": "local_parking" + }, + { + "label": "local_pharmacy", + "content": "local_pharmacy" + }, + { + "label": "local_pizza", + "content": "local_pizza" + }, + { + "label": "local_police", + "content": "local_police" + }, + { + "label": "local_post_office", + "content": "local_post_office" + }, + { + "label": "local_see", + "content": "local_see" + }, + { + "label": "local_shipping", + "content": "local_shipping" + }, + { + "label": "local_taxi", + "content": "local_taxi" + }, + { + "label": "location_away", + "content": "location_away" + }, + { + "label": "location_chip", + "content": "location_chip" + }, + { + "label": "location_city", + "content": "location_city" + }, + { + "label": "location_disabled", + "content": "location_disabled" + }, + { + "label": "location_home", + "content": "location_home" + }, + { + "label": "location_off", + "content": "location_off" + }, + { + "label": "location_on", + "content": "location_on" + }, + { + "label": "location_searching", + "content": "location_searching" + }, + { + "label": "lock", + "content": "lock" + }, + { + "label": "lock_clock", + "content": "lock_clock" + }, + { + "label": "lock_open", + "content": "lock_open" + }, + { + "label": "lock_open_right", + "content": "lock_open_right" + }, + { + "label": "lock_person", + "content": "lock_person" + }, + { + "label": "lock_reset", + "content": "lock_reset" + }, + { + "label": "login", + "content": "login" + }, + { + "label": "logo_dev", + "content": "logo_dev" + }, + { + "label": "logout", + "content": "logout" + }, + { + "label": "looks", + "content": "looks" + }, + { + "label": "looks_3", + "content": "looks_3" + }, + { + "label": "looks_4", + "content": "looks_4" + }, + { + "label": "looks_5", + "content": "looks_5" + }, + { + "label": "looks_6", + "content": "looks_6" + }, + { + "label": "looks_one", + "content": "looks_one" + }, + { + "label": "looks_two", + "content": "looks_two" + }, + { + "label": "loupe", + "content": "loupe" + }, + { + "label": "low_density", + "content": "low_density" + }, + { + "label": "low_priority", + "content": "low_priority" + }, + { + "label": "lowercase", + "content": "lowercase" + }, + { + "label": "loyalty", + "content": "loyalty" + }, + { + "label": "lte_mobiledata", + "content": "lte_mobiledata" + }, + { + "label": "lte_mobiledata_badge", + "content": "lte_mobiledata_badge" + }, + { + "label": "lte_plus_mobiledata", + "content": "lte_plus_mobiledata" + }, + { + "label": "lte_plus_mobiledata_badge", + "content": "lte_plus_mobiledata_badge" + }, + { + "label": "luggage", + "content": "luggage" + }, + { + "label": "lunch_dining", + "content": "lunch_dining" + }, + { + "label": "lyrics", + "content": "lyrics" + }, + { + "label": "macro_auto", + "content": "macro_auto" + }, + { + "label": "macro_off", + "content": "macro_off" + }, + { + "label": "magnification_large", + "content": "magnification_large" + }, + { + "label": "magnification_small", + "content": "magnification_small" + }, + { + "label": "magnify_docked", + "content": "magnify_docked" + }, + { + "label": "magnify_fullscreen", + "content": "magnify_fullscreen" + }, + { + "label": "mail", + "content": "mail" + }, + { + "label": "mail_lock", + "content": "mail_lock" + }, + { + "label": "mail_off", + "content": "mail_off" + }, + { + "label": "male", + "content": "male" + }, + { + "label": "man", + "content": "man" + }, + { + "label": "man_2", + "content": "man_2" + }, + { + "label": "man_3", + "content": "man_3" + }, + { + "label": "man_4", + "content": "man_4" + }, + { + "label": "manage_accounts", + "content": "manage_accounts" + }, + { + "label": "manage_history", + "content": "manage_history" + }, + { + "label": "manage_search", + "content": "manage_search" + }, + { + "label": "manga", + "content": "manga" + }, + { + "label": "manufacturing", + "content": "manufacturing" + }, + { + "label": "map", + "content": "map" + }, + { + "label": "maps_ugc", + "content": "maps_ugc" + }, + { + "label": "margin", + "content": "margin" + }, + { + "label": "mark_as_unread", + "content": "mark_as_unread" + }, + { + "label": "mark_chat_read", + "content": "mark_chat_read" + }, + { + "label": "mark_chat_unread", + "content": "mark_chat_unread" + }, + { + "label": "mark_email_read", + "content": "mark_email_read" + }, + { + "label": "mark_email_unread", + "content": "mark_email_unread" + }, + { + "label": "mark_unread_chat_alt", + "content": "mark_unread_chat_alt" + }, + { + "label": "markdown", + "content": "markdown" + }, + { + "label": "markdown_copy", + "content": "markdown_copy" + }, + { + "label": "markdown_paste", + "content": "markdown_paste" + }, + { + "label": "markunread_mailbox", + "content": "markunread_mailbox" + }, + { + "label": "masked_transitions", + "content": "masked_transitions" + }, + { + "label": "masks", + "content": "masks" + }, + { + "label": "match_case", + "content": "match_case" + }, + { + "label": "match_word", + "content": "match_word" + }, + { + "label": "matter", + "content": "matter" + }, + { + "label": "maximize", + "content": "maximize" + }, + { + "label": "measuring_tape", + "content": "measuring_tape" + }, + { + "label": "media_bluetooth_off", + "content": "media_bluetooth_off" + }, + { + "label": "media_bluetooth_on", + "content": "media_bluetooth_on" + }, + { + "label": "media_link", + "content": "media_link" + }, + { + "label": "media_output", + "content": "media_output" + }, + { + "label": "media_output_off", + "content": "media_output_off" + }, + { + "label": "mediation", + "content": "mediation" + }, + { + "label": "medical_information", + "content": "medical_information" + }, + { + "label": "medical_mask", + "content": "medical_mask" + }, + { + "label": "medical_services", + "content": "medical_services" + }, + { + "label": "medication", + "content": "medication" + }, + { + "label": "medication_liquid", + "content": "medication_liquid" + }, + { + "label": "meeting_room", + "content": "meeting_room" + }, + { + "label": "memory", + "content": "memory" + }, + { + "label": "memory_alt", + "content": "memory_alt" + }, + { + "label": "menstrual_health", + "content": "menstrual_health" + }, + { + "label": "menu", + "content": "menu" + }, + { + "label": "menu_book", + "content": "menu_book" + }, + { + "label": "menu_open", + "content": "menu_open" + }, + { + "label": "merge", + "content": "merge" + }, + { + "label": "merge_type", + "content": "merge_type" + }, + { + "label": "metabolism", + "content": "metabolism" + }, + { + "label": "metro", + "content": "metro" + }, + { + "label": "mfg_nest_yale_lock", + "content": "mfg_nest_yale_lock" + }, + { + "label": "mic", + "content": "mic" + }, + { + "label": "mic_double", + "content": "mic_double" + }, + { + "label": "mic_external_off", + "content": "mic_external_off" + }, + { + "label": "mic_external_on", + "content": "mic_external_on" + }, + { + "label": "mic_off", + "content": "mic_off" + }, + { + "label": "microbiology", + "content": "microbiology" + }, + { + "label": "microwave", + "content": "microwave" + }, + { + "label": "microwave_gen", + "content": "microwave_gen" + }, + { + "label": "military_tech", + "content": "military_tech" + }, + { + "label": "mimo", + "content": "mimo" + }, + { + "label": "mimo_disconnect", + "content": "mimo_disconnect" + }, + { + "label": "mindfulness", + "content": "mindfulness" + }, + { + "label": "minimize", + "content": "minimize" + }, + { + "label": "minor_crash", + "content": "minor_crash" + }, + { + "label": "mintmark", + "content": "mintmark" + }, + { + "label": "missed_video_call", + "content": "missed_video_call" + }, + { + "label": "missing_controller", + "content": "missing_controller" + }, + { + "label": "mist", + "content": "mist" + }, + { + "label": "mitre", + "content": "mitre" + }, + { + "label": "mixture_med", + "content": "mixture_med" + }, + { + "label": "mms", + "content": "mms" + }, + { + "label": "mobile_friendly", + "content": "mobile_friendly" + }, + { + "label": "mobile_off", + "content": "mobile_off" + }, + { + "label": "mobile_screen_share", + "content": "mobile_screen_share" + }, + { + "label": "mobiledata_off", + "content": "mobiledata_off" + }, + { + "label": "mode_comment", + "content": "mode_comment" + }, + { + "label": "mode_cool", + "content": "mode_cool" + }, + { + "label": "mode_cool_off", + "content": "mode_cool_off" + }, + { + "label": "mode_dual", + "content": "mode_dual" + }, + { + "label": "mode_fan", + "content": "mode_fan" + }, + { + "label": "mode_fan_off", + "content": "mode_fan_off" + }, + { + "label": "mode_heat", + "content": "mode_heat" + }, + { + "label": "mode_heat_cool", + "content": "mode_heat_cool" + }, + { + "label": "mode_heat_off", + "content": "mode_heat_off" + }, + { + "label": "mode_night", + "content": "mode_night" + }, + { + "label": "mode_of_travel", + "content": "mode_of_travel" + }, + { + "label": "mode_off_on", + "content": "mode_off_on" + }, + { + "label": "mode_standby", + "content": "mode_standby" + }, + { + "label": "model_training", + "content": "model_training" + }, + { + "label": "money", + "content": "money" + }, + { + "label": "money_off", + "content": "money_off" + }, + { + "label": "monitor", + "content": "monitor" + }, + { + "label": "monitor_heart", + "content": "monitor_heart" + }, + { + "label": "monitor_weight", + "content": "monitor_weight" + }, + { + "label": "monitor_weight_gain", + "content": "monitor_weight_gain" + }, + { + "label": "monitor_weight_loss", + "content": "monitor_weight_loss" + }, + { + "label": "monitoring", + "content": "monitoring" + }, + { + "label": "monochrome_photos", + "content": "monochrome_photos" + }, + { + "label": "monorail", + "content": "monorail" + }, + { + "label": "mood", + "content": "mood" + }, + { + "label": "mood_bad", + "content": "mood_bad" + }, + { + "label": "mop", + "content": "mop" + }, + { + "label": "more", + "content": "more" + }, + { + "label": "more_down", + "content": "more_down" + }, + { + "label": "more_horiz", + "content": "more_horiz" + }, + { + "label": "more_time", + "content": "more_time" + }, + { + "label": "more_up", + "content": "more_up" + }, + { + "label": "more_vert", + "content": "more_vert" + }, + { + "label": "mosque", + "content": "mosque" + }, + { + "label": "motion_blur", + "content": "motion_blur" + }, + { + "label": "motion_mode", + "content": "motion_mode" + }, + { + "label": "motion_photos_auto", + "content": "motion_photos_auto" + }, + { + "label": "motion_photos_off", + "content": "motion_photos_off" + }, + { + "label": "motion_photos_on", + "content": "motion_photos_on" + }, + { + "label": "motion_photos_paused", + "content": "motion_photos_paused" + }, + { + "label": "motion_sensor_active", + "content": "motion_sensor_active" + }, + { + "label": "motion_sensor_alert", + "content": "motion_sensor_alert" + }, + { + "label": "motion_sensor_idle", + "content": "motion_sensor_idle" + }, + { + "label": "motion_sensor_urgent", + "content": "motion_sensor_urgent" + }, + { + "label": "motorcycle", + "content": "motorcycle" + }, + { + "label": "mountain_flag", + "content": "mountain_flag" + }, + { + "label": "mouse", + "content": "mouse" + }, + { + "label": "mouse_lock", + "content": "mouse_lock" + }, + { + "label": "mouse_lock_off", + "content": "mouse_lock_off" + }, + { + "label": "move", + "content": "move" + }, + { + "label": "move_down", + "content": "move_down" + }, + { + "label": "move_group", + "content": "move_group" + }, + { + "label": "move_item", + "content": "move_item" + }, + { + "label": "move_location", + "content": "move_location" + }, + { + "label": "move_selection_down", + "content": "move_selection_down" + }, + { + "label": "move_selection_left", + "content": "move_selection_left" + }, + { + "label": "move_selection_right", + "content": "move_selection_right" + }, + { + "label": "move_selection_up", + "content": "move_selection_up" + }, + { + "label": "move_to_inbox", + "content": "move_to_inbox" + }, + { + "label": "move_up", + "content": "move_up" + }, + { + "label": "moved_location", + "content": "moved_location" + }, + { + "label": "movie", + "content": "movie" + }, + { + "label": "movie_edit", + "content": "movie_edit" + }, + { + "label": "movie_info", + "content": "movie_info" + }, + { + "label": "movie_off", + "content": "movie_off" + }, + { + "label": "moving", + "content": "moving" + }, + { + "label": "moving_beds", + "content": "moving_beds" + }, + { + "label": "moving_ministry", + "content": "moving_ministry" + }, + { + "label": "mp", + "content": "mp" + }, + { + "label": "multicooker", + "content": "multicooker" + }, + { + "label": "multiline_chart", + "content": "multiline_chart" + }, + { + "label": "multiple_stop", + "content": "multiple_stop" + }, + { + "label": "museum", + "content": "museum" + }, + { + "label": "music_cast", + "content": "music_cast" + }, + { + "label": "music_note", + "content": "music_note" + }, + { + "label": "music_off", + "content": "music_off" + }, + { + "label": "music_video", + "content": "music_video" + }, + { + "label": "my_location", + "content": "my_location" + }, + { + "label": "mystery", + "content": "mystery" + }, + { + "label": "nat", + "content": "nat" + }, + { + "label": "nature", + "content": "nature" + }, + { + "label": "nature_people", + "content": "nature_people" + }, + { + "label": "navigation", + "content": "navigation" + }, + { + "label": "near_me", + "content": "near_me" + }, + { + "label": "near_me_disabled", + "content": "near_me_disabled" + }, + { + "label": "nearby", + "content": "nearby" + }, + { + "label": "nearby_error", + "content": "nearby_error" + }, + { + "label": "nearby_off", + "content": "nearby_off" + }, + { + "label": "nephrology", + "content": "nephrology" + }, + { + "label": "nest_audio", + "content": "nest_audio" + }, + { + "label": "nest_cam_floodlight", + "content": "nest_cam_floodlight" + }, + { + "label": "nest_cam_indoor", + "content": "nest_cam_indoor" + }, + { + "label": "nest_cam_iq", + "content": "nest_cam_iq" + }, + { + "label": "nest_cam_iq_outdoor", + "content": "nest_cam_iq_outdoor" + }, + { + "label": "nest_cam_magnet_mount", + "content": "nest_cam_magnet_mount" + }, + { + "label": "nest_cam_outdoor", + "content": "nest_cam_outdoor" + }, + { + "label": "nest_cam_stand", + "content": "nest_cam_stand" + }, + { + "label": "nest_cam_wall_mount", + "content": "nest_cam_wall_mount" + }, + { + "label": "nest_cam_wired_stand", + "content": "nest_cam_wired_stand" + }, + { + "label": "nest_clock_farsight_analog", + "content": "nest_clock_farsight_analog" + }, + { + "label": "nest_clock_farsight_digital", + "content": "nest_clock_farsight_digital" + }, + { + "label": "nest_connect", + "content": "nest_connect" + }, + { + "label": "nest_detect", + "content": "nest_detect" + }, + { + "label": "nest_display", + "content": "nest_display" + }, + { + "label": "nest_display_max", + "content": "nest_display_max" + }, + { + "label": "nest_doorbell_visitor", + "content": "nest_doorbell_visitor" + }, + { + "label": "nest_eco_leaf", + "content": "nest_eco_leaf" + }, + { + "label": "nest_farsight_weather", + "content": "nest_farsight_weather" + }, + { + "label": "nest_found_savings", + "content": "nest_found_savings" + }, + { + "label": "nest_gale_wifi", + "content": "nest_gale_wifi" + }, + { + "label": "nest_heat_link_e", + "content": "nest_heat_link_e" + }, + { + "label": "nest_heat_link_gen_3", + "content": "nest_heat_link_gen_3" + }, + { + "label": "nest_hello_doorbell", + "content": "nest_hello_doorbell" + }, + { + "label": "nest_mini", + "content": "nest_mini" + }, + { + "label": "nest_multi_room", + "content": "nest_multi_room" + }, + { + "label": "nest_protect", + "content": "nest_protect" + }, + { + "label": "nest_remote", + "content": "nest_remote" + }, + { + "label": "nest_remote_comfort_sensor", + "content": "nest_remote_comfort_sensor" + }, + { + "label": "nest_secure_alarm", + "content": "nest_secure_alarm" + }, + { + "label": "nest_sunblock", + "content": "nest_sunblock" + }, + { + "label": "nest_tag", + "content": "nest_tag" + }, + { + "label": "nest_thermostat", + "content": "nest_thermostat" + }, + { + "label": "nest_thermostat_e_eu", + "content": "nest_thermostat_e_eu" + }, + { + "label": "nest_thermostat_gen_3", + "content": "nest_thermostat_gen_3" + }, + { + "label": "nest_thermostat_sensor", + "content": "nest_thermostat_sensor" + }, + { + "label": "nest_thermostat_sensor_eu", + "content": "nest_thermostat_sensor_eu" + }, + { + "label": "nest_thermostat_zirconium_eu", + "content": "nest_thermostat_zirconium_eu" + }, + { + "label": "nest_true_radiant", + "content": "nest_true_radiant" + }, + { + "label": "nest_wake_on_approach", + "content": "nest_wake_on_approach" + }, + { + "label": "nest_wake_on_press", + "content": "nest_wake_on_press" + }, + { + "label": "nest_wifi_point", + "content": "nest_wifi_point" + }, + { + "label": "nest_wifi_pro", + "content": "nest_wifi_pro" + }, + { + "label": "nest_wifi_pro_2", + "content": "nest_wifi_pro_2" + }, + { + "label": "nest_wifi_router", + "content": "nest_wifi_router" + }, + { + "label": "network_cell", + "content": "network_cell" + }, + { + "label": "network_check", + "content": "network_check" + }, + { + "label": "network_intelligence_history", + "content": "network_intelligence_history" + }, + { + "label": "network_intelligence_update", + "content": "network_intelligence_update" + }, + { + "label": "network_locked", + "content": "network_locked" + }, + { + "label": "network_manage", + "content": "network_manage" + }, + { + "label": "network_node", + "content": "network_node" + }, + { + "label": "network_ping", + "content": "network_ping" + }, + { + "label": "network_wifi", + "content": "network_wifi" + }, + { + "label": "network_wifi_1_bar", + "content": "network_wifi_1_bar" + }, + { + "label": "network_wifi_1_bar_locked", + "content": "network_wifi_1_bar_locked" + }, + { + "label": "network_wifi_2_bar", + "content": "network_wifi_2_bar" + }, + { + "label": "network_wifi_2_bar_locked", + "content": "network_wifi_2_bar_locked" + }, + { + "label": "network_wifi_3_bar", + "content": "network_wifi_3_bar" + }, + { + "label": "network_wifi_3_bar_locked", + "content": "network_wifi_3_bar_locked" + }, + { + "label": "network_wifi_locked", + "content": "network_wifi_locked" + }, + { + "label": "neurology", + "content": "neurology" + }, + { + "label": "new_label", + "content": "new_label" + }, + { + "label": "new_releases", + "content": "new_releases" + }, + { + "label": "new_window", + "content": "new_window" + }, + { + "label": "news", + "content": "news" + }, + { + "label": "newsmode", + "content": "newsmode" + }, + { + "label": "newspaper", + "content": "newspaper" + }, + { + "label": "newsstand", + "content": "newsstand" + }, + { + "label": "next_plan", + "content": "next_plan" + }, + { + "label": "next_week", + "content": "next_week" + }, + { + "label": "nfc", + "content": "nfc" + }, + { + "label": "night_shelter", + "content": "night_shelter" + }, + { + "label": "night_sight_auto", + "content": "night_sight_auto" + }, + { + "label": "night_sight_auto_off", + "content": "night_sight_auto_off" + }, + { + "label": "night_sight_max", + "content": "night_sight_max" + }, + { + "label": "nightlife", + "content": "nightlife" + }, + { + "label": "nightlight", + "content": "nightlight" + }, + { + "label": "nights_stay", + "content": "nights_stay" + }, + { + "label": "no_accounts", + "content": "no_accounts" + }, + { + "label": "no_adult_content", + "content": "no_adult_content" + }, + { + "label": "no_backpack", + "content": "no_backpack" + }, + { + "label": "no_crash", + "content": "no_crash" + }, + { + "label": "no_drinks", + "content": "no_drinks" + }, + { + "label": "no_encryption", + "content": "no_encryption" + }, + { + "label": "no_flash", + "content": "no_flash" + }, + { + "label": "no_food", + "content": "no_food" + }, + { + "label": "no_luggage", + "content": "no_luggage" + }, + { + "label": "no_meals", + "content": "no_meals" + }, + { + "label": "no_meeting_room", + "content": "no_meeting_room" + }, + { + "label": "no_photography", + "content": "no_photography" + }, + { + "label": "no_sim", + "content": "no_sim" + }, + { + "label": "no_sound", + "content": "no_sound" + }, + { + "label": "no_stroller", + "content": "no_stroller" + }, + { + "label": "no_transfer", + "content": "no_transfer" + }, + { + "label": "noise_aware", + "content": "noise_aware" + }, + { + "label": "noise_control_off", + "content": "noise_control_off" + }, + { + "label": "noise_control_on", + "content": "noise_control_on" + }, + { + "label": "nordic_walking", + "content": "nordic_walking" + }, + { + "label": "north", + "content": "north" + }, + { + "label": "north_east", + "content": "north_east" + }, + { + "label": "north_west", + "content": "north_west" + }, + { + "label": "not_accessible", + "content": "not_accessible" + }, + { + "label": "not_accessible_forward", + "content": "not_accessible_forward" + }, + { + "label": "not_listed_location", + "content": "not_listed_location" + }, + { + "label": "not_started", + "content": "not_started" + }, + { + "label": "note_add", + "content": "note_add" + }, + { + "label": "note_alt", + "content": "note_alt" + }, + { + "label": "note_stack", + "content": "note_stack" + }, + { + "label": "note_stack_add", + "content": "note_stack_add" + }, + { + "label": "notes", + "content": "notes" + }, + { + "label": "notification_add", + "content": "notification_add" + }, + { + "label": "notification_important", + "content": "notification_important" + }, + { + "label": "notification_multiple", + "content": "notification_multiple" + }, + { + "label": "notifications", + "content": "notifications" + }, + { + "label": "notifications_active", + "content": "notifications_active" + }, + { + "label": "notifications_off", + "content": "notifications_off" + }, + { + "label": "notifications_paused", + "content": "notifications_paused" + }, + { + "label": "notifications_unread", + "content": "notifications_unread" + }, + { + "label": "numbers", + "content": "numbers" + }, + { + "label": "nutrition", + "content": "nutrition" + }, + { + "label": "ods", + "content": "ods" + }, + { + "label": "odt", + "content": "odt" + }, + { + "label": "offline_bolt", + "content": "offline_bolt" + }, + { + "label": "offline_pin", + "content": "offline_pin" + }, + { + "label": "offline_pin_off", + "content": "offline_pin_off" + }, + { + "label": "offline_share", + "content": "offline_share" + }, + { + "label": "oil_barrel", + "content": "oil_barrel" + }, + { + "label": "on_device_training", + "content": "on_device_training" + }, + { + "label": "on_hub_device", + "content": "on_hub_device" + }, + { + "label": "oncology", + "content": "oncology" + }, + { + "label": "online_prediction", + "content": "online_prediction" + }, + { + "label": "onsen", + "content": "onsen" + }, + { + "label": "opacity", + "content": "opacity" + }, + { + "label": "open_in_browser", + "content": "open_in_browser" + }, + { + "label": "open_in_full", + "content": "open_in_full" + }, + { + "label": "open_in_new", + "content": "open_in_new" + }, + { + "label": "open_in_new_down", + "content": "open_in_new_down" + }, + { + "label": "open_in_new_off", + "content": "open_in_new_off" + }, + { + "label": "open_in_phone", + "content": "open_in_phone" + }, + { + "label": "open_jam", + "content": "open_jam" + }, + { + "label": "open_run", + "content": "open_run" + }, + { + "label": "open_with", + "content": "open_with" + }, + { + "label": "ophthalmology", + "content": "ophthalmology" + }, + { + "label": "oral_disease", + "content": "oral_disease" + }, + { + "label": "order_approve", + "content": "order_approve" + }, + { + "label": "order_play", + "content": "order_play" + }, + { + "label": "orders", + "content": "orders" + }, + { + "label": "orthopedics", + "content": "orthopedics" + }, + { + "label": "other_admission", + "content": "other_admission" + }, + { + "label": "other_houses", + "content": "other_houses" + }, + { + "label": "outbound", + "content": "outbound" + }, + { + "label": "outbox", + "content": "outbox" + }, + { + "label": "outbox_alt", + "content": "outbox_alt" + }, + { + "label": "outdoor_garden", + "content": "outdoor_garden" + }, + { + "label": "outdoor_grill", + "content": "outdoor_grill" + }, + { + "label": "outgoing_mail", + "content": "outgoing_mail" + }, + { + "label": "outlet", + "content": "outlet" + }, + { + "label": "outpatient", + "content": "outpatient" + }, + { + "label": "outpatient_med", + "content": "outpatient_med" + }, + { + "label": "output", + "content": "output" + }, + { + "label": "output_circle", + "content": "output_circle" + }, + { + "label": "oven", + "content": "oven" + }, + { + "label": "oven_gen", + "content": "oven_gen" + }, + { + "label": "overview", + "content": "overview" + }, + { + "label": "overview_key", + "content": "overview_key" + }, + { + "label": "oxygen_saturation", + "content": "oxygen_saturation" + }, + { + "label": "p2p", + "content": "p2p" + }, + { + "label": "pace", + "content": "pace" + }, + { + "label": "pacemaker", + "content": "pacemaker" + }, + { + "label": "package", + "content": "package" + }, + { + "label": "package_2", + "content": "package_2" + }, + { + "label": "padding", + "content": "padding" + }, + { + "label": "page_control", + "content": "page_control" + }, + { + "label": "page_info", + "content": "page_info" + }, + { + "label": "pageless", + "content": "pageless" + }, + { + "label": "pages", + "content": "pages" + }, + { + "label": "pageview", + "content": "pageview" + }, + { + "label": "paid", + "content": "paid" + }, + { + "label": "palette", + "content": "palette" + }, + { + "label": "pallet", + "content": "pallet" + }, + { + "label": "pan_tool", + "content": "pan_tool" + }, + { + "label": "pan_tool_alt", + "content": "pan_tool_alt" + }, + { + "label": "pan_zoom", + "content": "pan_zoom" + }, + { + "label": "panorama", + "content": "panorama" + }, + { + "label": "panorama_fish_eye", + "content": "panorama_fish_eye" + }, + { + "label": "panorama_horizontal", + "content": "panorama_horizontal" + }, + { + "label": "panorama_photosphere", + "content": "panorama_photosphere" + }, + { + "label": "panorama_vertical", + "content": "panorama_vertical" + }, + { + "label": "panorama_wide_angle", + "content": "panorama_wide_angle" + }, + { + "label": "paragliding", + "content": "paragliding" + }, + { + "label": "park", + "content": "park" + }, + { + "label": "partly_cloudy_day", + "content": "partly_cloudy_day" + }, + { + "label": "partly_cloudy_night", + "content": "partly_cloudy_night" + }, + { + "label": "partner_exchange", + "content": "partner_exchange" + }, + { + "label": "partner_reports", + "content": "partner_reports" + }, + { + "label": "party_mode", + "content": "party_mode" + }, + { + "label": "passkey", + "content": "passkey" + }, + { + "label": "password", + "content": "password" + }, + { + "label": "password_2", + "content": "password_2" + }, + { + "label": "password_2_off", + "content": "password_2_off" + }, + { + "label": "patient_list", + "content": "patient_list" + }, + { + "label": "pattern", + "content": "pattern" + }, + { + "label": "pause", + "content": "pause" + }, + { + "label": "pause_circle", + "content": "pause_circle" + }, + { + "label": "pause_presentation", + "content": "pause_presentation" + }, + { + "label": "payments", + "content": "payments" + }, + { + "label": "pedal_bike", + "content": "pedal_bike" + }, + { + "label": "pediatrics", + "content": "pediatrics" + }, + { + "label": "pen_size_1", + "content": "pen_size_1" + }, + { + "label": "pen_size_2", + "content": "pen_size_2" + }, + { + "label": "pen_size_3", + "content": "pen_size_3" + }, + { + "label": "pen_size_4", + "content": "pen_size_4" + }, + { + "label": "pen_size_5", + "content": "pen_size_5" + }, + { + "label": "pending", + "content": "pending" + }, + { + "label": "pending_actions", + "content": "pending_actions" + }, + { + "label": "pentagon", + "content": "pentagon" + }, + { + "label": "percent", + "content": "percent" + }, + { + "label": "pergola", + "content": "pergola" + }, + { + "label": "perm_camera_mic", + "content": "perm_camera_mic" + }, + { + "label": "perm_contact_calendar", + "content": "perm_contact_calendar" + }, + { + "label": "perm_data_setting", + "content": "perm_data_setting" + }, + { + "label": "perm_device_information", + "content": "perm_device_information" + }, + { + "label": "perm_media", + "content": "perm_media" + }, + { + "label": "perm_phone_msg", + "content": "perm_phone_msg" + }, + { + "label": "perm_scan_wifi", + "content": "perm_scan_wifi" + }, + { + "label": "person", + "content": "person" + }, + { + "label": "person_2", + "content": "person_2" + }, + { + "label": "person_3", + "content": "person_3" + }, + { + "label": "person_4", + "content": "person_4" + }, + { + "label": "person_add", + "content": "person_add" + }, + { + "label": "person_add_disabled", + "content": "person_add_disabled" + }, + { + "label": "person_alert", + "content": "person_alert" + }, + { + "label": "person_apron", + "content": "person_apron" + }, + { + "label": "person_book", + "content": "person_book" + }, + { + "label": "person_cancel", + "content": "person_cancel" + }, + { + "label": "person_celebrate", + "content": "person_celebrate" + }, + { + "label": "person_check", + "content": "person_check" + }, + { + "label": "person_edit", + "content": "person_edit" + }, + { + "label": "person_off", + "content": "person_off" + }, + { + "label": "person_pin", + "content": "person_pin" + }, + { + "label": "person_pin_circle", + "content": "person_pin_circle" + }, + { + "label": "person_play", + "content": "person_play" + }, + { + "label": "person_raised_hand", + "content": "person_raised_hand" + }, + { + "label": "person_remove", + "content": "person_remove" + }, + { + "label": "person_search", + "content": "person_search" + }, + { + "label": "personal_bag", + "content": "personal_bag" + }, + { + "label": "personal_bag_off", + "content": "personal_bag_off" + }, + { + "label": "personal_bag_question", + "content": "personal_bag_question" + }, + { + "label": "personal_injury", + "content": "personal_injury" + }, + { + "label": "personal_places", + "content": "personal_places" + }, + { + "label": "pest_control", + "content": "pest_control" + }, + { + "label": "pest_control_rodent", + "content": "pest_control_rodent" + }, + { + "label": "pet_supplies", + "content": "pet_supplies" + }, + { + "label": "pets", + "content": "pets" + }, + { + "label": "phishing", + "content": "phishing" + }, + { + "label": "phone_android", + "content": "phone_android" + }, + { + "label": "phone_bluetooth_speaker", + "content": "phone_bluetooth_speaker" + }, + { + "label": "phone_callback", + "content": "phone_callback" + }, + { + "label": "phone_disabled", + "content": "phone_disabled" + }, + { + "label": "phone_enabled", + "content": "phone_enabled" + }, + { + "label": "phone_forwarded", + "content": "phone_forwarded" + }, + { + "label": "phone_in_talk", + "content": "phone_in_talk" + }, + { + "label": "phone_iphone", + "content": "phone_iphone" + }, + { + "label": "phone_locked", + "content": "phone_locked" + }, + { + "label": "phone_missed", + "content": "phone_missed" + }, + { + "label": "phone_paused", + "content": "phone_paused" + }, + { + "label": "phonelink_erase", + "content": "phonelink_erase" + }, + { + "label": "phonelink_lock", + "content": "phonelink_lock" + }, + { + "label": "phonelink_off", + "content": "phonelink_off" + }, + { + "label": "phonelink_ring", + "content": "phonelink_ring" + }, + { + "label": "phonelink_ring_off", + "content": "phonelink_ring_off" + }, + { + "label": "phonelink_setup", + "content": "phonelink_setup" + }, + { + "label": "photo", + "content": "photo" + }, + { + "label": "photo_album", + "content": "photo_album" + }, + { + "label": "photo_auto_merge", + "content": "photo_auto_merge" + }, + { + "label": "photo_camera", + "content": "photo_camera" + }, + { + "label": "photo_camera_back", + "content": "photo_camera_back" + }, + { + "label": "photo_camera_front", + "content": "photo_camera_front" + }, + { + "label": "photo_frame", + "content": "photo_frame" + }, + { + "label": "photo_library", + "content": "photo_library" + }, + { + "label": "photo_prints", + "content": "photo_prints" + }, + { + "label": "photo_size_select_large", + "content": "photo_size_select_large" + }, + { + "label": "photo_size_select_small", + "content": "photo_size_select_small" + }, + { + "label": "php", + "content": "php" + }, + { + "label": "physical_therapy", + "content": "physical_therapy" + }, + { + "label": "piano", + "content": "piano" + }, + { + "label": "piano_off", + "content": "piano_off" + }, + { + "label": "picture_as_pdf", + "content": "picture_as_pdf" + }, + { + "label": "picture_in_picture", + "content": "picture_in_picture" + }, + { + "label": "picture_in_picture_alt", + "content": "picture_in_picture_alt" + }, + { + "label": "picture_in_picture_center", + "content": "picture_in_picture_center" + }, + { + "label": "picture_in_picture_large", + "content": "picture_in_picture_large" + }, + { + "label": "picture_in_picture_medium", + "content": "picture_in_picture_medium" + }, + { + "label": "picture_in_picture_mobile", + "content": "picture_in_picture_mobile" + }, + { + "label": "picture_in_picture_off", + "content": "picture_in_picture_off" + }, + { + "label": "picture_in_picture_small", + "content": "picture_in_picture_small" + }, + { + "label": "pie_chart", + "content": "pie_chart" + }, + { + "label": "pill", + "content": "pill" + }, + { + "label": "pill_off", + "content": "pill_off" + }, + { + "label": "pin", + "content": "pin" + }, + { + "label": "pin_drop", + "content": "pin_drop" + }, + { + "label": "pin_end", + "content": "pin_end" + }, + { + "label": "pin_invoke", + "content": "pin_invoke" + }, + { + "label": "pinch", + "content": "pinch" + }, + { + "label": "pinch_zoom_in", + "content": "pinch_zoom_in" + }, + { + "label": "pinch_zoom_out", + "content": "pinch_zoom_out" + }, + { + "label": "pip", + "content": "pip" + }, + { + "label": "pip_exit", + "content": "pip_exit" + }, + { + "label": "pivot_table_chart", + "content": "pivot_table_chart" + }, + { + "label": "place_item", + "content": "place_item" + }, + { + "label": "plagiarism", + "content": "plagiarism" + }, + { + "label": "planner_banner_ad_pt", + "content": "planner_banner_ad_pt" + }, + { + "label": "planner_review", + "content": "planner_review" + }, + { + "label": "play_arrow", + "content": "play_arrow" + }, + { + "label": "play_circle", + "content": "play_circle" + }, + { + "label": "play_disabled", + "content": "play_disabled" + }, + { + "label": "play_for_work", + "content": "play_for_work" + }, + { + "label": "play_lesson", + "content": "play_lesson" + }, + { + "label": "play_pause", + "content": "play_pause" + }, + { + "label": "playing_cards", + "content": "playing_cards" + }, + { + "label": "playlist_add", + "content": "playlist_add" + }, + { + "label": "playlist_add_check", + "content": "playlist_add_check" + }, + { + "label": "playlist_add_check_circle", + "content": "playlist_add_check_circle" + }, + { + "label": "playlist_add_circle", + "content": "playlist_add_circle" + }, + { + "label": "playlist_play", + "content": "playlist_play" + }, + { + "label": "playlist_remove", + "content": "playlist_remove" + }, + { + "label": "plumbing", + "content": "plumbing" + }, + { + "label": "podcasts", + "content": "podcasts" + }, + { + "label": "podiatry", + "content": "podiatry" + }, + { + "label": "podium", + "content": "podium" + }, + { + "label": "point_of_sale", + "content": "point_of_sale" + }, + { + "label": "point_scan", + "content": "point_scan" + }, + { + "label": "poker_chip", + "content": "poker_chip" + }, + { + "label": "policy", + "content": "policy" + }, + { + "label": "polyline", + "content": "polyline" + }, + { + "label": "polymer", + "content": "polymer" + }, + { + "label": "pool", + "content": "pool" + }, + { + "label": "portable_wifi_off", + "content": "portable_wifi_off" + }, + { + "label": "position_bottom_left", + "content": "position_bottom_left" + }, + { + "label": "position_bottom_right", + "content": "position_bottom_right" + }, + { + "label": "position_top_right", + "content": "position_top_right" + }, + { + "label": "post", + "content": "post" + }, + { + "label": "post_add", + "content": "post_add" + }, + { + "label": "potted_plant", + "content": "potted_plant" + }, + { + "label": "power", + "content": "power" + }, + { + "label": "power_input", + "content": "power_input" + }, + { + "label": "power_off", + "content": "power_off" + }, + { + "label": "power_settings_new", + "content": "power_settings_new" + }, + { + "label": "prayer_times", + "content": "prayer_times" + }, + { + "label": "precision_manufacturing", + "content": "precision_manufacturing" + }, + { + "label": "pregnancy", + "content": "pregnancy" + }, + { + "label": "pregnant_woman", + "content": "pregnant_woman" + }, + { + "label": "preliminary", + "content": "preliminary" + }, + { + "label": "prescriptions", + "content": "prescriptions" + }, + { + "label": "present_to_all", + "content": "present_to_all" + }, + { + "label": "preview", + "content": "preview" + }, + { + "label": "preview_off", + "content": "preview_off" + }, + { + "label": "price_change", + "content": "price_change" + }, + { + "label": "price_check", + "content": "price_check" + }, + { + "label": "print", + "content": "print" + }, + { + "label": "print_add", + "content": "print_add" + }, + { + "label": "print_connect", + "content": "print_connect" + }, + { + "label": "print_disabled", + "content": "print_disabled" + }, + { + "label": "print_error", + "content": "print_error" + }, + { + "label": "print_lock", + "content": "print_lock" + }, + { + "label": "priority", + "content": "priority" + }, + { + "label": "priority_high", + "content": "priority_high" + }, + { + "label": "privacy", + "content": "privacy" + }, + { + "label": "privacy_tip", + "content": "privacy_tip" + }, + { + "label": "private_connectivity", + "content": "private_connectivity" + }, + { + "label": "problem", + "content": "problem" + }, + { + "label": "procedure", + "content": "procedure" + }, + { + "label": "process_chart", + "content": "process_chart" + }, + { + "label": "production_quantity_limits", + "content": "production_quantity_limits" + }, + { + "label": "productivity", + "content": "productivity" + }, + { + "label": "progress_activity", + "content": "progress_activity" + }, + { + "label": "prompt_suggestion", + "content": "prompt_suggestion" + }, + { + "label": "propane", + "content": "propane" + }, + { + "label": "propane_tank", + "content": "propane_tank" + }, + { + "label": "psychiatry", + "content": "psychiatry" + }, + { + "label": "psychology", + "content": "psychology" + }, + { + "label": "psychology_alt", + "content": "psychology_alt" + }, + { + "label": "public", + "content": "public" + }, + { + "label": "public_off", + "content": "public_off" + }, + { + "label": "publish", + "content": "publish" + }, + { + "label": "published_with_changes", + "content": "published_with_changes" + }, + { + "label": "pulmonology", + "content": "pulmonology" + }, + { + "label": "pulse_alert", + "content": "pulse_alert" + }, + { + "label": "punch_clock", + "content": "punch_clock" + }, + { + "label": "qr_code", + "content": "qr_code" + }, + { + "label": "qr_code_2", + "content": "qr_code_2" + }, + { + "label": "qr_code_2_add", + "content": "qr_code_2_add" + }, + { + "label": "qr_code_scanner", + "content": "qr_code_scanner" + }, + { + "label": "query_stats", + "content": "query_stats" + }, + { + "label": "question_exchange", + "content": "question_exchange" + }, + { + "label": "question_mark", + "content": "question_mark" + }, + { + "label": "queue_music", + "content": "queue_music" + }, + { + "label": "queue_play_next", + "content": "queue_play_next" + }, + { + "label": "quick_phrases", + "content": "quick_phrases" + }, + { + "label": "quick_reference", + "content": "quick_reference" + }, + { + "label": "quick_reference_all", + "content": "quick_reference_all" + }, + { + "label": "quick_reorder", + "content": "quick_reorder" + }, + { + "label": "quickreply", + "content": "quickreply" + }, + { + "label": "quiet_time", + "content": "quiet_time" + }, + { + "label": "quiet_time_active", + "content": "quiet_time_active" + }, + { + "label": "quiz", + "content": "quiz" + }, + { + "label": "r_mobiledata", + "content": "r_mobiledata" + }, + { + "label": "radar", + "content": "radar" + }, + { + "label": "radio", + "content": "radio" + }, + { + "label": "radio_button_checked", + "content": "radio_button_checked" + }, + { + "label": "radio_button_partial", + "content": "radio_button_partial" + }, + { + "label": "radio_button_unchecked", + "content": "radio_button_unchecked" + }, + { + "label": "radiology", + "content": "radiology" + }, + { + "label": "railway_alert", + "content": "railway_alert" + }, + { + "label": "railway_alert_2", + "content": "railway_alert_2" + }, + { + "label": "rainy", + "content": "rainy" + }, + { + "label": "rainy_heavy", + "content": "rainy_heavy" + }, + { + "label": "rainy_light", + "content": "rainy_light" + }, + { + "label": "rainy_snow", + "content": "rainy_snow" + }, + { + "label": "ramen_dining", + "content": "ramen_dining" + }, + { + "label": "ramp_left", + "content": "ramp_left" + }, + { + "label": "ramp_right", + "content": "ramp_right" + }, + { + "label": "range_hood", + "content": "range_hood" + }, + { + "label": "rate_review", + "content": "rate_review" + }, + { + "label": "raven", + "content": "raven" + }, + { + "label": "raw_off", + "content": "raw_off" + }, + { + "label": "raw_on", + "content": "raw_on" + }, + { + "label": "read_more", + "content": "read_more" + }, + { + "label": "readiness_score", + "content": "readiness_score" + }, + { + "label": "real_estate_agent", + "content": "real_estate_agent" + }, + { + "label": "rear_camera", + "content": "rear_camera" + }, + { + "label": "rebase", + "content": "rebase" + }, + { + "label": "rebase_edit", + "content": "rebase_edit" + }, + { + "label": "receipt", + "content": "receipt" + }, + { + "label": "receipt_long", + "content": "receipt_long" + }, + { + "label": "recent_actors", + "content": "recent_actors" + }, + { + "label": "recent_patient", + "content": "recent_patient" + }, + { + "label": "recenter", + "content": "recenter" + }, + { + "label": "recommend", + "content": "recommend" + }, + { + "label": "record_voice_over", + "content": "record_voice_over" + }, + { + "label": "rectangle", + "content": "rectangle" + }, + { + "label": "recycling", + "content": "recycling" + }, + { + "label": "redeem", + "content": "redeem" + }, + { + "label": "redo", + "content": "redo" + }, + { + "label": "reduce_capacity", + "content": "reduce_capacity" + }, + { + "label": "refresh", + "content": "refresh" + }, + { + "label": "regular_expression", + "content": "regular_expression" + }, + { + "label": "relax", + "content": "relax" + }, + { + "label": "release_alert", + "content": "release_alert" + }, + { + "label": "remember_me", + "content": "remember_me" + }, + { + "label": "reminder", + "content": "reminder" + }, + { + "label": "remote_gen", + "content": "remote_gen" + }, + { + "label": "remove", + "content": "remove" + }, + { + "label": "remove_done", + "content": "remove_done" + }, + { + "label": "remove_from_queue", + "content": "remove_from_queue" + }, + { + "label": "remove_moderator", + "content": "remove_moderator" + }, + { + "label": "remove_road", + "content": "remove_road" + }, + { + "label": "remove_selection", + "content": "remove_selection" + }, + { + "label": "remove_shopping_cart", + "content": "remove_shopping_cart" + }, + { + "label": "reopen_window", + "content": "reopen_window" + }, + { + "label": "reorder", + "content": "reorder" + }, + { + "label": "repartition", + "content": "repartition" + }, + { + "label": "repeat", + "content": "repeat" + }, + { + "label": "repeat_on", + "content": "repeat_on" + }, + { + "label": "repeat_one", + "content": "repeat_one" + }, + { + "label": "repeat_one_on", + "content": "repeat_one_on" + }, + { + "label": "replay", + "content": "replay" + }, + { + "label": "replay_10", + "content": "replay_10" + }, + { + "label": "replay_30", + "content": "replay_30" + }, + { + "label": "replay_5", + "content": "replay_5" + }, + { + "label": "reply", + "content": "reply" + }, + { + "label": "reply_all", + "content": "reply_all" + }, + { + "label": "report", + "content": "report" + }, + { + "label": "report_off", + "content": "report_off" + }, + { + "label": "request_page", + "content": "request_page" + }, + { + "label": "request_quote", + "content": "request_quote" + }, + { + "label": "reset_brightness", + "content": "reset_brightness" + }, + { + "label": "reset_focus", + "content": "reset_focus" + }, + { + "label": "reset_image", + "content": "reset_image" + }, + { + "label": "reset_iso", + "content": "reset_iso" + }, + { + "label": "reset_settings", + "content": "reset_settings" + }, + { + "label": "reset_shadow", + "content": "reset_shadow" + }, + { + "label": "reset_shutter_speed", + "content": "reset_shutter_speed" + }, + { + "label": "reset_tv", + "content": "reset_tv" + }, + { + "label": "reset_white_balance", + "content": "reset_white_balance" + }, + { + "label": "reset_wrench", + "content": "reset_wrench" + }, + { + "label": "resize", + "content": "resize" + }, + { + "label": "respiratory_rate", + "content": "respiratory_rate" + }, + { + "label": "responsive_layout", + "content": "responsive_layout" + }, + { + "label": "restart_alt", + "content": "restart_alt" + }, + { + "label": "restaurant", + "content": "restaurant" + }, + { + "label": "restaurant_menu", + "content": "restaurant_menu" + }, + { + "label": "restore_from_trash", + "content": "restore_from_trash" + }, + { + "label": "restore_page", + "content": "restore_page" + }, + { + "label": "resume", + "content": "resume" + }, + { + "label": "reviews", + "content": "reviews" + }, + { + "label": "rewarded_ads", + "content": "rewarded_ads" + }, + { + "label": "rheumatology", + "content": "rheumatology" + }, + { + "label": "rib_cage", + "content": "rib_cage" + }, + { + "label": "rice_bowl", + "content": "rice_bowl" + }, + { + "label": "right_click", + "content": "right_click" + }, + { + "label": "right_panel_close", + "content": "right_panel_close" + }, + { + "label": "right_panel_open", + "content": "right_panel_open" + }, + { + "label": "ring_volume", + "content": "ring_volume" + }, + { + "label": "ripples", + "content": "ripples" + }, + { + "label": "road", + "content": "road" + }, + { + "label": "robot", + "content": "robot" + }, + { + "label": "robot_2", + "content": "robot_2" + }, + { + "label": "rocket", + "content": "rocket" + }, + { + "label": "rocket_launch", + "content": "rocket_launch" + }, + { + "label": "roller_shades", + "content": "roller_shades" + }, + { + "label": "roller_shades_closed", + "content": "roller_shades_closed" + }, + { + "label": "roller_skating", + "content": "roller_skating" + }, + { + "label": "roofing", + "content": "roofing" + }, + { + "label": "room_preferences", + "content": "room_preferences" + }, + { + "label": "room_service", + "content": "room_service" + }, + { + "label": "rotate_90_degrees_ccw", + "content": "rotate_90_degrees_ccw" + }, + { + "label": "rotate_90_degrees_cw", + "content": "rotate_90_degrees_cw" + }, + { + "label": "rotate_left", + "content": "rotate_left" + }, + { + "label": "rotate_right", + "content": "rotate_right" + }, + { + "label": "roundabout_left", + "content": "roundabout_left" + }, + { + "label": "roundabout_right", + "content": "roundabout_right" + }, + { + "label": "rounded_corner", + "content": "rounded_corner" + }, + { + "label": "route", + "content": "route" + }, + { + "label": "router", + "content": "router" + }, + { + "label": "routine", + "content": "routine" + }, + { + "label": "rowing", + "content": "rowing" + }, + { + "label": "rss_feed", + "content": "rss_feed" + }, + { + "label": "rsvp", + "content": "rsvp" + }, + { + "label": "rtt", + "content": "rtt" + }, + { + "label": "rubric", + "content": "rubric" + }, + { + "label": "rule", + "content": "rule" + }, + { + "label": "rule_folder", + "content": "rule_folder" + }, + { + "label": "rule_settings", + "content": "rule_settings" + }, + { + "label": "run_circle", + "content": "run_circle" + }, + { + "label": "running_with_errors", + "content": "running_with_errors" + }, + { + "label": "rv_hookup", + "content": "rv_hookup" + }, + { + "label": "safety_check", + "content": "safety_check" + }, + { + "label": "safety_check_off", + "content": "safety_check_off" + }, + { + "label": "safety_divider", + "content": "safety_divider" + }, + { + "label": "sailing", + "content": "sailing" + }, + { + "label": "salinity", + "content": "salinity" + }, + { + "label": "sanitizer", + "content": "sanitizer" + }, + { + "label": "satellite", + "content": "satellite" + }, + { + "label": "satellite_alt", + "content": "satellite_alt" + }, + { + "label": "sauna", + "content": "sauna" + }, + { + "label": "save", + "content": "save" + }, + { + "label": "save_as", + "content": "save_as" + }, + { + "label": "saved_search", + "content": "saved_search" + }, + { + "label": "savings", + "content": "savings" + }, + { + "label": "scale", + "content": "scale" + }, + { + "label": "scan", + "content": "scan" + }, + { + "label": "scan_delete", + "content": "scan_delete" + }, + { + "label": "scanner", + "content": "scanner" + }, + { + "label": "scatter_plot", + "content": "scatter_plot" + }, + { + "label": "scene", + "content": "scene" + }, + { + "label": "schedule", + "content": "schedule" + }, + { + "label": "schedule_send", + "content": "schedule_send" + }, + { + "label": "schema", + "content": "schema" + }, + { + "label": "school", + "content": "school" + }, + { + "label": "science", + "content": "science" + }, + { + "label": "science_off", + "content": "science_off" + }, + { + "label": "scooter", + "content": "scooter" + }, + { + "label": "score", + "content": "score" + }, + { + "label": "scoreboard", + "content": "scoreboard" + }, + { + "label": "screen_lock_landscape", + "content": "screen_lock_landscape" + }, + { + "label": "screen_lock_portrait", + "content": "screen_lock_portrait" + }, + { + "label": "screen_lock_rotation", + "content": "screen_lock_rotation" + }, + { + "label": "screen_record", + "content": "screen_record" + }, + { + "label": "screen_rotation", + "content": "screen_rotation" + }, + { + "label": "screen_rotation_alt", + "content": "screen_rotation_alt" + }, + { + "label": "screen_rotation_up", + "content": "screen_rotation_up" + }, + { + "label": "screen_search_desktop", + "content": "screen_search_desktop" + }, + { + "label": "screen_share", + "content": "screen_share" + }, + { + "label": "screenshot", + "content": "screenshot" + }, + { + "label": "screenshot_frame", + "content": "screenshot_frame" + }, + { + "label": "screenshot_keyboard", + "content": "screenshot_keyboard" + }, + { + "label": "screenshot_monitor", + "content": "screenshot_monitor" + }, + { + "label": "screenshot_region", + "content": "screenshot_region" + }, + { + "label": "screenshot_tablet", + "content": "screenshot_tablet" + }, + { + "label": "script", + "content": "script" + }, + { + "label": "scrollable_header", + "content": "scrollable_header" + }, + { + "label": "scuba_diving", + "content": "scuba_diving" + }, + { + "label": "sd", + "content": "sd" + }, + { + "label": "sd_card", + "content": "sd_card" + }, + { + "label": "sd_card_alert", + "content": "sd_card_alert" + }, + { + "label": "sdk", + "content": "sdk" + }, + { + "label": "search", + "content": "search" + }, + { + "label": "search_check", + "content": "search_check" + }, + { + "label": "search_check_2", + "content": "search_check_2" + }, + { + "label": "search_hands_free", + "content": "search_hands_free" + }, + { + "label": "search_insights", + "content": "search_insights" + }, + { + "label": "search_off", + "content": "search_off" + }, + { + "label": "security", + "content": "security" + }, + { + "label": "security_key", + "content": "security_key" + }, + { + "label": "security_update_good", + "content": "security_update_good" + }, + { + "label": "security_update_warning", + "content": "security_update_warning" + }, + { + "label": "segment", + "content": "segment" + }, + { + "label": "select", + "content": "select" + }, + { + "label": "select_all", + "content": "select_all" + }, + { + "label": "select_check_box", + "content": "select_check_box" + }, + { + "label": "select_to_speak", + "content": "select_to_speak" + }, + { + "label": "select_window", + "content": "select_window" + }, + { + "label": "select_window_2", + "content": "select_window_2" + }, + { + "label": "select_window_off", + "content": "select_window_off" + }, + { + "label": "self_care", + "content": "self_care" + }, + { + "label": "self_improvement", + "content": "self_improvement" + }, + { + "label": "sell", + "content": "sell" + }, + { + "label": "send", + "content": "send" + }, + { + "label": "send_and_archive", + "content": "send_and_archive" + }, + { + "label": "send_money", + "content": "send_money" + }, + { + "label": "send_time_extension", + "content": "send_time_extension" + }, + { + "label": "send_to_mobile", + "content": "send_to_mobile" + }, + { + "label": "sensor_door", + "content": "sensor_door" + }, + { + "label": "sensor_occupied", + "content": "sensor_occupied" + }, + { + "label": "sensor_window", + "content": "sensor_window" + }, + { + "label": "sensors", + "content": "sensors" + }, + { + "label": "sensors_krx", + "content": "sensors_krx" + }, + { + "label": "sensors_krx_off", + "content": "sensors_krx_off" + }, + { + "label": "sensors_off", + "content": "sensors_off" + }, + { + "label": "sentiment_calm", + "content": "sentiment_calm" + }, + { + "label": "sentiment_content", + "content": "sentiment_content" + }, + { + "label": "sentiment_dissatisfied", + "content": "sentiment_dissatisfied" + }, + { + "label": "sentiment_excited", + "content": "sentiment_excited" + }, + { + "label": "sentiment_extremely_dissatisfied", + "content": "sentiment_extremely_dissatisfied" + }, + { + "label": "sentiment_frustrated", + "content": "sentiment_frustrated" + }, + { + "label": "sentiment_neutral", + "content": "sentiment_neutral" + }, + { + "label": "sentiment_sad", + "content": "sentiment_sad" + }, + { + "label": "sentiment_satisfied", + "content": "sentiment_satisfied" + }, + { + "label": "sentiment_stressed", + "content": "sentiment_stressed" + }, + { + "label": "sentiment_very_dissatisfied", + "content": "sentiment_very_dissatisfied" + }, + { + "label": "sentiment_very_satisfied", + "content": "sentiment_very_satisfied" + }, + { + "label": "sentiment_worried", + "content": "sentiment_worried" + }, + { + "label": "serif", + "content": "serif" + }, + { + "label": "service_toolbox", + "content": "service_toolbox" + }, + { + "label": "set_meal", + "content": "set_meal" + }, + { + "label": "settings", + "content": "settings" + }, + { + "label": "settings_accessibility", + "content": "settings_accessibility" + }, + { + "label": "settings_account_box", + "content": "settings_account_box" + }, + { + "label": "settings_alert", + "content": "settings_alert" + }, + { + "label": "settings_applications", + "content": "settings_applications" + }, + { + "label": "settings_b_roll", + "content": "settings_b_roll" + }, + { + "label": "settings_backup_restore", + "content": "settings_backup_restore" + }, + { + "label": "settings_bluetooth", + "content": "settings_bluetooth" + }, + { + "label": "settings_brightness", + "content": "settings_brightness" + }, + { + "label": "settings_cell", + "content": "settings_cell" + }, + { + "label": "settings_cinematic_blur", + "content": "settings_cinematic_blur" + }, + { + "label": "settings_ethernet", + "content": "settings_ethernet" + }, + { + "label": "settings_heart", + "content": "settings_heart" + }, + { + "label": "settings_input_antenna", + "content": "settings_input_antenna" + }, + { + "label": "settings_input_component", + "content": "settings_input_component" + }, + { + "label": "settings_input_hdmi", + "content": "settings_input_hdmi" + }, + { + "label": "settings_input_svideo", + "content": "settings_input_svideo" + }, + { + "label": "settings_motion_mode", + "content": "settings_motion_mode" + }, + { + "label": "settings_night_sight", + "content": "settings_night_sight" + }, + { + "label": "settings_overscan", + "content": "settings_overscan" + }, + { + "label": "settings_panorama", + "content": "settings_panorama" + }, + { + "label": "settings_phone", + "content": "settings_phone" + }, + { + "label": "settings_photo_camera", + "content": "settings_photo_camera" + }, + { + "label": "settings_power", + "content": "settings_power" + }, + { + "label": "settings_remote", + "content": "settings_remote" + }, + { + "label": "settings_slow_motion", + "content": "settings_slow_motion" + }, + { + "label": "settings_system_daydream", + "content": "settings_system_daydream" + }, + { + "label": "settings_timelapse", + "content": "settings_timelapse" + }, + { + "label": "settings_video_camera", + "content": "settings_video_camera" + }, + { + "label": "settings_voice", + "content": "settings_voice" + }, + { + "label": "settop_component", + "content": "settop_component" + }, + { + "label": "severe_cold", + "content": "severe_cold" + }, + { + "label": "shadow", + "content": "shadow" + }, + { + "label": "shadow_add", + "content": "shadow_add" + }, + { + "label": "shadow_minus", + "content": "shadow_minus" + }, + { + "label": "shape_line", + "content": "shape_line" + }, + { + "label": "shapes", + "content": "shapes" + }, + { + "label": "share", + "content": "share" + }, + { + "label": "share_location", + "content": "share_location" + }, + { + "label": "share_off", + "content": "share_off" + }, + { + "label": "share_reviews", + "content": "share_reviews" + }, + { + "label": "share_windows", + "content": "share_windows" + }, + { + "label": "sheets_rtl", + "content": "sheets_rtl" + }, + { + "label": "shelf_auto_hide", + "content": "shelf_auto_hide" + }, + { + "label": "shelf_position", + "content": "shelf_position" + }, + { + "label": "shelves", + "content": "shelves" + }, + { + "label": "shield", + "content": "shield" + }, + { + "label": "shield_lock", + "content": "shield_lock" + }, + { + "label": "shield_locked", + "content": "shield_locked" + }, + { + "label": "shield_moon", + "content": "shield_moon" + }, + { + "label": "shield_person", + "content": "shield_person" + }, + { + "label": "shield_question", + "content": "shield_question" + }, + { + "label": "shield_with_heart", + "content": "shield_with_heart" + }, + { + "label": "shield_with_house", + "content": "shield_with_house" + }, + { + "label": "shift", + "content": "shift" + }, + { + "label": "shift_lock", + "content": "shift_lock" + }, + { + "label": "shift_lock_off", + "content": "shift_lock_off" + }, + { + "label": "shop", + "content": "shop" + }, + { + "label": "shop_two", + "content": "shop_two" + }, + { + "label": "shopping_bag", + "content": "shopping_bag" + }, + { + "label": "shopping_basket", + "content": "shopping_basket" + }, + { + "label": "shopping_cart", + "content": "shopping_cart" + }, + { + "label": "shopping_cart_checkout", + "content": "shopping_cart_checkout" + }, + { + "label": "shopping_cart_off", + "content": "shopping_cart_off" + }, + { + "label": "shoppingmode", + "content": "shoppingmode" + }, + { + "label": "short_stay", + "content": "short_stay" + }, + { + "label": "short_text", + "content": "short_text" + }, + { + "label": "show_chart", + "content": "show_chart" + }, + { + "label": "shower", + "content": "shower" + }, + { + "label": "shuffle", + "content": "shuffle" + }, + { + "label": "shuffle_on", + "content": "shuffle_on" + }, + { + "label": "shutter_speed", + "content": "shutter_speed" + }, + { + "label": "shutter_speed_add", + "content": "shutter_speed_add" + }, + { + "label": "shutter_speed_minus", + "content": "shutter_speed_minus" + }, + { + "label": "sick", + "content": "sick" + }, + { + "label": "side_navigation", + "content": "side_navigation" + }, + { + "label": "sign_language", + "content": "sign_language" + }, + { + "label": "signal_cellular_0_bar", + "content": "signal_cellular_0_bar" + }, + { + "label": "signal_cellular_1_bar", + "content": "signal_cellular_1_bar" + }, + { + "label": "signal_cellular_2_bar", + "content": "signal_cellular_2_bar" + }, + { + "label": "signal_cellular_3_bar", + "content": "signal_cellular_3_bar" + }, + { + "label": "signal_cellular_4_bar", + "content": "signal_cellular_4_bar" + }, + { + "label": "signal_cellular_add", + "content": "signal_cellular_add" + }, + { + "label": "signal_cellular_alt", + "content": "signal_cellular_alt" + }, + { + "label": "signal_cellular_alt_1_bar", + "content": "signal_cellular_alt_1_bar" + }, + { + "label": "signal_cellular_alt_2_bar", + "content": "signal_cellular_alt_2_bar" + }, + { + "label": "signal_cellular_connected_no_internet_0_bar", + "content": "signal_cellular_connected_no_internet_0_bar" + }, + { + "label": "signal_cellular_connected_no_internet_4_bar", + "content": "signal_cellular_connected_no_internet_4_bar" + }, + { + "label": "signal_cellular_nodata", + "content": "signal_cellular_nodata" + }, + { + "label": "signal_cellular_null", + "content": "signal_cellular_null" + }, + { + "label": "signal_cellular_off", + "content": "signal_cellular_off" + }, + { + "label": "signal_cellular_pause", + "content": "signal_cellular_pause" + }, + { + "label": "signal_disconnected", + "content": "signal_disconnected" + }, + { + "label": "signal_wifi_0_bar", + "content": "signal_wifi_0_bar" + }, + { + "label": "signal_wifi_4_bar", + "content": "signal_wifi_4_bar" + }, + { + "label": "signal_wifi_bad", + "content": "signal_wifi_bad" + }, + { + "label": "signal_wifi_off", + "content": "signal_wifi_off" + }, + { + "label": "signal_wifi_statusbar_not_connected", + "content": "signal_wifi_statusbar_not_connected" + }, + { + "label": "signal_wifi_statusbar_null", + "content": "signal_wifi_statusbar_null" + }, + { + "label": "signature", + "content": "signature" + }, + { + "label": "signpost", + "content": "signpost" + }, + { + "label": "sim_card", + "content": "sim_card" + }, + { + "label": "sim_card_download", + "content": "sim_card_download" + }, + { + "label": "single_bed", + "content": "single_bed" + }, + { + "label": "sip", + "content": "sip" + }, + { + "label": "skateboarding", + "content": "skateboarding" + }, + { + "label": "skeleton", + "content": "skeleton" + }, + { + "label": "skillet", + "content": "skillet" + }, + { + "label": "skillet_cooktop", + "content": "skillet_cooktop" + }, + { + "label": "skip_next", + "content": "skip_next" + }, + { + "label": "skip_previous", + "content": "skip_previous" + }, + { + "label": "skull", + "content": "skull" + }, + { + "label": "slab_serif", + "content": "slab_serif" + }, + { + "label": "sledding", + "content": "sledding" + }, + { + "label": "sleep_score", + "content": "sleep_score" + }, + { + "label": "slide_library", + "content": "slide_library" + }, + { + "label": "sliders", + "content": "sliders" + }, + { + "label": "slideshow", + "content": "slideshow" + }, + { + "label": "slow_motion_video", + "content": "slow_motion_video" + }, + { + "label": "smart_card_reader", + "content": "smart_card_reader" + }, + { + "label": "smart_card_reader_off", + "content": "smart_card_reader_off" + }, + { + "label": "smart_display", + "content": "smart_display" + }, + { + "label": "smart_outlet", + "content": "smart_outlet" + }, + { + "label": "smart_screen", + "content": "smart_screen" + }, + { + "label": "smart_toy", + "content": "smart_toy" + }, + { + "label": "smartphone", + "content": "smartphone" + }, + { + "label": "smb_share", + "content": "smb_share" + }, + { + "label": "smoke_free", + "content": "smoke_free" + }, + { + "label": "smoking_rooms", + "content": "smoking_rooms" + }, + { + "label": "sms", + "content": "sms" + }, + { + "label": "snippet_folder", + "content": "snippet_folder" + }, + { + "label": "snooze", + "content": "snooze" + }, + { + "label": "snowboarding", + "content": "snowboarding" + }, + { + "label": "snowing", + "content": "snowing" + }, + { + "label": "snowing_heavy", + "content": "snowing_heavy" + }, + { + "label": "snowmobile", + "content": "snowmobile" + }, + { + "label": "snowshoeing", + "content": "snowshoeing" + }, + { + "label": "soap", + "content": "soap" + }, + { + "label": "social_distance", + "content": "social_distance" + }, + { + "label": "social_leaderboard", + "content": "social_leaderboard" + }, + { + "label": "solar_power", + "content": "solar_power" + }, + { + "label": "sort", + "content": "sort" + }, + { + "label": "sort_by_alpha", + "content": "sort_by_alpha" + }, + { + "label": "sos", + "content": "sos" + }, + { + "label": "sound_detection_dog_barking", + "content": "sound_detection_dog_barking" + }, + { + "label": "sound_detection_glass_break", + "content": "sound_detection_glass_break" + }, + { + "label": "sound_detection_loud_sound", + "content": "sound_detection_loud_sound" + }, + { + "label": "sound_sampler", + "content": "sound_sampler" + }, + { + "label": "soup_kitchen", + "content": "soup_kitchen" + }, + { + "label": "source_environment", + "content": "source_environment" + }, + { + "label": "source_notes", + "content": "source_notes" + }, + { + "label": "south", + "content": "south" + }, + { + "label": "south_america", + "content": "south_america" + }, + { + "label": "south_east", + "content": "south_east" + }, + { + "label": "south_west", + "content": "south_west" + }, + { + "label": "spa", + "content": "spa" + }, + { + "label": "space_bar", + "content": "space_bar" + }, + { + "label": "space_dashboard", + "content": "space_dashboard" + }, + { + "label": "spatial_audio", + "content": "spatial_audio" + }, + { + "label": "spatial_audio_off", + "content": "spatial_audio_off" + }, + { + "label": "spatial_speaker", + "content": "spatial_speaker" + }, + { + "label": "spatial_tracking", + "content": "spatial_tracking" + }, + { + "label": "speaker", + "content": "speaker" + }, + { + "label": "speaker_group", + "content": "speaker_group" + }, + { + "label": "speaker_notes", + "content": "speaker_notes" + }, + { + "label": "speaker_notes_off", + "content": "speaker_notes_off" + }, + { + "label": "speaker_phone", + "content": "speaker_phone" + }, + { + "label": "special_character", + "content": "special_character" + }, + { + "label": "specific_gravity", + "content": "specific_gravity" + }, + { + "label": "speech_to_text", + "content": "speech_to_text" + }, + { + "label": "speed", + "content": "speed" + }, + { + "label": "speed_0_25", + "content": "speed_0_25" + }, + { + "label": "speed_0_2x", + "content": "speed_0_2x" + }, + { + "label": "speed_0_5", + "content": "speed_0_5" + }, + { + "label": "speed_0_5x", + "content": "speed_0_5x" + }, + { + "label": "speed_0_75", + "content": "speed_0_75" + }, + { + "label": "speed_0_7x", + "content": "speed_0_7x" + }, + { + "label": "speed_1_2", + "content": "speed_1_2" + }, + { + "label": "speed_1_25", + "content": "speed_1_25" + }, + { + "label": "speed_1_2x", + "content": "speed_1_2x" + }, + { + "label": "speed_1_5", + "content": "speed_1_5" + }, + { + "label": "speed_1_5x", + "content": "speed_1_5x" + }, + { + "label": "speed_1_75", + "content": "speed_1_75" + }, + { + "label": "speed_1_7x", + "content": "speed_1_7x" + }, + { + "label": "speed_2x", + "content": "speed_2x" + }, + { + "label": "speed_camera", + "content": "speed_camera" + }, + { + "label": "spellcheck", + "content": "spellcheck" + }, + { + "label": "splitscreen", + "content": "splitscreen" + }, + { + "label": "splitscreen_add", + "content": "splitscreen_add" + }, + { + "label": "splitscreen_bottom", + "content": "splitscreen_bottom" + }, + { + "label": "splitscreen_landscape", + "content": "splitscreen_landscape" + }, + { + "label": "splitscreen_left", + "content": "splitscreen_left" + }, + { + "label": "splitscreen_portrait", + "content": "splitscreen_portrait" + }, + { + "label": "splitscreen_right", + "content": "splitscreen_right" + }, + { + "label": "splitscreen_top", + "content": "splitscreen_top" + }, + { + "label": "splitscreen_vertical_add", + "content": "splitscreen_vertical_add" + }, + { + "label": "spo2", + "content": "spo2" + }, + { + "label": "spoke", + "content": "spoke" + }, + { + "label": "sports", + "content": "sports" + }, + { + "label": "sports_and_outdoors", + "content": "sports_and_outdoors" + }, + { + "label": "sports_bar", + "content": "sports_bar" + }, + { + "label": "sports_baseball", + "content": "sports_baseball" + }, + { + "label": "sports_basketball", + "content": "sports_basketball" + }, + { + "label": "sports_cricket", + "content": "sports_cricket" + }, + { + "label": "sports_esports", + "content": "sports_esports" + }, + { + "label": "sports_football", + "content": "sports_football" + }, + { + "label": "sports_golf", + "content": "sports_golf" + }, + { + "label": "sports_gymnastics", + "content": "sports_gymnastics" + }, + { + "label": "sports_handball", + "content": "sports_handball" + }, + { + "label": "sports_hockey", + "content": "sports_hockey" + }, + { + "label": "sports_kabaddi", + "content": "sports_kabaddi" + }, + { + "label": "sports_martial_arts", + "content": "sports_martial_arts" + }, + { + "label": "sports_mma", + "content": "sports_mma" + }, + { + "label": "sports_motorsports", + "content": "sports_motorsports" + }, + { + "label": "sports_rugby", + "content": "sports_rugby" + }, + { + "label": "sports_score", + "content": "sports_score" + }, + { + "label": "sports_soccer", + "content": "sports_soccer" + }, + { + "label": "sports_tennis", + "content": "sports_tennis" + }, + { + "label": "sports_volleyball", + "content": "sports_volleyball" + }, + { + "label": "sprinkler", + "content": "sprinkler" + }, + { + "label": "sprint", + "content": "sprint" + }, + { + "label": "square", + "content": "square" + }, + { + "label": "square_foot", + "content": "square_foot" + }, + { + "label": "ssid_chart", + "content": "ssid_chart" + }, + { + "label": "stack", + "content": "stack" + }, + { + "label": "stack_off", + "content": "stack_off" + }, + { + "label": "stack_star", + "content": "stack_star" + }, + { + "label": "stacked_bar_chart", + "content": "stacked_bar_chart" + }, + { + "label": "stacked_email", + "content": "stacked_email" + }, + { + "label": "stacked_inbox", + "content": "stacked_inbox" + }, + { + "label": "stacked_line_chart", + "content": "stacked_line_chart" + }, + { + "label": "stacks", + "content": "stacks" + }, + { + "label": "stadia_controller", + "content": "stadia_controller" + }, + { + "label": "stadium", + "content": "stadium" + }, + { + "label": "stairs", + "content": "stairs" + }, + { + "label": "stairs_2", + "content": "stairs_2" + }, + { + "label": "star", + "content": "star" + }, + { + "label": "star_half", + "content": "star_half" + }, + { + "label": "star_rate", + "content": "star_rate" + }, + { + "label": "star_rate_half", + "content": "star_rate_half" + }, + { + "label": "stars", + "content": "stars" + }, + { + "label": "start", + "content": "start" + }, + { + "label": "stat_0", + "content": "stat_0" + }, + { + "label": "stat_1", + "content": "stat_1" + }, + { + "label": "stat_2", + "content": "stat_2" + }, + { + "label": "stat_3", + "content": "stat_3" + }, + { + "label": "stat_minus_1", + "content": "stat_minus_1" + }, + { + "label": "stat_minus_2", + "content": "stat_minus_2" + }, + { + "label": "stat_minus_3", + "content": "stat_minus_3" + }, + { + "label": "stay_current_landscape", + "content": "stay_current_landscape" + }, + { + "label": "stay_current_portrait", + "content": "stay_current_portrait" + }, + { + "label": "stay_primary_landscape", + "content": "stay_primary_landscape" + }, + { + "label": "stay_primary_portrait", + "content": "stay_primary_portrait" + }, + { + "label": "step", + "content": "step" + }, + { + "label": "step_into", + "content": "step_into" + }, + { + "label": "step_out", + "content": "step_out" + }, + { + "label": "step_over", + "content": "step_over" + }, + { + "label": "steppers", + "content": "steppers" + }, + { + "label": "steps", + "content": "steps" + }, + { + "label": "stethoscope", + "content": "stethoscope" + }, + { + "label": "stethoscope_arrow", + "content": "stethoscope_arrow" + }, + { + "label": "stethoscope_check", + "content": "stethoscope_check" + }, + { + "label": "sticky_note", + "content": "sticky_note" + }, + { + "label": "sticky_note_2", + "content": "sticky_note_2" + }, + { + "label": "stock_media", + "content": "stock_media" + }, + { + "label": "stockpot", + "content": "stockpot" + }, + { + "label": "stop", + "content": "stop" + }, + { + "label": "stop_circle", + "content": "stop_circle" + }, + { + "label": "stop_screen_share", + "content": "stop_screen_share" + }, + { + "label": "storage", + "content": "storage" + }, + { + "label": "store", + "content": "store" + }, + { + "label": "storefront", + "content": "storefront" + }, + { + "label": "storm", + "content": "storm" + }, + { + "label": "straight", + "content": "straight" + }, + { + "label": "straighten", + "content": "straighten" + }, + { + "label": "strategy", + "content": "strategy" + }, + { + "label": "stream", + "content": "stream" + }, + { + "label": "stream_apps", + "content": "stream_apps" + }, + { + "label": "streetview", + "content": "streetview" + }, + { + "label": "stress_management", + "content": "stress_management" + }, + { + "label": "strikethrough_s", + "content": "strikethrough_s" + }, + { + "label": "stroke_full", + "content": "stroke_full" + }, + { + "label": "stroke_partial", + "content": "stroke_partial" + }, + { + "label": "stroller", + "content": "stroller" + }, + { + "label": "style", + "content": "style" + }, + { + "label": "styler", + "content": "styler" + }, + { + "label": "stylus", + "content": "stylus" + }, + { + "label": "stylus_laser_pointer", + "content": "stylus_laser_pointer" + }, + { + "label": "stylus_note", + "content": "stylus_note" + }, + { + "label": "subdirectory_arrow_left", + "content": "subdirectory_arrow_left" + }, + { + "label": "subdirectory_arrow_right", + "content": "subdirectory_arrow_right" + }, + { + "label": "subheader", + "content": "subheader" + }, + { + "label": "subject", + "content": "subject" + }, + { + "label": "subscript", + "content": "subscript" + }, + { + "label": "subscriptions", + "content": "subscriptions" + }, + { + "label": "subtitles", + "content": "subtitles" + }, + { + "label": "subtitles_off", + "content": "subtitles_off" + }, + { + "label": "subway", + "content": "subway" + }, + { + "label": "summarize", + "content": "summarize" + }, + { + "label": "sunny", + "content": "sunny" + }, + { + "label": "sunny_snowing", + "content": "sunny_snowing" + }, + { + "label": "superscript", + "content": "superscript" + }, + { + "label": "supervised_user_circle", + "content": "supervised_user_circle" + }, + { + "label": "supervised_user_circle_off", + "content": "supervised_user_circle_off" + }, + { + "label": "supervisor_account", + "content": "supervisor_account" + }, + { + "label": "support", + "content": "support" + }, + { + "label": "support_agent", + "content": "support_agent" + }, + { + "label": "surfing", + "content": "surfing" + }, + { + "label": "surgical", + "content": "surgical" + }, + { + "label": "surround_sound", + "content": "surround_sound" + }, + { + "label": "swap_calls", + "content": "swap_calls" + }, + { + "label": "swap_driving_apps", + "content": "swap_driving_apps" + }, + { + "label": "swap_driving_apps_wheel", + "content": "swap_driving_apps_wheel" + }, + { + "label": "swap_horiz", + "content": "swap_horiz" + }, + { + "label": "swap_horizontal_circle", + "content": "swap_horizontal_circle" + }, + { + "label": "swap_vert", + "content": "swap_vert" + }, + { + "label": "swap_vertical_circle", + "content": "swap_vertical_circle" + }, + { + "label": "sweep", + "content": "sweep" + }, + { + "label": "swipe", + "content": "swipe" + }, + { + "label": "swipe_down", + "content": "swipe_down" + }, + { + "label": "swipe_down_alt", + "content": "swipe_down_alt" + }, + { + "label": "swipe_left", + "content": "swipe_left" + }, + { + "label": "swipe_left_alt", + "content": "swipe_left_alt" + }, + { + "label": "swipe_right", + "content": "swipe_right" + }, + { + "label": "swipe_right_alt", + "content": "swipe_right_alt" + }, + { + "label": "swipe_up", + "content": "swipe_up" + }, + { + "label": "swipe_up_alt", + "content": "swipe_up_alt" + }, + { + "label": "swipe_vertical", + "content": "swipe_vertical" + }, + { + "label": "switch", + "content": "switch" + }, + { + "label": "switch_access", + "content": "switch_access" + }, + { + "label": "switch_access_2", + "content": "switch_access_2" + }, + { + "label": "switch_access_shortcut", + "content": "switch_access_shortcut" + }, + { + "label": "switch_access_shortcut_add", + "content": "switch_access_shortcut_add" + }, + { + "label": "switch_account", + "content": "switch_account" + }, + { + "label": "switch_camera", + "content": "switch_camera" + }, + { + "label": "switch_left", + "content": "switch_left" + }, + { + "label": "switch_right", + "content": "switch_right" + }, + { + "label": "switch_video", + "content": "switch_video" + }, + { + "label": "switches", + "content": "switches" + }, + { + "label": "sword_rose", + "content": "sword_rose" + }, + { + "label": "swords", + "content": "swords" + }, + { + "label": "symptoms", + "content": "symptoms" + }, + { + "label": "synagogue", + "content": "synagogue" + }, + { + "label": "sync", + "content": "sync" + }, + { + "label": "sync_alt", + "content": "sync_alt" + }, + { + "label": "sync_disabled", + "content": "sync_disabled" + }, + { + "label": "sync_lock", + "content": "sync_lock" + }, + { + "label": "sync_problem", + "content": "sync_problem" + }, + { + "label": "sync_saved_locally", + "content": "sync_saved_locally" + }, + { + "label": "syringe", + "content": "syringe" + }, + { + "label": "system_update", + "content": "system_update" + }, + { + "label": "system_update_alt", + "content": "system_update_alt" + }, + { + "label": "tab", + "content": "tab" + }, + { + "label": "tab_close", + "content": "tab_close" + }, + { + "label": "tab_close_right", + "content": "tab_close_right" + }, + { + "label": "tab_duplicate", + "content": "tab_duplicate" + }, + { + "label": "tab_group", + "content": "tab_group" + }, + { + "label": "tab_move", + "content": "tab_move" + }, + { + "label": "tab_new_right", + "content": "tab_new_right" + }, + { + "label": "tab_recent", + "content": "tab_recent" + }, + { + "label": "tab_unselected", + "content": "tab_unselected" + }, + { + "label": "table", + "content": "table" + }, + { + "label": "table_bar", + "content": "table_bar" + }, + { + "label": "table_chart", + "content": "table_chart" + }, + { + "label": "table_chart_view", + "content": "table_chart_view" + }, + { + "label": "table_eye", + "content": "table_eye" + }, + { + "label": "table_lamp", + "content": "table_lamp" + }, + { + "label": "table_restaurant", + "content": "table_restaurant" + }, + { + "label": "table_rows", + "content": "table_rows" + }, + { + "label": "table_rows_narrow", + "content": "table_rows_narrow" + }, + { + "label": "table_view", + "content": "table_view" + }, + { + "label": "tablet", + "content": "tablet" + }, + { + "label": "tablet_android", + "content": "tablet_android" + }, + { + "label": "tablet_mac", + "content": "tablet_mac" + }, + { + "label": "tabs", + "content": "tabs" + }, + { + "label": "tactic", + "content": "tactic" + }, + { + "label": "tag", + "content": "tag" + }, + { + "label": "takeout_dining", + "content": "takeout_dining" + }, + { + "label": "tamper_detection_off", + "content": "tamper_detection_off" + }, + { + "label": "tamper_detection_on", + "content": "tamper_detection_on" + }, + { + "label": "tap_and_play", + "content": "tap_and_play" + }, + { + "label": "tapas", + "content": "tapas" + }, + { + "label": "target", + "content": "target" + }, + { + "label": "task", + "content": "task" + }, + { + "label": "task_alt", + "content": "task_alt" + }, + { + "label": "taunt", + "content": "taunt" + }, + { + "label": "taxi_alert", + "content": "taxi_alert" + }, + { + "label": "team_dashboard", + "content": "team_dashboard" + }, + { + "label": "temp_preferences_eco", + "content": "temp_preferences_eco" + }, + { + "label": "temple_buddhist", + "content": "temple_buddhist" + }, + { + "label": "temple_hindu", + "content": "temple_hindu" + }, + { + "label": "tenancy", + "content": "tenancy" + }, + { + "label": "terminal", + "content": "terminal" + }, + { + "label": "text_ad", + "content": "text_ad" + }, + { + "label": "text_decrease", + "content": "text_decrease" + }, + { + "label": "text_fields", + "content": "text_fields" + }, + { + "label": "text_fields_alt", + "content": "text_fields_alt" + }, + { + "label": "text_format", + "content": "text_format" + }, + { + "label": "text_increase", + "content": "text_increase" + }, + { + "label": "text_rotate_up", + "content": "text_rotate_up" + }, + { + "label": "text_rotate_vertical", + "content": "text_rotate_vertical" + }, + { + "label": "text_rotation_angledown", + "content": "text_rotation_angledown" + }, + { + "label": "text_rotation_angleup", + "content": "text_rotation_angleup" + }, + { + "label": "text_rotation_down", + "content": "text_rotation_down" + }, + { + "label": "text_rotation_none", + "content": "text_rotation_none" + }, + { + "label": "text_select_end", + "content": "text_select_end" + }, + { + "label": "text_select_jump_to_beginning", + "content": "text_select_jump_to_beginning" + }, + { + "label": "text_select_jump_to_end", + "content": "text_select_jump_to_end" + }, + { + "label": "text_select_move_back_character", + "content": "text_select_move_back_character" + }, + { + "label": "text_select_move_back_word", + "content": "text_select_move_back_word" + }, + { + "label": "text_select_move_down", + "content": "text_select_move_down" + }, + { + "label": "text_select_move_forward_character", + "content": "text_select_move_forward_character" + }, + { + "label": "text_select_move_forward_word", + "content": "text_select_move_forward_word" + }, + { + "label": "text_select_move_up", + "content": "text_select_move_up" + }, + { + "label": "text_select_start", + "content": "text_select_start" + }, + { + "label": "text_snippet", + "content": "text_snippet" + }, + { + "label": "text_to_speech", + "content": "text_to_speech" + }, + { + "label": "text_up", + "content": "text_up" + }, + { + "label": "texture", + "content": "texture" + }, + { + "label": "texture_add", + "content": "texture_add" + }, + { + "label": "texture_minus", + "content": "texture_minus" + }, + { + "label": "theater_comedy", + "content": "theater_comedy" + }, + { + "label": "theaters", + "content": "theaters" + }, + { + "label": "thermometer", + "content": "thermometer" + }, + { + "label": "thermometer_add", + "content": "thermometer_add" + }, + { + "label": "thermometer_gain", + "content": "thermometer_gain" + }, + { + "label": "thermometer_loss", + "content": "thermometer_loss" + }, + { + "label": "thermometer_minus", + "content": "thermometer_minus" + }, + { + "label": "thermostat", + "content": "thermostat" + }, + { + "label": "thermostat_auto", + "content": "thermostat_auto" + }, + { + "label": "thermostat_carbon", + "content": "thermostat_carbon" + }, + { + "label": "things_to_do", + "content": "things_to_do" + }, + { + "label": "thread_unread", + "content": "thread_unread" + }, + { + "label": "thumb_down", + "content": "thumb_down" + }, + { + "label": "thumb_up", + "content": "thumb_up" + }, + { + "label": "thumbnail_bar", + "content": "thumbnail_bar" + }, + { + "label": "thumbs_up_down", + "content": "thumbs_up_down" + }, + { + "label": "thunderstorm", + "content": "thunderstorm" + }, + { + "label": "tibia", + "content": "tibia" + }, + { + "label": "tibia_alt", + "content": "tibia_alt" + }, + { + "label": "time_auto", + "content": "time_auto" + }, + { + "label": "timelapse", + "content": "timelapse" + }, + { + "label": "timeline", + "content": "timeline" + }, + { + "label": "timer", + "content": "timer" + }, + { + "label": "timer_10", + "content": "timer_10" + }, + { + "label": "timer_10_alt_1", + "content": "timer_10_alt_1" + }, + { + "label": "timer_10_select", + "content": "timer_10_select" + }, + { + "label": "timer_3", + "content": "timer_3" + }, + { + "label": "timer_3_alt_1", + "content": "timer_3_alt_1" + }, + { + "label": "timer_3_select", + "content": "timer_3_select" + }, + { + "label": "timer_5", + "content": "timer_5" + }, + { + "label": "timer_5_shutter", + "content": "timer_5_shutter" + }, + { + "label": "timer_off", + "content": "timer_off" + }, + { + "label": "timer_pause", + "content": "timer_pause" + }, + { + "label": "timer_play", + "content": "timer_play" + }, + { + "label": "tire_repair", + "content": "tire_repair" + }, + { + "label": "title", + "content": "title" + }, + { + "label": "titlecase", + "content": "titlecase" + }, + { + "label": "toast", + "content": "toast" + }, + { + "label": "toc", + "content": "toc" + }, + { + "label": "today", + "content": "today" + }, + { + "label": "toggle_off", + "content": "toggle_off" + }, + { + "label": "toggle_on", + "content": "toggle_on" + }, + { + "label": "token", + "content": "token" + }, + { + "label": "toll", + "content": "toll" + }, + { + "label": "tonality", + "content": "tonality" + }, + { + "label": "toolbar", + "content": "toolbar" + }, + { + "label": "tools_flat_head", + "content": "tools_flat_head" + }, + { + "label": "tools_installation_kit", + "content": "tools_installation_kit" + }, + { + "label": "tools_ladder", + "content": "tools_ladder" + }, + { + "label": "tools_level", + "content": "tools_level" + }, + { + "label": "tools_phillips", + "content": "tools_phillips" + }, + { + "label": "tools_pliers_wire_stripper", + "content": "tools_pliers_wire_stripper" + }, + { + "label": "tools_power_drill", + "content": "tools_power_drill" + }, + { + "label": "tooltip", + "content": "tooltip" + }, + { + "label": "top_panel_close", + "content": "top_panel_close" + }, + { + "label": "top_panel_open", + "content": "top_panel_open" + }, + { + "label": "topic", + "content": "topic" + }, + { + "label": "tornado", + "content": "tornado" + }, + { + "label": "total_dissolved_solids", + "content": "total_dissolved_solids" + }, + { + "label": "touch_app", + "content": "touch_app" + }, + { + "label": "touchpad_mouse", + "content": "touchpad_mouse" + }, + { + "label": "touchpad_mouse_off", + "content": "touchpad_mouse_off" + }, + { + "label": "tour", + "content": "tour" + }, + { + "label": "toys", + "content": "toys" + }, + { + "label": "toys_and_games", + "content": "toys_and_games" + }, + { + "label": "toys_fan", + "content": "toys_fan" + }, + { + "label": "track_changes", + "content": "track_changes" + }, + { + "label": "trackpad_input", + "content": "trackpad_input" + }, + { + "label": "traffic", + "content": "traffic" + }, + { + "label": "traffic_jam", + "content": "traffic_jam" + }, + { + "label": "trail_length", + "content": "trail_length" + }, + { + "label": "trail_length_medium", + "content": "trail_length_medium" + }, + { + "label": "trail_length_short", + "content": "trail_length_short" + }, + { + "label": "train", + "content": "train" + }, + { + "label": "tram", + "content": "tram" + }, + { + "label": "transcribe", + "content": "transcribe" + }, + { + "label": "transfer_within_a_station", + "content": "transfer_within_a_station" + }, + { + "label": "transform", + "content": "transform" + }, + { + "label": "transgender", + "content": "transgender" + }, + { + "label": "transit_enterexit", + "content": "transit_enterexit" + }, + { + "label": "transition_chop", + "content": "transition_chop" + }, + { + "label": "transition_dissolve", + "content": "transition_dissolve" + }, + { + "label": "transition_fade", + "content": "transition_fade" + }, + { + "label": "transition_push", + "content": "transition_push" + }, + { + "label": "transition_slide", + "content": "transition_slide" + }, + { + "label": "translate", + "content": "translate" + }, + { + "label": "transportation", + "content": "transportation" + }, + { + "label": "travel", + "content": "travel" + }, + { + "label": "travel_explore", + "content": "travel_explore" + }, + { + "label": "travel_luggage_and_bags", + "content": "travel_luggage_and_bags" + }, + { + "label": "trending_down", + "content": "trending_down" + }, + { + "label": "trending_flat", + "content": "trending_flat" + }, + { + "label": "trending_up", + "content": "trending_up" + }, + { + "label": "trip", + "content": "trip" + }, + { + "label": "trip_origin", + "content": "trip_origin" + }, + { + "label": "trolley", + "content": "trolley" + }, + { + "label": "trolley_cable_car", + "content": "trolley_cable_car" + }, + { + "label": "trophy", + "content": "trophy" + }, + { + "label": "troubleshoot", + "content": "troubleshoot" + }, + { + "label": "tsunami", + "content": "tsunami" + }, + { + "label": "tsv", + "content": "tsv" + }, + { + "label": "tty", + "content": "tty" + }, + { + "label": "tune", + "content": "tune" + }, + { + "label": "turn_left", + "content": "turn_left" + }, + { + "label": "turn_right", + "content": "turn_right" + }, + { + "label": "turn_sharp_left", + "content": "turn_sharp_left" + }, + { + "label": "turn_sharp_right", + "content": "turn_sharp_right" + }, + { + "label": "turn_slight_left", + "content": "turn_slight_left" + }, + { + "label": "turn_slight_right", + "content": "turn_slight_right" + }, + { + "label": "tv", + "content": "tv" + }, + { + "label": "tv_gen", + "content": "tv_gen" + }, + { + "label": "tv_guide", + "content": "tv_guide" + }, + { + "label": "tv_off", + "content": "tv_off" + }, + { + "label": "tv_options_edit_channels", + "content": "tv_options_edit_channels" + }, + { + "label": "tv_options_input_settings", + "content": "tv_options_input_settings" + }, + { + "label": "tv_remote", + "content": "tv_remote" + }, + { + "label": "tv_signin", + "content": "tv_signin" + }, + { + "label": "tv_with_assistant", + "content": "tv_with_assistant" + }, + { + "label": "two_pager", + "content": "two_pager" + }, + { + "label": "two_wheeler", + "content": "two_wheeler" + }, + { + "label": "type_specimen", + "content": "type_specimen" + }, + { + "label": "u_turn_left", + "content": "u_turn_left" + }, + { + "label": "u_turn_right", + "content": "u_turn_right" + }, + { + "label": "ulna_radius", + "content": "ulna_radius" + }, + { + "label": "ulna_radius_alt", + "content": "ulna_radius_alt" + }, + { + "label": "umbrella", + "content": "umbrella" + }, + { + "label": "unarchive", + "content": "unarchive" + }, + { + "label": "undo", + "content": "undo" + }, + { + "label": "unfold_less", + "content": "unfold_less" + }, + { + "label": "unfold_less_double", + "content": "unfold_less_double" + }, + { + "label": "unfold_more", + "content": "unfold_more" + }, + { + "label": "unfold_more_double", + "content": "unfold_more_double" + }, + { + "label": "ungroup", + "content": "ungroup" + }, + { + "label": "universal_currency", + "content": "universal_currency" + }, + { + "label": "universal_currency_alt", + "content": "universal_currency_alt" + }, + { + "label": "universal_local", + "content": "universal_local" + }, + { + "label": "unknown_2", + "content": "unknown_2" + }, + { + "label": "unknown_5", + "content": "unknown_5" + }, + { + "label": "unknown_7", + "content": "unknown_7" + }, + { + "label": "unknown_document", + "content": "unknown_document" + }, + { + "label": "unknown_med", + "content": "unknown_med" + }, + { + "label": "unlicense", + "content": "unlicense" + }, + { + "label": "unpaved_road", + "content": "unpaved_road" + }, + { + "label": "unpublished", + "content": "unpublished" + }, + { + "label": "unsubscribe", + "content": "unsubscribe" + }, + { + "label": "upcoming", + "content": "upcoming" + }, + { + "label": "update", + "content": "update" + }, + { + "label": "update_disabled", + "content": "update_disabled" + }, + { + "label": "upgrade", + "content": "upgrade" + }, + { + "label": "upload", + "content": "upload" + }, + { + "label": "upload_2", + "content": "upload_2" + }, + { + "label": "upload_file", + "content": "upload_file" + }, + { + "label": "uppercase", + "content": "uppercase" + }, + { + "label": "urology", + "content": "urology" + }, + { + "label": "usb", + "content": "usb" + }, + { + "label": "usb_off", + "content": "usb_off" + }, + { + "label": "user_attributes", + "content": "user_attributes" + }, + { + "label": "vaccines", + "content": "vaccines" + }, + { + "label": "vacuum", + "content": "vacuum" + }, + { + "label": "valve", + "content": "valve" + }, + { + "label": "vape_free", + "content": "vape_free" + }, + { + "label": "vaping_rooms", + "content": "vaping_rooms" + }, + { + "label": "variable_add", + "content": "variable_add" + }, + { + "label": "variable_insert", + "content": "variable_insert" + }, + { + "label": "variable_remove", + "content": "variable_remove" + }, + { + "label": "variables", + "content": "variables" + }, + { + "label": "ventilator", + "content": "ventilator" + }, + { + "label": "verified", + "content": "verified" + }, + { + "label": "verified_user", + "content": "verified_user" + }, + { + "label": "vertical_align_bottom", + "content": "vertical_align_bottom" + }, + { + "label": "vertical_align_center", + "content": "vertical_align_center" + }, + { + "label": "vertical_align_top", + "content": "vertical_align_top" + }, + { + "label": "vertical_distribute", + "content": "vertical_distribute" + }, + { + "label": "vertical_shades", + "content": "vertical_shades" + }, + { + "label": "vertical_shades_closed", + "content": "vertical_shades_closed" + }, + { + "label": "vertical_split", + "content": "vertical_split" + }, + { + "label": "vibration", + "content": "vibration" + }, + { + "label": "video_call", + "content": "video_call" + }, + { + "label": "video_camera_back", + "content": "video_camera_back" + }, + { + "label": "video_camera_front", + "content": "video_camera_front" + }, + { + "label": "video_camera_front_off", + "content": "video_camera_front_off" + }, + { + "label": "video_chat", + "content": "video_chat" + }, + { + "label": "video_file", + "content": "video_file" + }, + { + "label": "video_label", + "content": "video_label" + }, + { + "label": "video_library", + "content": "video_library" + }, + { + "label": "video_search", + "content": "video_search" + }, + { + "label": "video_settings", + "content": "video_settings" + }, + { + "label": "video_stable", + "content": "video_stable" + }, + { + "label": "videocam", + "content": "videocam" + }, + { + "label": "videocam_off", + "content": "videocam_off" + }, + { + "label": "videogame_asset", + "content": "videogame_asset" + }, + { + "label": "videogame_asset_off", + "content": "videogame_asset_off" + }, + { + "label": "view_agenda", + "content": "view_agenda" + }, + { + "label": "view_array", + "content": "view_array" + }, + { + "label": "view_carousel", + "content": "view_carousel" + }, + { + "label": "view_column", + "content": "view_column" + }, + { + "label": "view_column_2", + "content": "view_column_2" + }, + { + "label": "view_comfy", + "content": "view_comfy" + }, + { + "label": "view_comfy_alt", + "content": "view_comfy_alt" + }, + { + "label": "view_compact", + "content": "view_compact" + }, + { + "label": "view_compact_alt", + "content": "view_compact_alt" + }, + { + "label": "view_cozy", + "content": "view_cozy" + }, + { + "label": "view_day", + "content": "view_day" + }, + { + "label": "view_headline", + "content": "view_headline" + }, + { + "label": "view_in_ar", + "content": "view_in_ar" + }, + { + "label": "view_in_ar_off", + "content": "view_in_ar_off" + }, + { + "label": "view_kanban", + "content": "view_kanban" + }, + { + "label": "view_list", + "content": "view_list" + }, + { + "label": "view_module", + "content": "view_module" + }, + { + "label": "view_quilt", + "content": "view_quilt" + }, + { + "label": "view_real_size", + "content": "view_real_size" + }, + { + "label": "view_sidebar", + "content": "view_sidebar" + }, + { + "label": "view_stream", + "content": "view_stream" + }, + { + "label": "view_timeline", + "content": "view_timeline" + }, + { + "label": "view_week", + "content": "view_week" + }, + { + "label": "vignette", + "content": "vignette" + }, + { + "label": "villa", + "content": "villa" + }, + { + "label": "visibility", + "content": "visibility" + }, + { + "label": "visibility_lock", + "content": "visibility_lock" + }, + { + "label": "visibility_off", + "content": "visibility_off" + }, + { + "label": "vital_signs", + "content": "vital_signs" + }, + { + "label": "vo2_max", + "content": "vo2_max" + }, + { + "label": "voice_chat", + "content": "voice_chat" + }, + { + "label": "voice_over_off", + "content": "voice_over_off" + }, + { + "label": "voice_selection", + "content": "voice_selection" + }, + { + "label": "voicemail", + "content": "voicemail" + }, + { + "label": "volcano", + "content": "volcano" + }, + { + "label": "volume_down", + "content": "volume_down" + }, + { + "label": "volume_down_alt", + "content": "volume_down_alt" + }, + { + "label": "volume_mute", + "content": "volume_mute" + }, + { + "label": "volume_off", + "content": "volume_off" + }, + { + "label": "volume_up", + "content": "volume_up" + }, + { + "label": "volunteer_activism", + "content": "volunteer_activism" + }, + { + "label": "voting_chip", + "content": "voting_chip" + }, + { + "label": "vpn_key", + "content": "vpn_key" + }, + { + "label": "vpn_key_alert", + "content": "vpn_key_alert" + }, + { + "label": "vpn_key_off", + "content": "vpn_key_off" + }, + { + "label": "vpn_lock", + "content": "vpn_lock" + }, + { + "label": "vr180_create2d", + "content": "vr180_create2d" + }, + { + "label": "vr180_create2d_off", + "content": "vr180_create2d_off" + }, + { + "label": "vrpano", + "content": "vrpano" + }, + { + "label": "wall_art", + "content": "wall_art" + }, + { + "label": "wall_lamp", + "content": "wall_lamp" + }, + { + "label": "wallet", + "content": "wallet" + }, + { + "label": "wallpaper", + "content": "wallpaper" + }, + { + "label": "wallpaper_slideshow", + "content": "wallpaper_slideshow" + }, + { + "label": "ward", + "content": "ward" + }, + { + "label": "warehouse", + "content": "warehouse" + }, + { + "label": "warning", + "content": "warning" + }, + { + "label": "warning_off", + "content": "warning_off" + }, + { + "label": "wash", + "content": "wash" + }, + { + "label": "watch", + "content": "watch" + }, + { + "label": "watch_button_press", + "content": "watch_button_press" + }, + { + "label": "watch_check", + "content": "watch_check" + }, + { + "label": "watch_off", + "content": "watch_off" + }, + { + "label": "watch_screentime", + "content": "watch_screentime" + }, + { + "label": "watch_vibration", + "content": "watch_vibration" + }, + { + "label": "watch_wake", + "content": "watch_wake" + }, + { + "label": "water", + "content": "water" + }, + { + "label": "water_bottle", + "content": "water_bottle" + }, + { + "label": "water_bottle_large", + "content": "water_bottle_large" + }, + { + "label": "water_damage", + "content": "water_damage" + }, + { + "label": "water_do", + "content": "water_do" + }, + { + "label": "water_drop", + "content": "water_drop" + }, + { + "label": "water_ec", + "content": "water_ec" + }, + { + "label": "water_full", + "content": "water_full" + }, + { + "label": "water_heater", + "content": "water_heater" + }, + { + "label": "water_lock", + "content": "water_lock" + }, + { + "label": "water_loss", + "content": "water_loss" + }, + { + "label": "water_lux", + "content": "water_lux" + }, + { + "label": "water_medium", + "content": "water_medium" + }, + { + "label": "water_orp", + "content": "water_orp" + }, + { + "label": "water_ph", + "content": "water_ph" + }, + { + "label": "water_pump", + "content": "water_pump" + }, + { + "label": "water_voc", + "content": "water_voc" + }, + { + "label": "waterfall_chart", + "content": "waterfall_chart" + }, + { + "label": "waves", + "content": "waves" + }, + { + "label": "waving_hand", + "content": "waving_hand" + }, + { + "label": "wb_auto", + "content": "wb_auto" + }, + { + "label": "wb_incandescent", + "content": "wb_incandescent" + }, + { + "label": "wb_iridescent", + "content": "wb_iridescent" + }, + { + "label": "wb_shade", + "content": "wb_shade" + }, + { + "label": "wb_sunny", + "content": "wb_sunny" + }, + { + "label": "wb_twilight", + "content": "wb_twilight" + }, + { + "label": "wc", + "content": "wc" + }, + { + "label": "weather_hail", + "content": "weather_hail" + }, + { + "label": "weather_mix", + "content": "weather_mix" + }, + { + "label": "weather_snowy", + "content": "weather_snowy" + }, + { + "label": "web", + "content": "web" + }, + { + "label": "web_asset", + "content": "web_asset" + }, + { + "label": "web_asset_off", + "content": "web_asset_off" + }, + { + "label": "web_stories", + "content": "web_stories" + }, + { + "label": "web_traffic", + "content": "web_traffic" + }, + { + "label": "webhook", + "content": "webhook" + }, + { + "label": "weekend", + "content": "weekend" + }, + { + "label": "weight", + "content": "weight" + }, + { + "label": "west", + "content": "west" + }, + { + "label": "whatshot", + "content": "whatshot" + }, + { + "label": "wheelchair_pickup", + "content": "wheelchair_pickup" + }, + { + "label": "where_to_vote", + "content": "where_to_vote" + }, + { + "label": "widgets", + "content": "widgets" + }, + { + "label": "width", + "content": "width" + }, + { + "label": "width_full", + "content": "width_full" + }, + { + "label": "width_normal", + "content": "width_normal" + }, + { + "label": "width_wide", + "content": "width_wide" + }, + { + "label": "wifi", + "content": "wifi" + }, + { + "label": "wifi_1_bar", + "content": "wifi_1_bar" + }, + { + "label": "wifi_2_bar", + "content": "wifi_2_bar" + }, + { + "label": "wifi_add", + "content": "wifi_add" + }, + { + "label": "wifi_calling", + "content": "wifi_calling" + }, + { + "label": "wifi_calling_1", + "content": "wifi_calling_1" + }, + { + "label": "wifi_calling_2", + "content": "wifi_calling_2" + }, + { + "label": "wifi_calling_3", + "content": "wifi_calling_3" + }, + { + "label": "wifi_channel", + "content": "wifi_channel" + }, + { + "label": "wifi_find", + "content": "wifi_find" + }, + { + "label": "wifi_home", + "content": "wifi_home" + }, + { + "label": "wifi_lock", + "content": "wifi_lock" + }, + { + "label": "wifi_notification", + "content": "wifi_notification" + }, + { + "label": "wifi_off", + "content": "wifi_off" + }, + { + "label": "wifi_password", + "content": "wifi_password" + }, + { + "label": "wifi_protected_setup", + "content": "wifi_protected_setup" + }, + { + "label": "wifi_proxy", + "content": "wifi_proxy" + }, + { + "label": "wifi_tethering", + "content": "wifi_tethering" + }, + { + "label": "wifi_tethering_error", + "content": "wifi_tethering_error" + }, + { + "label": "wifi_tethering_off", + "content": "wifi_tethering_off" + }, + { + "label": "wind_power", + "content": "wind_power" + }, + { + "label": "window", + "content": "window" + }, + { + "label": "window_closed", + "content": "window_closed" + }, + { + "label": "window_open", + "content": "window_open" + }, + { + "label": "window_sensor", + "content": "window_sensor" + }, + { + "label": "wine_bar", + "content": "wine_bar" + }, + { + "label": "woman", + "content": "woman" + }, + { + "label": "woman_2", + "content": "woman_2" + }, + { + "label": "work", + "content": "work" + }, + { + "label": "work_alert", + "content": "work_alert" + }, + { + "label": "work_history", + "content": "work_history" + }, + { + "label": "work_update", + "content": "work_update" + }, + { + "label": "workspace_premium", + "content": "workspace_premium" + }, + { + "label": "workspaces", + "content": "workspaces" + }, + { + "label": "wounds_injuries", + "content": "wounds_injuries" + }, + { + "label": "wrap_text", + "content": "wrap_text" + }, + { + "label": "wrist", + "content": "wrist" + }, + { + "label": "wrong_location", + "content": "wrong_location" + }, + { + "label": "wysiwyg", + "content": "wysiwyg" + }, + { + "label": "yard", + "content": "yard" + }, + { + "label": "your_trips", + "content": "your_trips" + }, + { + "label": "youtube_activity", + "content": "youtube_activity" + }, + { + "label": "youtube_searched_for", + "content": "youtube_searched_for" + }, + { + "label": "zone_person_alert", + "content": "zone_person_alert" + }, + { + "label": "zone_person_idle", + "content": "zone_person_idle" + }, + { + "label": "zone_person_urgent", + "content": "zone_person_urgent" + }, + { + "label": "zoom_in", + "content": "zoom_in" + }, + { + "label": "zoom_in_map", + "content": "zoom_in_map" + }, + { + "label": "zoom_out", + "content": "zoom_out" + }, + { + "label": "zoom_out_map", + "content": "zoom_out_map" + } + ] +} diff --git a/packages/iconography/config/material-symbols-outlined.config.json b/packages/iconography/config/material-symbols-outlined.config.json new file mode 100644 index 0000000..d739859 --- /dev/null +++ b/packages/iconography/config/material-symbols-outlined.config.json @@ -0,0 +1,13263 @@ +{ + "$schema": "../schema.json", + "title": "Outlined", + "name": "boxuk/material-symbols-outlined", + "tagName": "span", + "className": "material-symbols-outlined", + "url": "https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200", + "additionalCss": ".material-symbols-outlined { font-size: inherit !important; vertical-align: text-bottom; line-height: 1.333; text-decoration: inherit; font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }", + "icons": [ + { + "label": "123", + "content": "123" + }, + { + "label": "360", + "content": "360" + }, + { + "label": "10k", + "content": "10k" + }, + { + "label": "10mp", + "content": "10mp" + }, + { + "label": "11mp", + "content": "11mp" + }, + { + "label": "12mp", + "content": "12mp" + }, + { + "label": "13mp", + "content": "13mp" + }, + { + "label": "14mp", + "content": "14mp" + }, + { + "label": "15mp", + "content": "15mp" + }, + { + "label": "16mp", + "content": "16mp" + }, + { + "label": "17mp", + "content": "17mp" + }, + { + "label": "18_up_rating", + "content": "18_up_rating" + }, + { + "label": "18mp", + "content": "18mp" + }, + { + "label": "19mp", + "content": "19mp" + }, + { + "label": "1k", + "content": "1k" + }, + { + "label": "1k_plus", + "content": "1k_plus" + }, + { + "label": "1x_mobiledata", + "content": "1x_mobiledata" + }, + { + "label": "1x_mobiledata_badge", + "content": "1x_mobiledata_badge" + }, + { + "label": "20mp", + "content": "20mp" + }, + { + "label": "21mp", + "content": "21mp" + }, + { + "label": "22mp", + "content": "22mp" + }, + { + "label": "23mp", + "content": "23mp" + }, + { + "label": "24mp", + "content": "24mp" + }, + { + "label": "2d", + "content": "2d" + }, + { + "label": "2k", + "content": "2k" + }, + { + "label": "2k_plus", + "content": "2k_plus" + }, + { + "label": "2mp", + "content": "2mp" + }, + { + "label": "30fps", + "content": "30fps" + }, + { + "label": "30fps_select", + "content": "30fps_select" + }, + { + "label": "3d_rotation", + "content": "3d_rotation" + }, + { + "label": "3g_mobiledata", + "content": "3g_mobiledata" + }, + { + "label": "3g_mobiledata_badge", + "content": "3g_mobiledata_badge" + }, + { + "label": "3k", + "content": "3k" + }, + { + "label": "3k_plus", + "content": "3k_plus" + }, + { + "label": "3mp", + "content": "3mp" + }, + { + "label": "3p", + "content": "3p" + }, + { + "label": "4g_mobiledata", + "content": "4g_mobiledata" + }, + { + "label": "4g_mobiledata_badge", + "content": "4g_mobiledata_badge" + }, + { + "label": "4g_plus_mobiledata", + "content": "4g_plus_mobiledata" + }, + { + "label": "4k", + "content": "4k" + }, + { + "label": "4k_plus", + "content": "4k_plus" + }, + { + "label": "4mp", + "content": "4mp" + }, + { + "label": "50mp", + "content": "50mp" + }, + { + "label": "5g", + "content": "5g" + }, + { + "label": "5g_mobiledata_badge", + "content": "5g_mobiledata_badge" + }, + { + "label": "5k", + "content": "5k" + }, + { + "label": "5k_plus", + "content": "5k_plus" + }, + { + "label": "5mp", + "content": "5mp" + }, + { + "label": "60fps", + "content": "60fps" + }, + { + "label": "60fps_select", + "content": "60fps_select" + }, + { + "label": "6_ft_apart", + "content": "6_ft_apart" + }, + { + "label": "6k", + "content": "6k" + }, + { + "label": "6k_plus", + "content": "6k_plus" + }, + { + "label": "6mp", + "content": "6mp" + }, + { + "label": "7k", + "content": "7k" + }, + { + "label": "7k_plus", + "content": "7k_plus" + }, + { + "label": "7mp", + "content": "7mp" + }, + { + "label": "8k", + "content": "8k" + }, + { + "label": "8k_plus", + "content": "8k_plus" + }, + { + "label": "8mp", + "content": "8mp" + }, + { + "label": "9k", + "content": "9k" + }, + { + "label": "9k_plus", + "content": "9k_plus" + }, + { + "label": "9mp", + "content": "9mp" + }, + { + "label": "abc", + "content": "abc" + }, + { + "label": "ac_unit", + "content": "ac_unit" + }, + { + "label": "accessibility", + "content": "accessibility" + }, + { + "label": "accessibility_new", + "content": "accessibility_new" + }, + { + "label": "accessible", + "content": "accessible" + }, + { + "label": "accessible_forward", + "content": "accessible_forward" + }, + { + "label": "account_balance", + "content": "account_balance" + }, + { + "label": "account_balance_wallet", + "content": "account_balance_wallet" + }, + { + "label": "account_box", + "content": "account_box" + }, + { + "label": "account_child", + "content": "account_child" + }, + { + "label": "account_child_invert", + "content": "account_child_invert" + }, + { + "label": "account_circle", + "content": "account_circle" + }, + { + "label": "account_circle_off", + "content": "account_circle_off" + }, + { + "label": "account_tree", + "content": "account_tree" + }, + { + "label": "action_key", + "content": "action_key" + }, + { + "label": "activity_zone", + "content": "activity_zone" + }, + { + "label": "acute", + "content": "acute" + }, + { + "label": "ad", + "content": "ad" + }, + { + "label": "ad_group", + "content": "ad_group" + }, + { + "label": "ad_group_off", + "content": "ad_group_off" + }, + { + "label": "ad_off", + "content": "ad_off" + }, + { + "label": "ad_units", + "content": "ad_units" + }, + { + "label": "adaptive_audio_mic", + "content": "adaptive_audio_mic" + }, + { + "label": "adaptive_audio_mic_off", + "content": "adaptive_audio_mic_off" + }, + { + "label": "adb", + "content": "adb" + }, + { + "label": "add", + "content": "add" + }, + { + "label": "add_a_photo", + "content": "add_a_photo" + }, + { + "label": "add_ad", + "content": "add_ad" + }, + { + "label": "add_alert", + "content": "add_alert" + }, + { + "label": "add_box", + "content": "add_box" + }, + { + "label": "add_business", + "content": "add_business" + }, + { + "label": "add_call", + "content": "add_call" + }, + { + "label": "add_card", + "content": "add_card" + }, + { + "label": "add_chart", + "content": "add_chart" + }, + { + "label": "add_circle", + "content": "add_circle" + }, + { + "label": "add_comment", + "content": "add_comment" + }, + { + "label": "add_diamond", + "content": "add_diamond" + }, + { + "label": "add_home", + "content": "add_home" + }, + { + "label": "add_home_work", + "content": "add_home_work" + }, + { + "label": "add_link", + "content": "add_link" + }, + { + "label": "add_location", + "content": "add_location" + }, + { + "label": "add_location_alt", + "content": "add_location_alt" + }, + { + "label": "add_moderator", + "content": "add_moderator" + }, + { + "label": "add_notes", + "content": "add_notes" + }, + { + "label": "add_photo_alternate", + "content": "add_photo_alternate" + }, + { + "label": "add_reaction", + "content": "add_reaction" + }, + { + "label": "add_road", + "content": "add_road" + }, + { + "label": "add_shopping_cart", + "content": "add_shopping_cart" + }, + { + "label": "add_task", + "content": "add_task" + }, + { + "label": "add_to_drive", + "content": "add_to_drive" + }, + { + "label": "add_to_home_screen", + "content": "add_to_home_screen" + }, + { + "label": "add_to_photos", + "content": "add_to_photos" + }, + { + "label": "add_to_queue", + "content": "add_to_queue" + }, + { + "label": "add_triangle", + "content": "add_triangle" + }, + { + "label": "adf_scanner", + "content": "adf_scanner" + }, + { + "label": "adjust", + "content": "adjust" + }, + { + "label": "admin_meds", + "content": "admin_meds" + }, + { + "label": "admin_panel_settings", + "content": "admin_panel_settings" + }, + { + "label": "ads_click", + "content": "ads_click" + }, + { + "label": "agender", + "content": "agender" + }, + { + "label": "agriculture", + "content": "agriculture" + }, + { + "label": "air", + "content": "air" + }, + { + "label": "air_freshener", + "content": "air_freshener" + }, + { + "label": "air_purifier", + "content": "air_purifier" + }, + { + "label": "air_purifier_gen", + "content": "air_purifier_gen" + }, + { + "label": "airline_seat_flat", + "content": "airline_seat_flat" + }, + { + "label": "airline_seat_flat_angled", + "content": "airline_seat_flat_angled" + }, + { + "label": "airline_seat_individual_suite", + "content": "airline_seat_individual_suite" + }, + { + "label": "airline_seat_legroom_extra", + "content": "airline_seat_legroom_extra" + }, + { + "label": "airline_seat_legroom_normal", + "content": "airline_seat_legroom_normal" + }, + { + "label": "airline_seat_legroom_reduced", + "content": "airline_seat_legroom_reduced" + }, + { + "label": "airline_seat_recline_extra", + "content": "airline_seat_recline_extra" + }, + { + "label": "airline_seat_recline_normal", + "content": "airline_seat_recline_normal" + }, + { + "label": "airline_stops", + "content": "airline_stops" + }, + { + "label": "airlines", + "content": "airlines" + }, + { + "label": "airplane_ticket", + "content": "airplane_ticket" + }, + { + "label": "airplanemode_active", + "content": "airplanemode_active" + }, + { + "label": "airplanemode_inactive", + "content": "airplanemode_inactive" + }, + { + "label": "airplay", + "content": "airplay" + }, + { + "label": "airport_shuttle", + "content": "airport_shuttle" + }, + { + "label": "airware", + "content": "airware" + }, + { + "label": "airwave", + "content": "airwave" + }, + { + "label": "alarm", + "content": "alarm" + }, + { + "label": "alarm_add", + "content": "alarm_add" + }, + { + "label": "alarm_off", + "content": "alarm_off" + }, + { + "label": "alarm_on", + "content": "alarm_on" + }, + { + "label": "alarm_smart_wake", + "content": "alarm_smart_wake" + }, + { + "label": "album", + "content": "album" + }, + { + "label": "align_center", + "content": "align_center" + }, + { + "label": "align_end", + "content": "align_end" + }, + { + "label": "align_flex_center", + "content": "align_flex_center" + }, + { + "label": "align_flex_end", + "content": "align_flex_end" + }, + { + "label": "align_flex_start", + "content": "align_flex_start" + }, + { + "label": "align_horizontal_center", + "content": "align_horizontal_center" + }, + { + "label": "align_horizontal_left", + "content": "align_horizontal_left" + }, + { + "label": "align_horizontal_right", + "content": "align_horizontal_right" + }, + { + "label": "align_items_stretch", + "content": "align_items_stretch" + }, + { + "label": "align_justify_center", + "content": "align_justify_center" + }, + { + "label": "align_justify_flex_end", + "content": "align_justify_flex_end" + }, + { + "label": "align_justify_flex_start", + "content": "align_justify_flex_start" + }, + { + "label": "align_justify_space_around", + "content": "align_justify_space_around" + }, + { + "label": "align_justify_space_between", + "content": "align_justify_space_between" + }, + { + "label": "align_justify_space_even", + "content": "align_justify_space_even" + }, + { + "label": "align_justify_stretch", + "content": "align_justify_stretch" + }, + { + "label": "align_self_stretch", + "content": "align_self_stretch" + }, + { + "label": "align_space_around", + "content": "align_space_around" + }, + { + "label": "align_space_between", + "content": "align_space_between" + }, + { + "label": "align_space_even", + "content": "align_space_even" + }, + { + "label": "align_start", + "content": "align_start" + }, + { + "label": "align_stretch", + "content": "align_stretch" + }, + { + "label": "align_vertical_bottom", + "content": "align_vertical_bottom" + }, + { + "label": "align_vertical_center", + "content": "align_vertical_center" + }, + { + "label": "align_vertical_top", + "content": "align_vertical_top" + }, + { + "label": "all_inbox", + "content": "all_inbox" + }, + { + "label": "all_inclusive", + "content": "all_inclusive" + }, + { + "label": "all_match", + "content": "all_match" + }, + { + "label": "all_out", + "content": "all_out" + }, + { + "label": "allergies", + "content": "allergies" + }, + { + "label": "allergy", + "content": "allergy" + }, + { + "label": "alt_route", + "content": "alt_route" + }, + { + "label": "alternate_email", + "content": "alternate_email" + }, + { + "label": "altitude", + "content": "altitude" + }, + { + "label": "ambulance", + "content": "ambulance" + }, + { + "label": "amend", + "content": "amend" + }, + { + "label": "amp_stories", + "content": "amp_stories" + }, + { + "label": "analytics", + "content": "analytics" + }, + { + "label": "anchor", + "content": "anchor" + }, + { + "label": "android", + "content": "android" + }, + { + "label": "animated_images", + "content": "animated_images" + }, + { + "label": "animation", + "content": "animation" + }, + { + "label": "aod", + "content": "aod" + }, + { + "label": "aod_tablet", + "content": "aod_tablet" + }, + { + "label": "aod_watch", + "content": "aod_watch" + }, + { + "label": "apartment", + "content": "apartment" + }, + { + "label": "api", + "content": "api" + }, + { + "label": "apk_document", + "content": "apk_document" + }, + { + "label": "apk_install", + "content": "apk_install" + }, + { + "label": "app_badging", + "content": "app_badging" + }, + { + "label": "app_blocking", + "content": "app_blocking" + }, + { + "label": "app_promo", + "content": "app_promo" + }, + { + "label": "app_registration", + "content": "app_registration" + }, + { + "label": "app_shortcut", + "content": "app_shortcut" + }, + { + "label": "apparel", + "content": "apparel" + }, + { + "label": "approval", + "content": "approval" + }, + { + "label": "approval_delegation", + "content": "approval_delegation" + }, + { + "label": "apps", + "content": "apps" + }, + { + "label": "apps_outage", + "content": "apps_outage" + }, + { + "label": "aq", + "content": "aq" + }, + { + "label": "aq_indoor", + "content": "aq_indoor" + }, + { + "label": "ar_on_you", + "content": "ar_on_you" + }, + { + "label": "ar_stickers", + "content": "ar_stickers" + }, + { + "label": "architecture", + "content": "architecture" + }, + { + "label": "archive", + "content": "archive" + }, + { + "label": "area_chart", + "content": "area_chart" + }, + { + "label": "arming_countdown", + "content": "arming_countdown" + }, + { + "label": "arrow_and_edge", + "content": "arrow_and_edge" + }, + { + "label": "arrow_back", + "content": "arrow_back" + }, + { + "label": "arrow_back_ios", + "content": "arrow_back_ios" + }, + { + "label": "arrow_circle_down", + "content": "arrow_circle_down" + }, + { + "label": "arrow_circle_left", + "content": "arrow_circle_left" + }, + { + "label": "arrow_circle_right", + "content": "arrow_circle_right" + }, + { + "label": "arrow_circle_up", + "content": "arrow_circle_up" + }, + { + "label": "arrow_cool_down", + "content": "arrow_cool_down" + }, + { + "label": "arrow_downward", + "content": "arrow_downward" + }, + { + "label": "arrow_downward_alt", + "content": "arrow_downward_alt" + }, + { + "label": "arrow_drop_down", + "content": "arrow_drop_down" + }, + { + "label": "arrow_drop_down_circle", + "content": "arrow_drop_down_circle" + }, + { + "label": "arrow_drop_up", + "content": "arrow_drop_up" + }, + { + "label": "arrow_forward", + "content": "arrow_forward" + }, + { + "label": "arrow_forward_ios", + "content": "arrow_forward_ios" + }, + { + "label": "arrow_insert", + "content": "arrow_insert" + }, + { + "label": "arrow_left", + "content": "arrow_left" + }, + { + "label": "arrow_left_alt", + "content": "arrow_left_alt" + }, + { + "label": "arrow_or_edge", + "content": "arrow_or_edge" + }, + { + "label": "arrow_outward", + "content": "arrow_outward" + }, + { + "label": "arrow_range", + "content": "arrow_range" + }, + { + "label": "arrow_right", + "content": "arrow_right" + }, + { + "label": "arrow_right_alt", + "content": "arrow_right_alt" + }, + { + "label": "arrow_selector_tool", + "content": "arrow_selector_tool" + }, + { + "label": "arrow_split", + "content": "arrow_split" + }, + { + "label": "arrow_top_left", + "content": "arrow_top_left" + }, + { + "label": "arrow_top_right", + "content": "arrow_top_right" + }, + { + "label": "arrow_upward", + "content": "arrow_upward" + }, + { + "label": "arrow_upward_alt", + "content": "arrow_upward_alt" + }, + { + "label": "arrow_warm_up", + "content": "arrow_warm_up" + }, + { + "label": "arrows_more_down", + "content": "arrows_more_down" + }, + { + "label": "arrows_more_up", + "content": "arrows_more_up" + }, + { + "label": "arrows_outward", + "content": "arrows_outward" + }, + { + "label": "art_track", + "content": "art_track" + }, + { + "label": "article", + "content": "article" + }, + { + "label": "article_shortcut", + "content": "article_shortcut" + }, + { + "label": "artist", + "content": "artist" + }, + { + "label": "aspect_ratio", + "content": "aspect_ratio" + }, + { + "label": "assignment", + "content": "assignment" + }, + { + "label": "assignment_add", + "content": "assignment_add" + }, + { + "label": "assignment_ind", + "content": "assignment_ind" + }, + { + "label": "assignment_late", + "content": "assignment_late" + }, + { + "label": "assignment_return", + "content": "assignment_return" + }, + { + "label": "assignment_returned", + "content": "assignment_returned" + }, + { + "label": "assignment_turned_in", + "content": "assignment_turned_in" + }, + { + "label": "assist_walker", + "content": "assist_walker" + }, + { + "label": "assistant_device", + "content": "assistant_device" + }, + { + "label": "assistant_direction", + "content": "assistant_direction" + }, + { + "label": "assistant_navigation", + "content": "assistant_navigation" + }, + { + "label": "assistant_on_hub", + "content": "assistant_on_hub" + }, + { + "label": "assured_workload", + "content": "assured_workload" + }, + { + "label": "asterisk", + "content": "asterisk" + }, + { + "label": "atm", + "content": "atm" + }, + { + "label": "atr", + "content": "atr" + }, + { + "label": "attach_email", + "content": "attach_email" + }, + { + "label": "attach_file", + "content": "attach_file" + }, + { + "label": "attach_file_add", + "content": "attach_file_add" + }, + { + "label": "attach_file_off", + "content": "attach_file_off" + }, + { + "label": "attach_money", + "content": "attach_money" + }, + { + "label": "attachment", + "content": "attachment" + }, + { + "label": "attractions", + "content": "attractions" + }, + { + "label": "attribution", + "content": "attribution" + }, + { + "label": "audio_description", + "content": "audio_description" + }, + { + "label": "audio_file", + "content": "audio_file" + }, + { + "label": "audio_video_receiver", + "content": "audio_video_receiver" + }, + { + "label": "auto_awesome_mosaic", + "content": "auto_awesome_mosaic" + }, + { + "label": "auto_awesome_motion", + "content": "auto_awesome_motion" + }, + { + "label": "auto_delete", + "content": "auto_delete" + }, + { + "label": "auto_read_pause", + "content": "auto_read_pause" + }, + { + "label": "auto_read_play", + "content": "auto_read_play" + }, + { + "label": "auto_stories", + "content": "auto_stories" + }, + { + "label": "auto_towing", + "content": "auto_towing" + }, + { + "label": "auto_transmission", + "content": "auto_transmission" + }, + { + "label": "autofps_select", + "content": "autofps_select" + }, + { + "label": "autopause", + "content": "autopause" + }, + { + "label": "autoplay", + "content": "autoplay" + }, + { + "label": "autorenew", + "content": "autorenew" + }, + { + "label": "autostop", + "content": "autostop" + }, + { + "label": "av1", + "content": "av1" + }, + { + "label": "av_timer", + "content": "av_timer" + }, + { + "label": "avc", + "content": "avc" + }, + { + "label": "avg_pace", + "content": "avg_pace" + }, + { + "label": "avg_time", + "content": "avg_time" + }, + { + "label": "award_star", + "content": "award_star" + }, + { + "label": "azm", + "content": "azm" + }, + { + "label": "baby_changing_station", + "content": "baby_changing_station" + }, + { + "label": "back_hand", + "content": "back_hand" + }, + { + "label": "back_to_tab", + "content": "back_to_tab" + }, + { + "label": "background_dot_large", + "content": "background_dot_large" + }, + { + "label": "background_dot_small", + "content": "background_dot_small" + }, + { + "label": "background_grid_small", + "content": "background_grid_small" + }, + { + "label": "background_replace", + "content": "background_replace" + }, + { + "label": "backlight_high", + "content": "backlight_high" + }, + { + "label": "backlight_high_off", + "content": "backlight_high_off" + }, + { + "label": "backlight_low", + "content": "backlight_low" + }, + { + "label": "backpack", + "content": "backpack" + }, + { + "label": "backspace", + "content": "backspace" + }, + { + "label": "backup", + "content": "backup" + }, + { + "label": "backup_table", + "content": "backup_table" + }, + { + "label": "badge", + "content": "badge" + }, + { + "label": "badge_critical_battery", + "content": "badge_critical_battery" + }, + { + "label": "bakery_dining", + "content": "bakery_dining" + }, + { + "label": "balance", + "content": "balance" + }, + { + "label": "balcony", + "content": "balcony" + }, + { + "label": "ballot", + "content": "ballot" + }, + { + "label": "bar_chart", + "content": "bar_chart" + }, + { + "label": "bar_chart_4_bars", + "content": "bar_chart_4_bars" + }, + { + "label": "barcode", + "content": "barcode" + }, + { + "label": "barcode_reader", + "content": "barcode_reader" + }, + { + "label": "barcode_scanner", + "content": "barcode_scanner" + }, + { + "label": "barefoot", + "content": "barefoot" + }, + { + "label": "batch_prediction", + "content": "batch_prediction" + }, + { + "label": "bath_outdoor", + "content": "bath_outdoor" + }, + { + "label": "bath_private", + "content": "bath_private" + }, + { + "label": "bath_public_large", + "content": "bath_public_large" + }, + { + "label": "bathroom", + "content": "bathroom" + }, + { + "label": "bathtub", + "content": "bathtub" + }, + { + "label": "battery_0_bar", + "content": "battery_0_bar" + }, + { + "label": "battery_1_bar", + "content": "battery_1_bar" + }, + { + "label": "battery_2_bar", + "content": "battery_2_bar" + }, + { + "label": "battery_3_bar", + "content": "battery_3_bar" + }, + { + "label": "battery_4_bar", + "content": "battery_4_bar" + }, + { + "label": "battery_5_bar", + "content": "battery_5_bar" + }, + { + "label": "battery_6_bar", + "content": "battery_6_bar" + }, + { + "label": "battery_alert", + "content": "battery_alert" + }, + { + "label": "battery_change", + "content": "battery_change" + }, + { + "label": "battery_charging_20", + "content": "battery_charging_20" + }, + { + "label": "battery_charging_30", + "content": "battery_charging_30" + }, + { + "label": "battery_charging_50", + "content": "battery_charging_50" + }, + { + "label": "battery_charging_60", + "content": "battery_charging_60" + }, + { + "label": "battery_charging_80", + "content": "battery_charging_80" + }, + { + "label": "battery_charging_90", + "content": "battery_charging_90" + }, + { + "label": "battery_charging_full", + "content": "battery_charging_full" + }, + { + "label": "battery_error", + "content": "battery_error" + }, + { + "label": "battery_full", + "content": "battery_full" + }, + { + "label": "battery_full_alt", + "content": "battery_full_alt" + }, + { + "label": "battery_horiz_000", + "content": "battery_horiz_000" + }, + { + "label": "battery_horiz_050", + "content": "battery_horiz_050" + }, + { + "label": "battery_horiz_075", + "content": "battery_horiz_075" + }, + { + "label": "battery_low", + "content": "battery_low" + }, + { + "label": "battery_plus", + "content": "battery_plus" + }, + { + "label": "battery_profile", + "content": "battery_profile" + }, + { + "label": "battery_saver", + "content": "battery_saver" + }, + { + "label": "battery_share", + "content": "battery_share" + }, + { + "label": "battery_status_good", + "content": "battery_status_good" + }, + { + "label": "battery_unknown", + "content": "battery_unknown" + }, + { + "label": "battery_very_low", + "content": "battery_very_low" + }, + { + "label": "beach_access", + "content": "beach_access" + }, + { + "label": "bed", + "content": "bed" + }, + { + "label": "bedroom_baby", + "content": "bedroom_baby" + }, + { + "label": "bedroom_child", + "content": "bedroom_child" + }, + { + "label": "bedroom_parent", + "content": "bedroom_parent" + }, + { + "label": "bedtime", + "content": "bedtime" + }, + { + "label": "bedtime_off", + "content": "bedtime_off" + }, + { + "label": "beenhere", + "content": "beenhere" + }, + { + "label": "bento", + "content": "bento" + }, + { + "label": "bia", + "content": "bia" + }, + { + "label": "bid_landscape", + "content": "bid_landscape" + }, + { + "label": "bid_landscape_disabled", + "content": "bid_landscape_disabled" + }, + { + "label": "bigtop_updates", + "content": "bigtop_updates" + }, + { + "label": "bike_dock", + "content": "bike_dock" + }, + { + "label": "bike_lane", + "content": "bike_lane" + }, + { + "label": "bike_scooter", + "content": "bike_scooter" + }, + { + "label": "biotech", + "content": "biotech" + }, + { + "label": "blanket", + "content": "blanket" + }, + { + "label": "blender", + "content": "blender" + }, + { + "label": "blind", + "content": "blind" + }, + { + "label": "blinds", + "content": "blinds" + }, + { + "label": "blinds_closed", + "content": "blinds_closed" + }, + { + "label": "block", + "content": "block" + }, + { + "label": "blood_pressure", + "content": "blood_pressure" + }, + { + "label": "bloodtype", + "content": "bloodtype" + }, + { + "label": "bluetooth", + "content": "bluetooth" + }, + { + "label": "bluetooth_connected", + "content": "bluetooth_connected" + }, + { + "label": "bluetooth_disabled", + "content": "bluetooth_disabled" + }, + { + "label": "bluetooth_drive", + "content": "bluetooth_drive" + }, + { + "label": "bluetooth_searching", + "content": "bluetooth_searching" + }, + { + "label": "blur_circular", + "content": "blur_circular" + }, + { + "label": "blur_linear", + "content": "blur_linear" + }, + { + "label": "blur_medium", + "content": "blur_medium" + }, + { + "label": "blur_off", + "content": "blur_off" + }, + { + "label": "blur_on", + "content": "blur_on" + }, + { + "label": "blur_short", + "content": "blur_short" + }, + { + "label": "body_fat", + "content": "body_fat" + }, + { + "label": "body_system", + "content": "body_system" + }, + { + "label": "bolt", + "content": "bolt" + }, + { + "label": "bomb", + "content": "bomb" + }, + { + "label": "book", + "content": "book" + }, + { + "label": "book_2", + "content": "book_2" + }, + { + "label": "book_3", + "content": "book_3" + }, + { + "label": "book_4", + "content": "book_4" + }, + { + "label": "book_5", + "content": "book_5" + }, + { + "label": "book_online", + "content": "book_online" + }, + { + "label": "bookmark", + "content": "bookmark" + }, + { + "label": "bookmark_add", + "content": "bookmark_add" + }, + { + "label": "bookmark_added", + "content": "bookmark_added" + }, + { + "label": "bookmark_check", + "content": "bookmark_check" + }, + { + "label": "bookmark_flag", + "content": "bookmark_flag" + }, + { + "label": "bookmark_heart", + "content": "bookmark_heart" + }, + { + "label": "bookmark_manager", + "content": "bookmark_manager" + }, + { + "label": "bookmark_remove", + "content": "bookmark_remove" + }, + { + "label": "bookmark_star", + "content": "bookmark_star" + }, + { + "label": "bookmarks", + "content": "bookmarks" + }, + { + "label": "border_all", + "content": "border_all" + }, + { + "label": "border_bottom", + "content": "border_bottom" + }, + { + "label": "border_clear", + "content": "border_clear" + }, + { + "label": "border_color", + "content": "border_color" + }, + { + "label": "border_horizontal", + "content": "border_horizontal" + }, + { + "label": "border_inner", + "content": "border_inner" + }, + { + "label": "border_left", + "content": "border_left" + }, + { + "label": "border_outer", + "content": "border_outer" + }, + { + "label": "border_right", + "content": "border_right" + }, + { + "label": "border_style", + "content": "border_style" + }, + { + "label": "border_top", + "content": "border_top" + }, + { + "label": "border_vertical", + "content": "border_vertical" + }, + { + "label": "bottom_app_bar", + "content": "bottom_app_bar" + }, + { + "label": "bottom_drawer", + "content": "bottom_drawer" + }, + { + "label": "bottom_navigation", + "content": "bottom_navigation" + }, + { + "label": "bottom_panel_close", + "content": "bottom_panel_close" + }, + { + "label": "bottom_panel_open", + "content": "bottom_panel_open" + }, + { + "label": "bottom_right_click", + "content": "bottom_right_click" + }, + { + "label": "bottom_sheets", + "content": "bottom_sheets" + }, + { + "label": "box", + "content": "box" + }, + { + "label": "box_add", + "content": "box_add" + }, + { + "label": "box_edit", + "content": "box_edit" + }, + { + "label": "boy", + "content": "boy" + }, + { + "label": "brand_awareness", + "content": "brand_awareness" + }, + { + "label": "brand_family", + "content": "brand_family" + }, + { + "label": "branding_watermark", + "content": "branding_watermark" + }, + { + "label": "breakfast_dining", + "content": "breakfast_dining" + }, + { + "label": "breaking_news", + "content": "breaking_news" + }, + { + "label": "breaking_news_alt_1", + "content": "breaking_news_alt_1" + }, + { + "label": "breastfeeding", + "content": "breastfeeding" + }, + { + "label": "brightness_1", + "content": "brightness_1" + }, + { + "label": "brightness_2", + "content": "brightness_2" + }, + { + "label": "brightness_3", + "content": "brightness_3" + }, + { + "label": "brightness_4", + "content": "brightness_4" + }, + { + "label": "brightness_5", + "content": "brightness_5" + }, + { + "label": "brightness_6", + "content": "brightness_6" + }, + { + "label": "brightness_7", + "content": "brightness_7" + }, + { + "label": "brightness_alert", + "content": "brightness_alert" + }, + { + "label": "brightness_auto", + "content": "brightness_auto" + }, + { + "label": "brightness_empty", + "content": "brightness_empty" + }, + { + "label": "brightness_high", + "content": "brightness_high" + }, + { + "label": "brightness_low", + "content": "brightness_low" + }, + { + "label": "brightness_medium", + "content": "brightness_medium" + }, + { + "label": "bring_your_own_ip", + "content": "bring_your_own_ip" + }, + { + "label": "broadcast_on_home", + "content": "broadcast_on_home" + }, + { + "label": "broadcast_on_personal", + "content": "broadcast_on_personal" + }, + { + "label": "broken_image", + "content": "broken_image" + }, + { + "label": "browse", + "content": "browse" + }, + { + "label": "browse_activity", + "content": "browse_activity" + }, + { + "label": "browse_gallery", + "content": "browse_gallery" + }, + { + "label": "browser_updated", + "content": "browser_updated" + }, + { + "label": "brunch_dining", + "content": "brunch_dining" + }, + { + "label": "brush", + "content": "brush" + }, + { + "label": "bubble", + "content": "bubble" + }, + { + "label": "bubble_chart", + "content": "bubble_chart" + }, + { + "label": "bubbles", + "content": "bubbles" + }, + { + "label": "bug_report", + "content": "bug_report" + }, + { + "label": "build", + "content": "build" + }, + { + "label": "build_circle", + "content": "build_circle" + }, + { + "label": "bungalow", + "content": "bungalow" + }, + { + "label": "burst_mode", + "content": "burst_mode" + }, + { + "label": "bus_alert", + "content": "bus_alert" + }, + { + "label": "business_center", + "content": "business_center" + }, + { + "label": "business_chip", + "content": "business_chip" + }, + { + "label": "business_messages", + "content": "business_messages" + }, + { + "label": "buttons_alt", + "content": "buttons_alt" + }, + { + "label": "cabin", + "content": "cabin" + }, + { + "label": "cable", + "content": "cable" + }, + { + "label": "cable_car", + "content": "cable_car" + }, + { + "label": "cached", + "content": "cached" + }, + { + "label": "cadence", + "content": "cadence" + }, + { + "label": "cake", + "content": "cake" + }, + { + "label": "cake_add", + "content": "cake_add" + }, + { + "label": "calculate", + "content": "calculate" + }, + { + "label": "calendar_add_on", + "content": "calendar_add_on" + }, + { + "label": "calendar_apps_script", + "content": "calendar_apps_script" + }, + { + "label": "calendar_clock", + "content": "calendar_clock" + }, + { + "label": "calendar_month", + "content": "calendar_month" + }, + { + "label": "calendar_today", + "content": "calendar_today" + }, + { + "label": "calendar_view_day", + "content": "calendar_view_day" + }, + { + "label": "calendar_view_month", + "content": "calendar_view_month" + }, + { + "label": "calendar_view_week", + "content": "calendar_view_week" + }, + { + "label": "call", + "content": "call" + }, + { + "label": "call_end", + "content": "call_end" + }, + { + "label": "call_log", + "content": "call_log" + }, + { + "label": "call_made", + "content": "call_made" + }, + { + "label": "call_merge", + "content": "call_merge" + }, + { + "label": "call_missed", + "content": "call_missed" + }, + { + "label": "call_missed_outgoing", + "content": "call_missed_outgoing" + }, + { + "label": "call_quality", + "content": "call_quality" + }, + { + "label": "call_received", + "content": "call_received" + }, + { + "label": "call_split", + "content": "call_split" + }, + { + "label": "call_to_action", + "content": "call_to_action" + }, + { + "label": "camera", + "content": "camera" + }, + { + "label": "camera_front", + "content": "camera_front" + }, + { + "label": "camera_indoor", + "content": "camera_indoor" + }, + { + "label": "camera_outdoor", + "content": "camera_outdoor" + }, + { + "label": "camera_rear", + "content": "camera_rear" + }, + { + "label": "camera_roll", + "content": "camera_roll" + }, + { + "label": "camera_video", + "content": "camera_video" + }, + { + "label": "cameraswitch", + "content": "cameraswitch" + }, + { + "label": "campaign", + "content": "campaign" + }, + { + "label": "camping", + "content": "camping" + }, + { + "label": "cancel", + "content": "cancel" + }, + { + "label": "cancel_presentation", + "content": "cancel_presentation" + }, + { + "label": "cancel_schedule_send", + "content": "cancel_schedule_send" + }, + { + "label": "candle", + "content": "candle" + }, + { + "label": "candlestick_chart", + "content": "candlestick_chart" + }, + { + "label": "captive_portal", + "content": "captive_portal" + }, + { + "label": "capture", + "content": "capture" + }, + { + "label": "car_crash", + "content": "car_crash" + }, + { + "label": "car_rental", + "content": "car_rental" + }, + { + "label": "car_repair", + "content": "car_repair" + }, + { + "label": "car_tag", + "content": "car_tag" + }, + { + "label": "card_membership", + "content": "card_membership" + }, + { + "label": "card_travel", + "content": "card_travel" + }, + { + "label": "cardio_load", + "content": "cardio_load" + }, + { + "label": "cardiology", + "content": "cardiology" + }, + { + "label": "cards", + "content": "cards" + }, + { + "label": "carpenter", + "content": "carpenter" + }, + { + "label": "carry_on_bag", + "content": "carry_on_bag" + }, + { + "label": "carry_on_bag_checked", + "content": "carry_on_bag_checked" + }, + { + "label": "carry_on_bag_inactive", + "content": "carry_on_bag_inactive" + }, + { + "label": "carry_on_bag_question", + "content": "carry_on_bag_question" + }, + { + "label": "cases", + "content": "cases" + }, + { + "label": "casino", + "content": "casino" + }, + { + "label": "cast", + "content": "cast" + }, + { + "label": "cast_connected", + "content": "cast_connected" + }, + { + "label": "cast_for_education", + "content": "cast_for_education" + }, + { + "label": "cast_pause", + "content": "cast_pause" + }, + { + "label": "cast_warning", + "content": "cast_warning" + }, + { + "label": "castle", + "content": "castle" + }, + { + "label": "category", + "content": "category" + }, + { + "label": "celebration", + "content": "celebration" + }, + { + "label": "cell_merge", + "content": "cell_merge" + }, + { + "label": "cell_tower", + "content": "cell_tower" + }, + { + "label": "cell_wifi", + "content": "cell_wifi" + }, + { + "label": "center_focus_strong", + "content": "center_focus_strong" + }, + { + "label": "center_focus_weak", + "content": "center_focus_weak" + }, + { + "label": "chair", + "content": "chair" + }, + { + "label": "chair_alt", + "content": "chair_alt" + }, + { + "label": "chalet", + "content": "chalet" + }, + { + "label": "change_circle", + "content": "change_circle" + }, + { + "label": "change_history", + "content": "change_history" + }, + { + "label": "charger", + "content": "charger" + }, + { + "label": "charging_station", + "content": "charging_station" + }, + { + "label": "chart_data", + "content": "chart_data" + }, + { + "label": "chat", + "content": "chat" + }, + { + "label": "chat_add_on", + "content": "chat_add_on" + }, + { + "label": "chat_apps_script", + "content": "chat_apps_script" + }, + { + "label": "chat_bubble", + "content": "chat_bubble" + }, + { + "label": "chat_error", + "content": "chat_error" + }, + { + "label": "chat_info", + "content": "chat_info" + }, + { + "label": "chat_paste_go", + "content": "chat_paste_go" + }, + { + "label": "check", + "content": "check" + }, + { + "label": "check_box", + "content": "check_box" + }, + { + "label": "check_box_outline_blank", + "content": "check_box_outline_blank" + }, + { + "label": "check_circle", + "content": "check_circle" + }, + { + "label": "check_in_out", + "content": "check_in_out" + }, + { + "label": "check_indeterminate_small", + "content": "check_indeterminate_small" + }, + { + "label": "check_small", + "content": "check_small" + }, + { + "label": "checkbook", + "content": "checkbook" + }, + { + "label": "checked_bag", + "content": "checked_bag" + }, + { + "label": "checked_bag_question", + "content": "checked_bag_question" + }, + { + "label": "checklist", + "content": "checklist" + }, + { + "label": "checklist_rtl", + "content": "checklist_rtl" + }, + { + "label": "checkroom", + "content": "checkroom" + }, + { + "label": "cheer", + "content": "cheer" + }, + { + "label": "chess", + "content": "chess" + }, + { + "label": "chevron_backward", + "content": "chevron_backward" + }, + { + "label": "chevron_forward", + "content": "chevron_forward" + }, + { + "label": "chevron_left", + "content": "chevron_left" + }, + { + "label": "chevron_right", + "content": "chevron_right" + }, + { + "label": "child_care", + "content": "child_care" + }, + { + "label": "child_friendly", + "content": "child_friendly" + }, + { + "label": "chip_extraction", + "content": "chip_extraction" + }, + { + "label": "chips", + "content": "chips" + }, + { + "label": "chrome_reader_mode", + "content": "chrome_reader_mode" + }, + { + "label": "chromecast_2", + "content": "chromecast_2" + }, + { + "label": "chromecast_device", + "content": "chromecast_device" + }, + { + "label": "chronic", + "content": "chronic" + }, + { + "label": "church", + "content": "church" + }, + { + "label": "cinematic_blur", + "content": "cinematic_blur" + }, + { + "label": "circle", + "content": "circle" + }, + { + "label": "circle_notifications", + "content": "circle_notifications" + }, + { + "label": "circles", + "content": "circles" + }, + { + "label": "circles_ext", + "content": "circles_ext" + }, + { + "label": "clarify", + "content": "clarify" + }, + { + "label": "clean_hands", + "content": "clean_hands" + }, + { + "label": "cleaning", + "content": "cleaning" + }, + { + "label": "cleaning_bucket", + "content": "cleaning_bucket" + }, + { + "label": "cleaning_services", + "content": "cleaning_services" + }, + { + "label": "clear_all", + "content": "clear_all" + }, + { + "label": "clear_day", + "content": "clear_day" + }, + { + "label": "clear_night", + "content": "clear_night" + }, + { + "label": "climate_mini_split", + "content": "climate_mini_split" + }, + { + "label": "clinical_notes", + "content": "clinical_notes" + }, + { + "label": "clock_loader_10", + "content": "clock_loader_10" + }, + { + "label": "clock_loader_20", + "content": "clock_loader_20" + }, + { + "label": "clock_loader_40", + "content": "clock_loader_40" + }, + { + "label": "clock_loader_60", + "content": "clock_loader_60" + }, + { + "label": "clock_loader_80", + "content": "clock_loader_80" + }, + { + "label": "clock_loader_90", + "content": "clock_loader_90" + }, + { + "label": "close", + "content": "close" + }, + { + "label": "close_fullscreen", + "content": "close_fullscreen" + }, + { + "label": "close_small", + "content": "close_small" + }, + { + "label": "closed_caption", + "content": "closed_caption" + }, + { + "label": "closed_caption_add", + "content": "closed_caption_add" + }, + { + "label": "closed_caption_disabled", + "content": "closed_caption_disabled" + }, + { + "label": "cloud", + "content": "cloud" + }, + { + "label": "cloud_circle", + "content": "cloud_circle" + }, + { + "label": "cloud_done", + "content": "cloud_done" + }, + { + "label": "cloud_download", + "content": "cloud_download" + }, + { + "label": "cloud_off", + "content": "cloud_off" + }, + { + "label": "cloud_sync", + "content": "cloud_sync" + }, + { + "label": "cloud_upload", + "content": "cloud_upload" + }, + { + "label": "cloudy_snowing", + "content": "cloudy_snowing" + }, + { + "label": "co2", + "content": "co2" + }, + { + "label": "co_present", + "content": "co_present" + }, + { + "label": "code", + "content": "code" + }, + { + "label": "code_blocks", + "content": "code_blocks" + }, + { + "label": "code_off", + "content": "code_off" + }, + { + "label": "coffee", + "content": "coffee" + }, + { + "label": "coffee_maker", + "content": "coffee_maker" + }, + { + "label": "cognition", + "content": "cognition" + }, + { + "label": "collapse_all", + "content": "collapse_all" + }, + { + "label": "collapse_content", + "content": "collapse_content" + }, + { + "label": "collections_bookmark", + "content": "collections_bookmark" + }, + { + "label": "colorize", + "content": "colorize" + }, + { + "label": "colors", + "content": "colors" + }, + { + "label": "comedy_mask", + "content": "comedy_mask" + }, + { + "label": "comic_bubble", + "content": "comic_bubble" + }, + { + "label": "comment", + "content": "comment" + }, + { + "label": "comment_bank", + "content": "comment_bank" + }, + { + "label": "comments_disabled", + "content": "comments_disabled" + }, + { + "label": "commit", + "content": "commit" + }, + { + "label": "communication", + "content": "communication" + }, + { + "label": "communities", + "content": "communities" + }, + { + "label": "commute", + "content": "commute" + }, + { + "label": "compare", + "content": "compare" + }, + { + "label": "compare_arrows", + "content": "compare_arrows" + }, + { + "label": "compass_calibration", + "content": "compass_calibration" + }, + { + "label": "component_exchange", + "content": "component_exchange" + }, + { + "label": "compost", + "content": "compost" + }, + { + "label": "compress", + "content": "compress" + }, + { + "label": "computer", + "content": "computer" + }, + { + "label": "concierge", + "content": "concierge" + }, + { + "label": "conditions", + "content": "conditions" + }, + { + "label": "confirmation_number", + "content": "confirmation_number" + }, + { + "label": "congenital", + "content": "congenital" + }, + { + "label": "connect_without_contact", + "content": "connect_without_contact" + }, + { + "label": "connected_tv", + "content": "connected_tv" + }, + { + "label": "connecting_airports", + "content": "connecting_airports" + }, + { + "label": "construction", + "content": "construction" + }, + { + "label": "contact_emergency", + "content": "contact_emergency" + }, + { + "label": "contact_mail", + "content": "contact_mail" + }, + { + "label": "contact_page", + "content": "contact_page" + }, + { + "label": "contact_phone", + "content": "contact_phone" + }, + { + "label": "contact_support", + "content": "contact_support" + }, + { + "label": "contactless", + "content": "contactless" + }, + { + "label": "contactless_off", + "content": "contactless_off" + }, + { + "label": "contacts", + "content": "contacts" + }, + { + "label": "contacts_product", + "content": "contacts_product" + }, + { + "label": "content_copy", + "content": "content_copy" + }, + { + "label": "content_cut", + "content": "content_cut" + }, + { + "label": "content_paste", + "content": "content_paste" + }, + { + "label": "content_paste_go", + "content": "content_paste_go" + }, + { + "label": "content_paste_off", + "content": "content_paste_off" + }, + { + "label": "content_paste_search", + "content": "content_paste_search" + }, + { + "label": "contextual_token", + "content": "contextual_token" + }, + { + "label": "contextual_token_add", + "content": "contextual_token_add" + }, + { + "label": "contract", + "content": "contract" + }, + { + "label": "contract_delete", + "content": "contract_delete" + }, + { + "label": "contract_edit", + "content": "contract_edit" + }, + { + "label": "contrast", + "content": "contrast" + }, + { + "label": "contrast_circle", + "content": "contrast_circle" + }, + { + "label": "contrast_rtl_off", + "content": "contrast_rtl_off" + }, + { + "label": "contrast_square", + "content": "contrast_square" + }, + { + "label": "control_camera", + "content": "control_camera" + }, + { + "label": "control_point_duplicate", + "content": "control_point_duplicate" + }, + { + "label": "controller_gen", + "content": "controller_gen" + }, + { + "label": "conversion_path", + "content": "conversion_path" + }, + { + "label": "conversion_path_off", + "content": "conversion_path_off" + }, + { + "label": "conveyor_belt", + "content": "conveyor_belt" + }, + { + "label": "cookie", + "content": "cookie" + }, + { + "label": "cookie_off", + "content": "cookie_off" + }, + { + "label": "cooking", + "content": "cooking" + }, + { + "label": "cool_to_dry", + "content": "cool_to_dry" + }, + { + "label": "copy_all", + "content": "copy_all" + }, + { + "label": "copyright", + "content": "copyright" + }, + { + "label": "coronavirus", + "content": "coronavirus" + }, + { + "label": "corporate_fare", + "content": "corporate_fare" + }, + { + "label": "cottage", + "content": "cottage" + }, + { + "label": "counter_0", + "content": "counter_0" + }, + { + "label": "counter_1", + "content": "counter_1" + }, + { + "label": "counter_2", + "content": "counter_2" + }, + { + "label": "counter_3", + "content": "counter_3" + }, + { + "label": "counter_4", + "content": "counter_4" + }, + { + "label": "counter_5", + "content": "counter_5" + }, + { + "label": "counter_6", + "content": "counter_6" + }, + { + "label": "counter_7", + "content": "counter_7" + }, + { + "label": "counter_8", + "content": "counter_8" + }, + { + "label": "counter_9", + "content": "counter_9" + }, + { + "label": "countertops", + "content": "countertops" + }, + { + "label": "create_new_folder", + "content": "create_new_folder" + }, + { + "label": "credit_card", + "content": "credit_card" + }, + { + "label": "credit_card_gear", + "content": "credit_card_gear" + }, + { + "label": "credit_card_heart", + "content": "credit_card_heart" + }, + { + "label": "credit_card_off", + "content": "credit_card_off" + }, + { + "label": "credit_score", + "content": "credit_score" + }, + { + "label": "crib", + "content": "crib" + }, + { + "label": "crisis_alert", + "content": "crisis_alert" + }, + { + "label": "crop", + "content": "crop" + }, + { + "label": "crop_16_9", + "content": "crop_16_9" + }, + { + "label": "crop_3_2", + "content": "crop_3_2" + }, + { + "label": "crop_5_4", + "content": "crop_5_4" + }, + { + "label": "crop_7_5", + "content": "crop_7_5" + }, + { + "label": "crop_9_16", + "content": "crop_9_16" + }, + { + "label": "crop_free", + "content": "crop_free" + }, + { + "label": "crop_landscape", + "content": "crop_landscape" + }, + { + "label": "crop_portrait", + "content": "crop_portrait" + }, + { + "label": "crop_rotate", + "content": "crop_rotate" + }, + { + "label": "crop_square", + "content": "crop_square" + }, + { + "label": "crossword", + "content": "crossword" + }, + { + "label": "crowdsource", + "content": "crowdsource" + }, + { + "label": "cruelty_free", + "content": "cruelty_free" + }, + { + "label": "css", + "content": "css" + }, + { + "label": "csv", + "content": "csv" + }, + { + "label": "currency_bitcoin", + "content": "currency_bitcoin" + }, + { + "label": "currency_exchange", + "content": "currency_exchange" + }, + { + "label": "currency_franc", + "content": "currency_franc" + }, + { + "label": "currency_lira", + "content": "currency_lira" + }, + { + "label": "currency_pound", + "content": "currency_pound" + }, + { + "label": "currency_ruble", + "content": "currency_ruble" + }, + { + "label": "currency_rupee", + "content": "currency_rupee" + }, + { + "label": "currency_rupee_circle", + "content": "currency_rupee_circle" + }, + { + "label": "currency_yen", + "content": "currency_yen" + }, + { + "label": "currency_yuan", + "content": "currency_yuan" + }, + { + "label": "curtains", + "content": "curtains" + }, + { + "label": "curtains_closed", + "content": "curtains_closed" + }, + { + "label": "custom_typography", + "content": "custom_typography" + }, + { + "label": "cycle", + "content": "cycle" + }, + { + "label": "cyclone", + "content": "cyclone" + }, + { + "label": "dangerous", + "content": "dangerous" + }, + { + "label": "dark_mode", + "content": "dark_mode" + }, + { + "label": "dashboard", + "content": "dashboard" + }, + { + "label": "dashboard_customize", + "content": "dashboard_customize" + }, + { + "label": "data_alert", + "content": "data_alert" + }, + { + "label": "data_array", + "content": "data_array" + }, + { + "label": "data_check", + "content": "data_check" + }, + { + "label": "data_exploration", + "content": "data_exploration" + }, + { + "label": "data_info_alert", + "content": "data_info_alert" + }, + { + "label": "data_loss_prevention", + "content": "data_loss_prevention" + }, + { + "label": "data_object", + "content": "data_object" + }, + { + "label": "data_saver_on", + "content": "data_saver_on" + }, + { + "label": "data_table", + "content": "data_table" + }, + { + "label": "data_thresholding", + "content": "data_thresholding" + }, + { + "label": "data_usage", + "content": "data_usage" + }, + { + "label": "database", + "content": "database" + }, + { + "label": "dataset", + "content": "dataset" + }, + { + "label": "dataset_linked", + "content": "dataset_linked" + }, + { + "label": "date_range", + "content": "date_range" + }, + { + "label": "deblur", + "content": "deblur" + }, + { + "label": "deceased", + "content": "deceased" + }, + { + "label": "decimal_decrease", + "content": "decimal_decrease" + }, + { + "label": "decimal_increase", + "content": "decimal_increase" + }, + { + "label": "deck", + "content": "deck" + }, + { + "label": "dehaze", + "content": "dehaze" + }, + { + "label": "delete", + "content": "delete" + }, + { + "label": "delete_forever", + "content": "delete_forever" + }, + { + "label": "delete_history", + "content": "delete_history" + }, + { + "label": "delete_sweep", + "content": "delete_sweep" + }, + { + "label": "demography", + "content": "demography" + }, + { + "label": "density_large", + "content": "density_large" + }, + { + "label": "density_medium", + "content": "density_medium" + }, + { + "label": "density_small", + "content": "density_small" + }, + { + "label": "dentistry", + "content": "dentistry" + }, + { + "label": "departure_board", + "content": "departure_board" + }, + { + "label": "deployed_code", + "content": "deployed_code" + }, + { + "label": "deployed_code_account", + "content": "deployed_code_account" + }, + { + "label": "deployed_code_alert", + "content": "deployed_code_alert" + }, + { + "label": "deployed_code_history", + "content": "deployed_code_history" + }, + { + "label": "deployed_code_update", + "content": "deployed_code_update" + }, + { + "label": "dermatology", + "content": "dermatology" + }, + { + "label": "description", + "content": "description" + }, + { + "label": "deselect", + "content": "deselect" + }, + { + "label": "design_services", + "content": "design_services" + }, + { + "label": "desk", + "content": "desk" + }, + { + "label": "deskphone", + "content": "deskphone" + }, + { + "label": "desktop_access_disabled", + "content": "desktop_access_disabled" + }, + { + "label": "desktop_landscape", + "content": "desktop_landscape" + }, + { + "label": "desktop_mac", + "content": "desktop_mac" + }, + { + "label": "desktop_portrait", + "content": "desktop_portrait" + }, + { + "label": "desktop_windows", + "content": "desktop_windows" + }, + { + "label": "destruction", + "content": "destruction" + }, + { + "label": "details", + "content": "details" + }, + { + "label": "detection_and_zone", + "content": "detection_and_zone" + }, + { + "label": "detector", + "content": "detector" + }, + { + "label": "detector_alarm", + "content": "detector_alarm" + }, + { + "label": "detector_battery", + "content": "detector_battery" + }, + { + "label": "detector_co", + "content": "detector_co" + }, + { + "label": "detector_offline", + "content": "detector_offline" + }, + { + "label": "detector_smoke", + "content": "detector_smoke" + }, + { + "label": "detector_status", + "content": "detector_status" + }, + { + "label": "developer_board", + "content": "developer_board" + }, + { + "label": "developer_board_off", + "content": "developer_board_off" + }, + { + "label": "developer_guide", + "content": "developer_guide" + }, + { + "label": "developer_mode", + "content": "developer_mode" + }, + { + "label": "developer_mode_tv", + "content": "developer_mode_tv" + }, + { + "label": "device_hub", + "content": "device_hub" + }, + { + "label": "device_reset", + "content": "device_reset" + }, + { + "label": "device_thermostat", + "content": "device_thermostat" + }, + { + "label": "device_unknown", + "content": "device_unknown" + }, + { + "label": "devices", + "content": "devices" + }, + { + "label": "devices_fold", + "content": "devices_fold" + }, + { + "label": "devices_off", + "content": "devices_off" + }, + { + "label": "devices_other", + "content": "devices_other" + }, + { + "label": "devices_wearables", + "content": "devices_wearables" + }, + { + "label": "dew_point", + "content": "dew_point" + }, + { + "label": "diagnosis", + "content": "diagnosis" + }, + { + "label": "dialer_sip", + "content": "dialer_sip" + }, + { + "label": "dialogs", + "content": "dialogs" + }, + { + "label": "dialpad", + "content": "dialpad" + }, + { + "label": "diamond", + "content": "diamond" + }, + { + "label": "dictionary", + "content": "dictionary" + }, + { + "label": "difference", + "content": "difference" + }, + { + "label": "digital_out_of_home", + "content": "digital_out_of_home" + }, + { + "label": "digital_wellbeing", + "content": "digital_wellbeing" + }, + { + "label": "dining", + "content": "dining" + }, + { + "label": "dinner_dining", + "content": "dinner_dining" + }, + { + "label": "directions", + "content": "directions" + }, + { + "label": "directions_alt", + "content": "directions_alt" + }, + { + "label": "directions_alt_off", + "content": "directions_alt_off" + }, + { + "label": "directions_bike", + "content": "directions_bike" + }, + { + "label": "directions_boat", + "content": "directions_boat" + }, + { + "label": "directions_bus", + "content": "directions_bus" + }, + { + "label": "directions_car", + "content": "directions_car" + }, + { + "label": "directions_off", + "content": "directions_off" + }, + { + "label": "directions_railway", + "content": "directions_railway" + }, + { + "label": "directions_railway_2", + "content": "directions_railway_2" + }, + { + "label": "directions_run", + "content": "directions_run" + }, + { + "label": "directions_subway", + "content": "directions_subway" + }, + { + "label": "directions_walk", + "content": "directions_walk" + }, + { + "label": "directory_sync", + "content": "directory_sync" + }, + { + "label": "dirty_lens", + "content": "dirty_lens" + }, + { + "label": "disabled_by_default", + "content": "disabled_by_default" + }, + { + "label": "disabled_visible", + "content": "disabled_visible" + }, + { + "label": "disc_full", + "content": "disc_full" + }, + { + "label": "discover_tune", + "content": "discover_tune" + }, + { + "label": "dishwasher", + "content": "dishwasher" + }, + { + "label": "dishwasher_gen", + "content": "dishwasher_gen" + }, + { + "label": "display_external_input", + "content": "display_external_input" + }, + { + "label": "display_settings", + "content": "display_settings" + }, + { + "label": "distance", + "content": "distance" + }, + { + "label": "diversity_1", + "content": "diversity_1" + }, + { + "label": "diversity_2", + "content": "diversity_2" + }, + { + "label": "diversity_3", + "content": "diversity_3" + }, + { + "label": "diversity_4", + "content": "diversity_4" + }, + { + "label": "dns", + "content": "dns" + }, + { + "label": "do_not_disturb_off", + "content": "do_not_disturb_off" + }, + { + "label": "do_not_disturb_on", + "content": "do_not_disturb_on" + }, + { + "label": "do_not_disturb_on_total_silence", + "content": "do_not_disturb_on_total_silence" + }, + { + "label": "do_not_step", + "content": "do_not_step" + }, + { + "label": "do_not_touch", + "content": "do_not_touch" + }, + { + "label": "dock", + "content": "dock" + }, + { + "label": "dock_to_bottom", + "content": "dock_to_bottom" + }, + { + "label": "dock_to_left", + "content": "dock_to_left" + }, + { + "label": "dock_to_right", + "content": "dock_to_right" + }, + { + "label": "docs_add_on", + "content": "docs_add_on" + }, + { + "label": "docs_apps_script", + "content": "docs_apps_script" + }, + { + "label": "document_scanner", + "content": "document_scanner" + }, + { + "label": "domain", + "content": "domain" + }, + { + "label": "domain_add", + "content": "domain_add" + }, + { + "label": "domain_disabled", + "content": "domain_disabled" + }, + { + "label": "domain_verification", + "content": "domain_verification" + }, + { + "label": "domain_verification_off", + "content": "domain_verification_off" + }, + { + "label": "domino_mask", + "content": "domino_mask" + }, + { + "label": "done_all", + "content": "done_all" + }, + { + "label": "done_outline", + "content": "done_outline" + }, + { + "label": "donut_large", + "content": "donut_large" + }, + { + "label": "donut_small", + "content": "donut_small" + }, + { + "label": "door_back", + "content": "door_back" + }, + { + "label": "door_front", + "content": "door_front" + }, + { + "label": "door_open", + "content": "door_open" + }, + { + "label": "door_sensor", + "content": "door_sensor" + }, + { + "label": "door_sliding", + "content": "door_sliding" + }, + { + "label": "doorbell", + "content": "doorbell" + }, + { + "label": "doorbell_3p", + "content": "doorbell_3p" + }, + { + "label": "doorbell_chime", + "content": "doorbell_chime" + }, + { + "label": "double_arrow", + "content": "double_arrow" + }, + { + "label": "downhill_skiing", + "content": "downhill_skiing" + }, + { + "label": "download", + "content": "download" + }, + { + "label": "download_2", + "content": "download_2" + }, + { + "label": "download_done", + "content": "download_done" + }, + { + "label": "download_for_offline", + "content": "download_for_offline" + }, + { + "label": "downloading", + "content": "downloading" + }, + { + "label": "draft", + "content": "draft" + }, + { + "label": "draft_orders", + "content": "draft_orders" + }, + { + "label": "drafts", + "content": "drafts" + }, + { + "label": "drag_click", + "content": "drag_click" + }, + { + "label": "drag_handle", + "content": "drag_handle" + }, + { + "label": "drag_indicator", + "content": "drag_indicator" + }, + { + "label": "drag_pan", + "content": "drag_pan" + }, + { + "label": "draw", + "content": "draw" + }, + { + "label": "draw_abstract", + "content": "draw_abstract" + }, + { + "label": "draw_collage", + "content": "draw_collage" + }, + { + "label": "dresser", + "content": "dresser" + }, + { + "label": "drive_file_move", + "content": "drive_file_move" + }, + { + "label": "drive_folder_upload", + "content": "drive_folder_upload" + }, + { + "label": "dropdown", + "content": "dropdown" + }, + { + "label": "dry", + "content": "dry" + }, + { + "label": "dry_cleaning", + "content": "dry_cleaning" + }, + { + "label": "dual_screen", + "content": "dual_screen" + }, + { + "label": "duo", + "content": "duo" + }, + { + "label": "dvr", + "content": "dvr" + }, + { + "label": "dynamic_feed", + "content": "dynamic_feed" + }, + { + "label": "dynamic_form", + "content": "dynamic_form" + }, + { + "label": "e911_avatar", + "content": "e911_avatar" + }, + { + "label": "e911_emergency", + "content": "e911_emergency" + }, + { + "label": "e_mobiledata", + "content": "e_mobiledata" + }, + { + "label": "e_mobiledata_badge", + "content": "e_mobiledata_badge" + }, + { + "label": "earbuds", + "content": "earbuds" + }, + { + "label": "earbuds_battery", + "content": "earbuds_battery" + }, + { + "label": "early_on", + "content": "early_on" + }, + { + "label": "earthquake", + "content": "earthquake" + }, + { + "label": "east", + "content": "east" + }, + { + "label": "ecg", + "content": "ecg" + }, + { + "label": "ecg_heart", + "content": "ecg_heart" + }, + { + "label": "eco", + "content": "eco" + }, + { + "label": "eda", + "content": "eda" + }, + { + "label": "edgesensor_high", + "content": "edgesensor_high" + }, + { + "label": "edgesensor_low", + "content": "edgesensor_low" + }, + { + "label": "edit", + "content": "edit" + }, + { + "label": "edit_attributes", + "content": "edit_attributes" + }, + { + "label": "edit_calendar", + "content": "edit_calendar" + }, + { + "label": "edit_document", + "content": "edit_document" + }, + { + "label": "edit_location", + "content": "edit_location" + }, + { + "label": "edit_location_alt", + "content": "edit_location_alt" + }, + { + "label": "edit_note", + "content": "edit_note" + }, + { + "label": "edit_notifications", + "content": "edit_notifications" + }, + { + "label": "edit_off", + "content": "edit_off" + }, + { + "label": "edit_road", + "content": "edit_road" + }, + { + "label": "edit_square", + "content": "edit_square" + }, + { + "label": "editor_choice", + "content": "editor_choice" + }, + { + "label": "egg", + "content": "egg" + }, + { + "label": "egg_alt", + "content": "egg_alt" + }, + { + "label": "eject", + "content": "eject" + }, + { + "label": "elderly", + "content": "elderly" + }, + { + "label": "elderly_woman", + "content": "elderly_woman" + }, + { + "label": "electric_bike", + "content": "electric_bike" + }, + { + "label": "electric_bolt", + "content": "electric_bolt" + }, + { + "label": "electric_car", + "content": "electric_car" + }, + { + "label": "electric_meter", + "content": "electric_meter" + }, + { + "label": "electric_moped", + "content": "electric_moped" + }, + { + "label": "electric_rickshaw", + "content": "electric_rickshaw" + }, + { + "label": "electric_scooter", + "content": "electric_scooter" + }, + { + "label": "electrical_services", + "content": "electrical_services" + }, + { + "label": "elevation", + "content": "elevation" + }, + { + "label": "elevator", + "content": "elevator" + }, + { + "label": "emergency", + "content": "emergency" + }, + { + "label": "emergency_heat", + "content": "emergency_heat" + }, + { + "label": "emergency_heat_2", + "content": "emergency_heat_2" + }, + { + "label": "emergency_home", + "content": "emergency_home" + }, + { + "label": "emergency_recording", + "content": "emergency_recording" + }, + { + "label": "emergency_share", + "content": "emergency_share" + }, + { + "label": "emergency_share_off", + "content": "emergency_share_off" + }, + { + "label": "emoji_events", + "content": "emoji_events" + }, + { + "label": "emoji_food_beverage", + "content": "emoji_food_beverage" + }, + { + "label": "emoji_language", + "content": "emoji_language" + }, + { + "label": "emoji_nature", + "content": "emoji_nature" + }, + { + "label": "emoji_objects", + "content": "emoji_objects" + }, + { + "label": "emoji_people", + "content": "emoji_people" + }, + { + "label": "emoji_symbols", + "content": "emoji_symbols" + }, + { + "label": "emoji_transportation", + "content": "emoji_transportation" + }, + { + "label": "emoticon", + "content": "emoticon" + }, + { + "label": "empty_dashboard", + "content": "empty_dashboard" + }, + { + "label": "enable", + "content": "enable" + }, + { + "label": "encrypted", + "content": "encrypted" + }, + { + "label": "endocrinology", + "content": "endocrinology" + }, + { + "label": "energy", + "content": "energy" + }, + { + "label": "energy_program_saving", + "content": "energy_program_saving" + }, + { + "label": "energy_program_time_used", + "content": "energy_program_time_used" + }, + { + "label": "energy_savings_leaf", + "content": "energy_savings_leaf" + }, + { + "label": "engineering", + "content": "engineering" + }, + { + "label": "enhanced_encryption", + "content": "enhanced_encryption" + }, + { + "label": "ent", + "content": "ent" + }, + { + "label": "enterprise", + "content": "enterprise" + }, + { + "label": "enterprise_off", + "content": "enterprise_off" + }, + { + "label": "equal", + "content": "equal" + }, + { + "label": "equalizer", + "content": "equalizer" + }, + { + "label": "error", + "content": "error" + }, + { + "label": "error_med", + "content": "error_med" + }, + { + "label": "escalator", + "content": "escalator" + }, + { + "label": "escalator_warning", + "content": "escalator_warning" + }, + { + "label": "euro", + "content": "euro" + }, + { + "label": "euro_symbol", + "content": "euro_symbol" + }, + { + "label": "ev_charger", + "content": "ev_charger" + }, + { + "label": "ev_mobiledata_badge", + "content": "ev_mobiledata_badge" + }, + { + "label": "ev_shadow", + "content": "ev_shadow" + }, + { + "label": "ev_shadow_add", + "content": "ev_shadow_add" + }, + { + "label": "ev_shadow_minus", + "content": "ev_shadow_minus" + }, + { + "label": "ev_station", + "content": "ev_station" + }, + { + "label": "event", + "content": "event" + }, + { + "label": "event_available", + "content": "event_available" + }, + { + "label": "event_busy", + "content": "event_busy" + }, + { + "label": "event_list", + "content": "event_list" + }, + { + "label": "event_note", + "content": "event_note" + }, + { + "label": "event_repeat", + "content": "event_repeat" + }, + { + "label": "event_seat", + "content": "event_seat" + }, + { + "label": "event_upcoming", + "content": "event_upcoming" + }, + { + "label": "exclamation", + "content": "exclamation" + }, + { + "label": "exercise", + "content": "exercise" + }, + { + "label": "exit_to_app", + "content": "exit_to_app" + }, + { + "label": "expand", + "content": "expand" + }, + { + "label": "expand_all", + "content": "expand_all" + }, + { + "label": "expand_circle_down", + "content": "expand_circle_down" + }, + { + "label": "expand_circle_right", + "content": "expand_circle_right" + }, + { + "label": "expand_circle_up", + "content": "expand_circle_up" + }, + { + "label": "expand_content", + "content": "expand_content" + }, + { + "label": "experiment", + "content": "experiment" + }, + { + "label": "explicit", + "content": "explicit" + }, + { + "label": "explore", + "content": "explore" + }, + { + "label": "explore_nearby", + "content": "explore_nearby" + }, + { + "label": "explore_off", + "content": "explore_off" + }, + { + "label": "explosion", + "content": "explosion" + }, + { + "label": "export_notes", + "content": "export_notes" + }, + { + "label": "exposure", + "content": "exposure" + }, + { + "label": "exposure_neg_1", + "content": "exposure_neg_1" + }, + { + "label": "exposure_neg_2", + "content": "exposure_neg_2" + }, + { + "label": "exposure_plus_1", + "content": "exposure_plus_1" + }, + { + "label": "exposure_plus_2", + "content": "exposure_plus_2" + }, + { + "label": "exposure_zero", + "content": "exposure_zero" + }, + { + "label": "extension", + "content": "extension" + }, + { + "label": "extension_off", + "content": "extension_off" + }, + { + "label": "eye_tracking", + "content": "eye_tracking" + }, + { + "label": "eyeglasses", + "content": "eyeglasses" + }, + { + "label": "face", + "content": "face" + }, + { + "label": "face_2", + "content": "face_2" + }, + { + "label": "face_3", + "content": "face_3" + }, + { + "label": "face_4", + "content": "face_4" + }, + { + "label": "face_5", + "content": "face_5" + }, + { + "label": "face_6", + "content": "face_6" + }, + { + "label": "face_retouching_off", + "content": "face_retouching_off" + }, + { + "label": "fact_check", + "content": "fact_check" + }, + { + "label": "factory", + "content": "factory" + }, + { + "label": "falling", + "content": "falling" + }, + { + "label": "familiar_face_and_zone", + "content": "familiar_face_and_zone" + }, + { + "label": "family_history", + "content": "family_history" + }, + { + "label": "family_home", + "content": "family_home" + }, + { + "label": "family_link", + "content": "family_link" + }, + { + "label": "family_restroom", + "content": "family_restroom" + }, + { + "label": "family_star", + "content": "family_star" + }, + { + "label": "farsight_digital", + "content": "farsight_digital" + }, + { + "label": "fast_forward", + "content": "fast_forward" + }, + { + "label": "fast_rewind", + "content": "fast_rewind" + }, + { + "label": "fastfood", + "content": "fastfood" + }, + { + "label": "faucet", + "content": "faucet" + }, + { + "label": "favorite", + "content": "favorite" + }, + { + "label": "fax", + "content": "fax" + }, + { + "label": "feature_search", + "content": "feature_search" + }, + { + "label": "featured_play_list", + "content": "featured_play_list" + }, + { + "label": "featured_seasonal_and_gifts", + "content": "featured_seasonal_and_gifts" + }, + { + "label": "featured_video", + "content": "featured_video" + }, + { + "label": "feedback", + "content": "feedback" + }, + { + "label": "female", + "content": "female" + }, + { + "label": "femur", + "content": "femur" + }, + { + "label": "femur_alt", + "content": "femur_alt" + }, + { + "label": "fence", + "content": "fence" + }, + { + "label": "fertile", + "content": "fertile" + }, + { + "label": "festival", + "content": "festival" + }, + { + "label": "fiber_dvr", + "content": "fiber_dvr" + }, + { + "label": "fiber_manual_record", + "content": "fiber_manual_record" + }, + { + "label": "fiber_new", + "content": "fiber_new" + }, + { + "label": "fiber_pin", + "content": "fiber_pin" + }, + { + "label": "fiber_smart_record", + "content": "fiber_smart_record" + }, + { + "label": "file_copy", + "content": "file_copy" + }, + { + "label": "file_copy_off", + "content": "file_copy_off" + }, + { + "label": "file_download_off", + "content": "file_download_off" + }, + { + "label": "file_map", + "content": "file_map" + }, + { + "label": "file_open", + "content": "file_open" + }, + { + "label": "file_present", + "content": "file_present" + }, + { + "label": "file_save", + "content": "file_save" + }, + { + "label": "file_save_off", + "content": "file_save_off" + }, + { + "label": "file_upload_off", + "content": "file_upload_off" + }, + { + "label": "filter", + "content": "filter" + }, + { + "label": "filter_1", + "content": "filter_1" + }, + { + "label": "filter_2", + "content": "filter_2" + }, + { + "label": "filter_3", + "content": "filter_3" + }, + { + "label": "filter_4", + "content": "filter_4" + }, + { + "label": "filter_5", + "content": "filter_5" + }, + { + "label": "filter_6", + "content": "filter_6" + }, + { + "label": "filter_7", + "content": "filter_7" + }, + { + "label": "filter_8", + "content": "filter_8" + }, + { + "label": "filter_9", + "content": "filter_9" + }, + { + "label": "filter_9_plus", + "content": "filter_9_plus" + }, + { + "label": "filter_alt", + "content": "filter_alt" + }, + { + "label": "filter_alt_off", + "content": "filter_alt_off" + }, + { + "label": "filter_b_and_w", + "content": "filter_b_and_w" + }, + { + "label": "filter_center_focus", + "content": "filter_center_focus" + }, + { + "label": "filter_drama", + "content": "filter_drama" + }, + { + "label": "filter_frames", + "content": "filter_frames" + }, + { + "label": "filter_hdr", + "content": "filter_hdr" + }, + { + "label": "filter_list", + "content": "filter_list" + }, + { + "label": "filter_list_off", + "content": "filter_list_off" + }, + { + "label": "filter_none", + "content": "filter_none" + }, + { + "label": "filter_retrolux", + "content": "filter_retrolux" + }, + { + "label": "filter_tilt_shift", + "content": "filter_tilt_shift" + }, + { + "label": "filter_vintage", + "content": "filter_vintage" + }, + { + "label": "finance", + "content": "finance" + }, + { + "label": "finance_chip", + "content": "finance_chip" + }, + { + "label": "finance_mode", + "content": "finance_mode" + }, + { + "label": "find_in_page", + "content": "find_in_page" + }, + { + "label": "find_replace", + "content": "find_replace" + }, + { + "label": "fingerprint", + "content": "fingerprint" + }, + { + "label": "fingerprint_off", + "content": "fingerprint_off" + }, + { + "label": "fire_extinguisher", + "content": "fire_extinguisher" + }, + { + "label": "fire_hydrant", + "content": "fire_hydrant" + }, + { + "label": "fire_truck", + "content": "fire_truck" + }, + { + "label": "fireplace", + "content": "fireplace" + }, + { + "label": "first_page", + "content": "first_page" + }, + { + "label": "fit_page", + "content": "fit_page" + }, + { + "label": "fit_screen", + "content": "fit_screen" + }, + { + "label": "fit_width", + "content": "fit_width" + }, + { + "label": "fitness_center", + "content": "fitness_center" + }, + { + "label": "fitness_tracker", + "content": "fitness_tracker" + }, + { + "label": "flag", + "content": "flag" + }, + { + "label": "flag_circle", + "content": "flag_circle" + }, + { + "label": "flaky", + "content": "flaky" + }, + { + "label": "flare", + "content": "flare" + }, + { + "label": "flash_auto", + "content": "flash_auto" + }, + { + "label": "flash_off", + "content": "flash_off" + }, + { + "label": "flash_on", + "content": "flash_on" + }, + { + "label": "flashlight_off", + "content": "flashlight_off" + }, + { + "label": "flashlight_on", + "content": "flashlight_on" + }, + { + "label": "flatware", + "content": "flatware" + }, + { + "label": "flex_direction", + "content": "flex_direction" + }, + { + "label": "flex_no_wrap", + "content": "flex_no_wrap" + }, + { + "label": "flex_wrap", + "content": "flex_wrap" + }, + { + "label": "flight", + "content": "flight" + }, + { + "label": "flight_class", + "content": "flight_class" + }, + { + "label": "flight_land", + "content": "flight_land" + }, + { + "label": "flight_takeoff", + "content": "flight_takeoff" + }, + { + "label": "flights_and_hotels", + "content": "flights_and_hotels" + }, + { + "label": "flightsmode", + "content": "flightsmode" + }, + { + "label": "flip", + "content": "flip" + }, + { + "label": "flip_camera_android", + "content": "flip_camera_android" + }, + { + "label": "flip_camera_ios", + "content": "flip_camera_ios" + }, + { + "label": "flip_to_back", + "content": "flip_to_back" + }, + { + "label": "flip_to_front", + "content": "flip_to_front" + }, + { + "label": "float_landscape_2", + "content": "float_landscape_2" + }, + { + "label": "float_portrait_2", + "content": "float_portrait_2" + }, + { + "label": "flood", + "content": "flood" + }, + { + "label": "floor", + "content": "floor" + }, + { + "label": "floor_lamp", + "content": "floor_lamp" + }, + { + "label": "flowsheet", + "content": "flowsheet" + }, + { + "label": "fluid", + "content": "fluid" + }, + { + "label": "fluid_balance", + "content": "fluid_balance" + }, + { + "label": "fluid_med", + "content": "fluid_med" + }, + { + "label": "fluorescent", + "content": "fluorescent" + }, + { + "label": "flutter", + "content": "flutter" + }, + { + "label": "flutter_dash", + "content": "flutter_dash" + }, + { + "label": "flyover", + "content": "flyover" + }, + { + "label": "fmd_bad", + "content": "fmd_bad" + }, + { + "label": "foggy", + "content": "foggy" + }, + { + "label": "folded_hands", + "content": "folded_hands" + }, + { + "label": "folder", + "content": "folder" + }, + { + "label": "folder_copy", + "content": "folder_copy" + }, + { + "label": "folder_data", + "content": "folder_data" + }, + { + "label": "folder_delete", + "content": "folder_delete" + }, + { + "label": "folder_limited", + "content": "folder_limited" + }, + { + "label": "folder_managed", + "content": "folder_managed" + }, + { + "label": "folder_off", + "content": "folder_off" + }, + { + "label": "folder_open", + "content": "folder_open" + }, + { + "label": "folder_shared", + "content": "folder_shared" + }, + { + "label": "folder_special", + "content": "folder_special" + }, + { + "label": "folder_supervised", + "content": "folder_supervised" + }, + { + "label": "folder_zip", + "content": "folder_zip" + }, + { + "label": "follow_the_signs", + "content": "follow_the_signs" + }, + { + "label": "font_download", + "content": "font_download" + }, + { + "label": "font_download_off", + "content": "font_download_off" + }, + { + "label": "food_bank", + "content": "food_bank" + }, + { + "label": "foot_bones", + "content": "foot_bones" + }, + { + "label": "footprint", + "content": "footprint" + }, + { + "label": "for_you", + "content": "for_you" + }, + { + "label": "forest", + "content": "forest" + }, + { + "label": "fork_left", + "content": "fork_left" + }, + { + "label": "fork_right", + "content": "fork_right" + }, + { + "label": "forklift", + "content": "forklift" + }, + { + "label": "format_align_center", + "content": "format_align_center" + }, + { + "label": "format_align_justify", + "content": "format_align_justify" + }, + { + "label": "format_align_left", + "content": "format_align_left" + }, + { + "label": "format_align_right", + "content": "format_align_right" + }, + { + "label": "format_bold", + "content": "format_bold" + }, + { + "label": "format_clear", + "content": "format_clear" + }, + { + "label": "format_color_fill", + "content": "format_color_fill" + }, + { + "label": "format_color_reset", + "content": "format_color_reset" + }, + { + "label": "format_color_text", + "content": "format_color_text" + }, + { + "label": "format_h1", + "content": "format_h1" + }, + { + "label": "format_h2", + "content": "format_h2" + }, + { + "label": "format_h3", + "content": "format_h3" + }, + { + "label": "format_h4", + "content": "format_h4" + }, + { + "label": "format_h5", + "content": "format_h5" + }, + { + "label": "format_h6", + "content": "format_h6" + }, + { + "label": "format_image_left", + "content": "format_image_left" + }, + { + "label": "format_image_right", + "content": "format_image_right" + }, + { + "label": "format_indent_decrease", + "content": "format_indent_decrease" + }, + { + "label": "format_indent_increase", + "content": "format_indent_increase" + }, + { + "label": "format_ink_highlighter", + "content": "format_ink_highlighter" + }, + { + "label": "format_italic", + "content": "format_italic" + }, + { + "label": "format_letter_spacing", + "content": "format_letter_spacing" + }, + { + "label": "format_letter_spacing_2", + "content": "format_letter_spacing_2" + }, + { + "label": "format_letter_spacing_standard", + "content": "format_letter_spacing_standard" + }, + { + "label": "format_letter_spacing_wide", + "content": "format_letter_spacing_wide" + }, + { + "label": "format_letter_spacing_wider", + "content": "format_letter_spacing_wider" + }, + { + "label": "format_line_spacing", + "content": "format_line_spacing" + }, + { + "label": "format_list_bulleted", + "content": "format_list_bulleted" + }, + { + "label": "format_list_bulleted_add", + "content": "format_list_bulleted_add" + }, + { + "label": "format_list_numbered", + "content": "format_list_numbered" + }, + { + "label": "format_list_numbered_rtl", + "content": "format_list_numbered_rtl" + }, + { + "label": "format_overline", + "content": "format_overline" + }, + { + "label": "format_paint", + "content": "format_paint" + }, + { + "label": "format_paragraph", + "content": "format_paragraph" + }, + { + "label": "format_quote", + "content": "format_quote" + }, + { + "label": "format_shapes", + "content": "format_shapes" + }, + { + "label": "format_size", + "content": "format_size" + }, + { + "label": "format_strikethrough", + "content": "format_strikethrough" + }, + { + "label": "format_text_clip", + "content": "format_text_clip" + }, + { + "label": "format_text_overflow", + "content": "format_text_overflow" + }, + { + "label": "format_text_wrap", + "content": "format_text_wrap" + }, + { + "label": "format_textdirection_l_to_r", + "content": "format_textdirection_l_to_r" + }, + { + "label": "format_textdirection_r_to_l", + "content": "format_textdirection_r_to_l" + }, + { + "label": "format_textdirection_vertical", + "content": "format_textdirection_vertical" + }, + { + "label": "format_underlined", + "content": "format_underlined" + }, + { + "label": "format_underlined_squiggle", + "content": "format_underlined_squiggle" + }, + { + "label": "forms_add_on", + "content": "forms_add_on" + }, + { + "label": "forms_apps_script", + "content": "forms_apps_script" + }, + { + "label": "fort", + "content": "fort" + }, + { + "label": "forum", + "content": "forum" + }, + { + "label": "forward", + "content": "forward" + }, + { + "label": "forward_10", + "content": "forward_10" + }, + { + "label": "forward_30", + "content": "forward_30" + }, + { + "label": "forward_5", + "content": "forward_5" + }, + { + "label": "forward_circle", + "content": "forward_circle" + }, + { + "label": "forward_media", + "content": "forward_media" + }, + { + "label": "forward_to_inbox", + "content": "forward_to_inbox" + }, + { + "label": "foundation", + "content": "foundation" + }, + { + "label": "frame_inspect", + "content": "frame_inspect" + }, + { + "label": "frame_person", + "content": "frame_person" + }, + { + "label": "frame_person_mic", + "content": "frame_person_mic" + }, + { + "label": "frame_person_off", + "content": "frame_person_off" + }, + { + "label": "frame_reload", + "content": "frame_reload" + }, + { + "label": "frame_source", + "content": "frame_source" + }, + { + "label": "free_cancellation", + "content": "free_cancellation" + }, + { + "label": "front_hand", + "content": "front_hand" + }, + { + "label": "front_loader", + "content": "front_loader" + }, + { + "label": "full_coverage", + "content": "full_coverage" + }, + { + "label": "full_hd", + "content": "full_hd" + }, + { + "label": "full_stacked_bar_chart", + "content": "full_stacked_bar_chart" + }, + { + "label": "fullscreen", + "content": "fullscreen" + }, + { + "label": "fullscreen_exit", + "content": "fullscreen_exit" + }, + { + "label": "fullscreen_portrait", + "content": "fullscreen_portrait" + }, + { + "label": "function", + "content": "function" + }, + { + "label": "functions", + "content": "functions" + }, + { + "label": "funicular", + "content": "funicular" + }, + { + "label": "g_mobiledata", + "content": "g_mobiledata" + }, + { + "label": "g_mobiledata_badge", + "content": "g_mobiledata_badge" + }, + { + "label": "g_translate", + "content": "g_translate" + }, + { + "label": "gallery_thumbnail", + "content": "gallery_thumbnail" + }, + { + "label": "gamepad", + "content": "gamepad" + }, + { + "label": "garage", + "content": "garage" + }, + { + "label": "garage_door", + "content": "garage_door" + }, + { + "label": "garage_home", + "content": "garage_home" + }, + { + "label": "garden_cart", + "content": "garden_cart" + }, + { + "label": "gas_meter", + "content": "gas_meter" + }, + { + "label": "gastroenterology", + "content": "gastroenterology" + }, + { + "label": "gate", + "content": "gate" + }, + { + "label": "gavel", + "content": "gavel" + }, + { + "label": "general_device", + "content": "general_device" + }, + { + "label": "genetics", + "content": "genetics" + }, + { + "label": "genres", + "content": "genres" + }, + { + "label": "gesture", + "content": "gesture" + }, + { + "label": "gesture_select", + "content": "gesture_select" + }, + { + "label": "gif", + "content": "gif" + }, + { + "label": "gif_box", + "content": "gif_box" + }, + { + "label": "girl", + "content": "girl" + }, + { + "label": "gite", + "content": "gite" + }, + { + "label": "glass_cup", + "content": "glass_cup" + }, + { + "label": "globe", + "content": "globe" + }, + { + "label": "globe_asia", + "content": "globe_asia" + }, + { + "label": "globe_uk", + "content": "globe_uk" + }, + { + "label": "glucose", + "content": "glucose" + }, + { + "label": "glyphs", + "content": "glyphs" + }, + { + "label": "go_to_line", + "content": "go_to_line" + }, + { + "label": "golf_course", + "content": "golf_course" + }, + { + "label": "gondola_lift", + "content": "gondola_lift" + }, + { + "label": "google_home_devices", + "content": "google_home_devices" + }, + { + "label": "google_tv_remote", + "content": "google_tv_remote" + }, + { + "label": "google_wifi", + "content": "google_wifi" + }, + { + "label": "gpp_bad", + "content": "gpp_bad" + }, + { + "label": "gpp_maybe", + "content": "gpp_maybe" + }, + { + "label": "grade", + "content": "grade" + }, + { + "label": "gradient", + "content": "gradient" + }, + { + "label": "grading", + "content": "grading" + }, + { + "label": "grain", + "content": "grain" + }, + { + "label": "graphic_eq", + "content": "graphic_eq" + }, + { + "label": "grass", + "content": "grass" + }, + { + "label": "grid_3x3", + "content": "grid_3x3" + }, + { + "label": "grid_3x3_off", + "content": "grid_3x3_off" + }, + { + "label": "grid_4x4", + "content": "grid_4x4" + }, + { + "label": "grid_goldenratio", + "content": "grid_goldenratio" + }, + { + "label": "grid_guides", + "content": "grid_guides" + }, + { + "label": "grid_off", + "content": "grid_off" + }, + { + "label": "grid_on", + "content": "grid_on" + }, + { + "label": "grid_view", + "content": "grid_view" + }, + { + "label": "grocery", + "content": "grocery" + }, + { + "label": "group", + "content": "group" + }, + { + "label": "group_add", + "content": "group_add" + }, + { + "label": "group_off", + "content": "group_off" + }, + { + "label": "group_remove", + "content": "group_remove" + }, + { + "label": "group_work", + "content": "group_work" + }, + { + "label": "grouped_bar_chart", + "content": "grouped_bar_chart" + }, + { + "label": "groups", + "content": "groups" + }, + { + "label": "groups_2", + "content": "groups_2" + }, + { + "label": "groups_3", + "content": "groups_3" + }, + { + "label": "guardian", + "content": "guardian" + }, + { + "label": "gynecology", + "content": "gynecology" + }, + { + "label": "h_mobiledata", + "content": "h_mobiledata" + }, + { + "label": "h_mobiledata_badge", + "content": "h_mobiledata_badge" + }, + { + "label": "h_plus_mobiledata", + "content": "h_plus_mobiledata" + }, + { + "label": "h_plus_mobiledata_badge", + "content": "h_plus_mobiledata_badge" + }, + { + "label": "hail", + "content": "hail" + }, + { + "label": "hallway", + "content": "hallway" + }, + { + "label": "hand_bones", + "content": "hand_bones" + }, + { + "label": "hand_gesture", + "content": "hand_gesture" + }, + { + "label": "handheld_controller", + "content": "handheld_controller" + }, + { + "label": "handshake", + "content": "handshake" + }, + { + "label": "handyman", + "content": "handyman" + }, + { + "label": "hangout_video", + "content": "hangout_video" + }, + { + "label": "hangout_video_off", + "content": "hangout_video_off" + }, + { + "label": "hard_drive", + "content": "hard_drive" + }, + { + "label": "hard_drive_2", + "content": "hard_drive_2" + }, + { + "label": "hardware", + "content": "hardware" + }, + { + "label": "hd", + "content": "hd" + }, + { + "label": "hdr_auto", + "content": "hdr_auto" + }, + { + "label": "hdr_auto_select", + "content": "hdr_auto_select" + }, + { + "label": "hdr_enhanced_select", + "content": "hdr_enhanced_select" + }, + { + "label": "hdr_off", + "content": "hdr_off" + }, + { + "label": "hdr_off_select", + "content": "hdr_off_select" + }, + { + "label": "hdr_on", + "content": "hdr_on" + }, + { + "label": "hdr_on_select", + "content": "hdr_on_select" + }, + { + "label": "hdr_plus", + "content": "hdr_plus" + }, + { + "label": "hdr_plus_off", + "content": "hdr_plus_off" + }, + { + "label": "hdr_strong", + "content": "hdr_strong" + }, + { + "label": "hdr_weak", + "content": "hdr_weak" + }, + { + "label": "head_mounted_device", + "content": "head_mounted_device" + }, + { + "label": "headphones", + "content": "headphones" + }, + { + "label": "headphones_battery", + "content": "headphones_battery" + }, + { + "label": "headset_mic", + "content": "headset_mic" + }, + { + "label": "headset_off", + "content": "headset_off" + }, + { + "label": "healing", + "content": "healing" + }, + { + "label": "health_and_beauty", + "content": "health_and_beauty" + }, + { + "label": "health_and_safety", + "content": "health_and_safety" + }, + { + "label": "health_metrics", + "content": "health_metrics" + }, + { + "label": "heap_snapshot_large", + "content": "heap_snapshot_large" + }, + { + "label": "heap_snapshot_multiple", + "content": "heap_snapshot_multiple" + }, + { + "label": "heap_snapshot_thumbnail", + "content": "heap_snapshot_thumbnail" + }, + { + "label": "hearing", + "content": "hearing" + }, + { + "label": "hearing_aid", + "content": "hearing_aid" + }, + { + "label": "hearing_disabled", + "content": "hearing_disabled" + }, + { + "label": "heart_broken", + "content": "heart_broken" + }, + { + "label": "heart_check", + "content": "heart_check" + }, + { + "label": "heart_minus", + "content": "heart_minus" + }, + { + "label": "heart_plus", + "content": "heart_plus" + }, + { + "label": "heat", + "content": "heat" + }, + { + "label": "heat_pump", + "content": "heat_pump" + }, + { + "label": "heat_pump_balance", + "content": "heat_pump_balance" + }, + { + "label": "height", + "content": "height" + }, + { + "label": "helicopter", + "content": "helicopter" + }, + { + "label": "help", + "content": "help" + }, + { + "label": "help_center", + "content": "help_center" + }, + { + "label": "help_clinic", + "content": "help_clinic" + }, + { + "label": "hematology", + "content": "hematology" + }, + { + "label": "hevc", + "content": "hevc" + }, + { + "label": "hexagon", + "content": "hexagon" + }, + { + "label": "hide", + "content": "hide" + }, + { + "label": "hide_image", + "content": "hide_image" + }, + { + "label": "hide_source", + "content": "hide_source" + }, + { + "label": "high_density", + "content": "high_density" + }, + { + "label": "high_quality", + "content": "high_quality" + }, + { + "label": "high_res", + "content": "high_res" + }, + { + "label": "highlight", + "content": "highlight" + }, + { + "label": "highlight_keyboard_focus", + "content": "highlight_keyboard_focus" + }, + { + "label": "highlight_mouse_cursor", + "content": "highlight_mouse_cursor" + }, + { + "label": "highlight_text_cursor", + "content": "highlight_text_cursor" + }, + { + "label": "highlighter_size_1", + "content": "highlighter_size_1" + }, + { + "label": "highlighter_size_2", + "content": "highlighter_size_2" + }, + { + "label": "highlighter_size_3", + "content": "highlighter_size_3" + }, + { + "label": "highlighter_size_4", + "content": "highlighter_size_4" + }, + { + "label": "highlighter_size_5", + "content": "highlighter_size_5" + }, + { + "label": "hiking", + "content": "hiking" + }, + { + "label": "history", + "content": "history" + }, + { + "label": "history_edu", + "content": "history_edu" + }, + { + "label": "history_off", + "content": "history_off" + }, + { + "label": "history_toggle_off", + "content": "history_toggle_off" + }, + { + "label": "hive", + "content": "hive" + }, + { + "label": "hls", + "content": "hls" + }, + { + "label": "hls_off", + "content": "hls_off" + }, + { + "label": "holiday_village", + "content": "holiday_village" + }, + { + "label": "home", + "content": "home" + }, + { + "label": "home_and_garden", + "content": "home_and_garden" + }, + { + "label": "home_app_logo", + "content": "home_app_logo" + }, + { + "label": "home_health", + "content": "home_health" + }, + { + "label": "home_improvement_and_tools", + "content": "home_improvement_and_tools" + }, + { + "label": "home_iot_device", + "content": "home_iot_device" + }, + { + "label": "home_max", + "content": "home_max" + }, + { + "label": "home_max_dots", + "content": "home_max_dots" + }, + { + "label": "home_mini", + "content": "home_mini" + }, + { + "label": "home_pin", + "content": "home_pin" + }, + { + "label": "home_repair_service", + "content": "home_repair_service" + }, + { + "label": "home_speaker", + "content": "home_speaker" + }, + { + "label": "home_storage", + "content": "home_storage" + }, + { + "label": "home_work", + "content": "home_work" + }, + { + "label": "horizontal_distribute", + "content": "horizontal_distribute" + }, + { + "label": "horizontal_rule", + "content": "horizontal_rule" + }, + { + "label": "horizontal_split", + "content": "horizontal_split" + }, + { + "label": "hot_tub", + "content": "hot_tub" + }, + { + "label": "hotel", + "content": "hotel" + }, + { + "label": "hotel_class", + "content": "hotel_class" + }, + { + "label": "hourglass", + "content": "hourglass" + }, + { + "label": "hourglass_bottom", + "content": "hourglass_bottom" + }, + { + "label": "hourglass_disabled", + "content": "hourglass_disabled" + }, + { + "label": "hourglass_empty", + "content": "hourglass_empty" + }, + { + "label": "hourglass_top", + "content": "hourglass_top" + }, + { + "label": "house", + "content": "house" + }, + { + "label": "house_siding", + "content": "house_siding" + }, + { + "label": "house_with_shield", + "content": "house_with_shield" + }, + { + "label": "houseboat", + "content": "houseboat" + }, + { + "label": "household_supplies", + "content": "household_supplies" + }, + { + "label": "hov", + "content": "hov" + }, + { + "label": "how_to_reg", + "content": "how_to_reg" + }, + { + "label": "how_to_vote", + "content": "how_to_vote" + }, + { + "label": "hr_resting", + "content": "hr_resting" + }, + { + "label": "html", + "content": "html" + }, + { + "label": "http", + "content": "http" + }, + { + "label": "hub", + "content": "hub" + }, + { + "label": "humerus", + "content": "humerus" + }, + { + "label": "humerus_alt", + "content": "humerus_alt" + }, + { + "label": "humidity_high", + "content": "humidity_high" + }, + { + "label": "humidity_indoor", + "content": "humidity_indoor" + }, + { + "label": "humidity_low", + "content": "humidity_low" + }, + { + "label": "humidity_mid", + "content": "humidity_mid" + }, + { + "label": "humidity_percentage", + "content": "humidity_percentage" + }, + { + "label": "hvac", + "content": "hvac" + }, + { + "label": "ice_skating", + "content": "ice_skating" + }, + { + "label": "icecream", + "content": "icecream" + }, + { + "label": "id_card", + "content": "id_card" + }, + { + "label": "ifl", + "content": "ifl" + }, + { + "label": "iframe", + "content": "iframe" + }, + { + "label": "iframe_off", + "content": "iframe_off" + }, + { + "label": "image", + "content": "image" + }, + { + "label": "image_aspect_ratio", + "content": "image_aspect_ratio" + }, + { + "label": "image_search", + "content": "image_search" + }, + { + "label": "imagesearch_roller", + "content": "imagesearch_roller" + }, + { + "label": "imagesmode", + "content": "imagesmode" + }, + { + "label": "immunology", + "content": "immunology" + }, + { + "label": "import_contacts", + "content": "import_contacts" + }, + { + "label": "important_devices", + "content": "important_devices" + }, + { + "label": "in_home_mode", + "content": "in_home_mode" + }, + { + "label": "inactive_order", + "content": "inactive_order" + }, + { + "label": "inbox", + "content": "inbox" + }, + { + "label": "inbox_customize", + "content": "inbox_customize" + }, + { + "label": "incomplete_circle", + "content": "incomplete_circle" + }, + { + "label": "indeterminate_check_box", + "content": "indeterminate_check_box" + }, + { + "label": "indeterminate_question_box", + "content": "indeterminate_question_box" + }, + { + "label": "info", + "content": "info" + }, + { + "label": "info_i", + "content": "info_i" + }, + { + "label": "infrared", + "content": "infrared" + }, + { + "label": "ink_eraser", + "content": "ink_eraser" + }, + { + "label": "ink_eraser_off", + "content": "ink_eraser_off" + }, + { + "label": "ink_highlighter", + "content": "ink_highlighter" + }, + { + "label": "ink_highlighter_move", + "content": "ink_highlighter_move" + }, + { + "label": "ink_marker", + "content": "ink_marker" + }, + { + "label": "ink_pen", + "content": "ink_pen" + }, + { + "label": "inpatient", + "content": "inpatient" + }, + { + "label": "input", + "content": "input" + }, + { + "label": "input_circle", + "content": "input_circle" + }, + { + "label": "insert_chart", + "content": "insert_chart" + }, + { + "label": "insert_page_break", + "content": "insert_page_break" + }, + { + "label": "insert_text", + "content": "insert_text" + }, + { + "label": "install_desktop", + "content": "install_desktop" + }, + { + "label": "install_mobile", + "content": "install_mobile" + }, + { + "label": "instant_mix", + "content": "instant_mix" + }, + { + "label": "integration_instructions", + "content": "integration_instructions" + }, + { + "label": "interactive_space", + "content": "interactive_space" + }, + { + "label": "interests", + "content": "interests" + }, + { + "label": "interpreter_mode", + "content": "interpreter_mode" + }, + { + "label": "inventory", + "content": "inventory" + }, + { + "label": "inventory_2", + "content": "inventory_2" + }, + { + "label": "invert_colors", + "content": "invert_colors" + }, + { + "label": "invert_colors_off", + "content": "invert_colors_off" + }, + { + "label": "ios", + "content": "ios" + }, + { + "label": "ios_share", + "content": "ios_share" + }, + { + "label": "iron", + "content": "iron" + }, + { + "label": "jamboard_kiosk", + "content": "jamboard_kiosk" + }, + { + "label": "javascript", + "content": "javascript" + }, + { + "label": "join", + "content": "join" + }, + { + "label": "join_inner", + "content": "join_inner" + }, + { + "label": "join_left", + "content": "join_left" + }, + { + "label": "join_right", + "content": "join_right" + }, + { + "label": "joystick", + "content": "joystick" + }, + { + "label": "jump_to_element", + "content": "jump_to_element" + }, + { + "label": "kayaking", + "content": "kayaking" + }, + { + "label": "kebab_dining", + "content": "kebab_dining" + }, + { + "label": "keep", + "content": "keep" + }, + { + "label": "keep_off", + "content": "keep_off" + }, + { + "label": "keep_public", + "content": "keep_public" + }, + { + "label": "kettle", + "content": "kettle" + }, + { + "label": "key", + "content": "key" + }, + { + "label": "key_off", + "content": "key_off" + }, + { + "label": "key_vertical", + "content": "key_vertical" + }, + { + "label": "key_visualizer", + "content": "key_visualizer" + }, + { + "label": "keyboard", + "content": "keyboard" + }, + { + "label": "keyboard_alt", + "content": "keyboard_alt" + }, + { + "label": "keyboard_arrow_down", + "content": "keyboard_arrow_down" + }, + { + "label": "keyboard_arrow_left", + "content": "keyboard_arrow_left" + }, + { + "label": "keyboard_arrow_right", + "content": "keyboard_arrow_right" + }, + { + "label": "keyboard_arrow_up", + "content": "keyboard_arrow_up" + }, + { + "label": "keyboard_backspace", + "content": "keyboard_backspace" + }, + { + "label": "keyboard_capslock", + "content": "keyboard_capslock" + }, + { + "label": "keyboard_capslock_badge", + "content": "keyboard_capslock_badge" + }, + { + "label": "keyboard_command_key", + "content": "keyboard_command_key" + }, + { + "label": "keyboard_control_key", + "content": "keyboard_control_key" + }, + { + "label": "keyboard_double_arrow_down", + "content": "keyboard_double_arrow_down" + }, + { + "label": "keyboard_double_arrow_left", + "content": "keyboard_double_arrow_left" + }, + { + "label": "keyboard_double_arrow_right", + "content": "keyboard_double_arrow_right" + }, + { + "label": "keyboard_double_arrow_up", + "content": "keyboard_double_arrow_up" + }, + { + "label": "keyboard_external_input", + "content": "keyboard_external_input" + }, + { + "label": "keyboard_full", + "content": "keyboard_full" + }, + { + "label": "keyboard_hide", + "content": "keyboard_hide" + }, + { + "label": "keyboard_keys", + "content": "keyboard_keys" + }, + { + "label": "keyboard_lock", + "content": "keyboard_lock" + }, + { + "label": "keyboard_lock_off", + "content": "keyboard_lock_off" + }, + { + "label": "keyboard_off", + "content": "keyboard_off" + }, + { + "label": "keyboard_onscreen", + "content": "keyboard_onscreen" + }, + { + "label": "keyboard_option_key", + "content": "keyboard_option_key" + }, + { + "label": "keyboard_previous_language", + "content": "keyboard_previous_language" + }, + { + "label": "keyboard_return", + "content": "keyboard_return" + }, + { + "label": "keyboard_tab", + "content": "keyboard_tab" + }, + { + "label": "keyboard_tab_rtl", + "content": "keyboard_tab_rtl" + }, + { + "label": "kid_star", + "content": "kid_star" + }, + { + "label": "king_bed", + "content": "king_bed" + }, + { + "label": "kitchen", + "content": "kitchen" + }, + { + "label": "kitesurfing", + "content": "kitesurfing" + }, + { + "label": "lab_panel", + "content": "lab_panel" + }, + { + "label": "lab_profile", + "content": "lab_profile" + }, + { + "label": "lab_research", + "content": "lab_research" + }, + { + "label": "label", + "content": "label" + }, + { + "label": "label_important", + "content": "label_important" + }, + { + "label": "label_off", + "content": "label_off" + }, + { + "label": "labs", + "content": "labs" + }, + { + "label": "lan", + "content": "lan" + }, + { + "label": "landscape", + "content": "landscape" + }, + { + "label": "landscape_2", + "content": "landscape_2" + }, + { + "label": "landscape_2_off", + "content": "landscape_2_off" + }, + { + "label": "landslide", + "content": "landslide" + }, + { + "label": "language", + "content": "language" + }, + { + "label": "language_chinese_array", + "content": "language_chinese_array" + }, + { + "label": "language_chinese_cangjie", + "content": "language_chinese_cangjie" + }, + { + "label": "language_chinese_dayi", + "content": "language_chinese_dayi" + }, + { + "label": "language_chinese_pinyin", + "content": "language_chinese_pinyin" + }, + { + "label": "language_chinese_quick", + "content": "language_chinese_quick" + }, + { + "label": "language_chinese_wubi", + "content": "language_chinese_wubi" + }, + { + "label": "language_french", + "content": "language_french" + }, + { + "label": "language_gb_english", + "content": "language_gb_english" + }, + { + "label": "language_international", + "content": "language_international" + }, + { + "label": "language_japanese_kana", + "content": "language_japanese_kana" + }, + { + "label": "language_korean_latin", + "content": "language_korean_latin" + }, + { + "label": "language_pinyin", + "content": "language_pinyin" + }, + { + "label": "language_spanish", + "content": "language_spanish" + }, + { + "label": "language_us", + "content": "language_us" + }, + { + "label": "language_us_colemak", + "content": "language_us_colemak" + }, + { + "label": "language_us_dvorak", + "content": "language_us_dvorak" + }, + { + "label": "laps", + "content": "laps" + }, + { + "label": "laptop_chromebook", + "content": "laptop_chromebook" + }, + { + "label": "laptop_mac", + "content": "laptop_mac" + }, + { + "label": "laptop_windows", + "content": "laptop_windows" + }, + { + "label": "lasso_select", + "content": "lasso_select" + }, + { + "label": "last_page", + "content": "last_page" + }, + { + "label": "laundry", + "content": "laundry" + }, + { + "label": "layers", + "content": "layers" + }, + { + "label": "layers_clear", + "content": "layers_clear" + }, + { + "label": "lda", + "content": "lda" + }, + { + "label": "leaderboard", + "content": "leaderboard" + }, + { + "label": "leak_add", + "content": "leak_add" + }, + { + "label": "leak_remove", + "content": "leak_remove" + }, + { + "label": "left_click", + "content": "left_click" + }, + { + "label": "left_panel_close", + "content": "left_panel_close" + }, + { + "label": "left_panel_open", + "content": "left_panel_open" + }, + { + "label": "legend_toggle", + "content": "legend_toggle" + }, + { + "label": "lens", + "content": "lens" + }, + { + "label": "lens_blur", + "content": "lens_blur" + }, + { + "label": "letter_switch", + "content": "letter_switch" + }, + { + "label": "library_add", + "content": "library_add" + }, + { + "label": "library_add_check", + "content": "library_add_check" + }, + { + "label": "library_books", + "content": "library_books" + }, + { + "label": "library_music", + "content": "library_music" + }, + { + "label": "license", + "content": "license" + }, + { + "label": "lift_to_talk", + "content": "lift_to_talk" + }, + { + "label": "light", + "content": "light" + }, + { + "label": "light_group", + "content": "light_group" + }, + { + "label": "light_mode", + "content": "light_mode" + }, + { + "label": "light_off", + "content": "light_off" + }, + { + "label": "lightbulb", + "content": "lightbulb" + }, + { + "label": "lightbulb_circle", + "content": "lightbulb_circle" + }, + { + "label": "lightning_stand", + "content": "lightning_stand" + }, + { + "label": "line_axis", + "content": "line_axis" + }, + { + "label": "line_curve", + "content": "line_curve" + }, + { + "label": "line_end", + "content": "line_end" + }, + { + "label": "line_end_arrow", + "content": "line_end_arrow" + }, + { + "label": "line_end_arrow_notch", + "content": "line_end_arrow_notch" + }, + { + "label": "line_end_circle", + "content": "line_end_circle" + }, + { + "label": "line_end_diamond", + "content": "line_end_diamond" + }, + { + "label": "line_end_square", + "content": "line_end_square" + }, + { + "label": "line_start", + "content": "line_start" + }, + { + "label": "line_start_arrow", + "content": "line_start_arrow" + }, + { + "label": "line_start_arrow_notch", + "content": "line_start_arrow_notch" + }, + { + "label": "line_start_circle", + "content": "line_start_circle" + }, + { + "label": "line_start_diamond", + "content": "line_start_diamond" + }, + { + "label": "line_start_square", + "content": "line_start_square" + }, + { + "label": "line_style", + "content": "line_style" + }, + { + "label": "line_weight", + "content": "line_weight" + }, + { + "label": "linear_scale", + "content": "linear_scale" + }, + { + "label": "link", + "content": "link" + }, + { + "label": "link_off", + "content": "link_off" + }, + { + "label": "linked_camera", + "content": "linked_camera" + }, + { + "label": "linked_services", + "content": "linked_services" + }, + { + "label": "liquor", + "content": "liquor" + }, + { + "label": "list", + "content": "list" + }, + { + "label": "list_alt", + "content": "list_alt" + }, + { + "label": "list_alt_add", + "content": "list_alt_add" + }, + { + "label": "lists", + "content": "lists" + }, + { + "label": "live_help", + "content": "live_help" + }, + { + "label": "live_tv", + "content": "live_tv" + }, + { + "label": "living", + "content": "living" + }, + { + "label": "local_activity", + "content": "local_activity" + }, + { + "label": "local_atm", + "content": "local_atm" + }, + { + "label": "local_bar", + "content": "local_bar" + }, + { + "label": "local_cafe", + "content": "local_cafe" + }, + { + "label": "local_car_wash", + "content": "local_car_wash" + }, + { + "label": "local_convenience_store", + "content": "local_convenience_store" + }, + { + "label": "local_dining", + "content": "local_dining" + }, + { + "label": "local_drink", + "content": "local_drink" + }, + { + "label": "local_fire_department", + "content": "local_fire_department" + }, + { + "label": "local_florist", + "content": "local_florist" + }, + { + "label": "local_gas_station", + "content": "local_gas_station" + }, + { + "label": "local_hospital", + "content": "local_hospital" + }, + { + "label": "local_laundry_service", + "content": "local_laundry_service" + }, + { + "label": "local_library", + "content": "local_library" + }, + { + "label": "local_mall", + "content": "local_mall" + }, + { + "label": "local_parking", + "content": "local_parking" + }, + { + "label": "local_pharmacy", + "content": "local_pharmacy" + }, + { + "label": "local_pizza", + "content": "local_pizza" + }, + { + "label": "local_police", + "content": "local_police" + }, + { + "label": "local_post_office", + "content": "local_post_office" + }, + { + "label": "local_see", + "content": "local_see" + }, + { + "label": "local_shipping", + "content": "local_shipping" + }, + { + "label": "local_taxi", + "content": "local_taxi" + }, + { + "label": "location_away", + "content": "location_away" + }, + { + "label": "location_chip", + "content": "location_chip" + }, + { + "label": "location_city", + "content": "location_city" + }, + { + "label": "location_disabled", + "content": "location_disabled" + }, + { + "label": "location_home", + "content": "location_home" + }, + { + "label": "location_off", + "content": "location_off" + }, + { + "label": "location_on", + "content": "location_on" + }, + { + "label": "location_searching", + "content": "location_searching" + }, + { + "label": "lock", + "content": "lock" + }, + { + "label": "lock_clock", + "content": "lock_clock" + }, + { + "label": "lock_open", + "content": "lock_open" + }, + { + "label": "lock_open_right", + "content": "lock_open_right" + }, + { + "label": "lock_person", + "content": "lock_person" + }, + { + "label": "lock_reset", + "content": "lock_reset" + }, + { + "label": "login", + "content": "login" + }, + { + "label": "logo_dev", + "content": "logo_dev" + }, + { + "label": "logout", + "content": "logout" + }, + { + "label": "looks", + "content": "looks" + }, + { + "label": "looks_3", + "content": "looks_3" + }, + { + "label": "looks_4", + "content": "looks_4" + }, + { + "label": "looks_5", + "content": "looks_5" + }, + { + "label": "looks_6", + "content": "looks_6" + }, + { + "label": "looks_one", + "content": "looks_one" + }, + { + "label": "looks_two", + "content": "looks_two" + }, + { + "label": "loupe", + "content": "loupe" + }, + { + "label": "low_density", + "content": "low_density" + }, + { + "label": "low_priority", + "content": "low_priority" + }, + { + "label": "lowercase", + "content": "lowercase" + }, + { + "label": "loyalty", + "content": "loyalty" + }, + { + "label": "lte_mobiledata", + "content": "lte_mobiledata" + }, + { + "label": "lte_mobiledata_badge", + "content": "lte_mobiledata_badge" + }, + { + "label": "lte_plus_mobiledata", + "content": "lte_plus_mobiledata" + }, + { + "label": "lte_plus_mobiledata_badge", + "content": "lte_plus_mobiledata_badge" + }, + { + "label": "luggage", + "content": "luggage" + }, + { + "label": "lunch_dining", + "content": "lunch_dining" + }, + { + "label": "lyrics", + "content": "lyrics" + }, + { + "label": "macro_auto", + "content": "macro_auto" + }, + { + "label": "macro_off", + "content": "macro_off" + }, + { + "label": "magnification_large", + "content": "magnification_large" + }, + { + "label": "magnification_small", + "content": "magnification_small" + }, + { + "label": "magnify_docked", + "content": "magnify_docked" + }, + { + "label": "magnify_fullscreen", + "content": "magnify_fullscreen" + }, + { + "label": "mail", + "content": "mail" + }, + { + "label": "mail_lock", + "content": "mail_lock" + }, + { + "label": "mail_off", + "content": "mail_off" + }, + { + "label": "male", + "content": "male" + }, + { + "label": "man", + "content": "man" + }, + { + "label": "man_2", + "content": "man_2" + }, + { + "label": "man_3", + "content": "man_3" + }, + { + "label": "man_4", + "content": "man_4" + }, + { + "label": "manage_accounts", + "content": "manage_accounts" + }, + { + "label": "manage_history", + "content": "manage_history" + }, + { + "label": "manage_search", + "content": "manage_search" + }, + { + "label": "manga", + "content": "manga" + }, + { + "label": "manufacturing", + "content": "manufacturing" + }, + { + "label": "map", + "content": "map" + }, + { + "label": "maps_ugc", + "content": "maps_ugc" + }, + { + "label": "margin", + "content": "margin" + }, + { + "label": "mark_as_unread", + "content": "mark_as_unread" + }, + { + "label": "mark_chat_read", + "content": "mark_chat_read" + }, + { + "label": "mark_chat_unread", + "content": "mark_chat_unread" + }, + { + "label": "mark_email_read", + "content": "mark_email_read" + }, + { + "label": "mark_email_unread", + "content": "mark_email_unread" + }, + { + "label": "mark_unread_chat_alt", + "content": "mark_unread_chat_alt" + }, + { + "label": "markdown", + "content": "markdown" + }, + { + "label": "markdown_copy", + "content": "markdown_copy" + }, + { + "label": "markdown_paste", + "content": "markdown_paste" + }, + { + "label": "markunread_mailbox", + "content": "markunread_mailbox" + }, + { + "label": "masked_transitions", + "content": "masked_transitions" + }, + { + "label": "masks", + "content": "masks" + }, + { + "label": "match_case", + "content": "match_case" + }, + { + "label": "match_word", + "content": "match_word" + }, + { + "label": "matter", + "content": "matter" + }, + { + "label": "maximize", + "content": "maximize" + }, + { + "label": "measuring_tape", + "content": "measuring_tape" + }, + { + "label": "media_bluetooth_off", + "content": "media_bluetooth_off" + }, + { + "label": "media_bluetooth_on", + "content": "media_bluetooth_on" + }, + { + "label": "media_link", + "content": "media_link" + }, + { + "label": "media_output", + "content": "media_output" + }, + { + "label": "media_output_off", + "content": "media_output_off" + }, + { + "label": "mediation", + "content": "mediation" + }, + { + "label": "medical_information", + "content": "medical_information" + }, + { + "label": "medical_mask", + "content": "medical_mask" + }, + { + "label": "medical_services", + "content": "medical_services" + }, + { + "label": "medication", + "content": "medication" + }, + { + "label": "medication_liquid", + "content": "medication_liquid" + }, + { + "label": "meeting_room", + "content": "meeting_room" + }, + { + "label": "memory", + "content": "memory" + }, + { + "label": "memory_alt", + "content": "memory_alt" + }, + { + "label": "menstrual_health", + "content": "menstrual_health" + }, + { + "label": "menu", + "content": "menu" + }, + { + "label": "menu_book", + "content": "menu_book" + }, + { + "label": "menu_open", + "content": "menu_open" + }, + { + "label": "merge", + "content": "merge" + }, + { + "label": "merge_type", + "content": "merge_type" + }, + { + "label": "metabolism", + "content": "metabolism" + }, + { + "label": "metro", + "content": "metro" + }, + { + "label": "mfg_nest_yale_lock", + "content": "mfg_nest_yale_lock" + }, + { + "label": "mic", + "content": "mic" + }, + { + "label": "mic_double", + "content": "mic_double" + }, + { + "label": "mic_external_off", + "content": "mic_external_off" + }, + { + "label": "mic_external_on", + "content": "mic_external_on" + }, + { + "label": "mic_off", + "content": "mic_off" + }, + { + "label": "microbiology", + "content": "microbiology" + }, + { + "label": "microwave", + "content": "microwave" + }, + { + "label": "microwave_gen", + "content": "microwave_gen" + }, + { + "label": "military_tech", + "content": "military_tech" + }, + { + "label": "mimo", + "content": "mimo" + }, + { + "label": "mimo_disconnect", + "content": "mimo_disconnect" + }, + { + "label": "mindfulness", + "content": "mindfulness" + }, + { + "label": "minimize", + "content": "minimize" + }, + { + "label": "minor_crash", + "content": "minor_crash" + }, + { + "label": "mintmark", + "content": "mintmark" + }, + { + "label": "missed_video_call", + "content": "missed_video_call" + }, + { + "label": "missing_controller", + "content": "missing_controller" + }, + { + "label": "mist", + "content": "mist" + }, + { + "label": "mitre", + "content": "mitre" + }, + { + "label": "mixture_med", + "content": "mixture_med" + }, + { + "label": "mms", + "content": "mms" + }, + { + "label": "mobile_friendly", + "content": "mobile_friendly" + }, + { + "label": "mobile_off", + "content": "mobile_off" + }, + { + "label": "mobile_screen_share", + "content": "mobile_screen_share" + }, + { + "label": "mobiledata_off", + "content": "mobiledata_off" + }, + { + "label": "mode_comment", + "content": "mode_comment" + }, + { + "label": "mode_cool", + "content": "mode_cool" + }, + { + "label": "mode_cool_off", + "content": "mode_cool_off" + }, + { + "label": "mode_dual", + "content": "mode_dual" + }, + { + "label": "mode_fan", + "content": "mode_fan" + }, + { + "label": "mode_fan_off", + "content": "mode_fan_off" + }, + { + "label": "mode_heat", + "content": "mode_heat" + }, + { + "label": "mode_heat_cool", + "content": "mode_heat_cool" + }, + { + "label": "mode_heat_off", + "content": "mode_heat_off" + }, + { + "label": "mode_night", + "content": "mode_night" + }, + { + "label": "mode_of_travel", + "content": "mode_of_travel" + }, + { + "label": "mode_off_on", + "content": "mode_off_on" + }, + { + "label": "mode_standby", + "content": "mode_standby" + }, + { + "label": "model_training", + "content": "model_training" + }, + { + "label": "money", + "content": "money" + }, + { + "label": "money_off", + "content": "money_off" + }, + { + "label": "monitor", + "content": "monitor" + }, + { + "label": "monitor_heart", + "content": "monitor_heart" + }, + { + "label": "monitor_weight", + "content": "monitor_weight" + }, + { + "label": "monitor_weight_gain", + "content": "monitor_weight_gain" + }, + { + "label": "monitor_weight_loss", + "content": "monitor_weight_loss" + }, + { + "label": "monitoring", + "content": "monitoring" + }, + { + "label": "monochrome_photos", + "content": "monochrome_photos" + }, + { + "label": "monorail", + "content": "monorail" + }, + { + "label": "mood", + "content": "mood" + }, + { + "label": "mood_bad", + "content": "mood_bad" + }, + { + "label": "mop", + "content": "mop" + }, + { + "label": "more", + "content": "more" + }, + { + "label": "more_down", + "content": "more_down" + }, + { + "label": "more_horiz", + "content": "more_horiz" + }, + { + "label": "more_time", + "content": "more_time" + }, + { + "label": "more_up", + "content": "more_up" + }, + { + "label": "more_vert", + "content": "more_vert" + }, + { + "label": "mosque", + "content": "mosque" + }, + { + "label": "motion_blur", + "content": "motion_blur" + }, + { + "label": "motion_mode", + "content": "motion_mode" + }, + { + "label": "motion_photos_auto", + "content": "motion_photos_auto" + }, + { + "label": "motion_photos_off", + "content": "motion_photos_off" + }, + { + "label": "motion_photos_on", + "content": "motion_photos_on" + }, + { + "label": "motion_photos_paused", + "content": "motion_photos_paused" + }, + { + "label": "motion_sensor_active", + "content": "motion_sensor_active" + }, + { + "label": "motion_sensor_alert", + "content": "motion_sensor_alert" + }, + { + "label": "motion_sensor_idle", + "content": "motion_sensor_idle" + }, + { + "label": "motion_sensor_urgent", + "content": "motion_sensor_urgent" + }, + { + "label": "motorcycle", + "content": "motorcycle" + }, + { + "label": "mountain_flag", + "content": "mountain_flag" + }, + { + "label": "mouse", + "content": "mouse" + }, + { + "label": "mouse_lock", + "content": "mouse_lock" + }, + { + "label": "mouse_lock_off", + "content": "mouse_lock_off" + }, + { + "label": "move", + "content": "move" + }, + { + "label": "move_down", + "content": "move_down" + }, + { + "label": "move_group", + "content": "move_group" + }, + { + "label": "move_item", + "content": "move_item" + }, + { + "label": "move_location", + "content": "move_location" + }, + { + "label": "move_selection_down", + "content": "move_selection_down" + }, + { + "label": "move_selection_left", + "content": "move_selection_left" + }, + { + "label": "move_selection_right", + "content": "move_selection_right" + }, + { + "label": "move_selection_up", + "content": "move_selection_up" + }, + { + "label": "move_to_inbox", + "content": "move_to_inbox" + }, + { + "label": "move_up", + "content": "move_up" + }, + { + "label": "moved_location", + "content": "moved_location" + }, + { + "label": "movie", + "content": "movie" + }, + { + "label": "movie_edit", + "content": "movie_edit" + }, + { + "label": "movie_info", + "content": "movie_info" + }, + { + "label": "movie_off", + "content": "movie_off" + }, + { + "label": "moving", + "content": "moving" + }, + { + "label": "moving_beds", + "content": "moving_beds" + }, + { + "label": "moving_ministry", + "content": "moving_ministry" + }, + { + "label": "mp", + "content": "mp" + }, + { + "label": "multicooker", + "content": "multicooker" + }, + { + "label": "multiline_chart", + "content": "multiline_chart" + }, + { + "label": "multiple_stop", + "content": "multiple_stop" + }, + { + "label": "museum", + "content": "museum" + }, + { + "label": "music_cast", + "content": "music_cast" + }, + { + "label": "music_note", + "content": "music_note" + }, + { + "label": "music_off", + "content": "music_off" + }, + { + "label": "music_video", + "content": "music_video" + }, + { + "label": "my_location", + "content": "my_location" + }, + { + "label": "mystery", + "content": "mystery" + }, + { + "label": "nat", + "content": "nat" + }, + { + "label": "nature", + "content": "nature" + }, + { + "label": "nature_people", + "content": "nature_people" + }, + { + "label": "navigation", + "content": "navigation" + }, + { + "label": "near_me", + "content": "near_me" + }, + { + "label": "near_me_disabled", + "content": "near_me_disabled" + }, + { + "label": "nearby", + "content": "nearby" + }, + { + "label": "nearby_error", + "content": "nearby_error" + }, + { + "label": "nearby_off", + "content": "nearby_off" + }, + { + "label": "nephrology", + "content": "nephrology" + }, + { + "label": "nest_audio", + "content": "nest_audio" + }, + { + "label": "nest_cam_floodlight", + "content": "nest_cam_floodlight" + }, + { + "label": "nest_cam_indoor", + "content": "nest_cam_indoor" + }, + { + "label": "nest_cam_iq", + "content": "nest_cam_iq" + }, + { + "label": "nest_cam_iq_outdoor", + "content": "nest_cam_iq_outdoor" + }, + { + "label": "nest_cam_magnet_mount", + "content": "nest_cam_magnet_mount" + }, + { + "label": "nest_cam_outdoor", + "content": "nest_cam_outdoor" + }, + { + "label": "nest_cam_stand", + "content": "nest_cam_stand" + }, + { + "label": "nest_cam_wall_mount", + "content": "nest_cam_wall_mount" + }, + { + "label": "nest_cam_wired_stand", + "content": "nest_cam_wired_stand" + }, + { + "label": "nest_clock_farsight_analog", + "content": "nest_clock_farsight_analog" + }, + { + "label": "nest_clock_farsight_digital", + "content": "nest_clock_farsight_digital" + }, + { + "label": "nest_connect", + "content": "nest_connect" + }, + { + "label": "nest_detect", + "content": "nest_detect" + }, + { + "label": "nest_display", + "content": "nest_display" + }, + { + "label": "nest_display_max", + "content": "nest_display_max" + }, + { + "label": "nest_doorbell_visitor", + "content": "nest_doorbell_visitor" + }, + { + "label": "nest_eco_leaf", + "content": "nest_eco_leaf" + }, + { + "label": "nest_farsight_weather", + "content": "nest_farsight_weather" + }, + { + "label": "nest_found_savings", + "content": "nest_found_savings" + }, + { + "label": "nest_gale_wifi", + "content": "nest_gale_wifi" + }, + { + "label": "nest_heat_link_e", + "content": "nest_heat_link_e" + }, + { + "label": "nest_heat_link_gen_3", + "content": "nest_heat_link_gen_3" + }, + { + "label": "nest_hello_doorbell", + "content": "nest_hello_doorbell" + }, + { + "label": "nest_mini", + "content": "nest_mini" + }, + { + "label": "nest_multi_room", + "content": "nest_multi_room" + }, + { + "label": "nest_protect", + "content": "nest_protect" + }, + { + "label": "nest_remote", + "content": "nest_remote" + }, + { + "label": "nest_remote_comfort_sensor", + "content": "nest_remote_comfort_sensor" + }, + { + "label": "nest_secure_alarm", + "content": "nest_secure_alarm" + }, + { + "label": "nest_sunblock", + "content": "nest_sunblock" + }, + { + "label": "nest_tag", + "content": "nest_tag" + }, + { + "label": "nest_thermostat", + "content": "nest_thermostat" + }, + { + "label": "nest_thermostat_e_eu", + "content": "nest_thermostat_e_eu" + }, + { + "label": "nest_thermostat_gen_3", + "content": "nest_thermostat_gen_3" + }, + { + "label": "nest_thermostat_sensor", + "content": "nest_thermostat_sensor" + }, + { + "label": "nest_thermostat_sensor_eu", + "content": "nest_thermostat_sensor_eu" + }, + { + "label": "nest_thermostat_zirconium_eu", + "content": "nest_thermostat_zirconium_eu" + }, + { + "label": "nest_true_radiant", + "content": "nest_true_radiant" + }, + { + "label": "nest_wake_on_approach", + "content": "nest_wake_on_approach" + }, + { + "label": "nest_wake_on_press", + "content": "nest_wake_on_press" + }, + { + "label": "nest_wifi_point", + "content": "nest_wifi_point" + }, + { + "label": "nest_wifi_pro", + "content": "nest_wifi_pro" + }, + { + "label": "nest_wifi_pro_2", + "content": "nest_wifi_pro_2" + }, + { + "label": "nest_wifi_router", + "content": "nest_wifi_router" + }, + { + "label": "network_cell", + "content": "network_cell" + }, + { + "label": "network_check", + "content": "network_check" + }, + { + "label": "network_intelligence_history", + "content": "network_intelligence_history" + }, + { + "label": "network_intelligence_update", + "content": "network_intelligence_update" + }, + { + "label": "network_locked", + "content": "network_locked" + }, + { + "label": "network_manage", + "content": "network_manage" + }, + { + "label": "network_node", + "content": "network_node" + }, + { + "label": "network_ping", + "content": "network_ping" + }, + { + "label": "network_wifi", + "content": "network_wifi" + }, + { + "label": "network_wifi_1_bar", + "content": "network_wifi_1_bar" + }, + { + "label": "network_wifi_1_bar_locked", + "content": "network_wifi_1_bar_locked" + }, + { + "label": "network_wifi_2_bar", + "content": "network_wifi_2_bar" + }, + { + "label": "network_wifi_2_bar_locked", + "content": "network_wifi_2_bar_locked" + }, + { + "label": "network_wifi_3_bar", + "content": "network_wifi_3_bar" + }, + { + "label": "network_wifi_3_bar_locked", + "content": "network_wifi_3_bar_locked" + }, + { + "label": "network_wifi_locked", + "content": "network_wifi_locked" + }, + { + "label": "neurology", + "content": "neurology" + }, + { + "label": "new_label", + "content": "new_label" + }, + { + "label": "new_releases", + "content": "new_releases" + }, + { + "label": "new_window", + "content": "new_window" + }, + { + "label": "news", + "content": "news" + }, + { + "label": "newsmode", + "content": "newsmode" + }, + { + "label": "newspaper", + "content": "newspaper" + }, + { + "label": "newsstand", + "content": "newsstand" + }, + { + "label": "next_plan", + "content": "next_plan" + }, + { + "label": "next_week", + "content": "next_week" + }, + { + "label": "nfc", + "content": "nfc" + }, + { + "label": "night_shelter", + "content": "night_shelter" + }, + { + "label": "night_sight_auto", + "content": "night_sight_auto" + }, + { + "label": "night_sight_auto_off", + "content": "night_sight_auto_off" + }, + { + "label": "night_sight_max", + "content": "night_sight_max" + }, + { + "label": "nightlife", + "content": "nightlife" + }, + { + "label": "nightlight", + "content": "nightlight" + }, + { + "label": "nights_stay", + "content": "nights_stay" + }, + { + "label": "no_accounts", + "content": "no_accounts" + }, + { + "label": "no_adult_content", + "content": "no_adult_content" + }, + { + "label": "no_backpack", + "content": "no_backpack" + }, + { + "label": "no_crash", + "content": "no_crash" + }, + { + "label": "no_drinks", + "content": "no_drinks" + }, + { + "label": "no_encryption", + "content": "no_encryption" + }, + { + "label": "no_flash", + "content": "no_flash" + }, + { + "label": "no_food", + "content": "no_food" + }, + { + "label": "no_luggage", + "content": "no_luggage" + }, + { + "label": "no_meals", + "content": "no_meals" + }, + { + "label": "no_meeting_room", + "content": "no_meeting_room" + }, + { + "label": "no_photography", + "content": "no_photography" + }, + { + "label": "no_sim", + "content": "no_sim" + }, + { + "label": "no_sound", + "content": "no_sound" + }, + { + "label": "no_stroller", + "content": "no_stroller" + }, + { + "label": "no_transfer", + "content": "no_transfer" + }, + { + "label": "noise_aware", + "content": "noise_aware" + }, + { + "label": "noise_control_off", + "content": "noise_control_off" + }, + { + "label": "noise_control_on", + "content": "noise_control_on" + }, + { + "label": "nordic_walking", + "content": "nordic_walking" + }, + { + "label": "north", + "content": "north" + }, + { + "label": "north_east", + "content": "north_east" + }, + { + "label": "north_west", + "content": "north_west" + }, + { + "label": "not_accessible", + "content": "not_accessible" + }, + { + "label": "not_accessible_forward", + "content": "not_accessible_forward" + }, + { + "label": "not_listed_location", + "content": "not_listed_location" + }, + { + "label": "not_started", + "content": "not_started" + }, + { + "label": "note_add", + "content": "note_add" + }, + { + "label": "note_alt", + "content": "note_alt" + }, + { + "label": "note_stack", + "content": "note_stack" + }, + { + "label": "note_stack_add", + "content": "note_stack_add" + }, + { + "label": "notes", + "content": "notes" + }, + { + "label": "notification_add", + "content": "notification_add" + }, + { + "label": "notification_important", + "content": "notification_important" + }, + { + "label": "notification_multiple", + "content": "notification_multiple" + }, + { + "label": "notifications", + "content": "notifications" + }, + { + "label": "notifications_active", + "content": "notifications_active" + }, + { + "label": "notifications_off", + "content": "notifications_off" + }, + { + "label": "notifications_paused", + "content": "notifications_paused" + }, + { + "label": "notifications_unread", + "content": "notifications_unread" + }, + { + "label": "numbers", + "content": "numbers" + }, + { + "label": "nutrition", + "content": "nutrition" + }, + { + "label": "ods", + "content": "ods" + }, + { + "label": "odt", + "content": "odt" + }, + { + "label": "offline_bolt", + "content": "offline_bolt" + }, + { + "label": "offline_pin", + "content": "offline_pin" + }, + { + "label": "offline_pin_off", + "content": "offline_pin_off" + }, + { + "label": "offline_share", + "content": "offline_share" + }, + { + "label": "oil_barrel", + "content": "oil_barrel" + }, + { + "label": "on_device_training", + "content": "on_device_training" + }, + { + "label": "on_hub_device", + "content": "on_hub_device" + }, + { + "label": "oncology", + "content": "oncology" + }, + { + "label": "online_prediction", + "content": "online_prediction" + }, + { + "label": "onsen", + "content": "onsen" + }, + { + "label": "opacity", + "content": "opacity" + }, + { + "label": "open_in_browser", + "content": "open_in_browser" + }, + { + "label": "open_in_full", + "content": "open_in_full" + }, + { + "label": "open_in_new", + "content": "open_in_new" + }, + { + "label": "open_in_new_down", + "content": "open_in_new_down" + }, + { + "label": "open_in_new_off", + "content": "open_in_new_off" + }, + { + "label": "open_in_phone", + "content": "open_in_phone" + }, + { + "label": "open_jam", + "content": "open_jam" + }, + { + "label": "open_run", + "content": "open_run" + }, + { + "label": "open_with", + "content": "open_with" + }, + { + "label": "ophthalmology", + "content": "ophthalmology" + }, + { + "label": "oral_disease", + "content": "oral_disease" + }, + { + "label": "order_approve", + "content": "order_approve" + }, + { + "label": "order_play", + "content": "order_play" + }, + { + "label": "orders", + "content": "orders" + }, + { + "label": "orthopedics", + "content": "orthopedics" + }, + { + "label": "other_admission", + "content": "other_admission" + }, + { + "label": "other_houses", + "content": "other_houses" + }, + { + "label": "outbound", + "content": "outbound" + }, + { + "label": "outbox", + "content": "outbox" + }, + { + "label": "outbox_alt", + "content": "outbox_alt" + }, + { + "label": "outdoor_garden", + "content": "outdoor_garden" + }, + { + "label": "outdoor_grill", + "content": "outdoor_grill" + }, + { + "label": "outgoing_mail", + "content": "outgoing_mail" + }, + { + "label": "outlet", + "content": "outlet" + }, + { + "label": "outpatient", + "content": "outpatient" + }, + { + "label": "outpatient_med", + "content": "outpatient_med" + }, + { + "label": "output", + "content": "output" + }, + { + "label": "output_circle", + "content": "output_circle" + }, + { + "label": "oven", + "content": "oven" + }, + { + "label": "oven_gen", + "content": "oven_gen" + }, + { + "label": "overview", + "content": "overview" + }, + { + "label": "overview_key", + "content": "overview_key" + }, + { + "label": "oxygen_saturation", + "content": "oxygen_saturation" + }, + { + "label": "p2p", + "content": "p2p" + }, + { + "label": "pace", + "content": "pace" + }, + { + "label": "pacemaker", + "content": "pacemaker" + }, + { + "label": "package", + "content": "package" + }, + { + "label": "package_2", + "content": "package_2" + }, + { + "label": "padding", + "content": "padding" + }, + { + "label": "page_control", + "content": "page_control" + }, + { + "label": "page_info", + "content": "page_info" + }, + { + "label": "pageless", + "content": "pageless" + }, + { + "label": "pages", + "content": "pages" + }, + { + "label": "pageview", + "content": "pageview" + }, + { + "label": "paid", + "content": "paid" + }, + { + "label": "palette", + "content": "palette" + }, + { + "label": "pallet", + "content": "pallet" + }, + { + "label": "pan_tool", + "content": "pan_tool" + }, + { + "label": "pan_tool_alt", + "content": "pan_tool_alt" + }, + { + "label": "pan_zoom", + "content": "pan_zoom" + }, + { + "label": "panorama", + "content": "panorama" + }, + { + "label": "panorama_fish_eye", + "content": "panorama_fish_eye" + }, + { + "label": "panorama_horizontal", + "content": "panorama_horizontal" + }, + { + "label": "panorama_photosphere", + "content": "panorama_photosphere" + }, + { + "label": "panorama_vertical", + "content": "panorama_vertical" + }, + { + "label": "panorama_wide_angle", + "content": "panorama_wide_angle" + }, + { + "label": "paragliding", + "content": "paragliding" + }, + { + "label": "park", + "content": "park" + }, + { + "label": "partly_cloudy_day", + "content": "partly_cloudy_day" + }, + { + "label": "partly_cloudy_night", + "content": "partly_cloudy_night" + }, + { + "label": "partner_exchange", + "content": "partner_exchange" + }, + { + "label": "partner_reports", + "content": "partner_reports" + }, + { + "label": "party_mode", + "content": "party_mode" + }, + { + "label": "passkey", + "content": "passkey" + }, + { + "label": "password", + "content": "password" + }, + { + "label": "password_2", + "content": "password_2" + }, + { + "label": "password_2_off", + "content": "password_2_off" + }, + { + "label": "patient_list", + "content": "patient_list" + }, + { + "label": "pattern", + "content": "pattern" + }, + { + "label": "pause", + "content": "pause" + }, + { + "label": "pause_circle", + "content": "pause_circle" + }, + { + "label": "pause_presentation", + "content": "pause_presentation" + }, + { + "label": "payments", + "content": "payments" + }, + { + "label": "pedal_bike", + "content": "pedal_bike" + }, + { + "label": "pediatrics", + "content": "pediatrics" + }, + { + "label": "pen_size_1", + "content": "pen_size_1" + }, + { + "label": "pen_size_2", + "content": "pen_size_2" + }, + { + "label": "pen_size_3", + "content": "pen_size_3" + }, + { + "label": "pen_size_4", + "content": "pen_size_4" + }, + { + "label": "pen_size_5", + "content": "pen_size_5" + }, + { + "label": "pending", + "content": "pending" + }, + { + "label": "pending_actions", + "content": "pending_actions" + }, + { + "label": "pentagon", + "content": "pentagon" + }, + { + "label": "percent", + "content": "percent" + }, + { + "label": "pergola", + "content": "pergola" + }, + { + "label": "perm_camera_mic", + "content": "perm_camera_mic" + }, + { + "label": "perm_contact_calendar", + "content": "perm_contact_calendar" + }, + { + "label": "perm_data_setting", + "content": "perm_data_setting" + }, + { + "label": "perm_device_information", + "content": "perm_device_information" + }, + { + "label": "perm_media", + "content": "perm_media" + }, + { + "label": "perm_phone_msg", + "content": "perm_phone_msg" + }, + { + "label": "perm_scan_wifi", + "content": "perm_scan_wifi" + }, + { + "label": "person", + "content": "person" + }, + { + "label": "person_2", + "content": "person_2" + }, + { + "label": "person_3", + "content": "person_3" + }, + { + "label": "person_4", + "content": "person_4" + }, + { + "label": "person_add", + "content": "person_add" + }, + { + "label": "person_add_disabled", + "content": "person_add_disabled" + }, + { + "label": "person_alert", + "content": "person_alert" + }, + { + "label": "person_apron", + "content": "person_apron" + }, + { + "label": "person_book", + "content": "person_book" + }, + { + "label": "person_cancel", + "content": "person_cancel" + }, + { + "label": "person_celebrate", + "content": "person_celebrate" + }, + { + "label": "person_check", + "content": "person_check" + }, + { + "label": "person_edit", + "content": "person_edit" + }, + { + "label": "person_off", + "content": "person_off" + }, + { + "label": "person_pin", + "content": "person_pin" + }, + { + "label": "person_pin_circle", + "content": "person_pin_circle" + }, + { + "label": "person_play", + "content": "person_play" + }, + { + "label": "person_raised_hand", + "content": "person_raised_hand" + }, + { + "label": "person_remove", + "content": "person_remove" + }, + { + "label": "person_search", + "content": "person_search" + }, + { + "label": "personal_bag", + "content": "personal_bag" + }, + { + "label": "personal_bag_off", + "content": "personal_bag_off" + }, + { + "label": "personal_bag_question", + "content": "personal_bag_question" + }, + { + "label": "personal_injury", + "content": "personal_injury" + }, + { + "label": "personal_places", + "content": "personal_places" + }, + { + "label": "pest_control", + "content": "pest_control" + }, + { + "label": "pest_control_rodent", + "content": "pest_control_rodent" + }, + { + "label": "pet_supplies", + "content": "pet_supplies" + }, + { + "label": "pets", + "content": "pets" + }, + { + "label": "phishing", + "content": "phishing" + }, + { + "label": "phone_android", + "content": "phone_android" + }, + { + "label": "phone_bluetooth_speaker", + "content": "phone_bluetooth_speaker" + }, + { + "label": "phone_callback", + "content": "phone_callback" + }, + { + "label": "phone_disabled", + "content": "phone_disabled" + }, + { + "label": "phone_enabled", + "content": "phone_enabled" + }, + { + "label": "phone_forwarded", + "content": "phone_forwarded" + }, + { + "label": "phone_in_talk", + "content": "phone_in_talk" + }, + { + "label": "phone_iphone", + "content": "phone_iphone" + }, + { + "label": "phone_locked", + "content": "phone_locked" + }, + { + "label": "phone_missed", + "content": "phone_missed" + }, + { + "label": "phone_paused", + "content": "phone_paused" + }, + { + "label": "phonelink_erase", + "content": "phonelink_erase" + }, + { + "label": "phonelink_lock", + "content": "phonelink_lock" + }, + { + "label": "phonelink_off", + "content": "phonelink_off" + }, + { + "label": "phonelink_ring", + "content": "phonelink_ring" + }, + { + "label": "phonelink_ring_off", + "content": "phonelink_ring_off" + }, + { + "label": "phonelink_setup", + "content": "phonelink_setup" + }, + { + "label": "photo", + "content": "photo" + }, + { + "label": "photo_album", + "content": "photo_album" + }, + { + "label": "photo_auto_merge", + "content": "photo_auto_merge" + }, + { + "label": "photo_camera", + "content": "photo_camera" + }, + { + "label": "photo_camera_back", + "content": "photo_camera_back" + }, + { + "label": "photo_camera_front", + "content": "photo_camera_front" + }, + { + "label": "photo_frame", + "content": "photo_frame" + }, + { + "label": "photo_library", + "content": "photo_library" + }, + { + "label": "photo_prints", + "content": "photo_prints" + }, + { + "label": "photo_size_select_large", + "content": "photo_size_select_large" + }, + { + "label": "photo_size_select_small", + "content": "photo_size_select_small" + }, + { + "label": "php", + "content": "php" + }, + { + "label": "physical_therapy", + "content": "physical_therapy" + }, + { + "label": "piano", + "content": "piano" + }, + { + "label": "piano_off", + "content": "piano_off" + }, + { + "label": "picture_as_pdf", + "content": "picture_as_pdf" + }, + { + "label": "picture_in_picture", + "content": "picture_in_picture" + }, + { + "label": "picture_in_picture_alt", + "content": "picture_in_picture_alt" + }, + { + "label": "picture_in_picture_center", + "content": "picture_in_picture_center" + }, + { + "label": "picture_in_picture_large", + "content": "picture_in_picture_large" + }, + { + "label": "picture_in_picture_medium", + "content": "picture_in_picture_medium" + }, + { + "label": "picture_in_picture_mobile", + "content": "picture_in_picture_mobile" + }, + { + "label": "picture_in_picture_off", + "content": "picture_in_picture_off" + }, + { + "label": "picture_in_picture_small", + "content": "picture_in_picture_small" + }, + { + "label": "pie_chart", + "content": "pie_chart" + }, + { + "label": "pill", + "content": "pill" + }, + { + "label": "pill_off", + "content": "pill_off" + }, + { + "label": "pin", + "content": "pin" + }, + { + "label": "pin_drop", + "content": "pin_drop" + }, + { + "label": "pin_end", + "content": "pin_end" + }, + { + "label": "pin_invoke", + "content": "pin_invoke" + }, + { + "label": "pinch", + "content": "pinch" + }, + { + "label": "pinch_zoom_in", + "content": "pinch_zoom_in" + }, + { + "label": "pinch_zoom_out", + "content": "pinch_zoom_out" + }, + { + "label": "pip", + "content": "pip" + }, + { + "label": "pip_exit", + "content": "pip_exit" + }, + { + "label": "pivot_table_chart", + "content": "pivot_table_chart" + }, + { + "label": "place_item", + "content": "place_item" + }, + { + "label": "plagiarism", + "content": "plagiarism" + }, + { + "label": "planner_banner_ad_pt", + "content": "planner_banner_ad_pt" + }, + { + "label": "planner_review", + "content": "planner_review" + }, + { + "label": "play_arrow", + "content": "play_arrow" + }, + { + "label": "play_circle", + "content": "play_circle" + }, + { + "label": "play_disabled", + "content": "play_disabled" + }, + { + "label": "play_for_work", + "content": "play_for_work" + }, + { + "label": "play_lesson", + "content": "play_lesson" + }, + { + "label": "play_pause", + "content": "play_pause" + }, + { + "label": "playing_cards", + "content": "playing_cards" + }, + { + "label": "playlist_add", + "content": "playlist_add" + }, + { + "label": "playlist_add_check", + "content": "playlist_add_check" + }, + { + "label": "playlist_add_check_circle", + "content": "playlist_add_check_circle" + }, + { + "label": "playlist_add_circle", + "content": "playlist_add_circle" + }, + { + "label": "playlist_play", + "content": "playlist_play" + }, + { + "label": "playlist_remove", + "content": "playlist_remove" + }, + { + "label": "plumbing", + "content": "plumbing" + }, + { + "label": "podcasts", + "content": "podcasts" + }, + { + "label": "podiatry", + "content": "podiatry" + }, + { + "label": "podium", + "content": "podium" + }, + { + "label": "point_of_sale", + "content": "point_of_sale" + }, + { + "label": "point_scan", + "content": "point_scan" + }, + { + "label": "poker_chip", + "content": "poker_chip" + }, + { + "label": "policy", + "content": "policy" + }, + { + "label": "polyline", + "content": "polyline" + }, + { + "label": "polymer", + "content": "polymer" + }, + { + "label": "pool", + "content": "pool" + }, + { + "label": "portable_wifi_off", + "content": "portable_wifi_off" + }, + { + "label": "position_bottom_left", + "content": "position_bottom_left" + }, + { + "label": "position_bottom_right", + "content": "position_bottom_right" + }, + { + "label": "position_top_right", + "content": "position_top_right" + }, + { + "label": "post", + "content": "post" + }, + { + "label": "post_add", + "content": "post_add" + }, + { + "label": "potted_plant", + "content": "potted_plant" + }, + { + "label": "power", + "content": "power" + }, + { + "label": "power_input", + "content": "power_input" + }, + { + "label": "power_off", + "content": "power_off" + }, + { + "label": "power_settings_new", + "content": "power_settings_new" + }, + { + "label": "prayer_times", + "content": "prayer_times" + }, + { + "label": "precision_manufacturing", + "content": "precision_manufacturing" + }, + { + "label": "pregnancy", + "content": "pregnancy" + }, + { + "label": "pregnant_woman", + "content": "pregnant_woman" + }, + { + "label": "preliminary", + "content": "preliminary" + }, + { + "label": "prescriptions", + "content": "prescriptions" + }, + { + "label": "present_to_all", + "content": "present_to_all" + }, + { + "label": "preview", + "content": "preview" + }, + { + "label": "preview_off", + "content": "preview_off" + }, + { + "label": "price_change", + "content": "price_change" + }, + { + "label": "price_check", + "content": "price_check" + }, + { + "label": "print", + "content": "print" + }, + { + "label": "print_add", + "content": "print_add" + }, + { + "label": "print_connect", + "content": "print_connect" + }, + { + "label": "print_disabled", + "content": "print_disabled" + }, + { + "label": "print_error", + "content": "print_error" + }, + { + "label": "print_lock", + "content": "print_lock" + }, + { + "label": "priority", + "content": "priority" + }, + { + "label": "priority_high", + "content": "priority_high" + }, + { + "label": "privacy", + "content": "privacy" + }, + { + "label": "privacy_tip", + "content": "privacy_tip" + }, + { + "label": "private_connectivity", + "content": "private_connectivity" + }, + { + "label": "problem", + "content": "problem" + }, + { + "label": "procedure", + "content": "procedure" + }, + { + "label": "process_chart", + "content": "process_chart" + }, + { + "label": "production_quantity_limits", + "content": "production_quantity_limits" + }, + { + "label": "productivity", + "content": "productivity" + }, + { + "label": "progress_activity", + "content": "progress_activity" + }, + { + "label": "prompt_suggestion", + "content": "prompt_suggestion" + }, + { + "label": "propane", + "content": "propane" + }, + { + "label": "propane_tank", + "content": "propane_tank" + }, + { + "label": "psychiatry", + "content": "psychiatry" + }, + { + "label": "psychology", + "content": "psychology" + }, + { + "label": "psychology_alt", + "content": "psychology_alt" + }, + { + "label": "public", + "content": "public" + }, + { + "label": "public_off", + "content": "public_off" + }, + { + "label": "publish", + "content": "publish" + }, + { + "label": "published_with_changes", + "content": "published_with_changes" + }, + { + "label": "pulmonology", + "content": "pulmonology" + }, + { + "label": "pulse_alert", + "content": "pulse_alert" + }, + { + "label": "punch_clock", + "content": "punch_clock" + }, + { + "label": "qr_code", + "content": "qr_code" + }, + { + "label": "qr_code_2", + "content": "qr_code_2" + }, + { + "label": "qr_code_2_add", + "content": "qr_code_2_add" + }, + { + "label": "qr_code_scanner", + "content": "qr_code_scanner" + }, + { + "label": "query_stats", + "content": "query_stats" + }, + { + "label": "question_exchange", + "content": "question_exchange" + }, + { + "label": "question_mark", + "content": "question_mark" + }, + { + "label": "queue_music", + "content": "queue_music" + }, + { + "label": "queue_play_next", + "content": "queue_play_next" + }, + { + "label": "quick_phrases", + "content": "quick_phrases" + }, + { + "label": "quick_reference", + "content": "quick_reference" + }, + { + "label": "quick_reference_all", + "content": "quick_reference_all" + }, + { + "label": "quick_reorder", + "content": "quick_reorder" + }, + { + "label": "quickreply", + "content": "quickreply" + }, + { + "label": "quiet_time", + "content": "quiet_time" + }, + { + "label": "quiet_time_active", + "content": "quiet_time_active" + }, + { + "label": "quiz", + "content": "quiz" + }, + { + "label": "r_mobiledata", + "content": "r_mobiledata" + }, + { + "label": "radar", + "content": "radar" + }, + { + "label": "radio", + "content": "radio" + }, + { + "label": "radio_button_checked", + "content": "radio_button_checked" + }, + { + "label": "radio_button_partial", + "content": "radio_button_partial" + }, + { + "label": "radio_button_unchecked", + "content": "radio_button_unchecked" + }, + { + "label": "radiology", + "content": "radiology" + }, + { + "label": "railway_alert", + "content": "railway_alert" + }, + { + "label": "railway_alert_2", + "content": "railway_alert_2" + }, + { + "label": "rainy", + "content": "rainy" + }, + { + "label": "rainy_heavy", + "content": "rainy_heavy" + }, + { + "label": "rainy_light", + "content": "rainy_light" + }, + { + "label": "rainy_snow", + "content": "rainy_snow" + }, + { + "label": "ramen_dining", + "content": "ramen_dining" + }, + { + "label": "ramp_left", + "content": "ramp_left" + }, + { + "label": "ramp_right", + "content": "ramp_right" + }, + { + "label": "range_hood", + "content": "range_hood" + }, + { + "label": "rate_review", + "content": "rate_review" + }, + { + "label": "raven", + "content": "raven" + }, + { + "label": "raw_off", + "content": "raw_off" + }, + { + "label": "raw_on", + "content": "raw_on" + }, + { + "label": "read_more", + "content": "read_more" + }, + { + "label": "readiness_score", + "content": "readiness_score" + }, + { + "label": "real_estate_agent", + "content": "real_estate_agent" + }, + { + "label": "rear_camera", + "content": "rear_camera" + }, + { + "label": "rebase", + "content": "rebase" + }, + { + "label": "rebase_edit", + "content": "rebase_edit" + }, + { + "label": "receipt", + "content": "receipt" + }, + { + "label": "receipt_long", + "content": "receipt_long" + }, + { + "label": "recent_actors", + "content": "recent_actors" + }, + { + "label": "recent_patient", + "content": "recent_patient" + }, + { + "label": "recenter", + "content": "recenter" + }, + { + "label": "recommend", + "content": "recommend" + }, + { + "label": "record_voice_over", + "content": "record_voice_over" + }, + { + "label": "rectangle", + "content": "rectangle" + }, + { + "label": "recycling", + "content": "recycling" + }, + { + "label": "redeem", + "content": "redeem" + }, + { + "label": "redo", + "content": "redo" + }, + { + "label": "reduce_capacity", + "content": "reduce_capacity" + }, + { + "label": "refresh", + "content": "refresh" + }, + { + "label": "regular_expression", + "content": "regular_expression" + }, + { + "label": "relax", + "content": "relax" + }, + { + "label": "release_alert", + "content": "release_alert" + }, + { + "label": "remember_me", + "content": "remember_me" + }, + { + "label": "reminder", + "content": "reminder" + }, + { + "label": "remote_gen", + "content": "remote_gen" + }, + { + "label": "remove", + "content": "remove" + }, + { + "label": "remove_done", + "content": "remove_done" + }, + { + "label": "remove_from_queue", + "content": "remove_from_queue" + }, + { + "label": "remove_moderator", + "content": "remove_moderator" + }, + { + "label": "remove_road", + "content": "remove_road" + }, + { + "label": "remove_selection", + "content": "remove_selection" + }, + { + "label": "remove_shopping_cart", + "content": "remove_shopping_cart" + }, + { + "label": "reopen_window", + "content": "reopen_window" + }, + { + "label": "reorder", + "content": "reorder" + }, + { + "label": "repartition", + "content": "repartition" + }, + { + "label": "repeat", + "content": "repeat" + }, + { + "label": "repeat_on", + "content": "repeat_on" + }, + { + "label": "repeat_one", + "content": "repeat_one" + }, + { + "label": "repeat_one_on", + "content": "repeat_one_on" + }, + { + "label": "replay", + "content": "replay" + }, + { + "label": "replay_10", + "content": "replay_10" + }, + { + "label": "replay_30", + "content": "replay_30" + }, + { + "label": "replay_5", + "content": "replay_5" + }, + { + "label": "reply", + "content": "reply" + }, + { + "label": "reply_all", + "content": "reply_all" + }, + { + "label": "report", + "content": "report" + }, + { + "label": "report_off", + "content": "report_off" + }, + { + "label": "request_page", + "content": "request_page" + }, + { + "label": "request_quote", + "content": "request_quote" + }, + { + "label": "reset_brightness", + "content": "reset_brightness" + }, + { + "label": "reset_focus", + "content": "reset_focus" + }, + { + "label": "reset_image", + "content": "reset_image" + }, + { + "label": "reset_iso", + "content": "reset_iso" + }, + { + "label": "reset_settings", + "content": "reset_settings" + }, + { + "label": "reset_shadow", + "content": "reset_shadow" + }, + { + "label": "reset_shutter_speed", + "content": "reset_shutter_speed" + }, + { + "label": "reset_tv", + "content": "reset_tv" + }, + { + "label": "reset_white_balance", + "content": "reset_white_balance" + }, + { + "label": "reset_wrench", + "content": "reset_wrench" + }, + { + "label": "resize", + "content": "resize" + }, + { + "label": "respiratory_rate", + "content": "respiratory_rate" + }, + { + "label": "responsive_layout", + "content": "responsive_layout" + }, + { + "label": "restart_alt", + "content": "restart_alt" + }, + { + "label": "restaurant", + "content": "restaurant" + }, + { + "label": "restaurant_menu", + "content": "restaurant_menu" + }, + { + "label": "restore_from_trash", + "content": "restore_from_trash" + }, + { + "label": "restore_page", + "content": "restore_page" + }, + { + "label": "resume", + "content": "resume" + }, + { + "label": "reviews", + "content": "reviews" + }, + { + "label": "rewarded_ads", + "content": "rewarded_ads" + }, + { + "label": "rheumatology", + "content": "rheumatology" + }, + { + "label": "rib_cage", + "content": "rib_cage" + }, + { + "label": "rice_bowl", + "content": "rice_bowl" + }, + { + "label": "right_click", + "content": "right_click" + }, + { + "label": "right_panel_close", + "content": "right_panel_close" + }, + { + "label": "right_panel_open", + "content": "right_panel_open" + }, + { + "label": "ring_volume", + "content": "ring_volume" + }, + { + "label": "ripples", + "content": "ripples" + }, + { + "label": "road", + "content": "road" + }, + { + "label": "robot", + "content": "robot" + }, + { + "label": "robot_2", + "content": "robot_2" + }, + { + "label": "rocket", + "content": "rocket" + }, + { + "label": "rocket_launch", + "content": "rocket_launch" + }, + { + "label": "roller_shades", + "content": "roller_shades" + }, + { + "label": "roller_shades_closed", + "content": "roller_shades_closed" + }, + { + "label": "roller_skating", + "content": "roller_skating" + }, + { + "label": "roofing", + "content": "roofing" + }, + { + "label": "room_preferences", + "content": "room_preferences" + }, + { + "label": "room_service", + "content": "room_service" + }, + { + "label": "rotate_90_degrees_ccw", + "content": "rotate_90_degrees_ccw" + }, + { + "label": "rotate_90_degrees_cw", + "content": "rotate_90_degrees_cw" + }, + { + "label": "rotate_left", + "content": "rotate_left" + }, + { + "label": "rotate_right", + "content": "rotate_right" + }, + { + "label": "roundabout_left", + "content": "roundabout_left" + }, + { + "label": "roundabout_right", + "content": "roundabout_right" + }, + { + "label": "rounded_corner", + "content": "rounded_corner" + }, + { + "label": "route", + "content": "route" + }, + { + "label": "router", + "content": "router" + }, + { + "label": "routine", + "content": "routine" + }, + { + "label": "rowing", + "content": "rowing" + }, + { + "label": "rss_feed", + "content": "rss_feed" + }, + { + "label": "rsvp", + "content": "rsvp" + }, + { + "label": "rtt", + "content": "rtt" + }, + { + "label": "rubric", + "content": "rubric" + }, + { + "label": "rule", + "content": "rule" + }, + { + "label": "rule_folder", + "content": "rule_folder" + }, + { + "label": "rule_settings", + "content": "rule_settings" + }, + { + "label": "run_circle", + "content": "run_circle" + }, + { + "label": "running_with_errors", + "content": "running_with_errors" + }, + { + "label": "rv_hookup", + "content": "rv_hookup" + }, + { + "label": "safety_check", + "content": "safety_check" + }, + { + "label": "safety_check_off", + "content": "safety_check_off" + }, + { + "label": "safety_divider", + "content": "safety_divider" + }, + { + "label": "sailing", + "content": "sailing" + }, + { + "label": "salinity", + "content": "salinity" + }, + { + "label": "sanitizer", + "content": "sanitizer" + }, + { + "label": "satellite", + "content": "satellite" + }, + { + "label": "satellite_alt", + "content": "satellite_alt" + }, + { + "label": "sauna", + "content": "sauna" + }, + { + "label": "save", + "content": "save" + }, + { + "label": "save_as", + "content": "save_as" + }, + { + "label": "saved_search", + "content": "saved_search" + }, + { + "label": "savings", + "content": "savings" + }, + { + "label": "scale", + "content": "scale" + }, + { + "label": "scan", + "content": "scan" + }, + { + "label": "scan_delete", + "content": "scan_delete" + }, + { + "label": "scanner", + "content": "scanner" + }, + { + "label": "scatter_plot", + "content": "scatter_plot" + }, + { + "label": "scene", + "content": "scene" + }, + { + "label": "schedule", + "content": "schedule" + }, + { + "label": "schedule_send", + "content": "schedule_send" + }, + { + "label": "schema", + "content": "schema" + }, + { + "label": "school", + "content": "school" + }, + { + "label": "science", + "content": "science" + }, + { + "label": "science_off", + "content": "science_off" + }, + { + "label": "scooter", + "content": "scooter" + }, + { + "label": "score", + "content": "score" + }, + { + "label": "scoreboard", + "content": "scoreboard" + }, + { + "label": "screen_lock_landscape", + "content": "screen_lock_landscape" + }, + { + "label": "screen_lock_portrait", + "content": "screen_lock_portrait" + }, + { + "label": "screen_lock_rotation", + "content": "screen_lock_rotation" + }, + { + "label": "screen_record", + "content": "screen_record" + }, + { + "label": "screen_rotation", + "content": "screen_rotation" + }, + { + "label": "screen_rotation_alt", + "content": "screen_rotation_alt" + }, + { + "label": "screen_rotation_up", + "content": "screen_rotation_up" + }, + { + "label": "screen_search_desktop", + "content": "screen_search_desktop" + }, + { + "label": "screen_share", + "content": "screen_share" + }, + { + "label": "screenshot", + "content": "screenshot" + }, + { + "label": "screenshot_frame", + "content": "screenshot_frame" + }, + { + "label": "screenshot_keyboard", + "content": "screenshot_keyboard" + }, + { + "label": "screenshot_monitor", + "content": "screenshot_monitor" + }, + { + "label": "screenshot_region", + "content": "screenshot_region" + }, + { + "label": "screenshot_tablet", + "content": "screenshot_tablet" + }, + { + "label": "script", + "content": "script" + }, + { + "label": "scrollable_header", + "content": "scrollable_header" + }, + { + "label": "scuba_diving", + "content": "scuba_diving" + }, + { + "label": "sd", + "content": "sd" + }, + { + "label": "sd_card", + "content": "sd_card" + }, + { + "label": "sd_card_alert", + "content": "sd_card_alert" + }, + { + "label": "sdk", + "content": "sdk" + }, + { + "label": "search", + "content": "search" + }, + { + "label": "search_check", + "content": "search_check" + }, + { + "label": "search_check_2", + "content": "search_check_2" + }, + { + "label": "search_hands_free", + "content": "search_hands_free" + }, + { + "label": "search_insights", + "content": "search_insights" + }, + { + "label": "search_off", + "content": "search_off" + }, + { + "label": "security", + "content": "security" + }, + { + "label": "security_key", + "content": "security_key" + }, + { + "label": "security_update_good", + "content": "security_update_good" + }, + { + "label": "security_update_warning", + "content": "security_update_warning" + }, + { + "label": "segment", + "content": "segment" + }, + { + "label": "select", + "content": "select" + }, + { + "label": "select_all", + "content": "select_all" + }, + { + "label": "select_check_box", + "content": "select_check_box" + }, + { + "label": "select_to_speak", + "content": "select_to_speak" + }, + { + "label": "select_window", + "content": "select_window" + }, + { + "label": "select_window_2", + "content": "select_window_2" + }, + { + "label": "select_window_off", + "content": "select_window_off" + }, + { + "label": "self_care", + "content": "self_care" + }, + { + "label": "self_improvement", + "content": "self_improvement" + }, + { + "label": "sell", + "content": "sell" + }, + { + "label": "send", + "content": "send" + }, + { + "label": "send_and_archive", + "content": "send_and_archive" + }, + { + "label": "send_money", + "content": "send_money" + }, + { + "label": "send_time_extension", + "content": "send_time_extension" + }, + { + "label": "send_to_mobile", + "content": "send_to_mobile" + }, + { + "label": "sensor_door", + "content": "sensor_door" + }, + { + "label": "sensor_occupied", + "content": "sensor_occupied" + }, + { + "label": "sensor_window", + "content": "sensor_window" + }, + { + "label": "sensors", + "content": "sensors" + }, + { + "label": "sensors_krx", + "content": "sensors_krx" + }, + { + "label": "sensors_krx_off", + "content": "sensors_krx_off" + }, + { + "label": "sensors_off", + "content": "sensors_off" + }, + { + "label": "sentiment_calm", + "content": "sentiment_calm" + }, + { + "label": "sentiment_content", + "content": "sentiment_content" + }, + { + "label": "sentiment_dissatisfied", + "content": "sentiment_dissatisfied" + }, + { + "label": "sentiment_excited", + "content": "sentiment_excited" + }, + { + "label": "sentiment_extremely_dissatisfied", + "content": "sentiment_extremely_dissatisfied" + }, + { + "label": "sentiment_frustrated", + "content": "sentiment_frustrated" + }, + { + "label": "sentiment_neutral", + "content": "sentiment_neutral" + }, + { + "label": "sentiment_sad", + "content": "sentiment_sad" + }, + { + "label": "sentiment_satisfied", + "content": "sentiment_satisfied" + }, + { + "label": "sentiment_stressed", + "content": "sentiment_stressed" + }, + { + "label": "sentiment_very_dissatisfied", + "content": "sentiment_very_dissatisfied" + }, + { + "label": "sentiment_very_satisfied", + "content": "sentiment_very_satisfied" + }, + { + "label": "sentiment_worried", + "content": "sentiment_worried" + }, + { + "label": "serif", + "content": "serif" + }, + { + "label": "service_toolbox", + "content": "service_toolbox" + }, + { + "label": "set_meal", + "content": "set_meal" + }, + { + "label": "settings", + "content": "settings" + }, + { + "label": "settings_accessibility", + "content": "settings_accessibility" + }, + { + "label": "settings_account_box", + "content": "settings_account_box" + }, + { + "label": "settings_alert", + "content": "settings_alert" + }, + { + "label": "settings_applications", + "content": "settings_applications" + }, + { + "label": "settings_b_roll", + "content": "settings_b_roll" + }, + { + "label": "settings_backup_restore", + "content": "settings_backup_restore" + }, + { + "label": "settings_bluetooth", + "content": "settings_bluetooth" + }, + { + "label": "settings_brightness", + "content": "settings_brightness" + }, + { + "label": "settings_cell", + "content": "settings_cell" + }, + { + "label": "settings_cinematic_blur", + "content": "settings_cinematic_blur" + }, + { + "label": "settings_ethernet", + "content": "settings_ethernet" + }, + { + "label": "settings_heart", + "content": "settings_heart" + }, + { + "label": "settings_input_antenna", + "content": "settings_input_antenna" + }, + { + "label": "settings_input_component", + "content": "settings_input_component" + }, + { + "label": "settings_input_hdmi", + "content": "settings_input_hdmi" + }, + { + "label": "settings_input_svideo", + "content": "settings_input_svideo" + }, + { + "label": "settings_motion_mode", + "content": "settings_motion_mode" + }, + { + "label": "settings_night_sight", + "content": "settings_night_sight" + }, + { + "label": "settings_overscan", + "content": "settings_overscan" + }, + { + "label": "settings_panorama", + "content": "settings_panorama" + }, + { + "label": "settings_phone", + "content": "settings_phone" + }, + { + "label": "settings_photo_camera", + "content": "settings_photo_camera" + }, + { + "label": "settings_power", + "content": "settings_power" + }, + { + "label": "settings_remote", + "content": "settings_remote" + }, + { + "label": "settings_slow_motion", + "content": "settings_slow_motion" + }, + { + "label": "settings_system_daydream", + "content": "settings_system_daydream" + }, + { + "label": "settings_timelapse", + "content": "settings_timelapse" + }, + { + "label": "settings_video_camera", + "content": "settings_video_camera" + }, + { + "label": "settings_voice", + "content": "settings_voice" + }, + { + "label": "settop_component", + "content": "settop_component" + }, + { + "label": "severe_cold", + "content": "severe_cold" + }, + { + "label": "shadow", + "content": "shadow" + }, + { + "label": "shadow_add", + "content": "shadow_add" + }, + { + "label": "shadow_minus", + "content": "shadow_minus" + }, + { + "label": "shape_line", + "content": "shape_line" + }, + { + "label": "shapes", + "content": "shapes" + }, + { + "label": "share", + "content": "share" + }, + { + "label": "share_location", + "content": "share_location" + }, + { + "label": "share_off", + "content": "share_off" + }, + { + "label": "share_reviews", + "content": "share_reviews" + }, + { + "label": "share_windows", + "content": "share_windows" + }, + { + "label": "sheets_rtl", + "content": "sheets_rtl" + }, + { + "label": "shelf_auto_hide", + "content": "shelf_auto_hide" + }, + { + "label": "shelf_position", + "content": "shelf_position" + }, + { + "label": "shelves", + "content": "shelves" + }, + { + "label": "shield", + "content": "shield" + }, + { + "label": "shield_lock", + "content": "shield_lock" + }, + { + "label": "shield_locked", + "content": "shield_locked" + }, + { + "label": "shield_moon", + "content": "shield_moon" + }, + { + "label": "shield_person", + "content": "shield_person" + }, + { + "label": "shield_question", + "content": "shield_question" + }, + { + "label": "shield_with_heart", + "content": "shield_with_heart" + }, + { + "label": "shield_with_house", + "content": "shield_with_house" + }, + { + "label": "shift", + "content": "shift" + }, + { + "label": "shift_lock", + "content": "shift_lock" + }, + { + "label": "shift_lock_off", + "content": "shift_lock_off" + }, + { + "label": "shop", + "content": "shop" + }, + { + "label": "shop_two", + "content": "shop_two" + }, + { + "label": "shopping_bag", + "content": "shopping_bag" + }, + { + "label": "shopping_basket", + "content": "shopping_basket" + }, + { + "label": "shopping_cart", + "content": "shopping_cart" + }, + { + "label": "shopping_cart_checkout", + "content": "shopping_cart_checkout" + }, + { + "label": "shopping_cart_off", + "content": "shopping_cart_off" + }, + { + "label": "shoppingmode", + "content": "shoppingmode" + }, + { + "label": "short_stay", + "content": "short_stay" + }, + { + "label": "short_text", + "content": "short_text" + }, + { + "label": "show_chart", + "content": "show_chart" + }, + { + "label": "shower", + "content": "shower" + }, + { + "label": "shuffle", + "content": "shuffle" + }, + { + "label": "shuffle_on", + "content": "shuffle_on" + }, + { + "label": "shutter_speed", + "content": "shutter_speed" + }, + { + "label": "shutter_speed_add", + "content": "shutter_speed_add" + }, + { + "label": "shutter_speed_minus", + "content": "shutter_speed_minus" + }, + { + "label": "sick", + "content": "sick" + }, + { + "label": "side_navigation", + "content": "side_navigation" + }, + { + "label": "sign_language", + "content": "sign_language" + }, + { + "label": "signal_cellular_0_bar", + "content": "signal_cellular_0_bar" + }, + { + "label": "signal_cellular_1_bar", + "content": "signal_cellular_1_bar" + }, + { + "label": "signal_cellular_2_bar", + "content": "signal_cellular_2_bar" + }, + { + "label": "signal_cellular_3_bar", + "content": "signal_cellular_3_bar" + }, + { + "label": "signal_cellular_4_bar", + "content": "signal_cellular_4_bar" + }, + { + "label": "signal_cellular_add", + "content": "signal_cellular_add" + }, + { + "label": "signal_cellular_alt", + "content": "signal_cellular_alt" + }, + { + "label": "signal_cellular_alt_1_bar", + "content": "signal_cellular_alt_1_bar" + }, + { + "label": "signal_cellular_alt_2_bar", + "content": "signal_cellular_alt_2_bar" + }, + { + "label": "signal_cellular_connected_no_internet_0_bar", + "content": "signal_cellular_connected_no_internet_0_bar" + }, + { + "label": "signal_cellular_connected_no_internet_4_bar", + "content": "signal_cellular_connected_no_internet_4_bar" + }, + { + "label": "signal_cellular_nodata", + "content": "signal_cellular_nodata" + }, + { + "label": "signal_cellular_null", + "content": "signal_cellular_null" + }, + { + "label": "signal_cellular_off", + "content": "signal_cellular_off" + }, + { + "label": "signal_cellular_pause", + "content": "signal_cellular_pause" + }, + { + "label": "signal_disconnected", + "content": "signal_disconnected" + }, + { + "label": "signal_wifi_0_bar", + "content": "signal_wifi_0_bar" + }, + { + "label": "signal_wifi_4_bar", + "content": "signal_wifi_4_bar" + }, + { + "label": "signal_wifi_bad", + "content": "signal_wifi_bad" + }, + { + "label": "signal_wifi_off", + "content": "signal_wifi_off" + }, + { + "label": "signal_wifi_statusbar_not_connected", + "content": "signal_wifi_statusbar_not_connected" + }, + { + "label": "signal_wifi_statusbar_null", + "content": "signal_wifi_statusbar_null" + }, + { + "label": "signature", + "content": "signature" + }, + { + "label": "signpost", + "content": "signpost" + }, + { + "label": "sim_card", + "content": "sim_card" + }, + { + "label": "sim_card_download", + "content": "sim_card_download" + }, + { + "label": "single_bed", + "content": "single_bed" + }, + { + "label": "sip", + "content": "sip" + }, + { + "label": "skateboarding", + "content": "skateboarding" + }, + { + "label": "skeleton", + "content": "skeleton" + }, + { + "label": "skillet", + "content": "skillet" + }, + { + "label": "skillet_cooktop", + "content": "skillet_cooktop" + }, + { + "label": "skip_next", + "content": "skip_next" + }, + { + "label": "skip_previous", + "content": "skip_previous" + }, + { + "label": "skull", + "content": "skull" + }, + { + "label": "slab_serif", + "content": "slab_serif" + }, + { + "label": "sledding", + "content": "sledding" + }, + { + "label": "sleep_score", + "content": "sleep_score" + }, + { + "label": "slide_library", + "content": "slide_library" + }, + { + "label": "sliders", + "content": "sliders" + }, + { + "label": "slideshow", + "content": "slideshow" + }, + { + "label": "slow_motion_video", + "content": "slow_motion_video" + }, + { + "label": "smart_card_reader", + "content": "smart_card_reader" + }, + { + "label": "smart_card_reader_off", + "content": "smart_card_reader_off" + }, + { + "label": "smart_display", + "content": "smart_display" + }, + { + "label": "smart_outlet", + "content": "smart_outlet" + }, + { + "label": "smart_screen", + "content": "smart_screen" + }, + { + "label": "smart_toy", + "content": "smart_toy" + }, + { + "label": "smartphone", + "content": "smartphone" + }, + { + "label": "smb_share", + "content": "smb_share" + }, + { + "label": "smoke_free", + "content": "smoke_free" + }, + { + "label": "smoking_rooms", + "content": "smoking_rooms" + }, + { + "label": "sms", + "content": "sms" + }, + { + "label": "snippet_folder", + "content": "snippet_folder" + }, + { + "label": "snooze", + "content": "snooze" + }, + { + "label": "snowboarding", + "content": "snowboarding" + }, + { + "label": "snowing", + "content": "snowing" + }, + { + "label": "snowing_heavy", + "content": "snowing_heavy" + }, + { + "label": "snowmobile", + "content": "snowmobile" + }, + { + "label": "snowshoeing", + "content": "snowshoeing" + }, + { + "label": "soap", + "content": "soap" + }, + { + "label": "social_distance", + "content": "social_distance" + }, + { + "label": "social_leaderboard", + "content": "social_leaderboard" + }, + { + "label": "solar_power", + "content": "solar_power" + }, + { + "label": "sort", + "content": "sort" + }, + { + "label": "sort_by_alpha", + "content": "sort_by_alpha" + }, + { + "label": "sos", + "content": "sos" + }, + { + "label": "sound_detection_dog_barking", + "content": "sound_detection_dog_barking" + }, + { + "label": "sound_detection_glass_break", + "content": "sound_detection_glass_break" + }, + { + "label": "sound_detection_loud_sound", + "content": "sound_detection_loud_sound" + }, + { + "label": "sound_sampler", + "content": "sound_sampler" + }, + { + "label": "soup_kitchen", + "content": "soup_kitchen" + }, + { + "label": "source_environment", + "content": "source_environment" + }, + { + "label": "source_notes", + "content": "source_notes" + }, + { + "label": "south", + "content": "south" + }, + { + "label": "south_america", + "content": "south_america" + }, + { + "label": "south_east", + "content": "south_east" + }, + { + "label": "south_west", + "content": "south_west" + }, + { + "label": "spa", + "content": "spa" + }, + { + "label": "space_bar", + "content": "space_bar" + }, + { + "label": "space_dashboard", + "content": "space_dashboard" + }, + { + "label": "spatial_audio", + "content": "spatial_audio" + }, + { + "label": "spatial_audio_off", + "content": "spatial_audio_off" + }, + { + "label": "spatial_speaker", + "content": "spatial_speaker" + }, + { + "label": "spatial_tracking", + "content": "spatial_tracking" + }, + { + "label": "speaker", + "content": "speaker" + }, + { + "label": "speaker_group", + "content": "speaker_group" + }, + { + "label": "speaker_notes", + "content": "speaker_notes" + }, + { + "label": "speaker_notes_off", + "content": "speaker_notes_off" + }, + { + "label": "speaker_phone", + "content": "speaker_phone" + }, + { + "label": "special_character", + "content": "special_character" + }, + { + "label": "specific_gravity", + "content": "specific_gravity" + }, + { + "label": "speech_to_text", + "content": "speech_to_text" + }, + { + "label": "speed", + "content": "speed" + }, + { + "label": "speed_0_25", + "content": "speed_0_25" + }, + { + "label": "speed_0_2x", + "content": "speed_0_2x" + }, + { + "label": "speed_0_5", + "content": "speed_0_5" + }, + { + "label": "speed_0_5x", + "content": "speed_0_5x" + }, + { + "label": "speed_0_75", + "content": "speed_0_75" + }, + { + "label": "speed_0_7x", + "content": "speed_0_7x" + }, + { + "label": "speed_1_2", + "content": "speed_1_2" + }, + { + "label": "speed_1_25", + "content": "speed_1_25" + }, + { + "label": "speed_1_2x", + "content": "speed_1_2x" + }, + { + "label": "speed_1_5", + "content": "speed_1_5" + }, + { + "label": "speed_1_5x", + "content": "speed_1_5x" + }, + { + "label": "speed_1_75", + "content": "speed_1_75" + }, + { + "label": "speed_1_7x", + "content": "speed_1_7x" + }, + { + "label": "speed_2x", + "content": "speed_2x" + }, + { + "label": "speed_camera", + "content": "speed_camera" + }, + { + "label": "spellcheck", + "content": "spellcheck" + }, + { + "label": "splitscreen", + "content": "splitscreen" + }, + { + "label": "splitscreen_add", + "content": "splitscreen_add" + }, + { + "label": "splitscreen_bottom", + "content": "splitscreen_bottom" + }, + { + "label": "splitscreen_landscape", + "content": "splitscreen_landscape" + }, + { + "label": "splitscreen_left", + "content": "splitscreen_left" + }, + { + "label": "splitscreen_portrait", + "content": "splitscreen_portrait" + }, + { + "label": "splitscreen_right", + "content": "splitscreen_right" + }, + { + "label": "splitscreen_top", + "content": "splitscreen_top" + }, + { + "label": "splitscreen_vertical_add", + "content": "splitscreen_vertical_add" + }, + { + "label": "spo2", + "content": "spo2" + }, + { + "label": "spoke", + "content": "spoke" + }, + { + "label": "sports", + "content": "sports" + }, + { + "label": "sports_and_outdoors", + "content": "sports_and_outdoors" + }, + { + "label": "sports_bar", + "content": "sports_bar" + }, + { + "label": "sports_baseball", + "content": "sports_baseball" + }, + { + "label": "sports_basketball", + "content": "sports_basketball" + }, + { + "label": "sports_cricket", + "content": "sports_cricket" + }, + { + "label": "sports_esports", + "content": "sports_esports" + }, + { + "label": "sports_football", + "content": "sports_football" + }, + { + "label": "sports_golf", + "content": "sports_golf" + }, + { + "label": "sports_gymnastics", + "content": "sports_gymnastics" + }, + { + "label": "sports_handball", + "content": "sports_handball" + }, + { + "label": "sports_hockey", + "content": "sports_hockey" + }, + { + "label": "sports_kabaddi", + "content": "sports_kabaddi" + }, + { + "label": "sports_martial_arts", + "content": "sports_martial_arts" + }, + { + "label": "sports_mma", + "content": "sports_mma" + }, + { + "label": "sports_motorsports", + "content": "sports_motorsports" + }, + { + "label": "sports_rugby", + "content": "sports_rugby" + }, + { + "label": "sports_score", + "content": "sports_score" + }, + { + "label": "sports_soccer", + "content": "sports_soccer" + }, + { + "label": "sports_tennis", + "content": "sports_tennis" + }, + { + "label": "sports_volleyball", + "content": "sports_volleyball" + }, + { + "label": "sprinkler", + "content": "sprinkler" + }, + { + "label": "sprint", + "content": "sprint" + }, + { + "label": "square", + "content": "square" + }, + { + "label": "square_foot", + "content": "square_foot" + }, + { + "label": "ssid_chart", + "content": "ssid_chart" + }, + { + "label": "stack", + "content": "stack" + }, + { + "label": "stack_off", + "content": "stack_off" + }, + { + "label": "stack_star", + "content": "stack_star" + }, + { + "label": "stacked_bar_chart", + "content": "stacked_bar_chart" + }, + { + "label": "stacked_email", + "content": "stacked_email" + }, + { + "label": "stacked_inbox", + "content": "stacked_inbox" + }, + { + "label": "stacked_line_chart", + "content": "stacked_line_chart" + }, + { + "label": "stacks", + "content": "stacks" + }, + { + "label": "stadia_controller", + "content": "stadia_controller" + }, + { + "label": "stadium", + "content": "stadium" + }, + { + "label": "stairs", + "content": "stairs" + }, + { + "label": "stairs_2", + "content": "stairs_2" + }, + { + "label": "star", + "content": "star" + }, + { + "label": "star_half", + "content": "star_half" + }, + { + "label": "star_rate", + "content": "star_rate" + }, + { + "label": "star_rate_half", + "content": "star_rate_half" + }, + { + "label": "stars", + "content": "stars" + }, + { + "label": "start", + "content": "start" + }, + { + "label": "stat_0", + "content": "stat_0" + }, + { + "label": "stat_1", + "content": "stat_1" + }, + { + "label": "stat_2", + "content": "stat_2" + }, + { + "label": "stat_3", + "content": "stat_3" + }, + { + "label": "stat_minus_1", + "content": "stat_minus_1" + }, + { + "label": "stat_minus_2", + "content": "stat_minus_2" + }, + { + "label": "stat_minus_3", + "content": "stat_minus_3" + }, + { + "label": "stay_current_landscape", + "content": "stay_current_landscape" + }, + { + "label": "stay_current_portrait", + "content": "stay_current_portrait" + }, + { + "label": "stay_primary_landscape", + "content": "stay_primary_landscape" + }, + { + "label": "stay_primary_portrait", + "content": "stay_primary_portrait" + }, + { + "label": "step", + "content": "step" + }, + { + "label": "step_into", + "content": "step_into" + }, + { + "label": "step_out", + "content": "step_out" + }, + { + "label": "step_over", + "content": "step_over" + }, + { + "label": "steppers", + "content": "steppers" + }, + { + "label": "steps", + "content": "steps" + }, + { + "label": "stethoscope", + "content": "stethoscope" + }, + { + "label": "stethoscope_arrow", + "content": "stethoscope_arrow" + }, + { + "label": "stethoscope_check", + "content": "stethoscope_check" + }, + { + "label": "sticky_note", + "content": "sticky_note" + }, + { + "label": "sticky_note_2", + "content": "sticky_note_2" + }, + { + "label": "stock_media", + "content": "stock_media" + }, + { + "label": "stockpot", + "content": "stockpot" + }, + { + "label": "stop", + "content": "stop" + }, + { + "label": "stop_circle", + "content": "stop_circle" + }, + { + "label": "stop_screen_share", + "content": "stop_screen_share" + }, + { + "label": "storage", + "content": "storage" + }, + { + "label": "store", + "content": "store" + }, + { + "label": "storefront", + "content": "storefront" + }, + { + "label": "storm", + "content": "storm" + }, + { + "label": "straight", + "content": "straight" + }, + { + "label": "straighten", + "content": "straighten" + }, + { + "label": "strategy", + "content": "strategy" + }, + { + "label": "stream", + "content": "stream" + }, + { + "label": "stream_apps", + "content": "stream_apps" + }, + { + "label": "streetview", + "content": "streetview" + }, + { + "label": "stress_management", + "content": "stress_management" + }, + { + "label": "strikethrough_s", + "content": "strikethrough_s" + }, + { + "label": "stroke_full", + "content": "stroke_full" + }, + { + "label": "stroke_partial", + "content": "stroke_partial" + }, + { + "label": "stroller", + "content": "stroller" + }, + { + "label": "style", + "content": "style" + }, + { + "label": "styler", + "content": "styler" + }, + { + "label": "stylus", + "content": "stylus" + }, + { + "label": "stylus_laser_pointer", + "content": "stylus_laser_pointer" + }, + { + "label": "stylus_note", + "content": "stylus_note" + }, + { + "label": "subdirectory_arrow_left", + "content": "subdirectory_arrow_left" + }, + { + "label": "subdirectory_arrow_right", + "content": "subdirectory_arrow_right" + }, + { + "label": "subheader", + "content": "subheader" + }, + { + "label": "subject", + "content": "subject" + }, + { + "label": "subscript", + "content": "subscript" + }, + { + "label": "subscriptions", + "content": "subscriptions" + }, + { + "label": "subtitles", + "content": "subtitles" + }, + { + "label": "subtitles_off", + "content": "subtitles_off" + }, + { + "label": "subway", + "content": "subway" + }, + { + "label": "summarize", + "content": "summarize" + }, + { + "label": "sunny", + "content": "sunny" + }, + { + "label": "sunny_snowing", + "content": "sunny_snowing" + }, + { + "label": "superscript", + "content": "superscript" + }, + { + "label": "supervised_user_circle", + "content": "supervised_user_circle" + }, + { + "label": "supervised_user_circle_off", + "content": "supervised_user_circle_off" + }, + { + "label": "supervisor_account", + "content": "supervisor_account" + }, + { + "label": "support", + "content": "support" + }, + { + "label": "support_agent", + "content": "support_agent" + }, + { + "label": "surfing", + "content": "surfing" + }, + { + "label": "surgical", + "content": "surgical" + }, + { + "label": "surround_sound", + "content": "surround_sound" + }, + { + "label": "swap_calls", + "content": "swap_calls" + }, + { + "label": "swap_driving_apps", + "content": "swap_driving_apps" + }, + { + "label": "swap_driving_apps_wheel", + "content": "swap_driving_apps_wheel" + }, + { + "label": "swap_horiz", + "content": "swap_horiz" + }, + { + "label": "swap_horizontal_circle", + "content": "swap_horizontal_circle" + }, + { + "label": "swap_vert", + "content": "swap_vert" + }, + { + "label": "swap_vertical_circle", + "content": "swap_vertical_circle" + }, + { + "label": "sweep", + "content": "sweep" + }, + { + "label": "swipe", + "content": "swipe" + }, + { + "label": "swipe_down", + "content": "swipe_down" + }, + { + "label": "swipe_down_alt", + "content": "swipe_down_alt" + }, + { + "label": "swipe_left", + "content": "swipe_left" + }, + { + "label": "swipe_left_alt", + "content": "swipe_left_alt" + }, + { + "label": "swipe_right", + "content": "swipe_right" + }, + { + "label": "swipe_right_alt", + "content": "swipe_right_alt" + }, + { + "label": "swipe_up", + "content": "swipe_up" + }, + { + "label": "swipe_up_alt", + "content": "swipe_up_alt" + }, + { + "label": "swipe_vertical", + "content": "swipe_vertical" + }, + { + "label": "switch", + "content": "switch" + }, + { + "label": "switch_access", + "content": "switch_access" + }, + { + "label": "switch_access_2", + "content": "switch_access_2" + }, + { + "label": "switch_access_shortcut", + "content": "switch_access_shortcut" + }, + { + "label": "switch_access_shortcut_add", + "content": "switch_access_shortcut_add" + }, + { + "label": "switch_account", + "content": "switch_account" + }, + { + "label": "switch_camera", + "content": "switch_camera" + }, + { + "label": "switch_left", + "content": "switch_left" + }, + { + "label": "switch_right", + "content": "switch_right" + }, + { + "label": "switch_video", + "content": "switch_video" + }, + { + "label": "switches", + "content": "switches" + }, + { + "label": "sword_rose", + "content": "sword_rose" + }, + { + "label": "swords", + "content": "swords" + }, + { + "label": "symptoms", + "content": "symptoms" + }, + { + "label": "synagogue", + "content": "synagogue" + }, + { + "label": "sync", + "content": "sync" + }, + { + "label": "sync_alt", + "content": "sync_alt" + }, + { + "label": "sync_disabled", + "content": "sync_disabled" + }, + { + "label": "sync_lock", + "content": "sync_lock" + }, + { + "label": "sync_problem", + "content": "sync_problem" + }, + { + "label": "sync_saved_locally", + "content": "sync_saved_locally" + }, + { + "label": "syringe", + "content": "syringe" + }, + { + "label": "system_update", + "content": "system_update" + }, + { + "label": "system_update_alt", + "content": "system_update_alt" + }, + { + "label": "tab", + "content": "tab" + }, + { + "label": "tab_close", + "content": "tab_close" + }, + { + "label": "tab_close_right", + "content": "tab_close_right" + }, + { + "label": "tab_duplicate", + "content": "tab_duplicate" + }, + { + "label": "tab_group", + "content": "tab_group" + }, + { + "label": "tab_move", + "content": "tab_move" + }, + { + "label": "tab_new_right", + "content": "tab_new_right" + }, + { + "label": "tab_recent", + "content": "tab_recent" + }, + { + "label": "tab_unselected", + "content": "tab_unselected" + }, + { + "label": "table", + "content": "table" + }, + { + "label": "table_bar", + "content": "table_bar" + }, + { + "label": "table_chart", + "content": "table_chart" + }, + { + "label": "table_chart_view", + "content": "table_chart_view" + }, + { + "label": "table_eye", + "content": "table_eye" + }, + { + "label": "table_lamp", + "content": "table_lamp" + }, + { + "label": "table_restaurant", + "content": "table_restaurant" + }, + { + "label": "table_rows", + "content": "table_rows" + }, + { + "label": "table_rows_narrow", + "content": "table_rows_narrow" + }, + { + "label": "table_view", + "content": "table_view" + }, + { + "label": "tablet", + "content": "tablet" + }, + { + "label": "tablet_android", + "content": "tablet_android" + }, + { + "label": "tablet_mac", + "content": "tablet_mac" + }, + { + "label": "tabs", + "content": "tabs" + }, + { + "label": "tactic", + "content": "tactic" + }, + { + "label": "tag", + "content": "tag" + }, + { + "label": "takeout_dining", + "content": "takeout_dining" + }, + { + "label": "tamper_detection_off", + "content": "tamper_detection_off" + }, + { + "label": "tamper_detection_on", + "content": "tamper_detection_on" + }, + { + "label": "tap_and_play", + "content": "tap_and_play" + }, + { + "label": "tapas", + "content": "tapas" + }, + { + "label": "target", + "content": "target" + }, + { + "label": "task", + "content": "task" + }, + { + "label": "task_alt", + "content": "task_alt" + }, + { + "label": "taunt", + "content": "taunt" + }, + { + "label": "taxi_alert", + "content": "taxi_alert" + }, + { + "label": "team_dashboard", + "content": "team_dashboard" + }, + { + "label": "temp_preferences_eco", + "content": "temp_preferences_eco" + }, + { + "label": "temple_buddhist", + "content": "temple_buddhist" + }, + { + "label": "temple_hindu", + "content": "temple_hindu" + }, + { + "label": "tenancy", + "content": "tenancy" + }, + { + "label": "terminal", + "content": "terminal" + }, + { + "label": "text_ad", + "content": "text_ad" + }, + { + "label": "text_decrease", + "content": "text_decrease" + }, + { + "label": "text_fields", + "content": "text_fields" + }, + { + "label": "text_fields_alt", + "content": "text_fields_alt" + }, + { + "label": "text_format", + "content": "text_format" + }, + { + "label": "text_increase", + "content": "text_increase" + }, + { + "label": "text_rotate_up", + "content": "text_rotate_up" + }, + { + "label": "text_rotate_vertical", + "content": "text_rotate_vertical" + }, + { + "label": "text_rotation_angledown", + "content": "text_rotation_angledown" + }, + { + "label": "text_rotation_angleup", + "content": "text_rotation_angleup" + }, + { + "label": "text_rotation_down", + "content": "text_rotation_down" + }, + { + "label": "text_rotation_none", + "content": "text_rotation_none" + }, + { + "label": "text_select_end", + "content": "text_select_end" + }, + { + "label": "text_select_jump_to_beginning", + "content": "text_select_jump_to_beginning" + }, + { + "label": "text_select_jump_to_end", + "content": "text_select_jump_to_end" + }, + { + "label": "text_select_move_back_character", + "content": "text_select_move_back_character" + }, + { + "label": "text_select_move_back_word", + "content": "text_select_move_back_word" + }, + { + "label": "text_select_move_down", + "content": "text_select_move_down" + }, + { + "label": "text_select_move_forward_character", + "content": "text_select_move_forward_character" + }, + { + "label": "text_select_move_forward_word", + "content": "text_select_move_forward_word" + }, + { + "label": "text_select_move_up", + "content": "text_select_move_up" + }, + { + "label": "text_select_start", + "content": "text_select_start" + }, + { + "label": "text_snippet", + "content": "text_snippet" + }, + { + "label": "text_to_speech", + "content": "text_to_speech" + }, + { + "label": "text_up", + "content": "text_up" + }, + { + "label": "texture", + "content": "texture" + }, + { + "label": "texture_add", + "content": "texture_add" + }, + { + "label": "texture_minus", + "content": "texture_minus" + }, + { + "label": "theater_comedy", + "content": "theater_comedy" + }, + { + "label": "theaters", + "content": "theaters" + }, + { + "label": "thermometer", + "content": "thermometer" + }, + { + "label": "thermometer_add", + "content": "thermometer_add" + }, + { + "label": "thermometer_gain", + "content": "thermometer_gain" + }, + { + "label": "thermometer_loss", + "content": "thermometer_loss" + }, + { + "label": "thermometer_minus", + "content": "thermometer_minus" + }, + { + "label": "thermostat", + "content": "thermostat" + }, + { + "label": "thermostat_auto", + "content": "thermostat_auto" + }, + { + "label": "thermostat_carbon", + "content": "thermostat_carbon" + }, + { + "label": "things_to_do", + "content": "things_to_do" + }, + { + "label": "thread_unread", + "content": "thread_unread" + }, + { + "label": "thumb_down", + "content": "thumb_down" + }, + { + "label": "thumb_up", + "content": "thumb_up" + }, + { + "label": "thumbnail_bar", + "content": "thumbnail_bar" + }, + { + "label": "thumbs_up_down", + "content": "thumbs_up_down" + }, + { + "label": "thunderstorm", + "content": "thunderstorm" + }, + { + "label": "tibia", + "content": "tibia" + }, + { + "label": "tibia_alt", + "content": "tibia_alt" + }, + { + "label": "time_auto", + "content": "time_auto" + }, + { + "label": "timelapse", + "content": "timelapse" + }, + { + "label": "timeline", + "content": "timeline" + }, + { + "label": "timer", + "content": "timer" + }, + { + "label": "timer_10", + "content": "timer_10" + }, + { + "label": "timer_10_alt_1", + "content": "timer_10_alt_1" + }, + { + "label": "timer_10_select", + "content": "timer_10_select" + }, + { + "label": "timer_3", + "content": "timer_3" + }, + { + "label": "timer_3_alt_1", + "content": "timer_3_alt_1" + }, + { + "label": "timer_3_select", + "content": "timer_3_select" + }, + { + "label": "timer_5", + "content": "timer_5" + }, + { + "label": "timer_5_shutter", + "content": "timer_5_shutter" + }, + { + "label": "timer_off", + "content": "timer_off" + }, + { + "label": "timer_pause", + "content": "timer_pause" + }, + { + "label": "timer_play", + "content": "timer_play" + }, + { + "label": "tire_repair", + "content": "tire_repair" + }, + { + "label": "title", + "content": "title" + }, + { + "label": "titlecase", + "content": "titlecase" + }, + { + "label": "toast", + "content": "toast" + }, + { + "label": "toc", + "content": "toc" + }, + { + "label": "today", + "content": "today" + }, + { + "label": "toggle_off", + "content": "toggle_off" + }, + { + "label": "toggle_on", + "content": "toggle_on" + }, + { + "label": "token", + "content": "token" + }, + { + "label": "toll", + "content": "toll" + }, + { + "label": "tonality", + "content": "tonality" + }, + { + "label": "toolbar", + "content": "toolbar" + }, + { + "label": "tools_flat_head", + "content": "tools_flat_head" + }, + { + "label": "tools_installation_kit", + "content": "tools_installation_kit" + }, + { + "label": "tools_ladder", + "content": "tools_ladder" + }, + { + "label": "tools_level", + "content": "tools_level" + }, + { + "label": "tools_phillips", + "content": "tools_phillips" + }, + { + "label": "tools_pliers_wire_stripper", + "content": "tools_pliers_wire_stripper" + }, + { + "label": "tools_power_drill", + "content": "tools_power_drill" + }, + { + "label": "tooltip", + "content": "tooltip" + }, + { + "label": "top_panel_close", + "content": "top_panel_close" + }, + { + "label": "top_panel_open", + "content": "top_panel_open" + }, + { + "label": "topic", + "content": "topic" + }, + { + "label": "tornado", + "content": "tornado" + }, + { + "label": "total_dissolved_solids", + "content": "total_dissolved_solids" + }, + { + "label": "touch_app", + "content": "touch_app" + }, + { + "label": "touchpad_mouse", + "content": "touchpad_mouse" + }, + { + "label": "touchpad_mouse_off", + "content": "touchpad_mouse_off" + }, + { + "label": "tour", + "content": "tour" + }, + { + "label": "toys", + "content": "toys" + }, + { + "label": "toys_and_games", + "content": "toys_and_games" + }, + { + "label": "toys_fan", + "content": "toys_fan" + }, + { + "label": "track_changes", + "content": "track_changes" + }, + { + "label": "trackpad_input", + "content": "trackpad_input" + }, + { + "label": "traffic", + "content": "traffic" + }, + { + "label": "traffic_jam", + "content": "traffic_jam" + }, + { + "label": "trail_length", + "content": "trail_length" + }, + { + "label": "trail_length_medium", + "content": "trail_length_medium" + }, + { + "label": "trail_length_short", + "content": "trail_length_short" + }, + { + "label": "train", + "content": "train" + }, + { + "label": "tram", + "content": "tram" + }, + { + "label": "transcribe", + "content": "transcribe" + }, + { + "label": "transfer_within_a_station", + "content": "transfer_within_a_station" + }, + { + "label": "transform", + "content": "transform" + }, + { + "label": "transgender", + "content": "transgender" + }, + { + "label": "transit_enterexit", + "content": "transit_enterexit" + }, + { + "label": "transition_chop", + "content": "transition_chop" + }, + { + "label": "transition_dissolve", + "content": "transition_dissolve" + }, + { + "label": "transition_fade", + "content": "transition_fade" + }, + { + "label": "transition_push", + "content": "transition_push" + }, + { + "label": "transition_slide", + "content": "transition_slide" + }, + { + "label": "translate", + "content": "translate" + }, + { + "label": "transportation", + "content": "transportation" + }, + { + "label": "travel", + "content": "travel" + }, + { + "label": "travel_explore", + "content": "travel_explore" + }, + { + "label": "travel_luggage_and_bags", + "content": "travel_luggage_and_bags" + }, + { + "label": "trending_down", + "content": "trending_down" + }, + { + "label": "trending_flat", + "content": "trending_flat" + }, + { + "label": "trending_up", + "content": "trending_up" + }, + { + "label": "trip", + "content": "trip" + }, + { + "label": "trip_origin", + "content": "trip_origin" + }, + { + "label": "trolley", + "content": "trolley" + }, + { + "label": "trolley_cable_car", + "content": "trolley_cable_car" + }, + { + "label": "trophy", + "content": "trophy" + }, + { + "label": "troubleshoot", + "content": "troubleshoot" + }, + { + "label": "tsunami", + "content": "tsunami" + }, + { + "label": "tsv", + "content": "tsv" + }, + { + "label": "tty", + "content": "tty" + }, + { + "label": "tune", + "content": "tune" + }, + { + "label": "turn_left", + "content": "turn_left" + }, + { + "label": "turn_right", + "content": "turn_right" + }, + { + "label": "turn_sharp_left", + "content": "turn_sharp_left" + }, + { + "label": "turn_sharp_right", + "content": "turn_sharp_right" + }, + { + "label": "turn_slight_left", + "content": "turn_slight_left" + }, + { + "label": "turn_slight_right", + "content": "turn_slight_right" + }, + { + "label": "tv", + "content": "tv" + }, + { + "label": "tv_gen", + "content": "tv_gen" + }, + { + "label": "tv_guide", + "content": "tv_guide" + }, + { + "label": "tv_off", + "content": "tv_off" + }, + { + "label": "tv_options_edit_channels", + "content": "tv_options_edit_channels" + }, + { + "label": "tv_options_input_settings", + "content": "tv_options_input_settings" + }, + { + "label": "tv_remote", + "content": "tv_remote" + }, + { + "label": "tv_signin", + "content": "tv_signin" + }, + { + "label": "tv_with_assistant", + "content": "tv_with_assistant" + }, + { + "label": "two_pager", + "content": "two_pager" + }, + { + "label": "two_wheeler", + "content": "two_wheeler" + }, + { + "label": "type_specimen", + "content": "type_specimen" + }, + { + "label": "u_turn_left", + "content": "u_turn_left" + }, + { + "label": "u_turn_right", + "content": "u_turn_right" + }, + { + "label": "ulna_radius", + "content": "ulna_radius" + }, + { + "label": "ulna_radius_alt", + "content": "ulna_radius_alt" + }, + { + "label": "umbrella", + "content": "umbrella" + }, + { + "label": "unarchive", + "content": "unarchive" + }, + { + "label": "undo", + "content": "undo" + }, + { + "label": "unfold_less", + "content": "unfold_less" + }, + { + "label": "unfold_less_double", + "content": "unfold_less_double" + }, + { + "label": "unfold_more", + "content": "unfold_more" + }, + { + "label": "unfold_more_double", + "content": "unfold_more_double" + }, + { + "label": "ungroup", + "content": "ungroup" + }, + { + "label": "universal_currency", + "content": "universal_currency" + }, + { + "label": "universal_currency_alt", + "content": "universal_currency_alt" + }, + { + "label": "universal_local", + "content": "universal_local" + }, + { + "label": "unknown_2", + "content": "unknown_2" + }, + { + "label": "unknown_5", + "content": "unknown_5" + }, + { + "label": "unknown_7", + "content": "unknown_7" + }, + { + "label": "unknown_document", + "content": "unknown_document" + }, + { + "label": "unknown_med", + "content": "unknown_med" + }, + { + "label": "unlicense", + "content": "unlicense" + }, + { + "label": "unpaved_road", + "content": "unpaved_road" + }, + { + "label": "unpublished", + "content": "unpublished" + }, + { + "label": "unsubscribe", + "content": "unsubscribe" + }, + { + "label": "upcoming", + "content": "upcoming" + }, + { + "label": "update", + "content": "update" + }, + { + "label": "update_disabled", + "content": "update_disabled" + }, + { + "label": "upgrade", + "content": "upgrade" + }, + { + "label": "upload", + "content": "upload" + }, + { + "label": "upload_2", + "content": "upload_2" + }, + { + "label": "upload_file", + "content": "upload_file" + }, + { + "label": "uppercase", + "content": "uppercase" + }, + { + "label": "urology", + "content": "urology" + }, + { + "label": "usb", + "content": "usb" + }, + { + "label": "usb_off", + "content": "usb_off" + }, + { + "label": "user_attributes", + "content": "user_attributes" + }, + { + "label": "vaccines", + "content": "vaccines" + }, + { + "label": "vacuum", + "content": "vacuum" + }, + { + "label": "valve", + "content": "valve" + }, + { + "label": "vape_free", + "content": "vape_free" + }, + { + "label": "vaping_rooms", + "content": "vaping_rooms" + }, + { + "label": "variable_add", + "content": "variable_add" + }, + { + "label": "variable_insert", + "content": "variable_insert" + }, + { + "label": "variable_remove", + "content": "variable_remove" + }, + { + "label": "variables", + "content": "variables" + }, + { + "label": "ventilator", + "content": "ventilator" + }, + { + "label": "verified", + "content": "verified" + }, + { + "label": "verified_user", + "content": "verified_user" + }, + { + "label": "vertical_align_bottom", + "content": "vertical_align_bottom" + }, + { + "label": "vertical_align_center", + "content": "vertical_align_center" + }, + { + "label": "vertical_align_top", + "content": "vertical_align_top" + }, + { + "label": "vertical_distribute", + "content": "vertical_distribute" + }, + { + "label": "vertical_shades", + "content": "vertical_shades" + }, + { + "label": "vertical_shades_closed", + "content": "vertical_shades_closed" + }, + { + "label": "vertical_split", + "content": "vertical_split" + }, + { + "label": "vibration", + "content": "vibration" + }, + { + "label": "video_call", + "content": "video_call" + }, + { + "label": "video_camera_back", + "content": "video_camera_back" + }, + { + "label": "video_camera_front", + "content": "video_camera_front" + }, + { + "label": "video_camera_front_off", + "content": "video_camera_front_off" + }, + { + "label": "video_chat", + "content": "video_chat" + }, + { + "label": "video_file", + "content": "video_file" + }, + { + "label": "video_label", + "content": "video_label" + }, + { + "label": "video_library", + "content": "video_library" + }, + { + "label": "video_search", + "content": "video_search" + }, + { + "label": "video_settings", + "content": "video_settings" + }, + { + "label": "video_stable", + "content": "video_stable" + }, + { + "label": "videocam", + "content": "videocam" + }, + { + "label": "videocam_off", + "content": "videocam_off" + }, + { + "label": "videogame_asset", + "content": "videogame_asset" + }, + { + "label": "videogame_asset_off", + "content": "videogame_asset_off" + }, + { + "label": "view_agenda", + "content": "view_agenda" + }, + { + "label": "view_array", + "content": "view_array" + }, + { + "label": "view_carousel", + "content": "view_carousel" + }, + { + "label": "view_column", + "content": "view_column" + }, + { + "label": "view_column_2", + "content": "view_column_2" + }, + { + "label": "view_comfy", + "content": "view_comfy" + }, + { + "label": "view_comfy_alt", + "content": "view_comfy_alt" + }, + { + "label": "view_compact", + "content": "view_compact" + }, + { + "label": "view_compact_alt", + "content": "view_compact_alt" + }, + { + "label": "view_cozy", + "content": "view_cozy" + }, + { + "label": "view_day", + "content": "view_day" + }, + { + "label": "view_headline", + "content": "view_headline" + }, + { + "label": "view_in_ar", + "content": "view_in_ar" + }, + { + "label": "view_in_ar_off", + "content": "view_in_ar_off" + }, + { + "label": "view_kanban", + "content": "view_kanban" + }, + { + "label": "view_list", + "content": "view_list" + }, + { + "label": "view_module", + "content": "view_module" + }, + { + "label": "view_quilt", + "content": "view_quilt" + }, + { + "label": "view_real_size", + "content": "view_real_size" + }, + { + "label": "view_sidebar", + "content": "view_sidebar" + }, + { + "label": "view_stream", + "content": "view_stream" + }, + { + "label": "view_timeline", + "content": "view_timeline" + }, + { + "label": "view_week", + "content": "view_week" + }, + { + "label": "vignette", + "content": "vignette" + }, + { + "label": "villa", + "content": "villa" + }, + { + "label": "visibility", + "content": "visibility" + }, + { + "label": "visibility_lock", + "content": "visibility_lock" + }, + { + "label": "visibility_off", + "content": "visibility_off" + }, + { + "label": "vital_signs", + "content": "vital_signs" + }, + { + "label": "vo2_max", + "content": "vo2_max" + }, + { + "label": "voice_chat", + "content": "voice_chat" + }, + { + "label": "voice_over_off", + "content": "voice_over_off" + }, + { + "label": "voice_selection", + "content": "voice_selection" + }, + { + "label": "voicemail", + "content": "voicemail" + }, + { + "label": "volcano", + "content": "volcano" + }, + { + "label": "volume_down", + "content": "volume_down" + }, + { + "label": "volume_down_alt", + "content": "volume_down_alt" + }, + { + "label": "volume_mute", + "content": "volume_mute" + }, + { + "label": "volume_off", + "content": "volume_off" + }, + { + "label": "volume_up", + "content": "volume_up" + }, + { + "label": "volunteer_activism", + "content": "volunteer_activism" + }, + { + "label": "voting_chip", + "content": "voting_chip" + }, + { + "label": "vpn_key", + "content": "vpn_key" + }, + { + "label": "vpn_key_alert", + "content": "vpn_key_alert" + }, + { + "label": "vpn_key_off", + "content": "vpn_key_off" + }, + { + "label": "vpn_lock", + "content": "vpn_lock" + }, + { + "label": "vr180_create2d", + "content": "vr180_create2d" + }, + { + "label": "vr180_create2d_off", + "content": "vr180_create2d_off" + }, + { + "label": "vrpano", + "content": "vrpano" + }, + { + "label": "wall_art", + "content": "wall_art" + }, + { + "label": "wall_lamp", + "content": "wall_lamp" + }, + { + "label": "wallet", + "content": "wallet" + }, + { + "label": "wallpaper", + "content": "wallpaper" + }, + { + "label": "wallpaper_slideshow", + "content": "wallpaper_slideshow" + }, + { + "label": "ward", + "content": "ward" + }, + { + "label": "warehouse", + "content": "warehouse" + }, + { + "label": "warning", + "content": "warning" + }, + { + "label": "warning_off", + "content": "warning_off" + }, + { + "label": "wash", + "content": "wash" + }, + { + "label": "watch", + "content": "watch" + }, + { + "label": "watch_button_press", + "content": "watch_button_press" + }, + { + "label": "watch_check", + "content": "watch_check" + }, + { + "label": "watch_off", + "content": "watch_off" + }, + { + "label": "watch_screentime", + "content": "watch_screentime" + }, + { + "label": "watch_vibration", + "content": "watch_vibration" + }, + { + "label": "watch_wake", + "content": "watch_wake" + }, + { + "label": "water", + "content": "water" + }, + { + "label": "water_bottle", + "content": "water_bottle" + }, + { + "label": "water_bottle_large", + "content": "water_bottle_large" + }, + { + "label": "water_damage", + "content": "water_damage" + }, + { + "label": "water_do", + "content": "water_do" + }, + { + "label": "water_drop", + "content": "water_drop" + }, + { + "label": "water_ec", + "content": "water_ec" + }, + { + "label": "water_full", + "content": "water_full" + }, + { + "label": "water_heater", + "content": "water_heater" + }, + { + "label": "water_lock", + "content": "water_lock" + }, + { + "label": "water_loss", + "content": "water_loss" + }, + { + "label": "water_lux", + "content": "water_lux" + }, + { + "label": "water_medium", + "content": "water_medium" + }, + { + "label": "water_orp", + "content": "water_orp" + }, + { + "label": "water_ph", + "content": "water_ph" + }, + { + "label": "water_pump", + "content": "water_pump" + }, + { + "label": "water_voc", + "content": "water_voc" + }, + { + "label": "waterfall_chart", + "content": "waterfall_chart" + }, + { + "label": "waves", + "content": "waves" + }, + { + "label": "waving_hand", + "content": "waving_hand" + }, + { + "label": "wb_auto", + "content": "wb_auto" + }, + { + "label": "wb_incandescent", + "content": "wb_incandescent" + }, + { + "label": "wb_iridescent", + "content": "wb_iridescent" + }, + { + "label": "wb_shade", + "content": "wb_shade" + }, + { + "label": "wb_sunny", + "content": "wb_sunny" + }, + { + "label": "wb_twilight", + "content": "wb_twilight" + }, + { + "label": "wc", + "content": "wc" + }, + { + "label": "weather_hail", + "content": "weather_hail" + }, + { + "label": "weather_mix", + "content": "weather_mix" + }, + { + "label": "weather_snowy", + "content": "weather_snowy" + }, + { + "label": "web", + "content": "web" + }, + { + "label": "web_asset", + "content": "web_asset" + }, + { + "label": "web_asset_off", + "content": "web_asset_off" + }, + { + "label": "web_stories", + "content": "web_stories" + }, + { + "label": "web_traffic", + "content": "web_traffic" + }, + { + "label": "webhook", + "content": "webhook" + }, + { + "label": "weekend", + "content": "weekend" + }, + { + "label": "weight", + "content": "weight" + }, + { + "label": "west", + "content": "west" + }, + { + "label": "whatshot", + "content": "whatshot" + }, + { + "label": "wheelchair_pickup", + "content": "wheelchair_pickup" + }, + { + "label": "where_to_vote", + "content": "where_to_vote" + }, + { + "label": "widgets", + "content": "widgets" + }, + { + "label": "width", + "content": "width" + }, + { + "label": "width_full", + "content": "width_full" + }, + { + "label": "width_normal", + "content": "width_normal" + }, + { + "label": "width_wide", + "content": "width_wide" + }, + { + "label": "wifi", + "content": "wifi" + }, + { + "label": "wifi_1_bar", + "content": "wifi_1_bar" + }, + { + "label": "wifi_2_bar", + "content": "wifi_2_bar" + }, + { + "label": "wifi_add", + "content": "wifi_add" + }, + { + "label": "wifi_calling", + "content": "wifi_calling" + }, + { + "label": "wifi_calling_1", + "content": "wifi_calling_1" + }, + { + "label": "wifi_calling_2", + "content": "wifi_calling_2" + }, + { + "label": "wifi_calling_3", + "content": "wifi_calling_3" + }, + { + "label": "wifi_channel", + "content": "wifi_channel" + }, + { + "label": "wifi_find", + "content": "wifi_find" + }, + { + "label": "wifi_home", + "content": "wifi_home" + }, + { + "label": "wifi_lock", + "content": "wifi_lock" + }, + { + "label": "wifi_notification", + "content": "wifi_notification" + }, + { + "label": "wifi_off", + "content": "wifi_off" + }, + { + "label": "wifi_password", + "content": "wifi_password" + }, + { + "label": "wifi_protected_setup", + "content": "wifi_protected_setup" + }, + { + "label": "wifi_proxy", + "content": "wifi_proxy" + }, + { + "label": "wifi_tethering", + "content": "wifi_tethering" + }, + { + "label": "wifi_tethering_error", + "content": "wifi_tethering_error" + }, + { + "label": "wifi_tethering_off", + "content": "wifi_tethering_off" + }, + { + "label": "wind_power", + "content": "wind_power" + }, + { + "label": "window", + "content": "window" + }, + { + "label": "window_closed", + "content": "window_closed" + }, + { + "label": "window_open", + "content": "window_open" + }, + { + "label": "window_sensor", + "content": "window_sensor" + }, + { + "label": "wine_bar", + "content": "wine_bar" + }, + { + "label": "woman", + "content": "woman" + }, + { + "label": "woman_2", + "content": "woman_2" + }, + { + "label": "work", + "content": "work" + }, + { + "label": "work_alert", + "content": "work_alert" + }, + { + "label": "work_history", + "content": "work_history" + }, + { + "label": "work_update", + "content": "work_update" + }, + { + "label": "workspace_premium", + "content": "workspace_premium" + }, + { + "label": "workspaces", + "content": "workspaces" + }, + { + "label": "wounds_injuries", + "content": "wounds_injuries" + }, + { + "label": "wrap_text", + "content": "wrap_text" + }, + { + "label": "wrist", + "content": "wrist" + }, + { + "label": "wrong_location", + "content": "wrong_location" + }, + { + "label": "wysiwyg", + "content": "wysiwyg" + }, + { + "label": "yard", + "content": "yard" + }, + { + "label": "your_trips", + "content": "your_trips" + }, + { + "label": "youtube_activity", + "content": "youtube_activity" + }, + { + "label": "youtube_searched_for", + "content": "youtube_searched_for" + }, + { + "label": "zone_person_alert", + "content": "zone_person_alert" + }, + { + "label": "zone_person_idle", + "content": "zone_person_idle" + }, + { + "label": "zone_person_urgent", + "content": "zone_person_urgent" + }, + { + "label": "zoom_in", + "content": "zoom_in" + }, + { + "label": "zoom_in_map", + "content": "zoom_in_map" + }, + { + "label": "zoom_out", + "content": "zoom_out" + }, + { + "label": "zoom_out_map", + "content": "zoom_out_map" + } + ] +} diff --git a/packages/iconography/config/material-symbols-rounded-filled.config.json b/packages/iconography/config/material-symbols-rounded-filled.config.json new file mode 100644 index 0000000..2e6e378 --- /dev/null +++ b/packages/iconography/config/material-symbols-rounded-filled.config.json @@ -0,0 +1,13263 @@ +{ + "$schema": "../schema.json", + "title": "Rounded (Filled)", + "name": "boxuk/material-symbols-rounded-filled", + "tagName": "span", + "className": "material-symbols-rounded-filled", + "url": "https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200", + "additionalCss": ".material-symbols-rounded-filled { font-family: 'Material Symbols Rounded', sans-serif; font-size: inherit; vertical-align: text-bottom; line-height: 1.333; text-decoration: inherit; font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }", + "icons": [ + { + "label": "123", + "content": "123" + }, + { + "label": "360", + "content": "360" + }, + { + "label": "10k", + "content": "10k" + }, + { + "label": "10mp", + "content": "10mp" + }, + { + "label": "11mp", + "content": "11mp" + }, + { + "label": "12mp", + "content": "12mp" + }, + { + "label": "13mp", + "content": "13mp" + }, + { + "label": "14mp", + "content": "14mp" + }, + { + "label": "15mp", + "content": "15mp" + }, + { + "label": "16mp", + "content": "16mp" + }, + { + "label": "17mp", + "content": "17mp" + }, + { + "label": "18_up_rating", + "content": "18_up_rating" + }, + { + "label": "18mp", + "content": "18mp" + }, + { + "label": "19mp", + "content": "19mp" + }, + { + "label": "1k", + "content": "1k" + }, + { + "label": "1k_plus", + "content": "1k_plus" + }, + { + "label": "1x_mobiledata", + "content": "1x_mobiledata" + }, + { + "label": "1x_mobiledata_badge", + "content": "1x_mobiledata_badge" + }, + { + "label": "20mp", + "content": "20mp" + }, + { + "label": "21mp", + "content": "21mp" + }, + { + "label": "22mp", + "content": "22mp" + }, + { + "label": "23mp", + "content": "23mp" + }, + { + "label": "24mp", + "content": "24mp" + }, + { + "label": "2d", + "content": "2d" + }, + { + "label": "2k", + "content": "2k" + }, + { + "label": "2k_plus", + "content": "2k_plus" + }, + { + "label": "2mp", + "content": "2mp" + }, + { + "label": "30fps", + "content": "30fps" + }, + { + "label": "30fps_select", + "content": "30fps_select" + }, + { + "label": "3d_rotation", + "content": "3d_rotation" + }, + { + "label": "3g_mobiledata", + "content": "3g_mobiledata" + }, + { + "label": "3g_mobiledata_badge", + "content": "3g_mobiledata_badge" + }, + { + "label": "3k", + "content": "3k" + }, + { + "label": "3k_plus", + "content": "3k_plus" + }, + { + "label": "3mp", + "content": "3mp" + }, + { + "label": "3p", + "content": "3p" + }, + { + "label": "4g_mobiledata", + "content": "4g_mobiledata" + }, + { + "label": "4g_mobiledata_badge", + "content": "4g_mobiledata_badge" + }, + { + "label": "4g_plus_mobiledata", + "content": "4g_plus_mobiledata" + }, + { + "label": "4k", + "content": "4k" + }, + { + "label": "4k_plus", + "content": "4k_plus" + }, + { + "label": "4mp", + "content": "4mp" + }, + { + "label": "50mp", + "content": "50mp" + }, + { + "label": "5g", + "content": "5g" + }, + { + "label": "5g_mobiledata_badge", + "content": "5g_mobiledata_badge" + }, + { + "label": "5k", + "content": "5k" + }, + { + "label": "5k_plus", + "content": "5k_plus" + }, + { + "label": "5mp", + "content": "5mp" + }, + { + "label": "60fps", + "content": "60fps" + }, + { + "label": "60fps_select", + "content": "60fps_select" + }, + { + "label": "6_ft_apart", + "content": "6_ft_apart" + }, + { + "label": "6k", + "content": "6k" + }, + { + "label": "6k_plus", + "content": "6k_plus" + }, + { + "label": "6mp", + "content": "6mp" + }, + { + "label": "7k", + "content": "7k" + }, + { + "label": "7k_plus", + "content": "7k_plus" + }, + { + "label": "7mp", + "content": "7mp" + }, + { + "label": "8k", + "content": "8k" + }, + { + "label": "8k_plus", + "content": "8k_plus" + }, + { + "label": "8mp", + "content": "8mp" + }, + { + "label": "9k", + "content": "9k" + }, + { + "label": "9k_plus", + "content": "9k_plus" + }, + { + "label": "9mp", + "content": "9mp" + }, + { + "label": "abc", + "content": "abc" + }, + { + "label": "ac_unit", + "content": "ac_unit" + }, + { + "label": "accessibility", + "content": "accessibility" + }, + { + "label": "accessibility_new", + "content": "accessibility_new" + }, + { + "label": "accessible", + "content": "accessible" + }, + { + "label": "accessible_forward", + "content": "accessible_forward" + }, + { + "label": "account_balance", + "content": "account_balance" + }, + { + "label": "account_balance_wallet", + "content": "account_balance_wallet" + }, + { + "label": "account_box", + "content": "account_box" + }, + { + "label": "account_child", + "content": "account_child" + }, + { + "label": "account_child_invert", + "content": "account_child_invert" + }, + { + "label": "account_circle", + "content": "account_circle" + }, + { + "label": "account_circle_off", + "content": "account_circle_off" + }, + { + "label": "account_tree", + "content": "account_tree" + }, + { + "label": "action_key", + "content": "action_key" + }, + { + "label": "activity_zone", + "content": "activity_zone" + }, + { + "label": "acute", + "content": "acute" + }, + { + "label": "ad", + "content": "ad" + }, + { + "label": "ad_group", + "content": "ad_group" + }, + { + "label": "ad_group_off", + "content": "ad_group_off" + }, + { + "label": "ad_off", + "content": "ad_off" + }, + { + "label": "ad_units", + "content": "ad_units" + }, + { + "label": "adaptive_audio_mic", + "content": "adaptive_audio_mic" + }, + { + "label": "adaptive_audio_mic_off", + "content": "adaptive_audio_mic_off" + }, + { + "label": "adb", + "content": "adb" + }, + { + "label": "add", + "content": "add" + }, + { + "label": "add_a_photo", + "content": "add_a_photo" + }, + { + "label": "add_ad", + "content": "add_ad" + }, + { + "label": "add_alert", + "content": "add_alert" + }, + { + "label": "add_box", + "content": "add_box" + }, + { + "label": "add_business", + "content": "add_business" + }, + { + "label": "add_call", + "content": "add_call" + }, + { + "label": "add_card", + "content": "add_card" + }, + { + "label": "add_chart", + "content": "add_chart" + }, + { + "label": "add_circle", + "content": "add_circle" + }, + { + "label": "add_comment", + "content": "add_comment" + }, + { + "label": "add_diamond", + "content": "add_diamond" + }, + { + "label": "add_home", + "content": "add_home" + }, + { + "label": "add_home_work", + "content": "add_home_work" + }, + { + "label": "add_link", + "content": "add_link" + }, + { + "label": "add_location", + "content": "add_location" + }, + { + "label": "add_location_alt", + "content": "add_location_alt" + }, + { + "label": "add_moderator", + "content": "add_moderator" + }, + { + "label": "add_notes", + "content": "add_notes" + }, + { + "label": "add_photo_alternate", + "content": "add_photo_alternate" + }, + { + "label": "add_reaction", + "content": "add_reaction" + }, + { + "label": "add_road", + "content": "add_road" + }, + { + "label": "add_shopping_cart", + "content": "add_shopping_cart" + }, + { + "label": "add_task", + "content": "add_task" + }, + { + "label": "add_to_drive", + "content": "add_to_drive" + }, + { + "label": "add_to_home_screen", + "content": "add_to_home_screen" + }, + { + "label": "add_to_photos", + "content": "add_to_photos" + }, + { + "label": "add_to_queue", + "content": "add_to_queue" + }, + { + "label": "add_triangle", + "content": "add_triangle" + }, + { + "label": "adf_scanner", + "content": "adf_scanner" + }, + { + "label": "adjust", + "content": "adjust" + }, + { + "label": "admin_meds", + "content": "admin_meds" + }, + { + "label": "admin_panel_settings", + "content": "admin_panel_settings" + }, + { + "label": "ads_click", + "content": "ads_click" + }, + { + "label": "agender", + "content": "agender" + }, + { + "label": "agriculture", + "content": "agriculture" + }, + { + "label": "air", + "content": "air" + }, + { + "label": "air_freshener", + "content": "air_freshener" + }, + { + "label": "air_purifier", + "content": "air_purifier" + }, + { + "label": "air_purifier_gen", + "content": "air_purifier_gen" + }, + { + "label": "airline_seat_flat", + "content": "airline_seat_flat" + }, + { + "label": "airline_seat_flat_angled", + "content": "airline_seat_flat_angled" + }, + { + "label": "airline_seat_individual_suite", + "content": "airline_seat_individual_suite" + }, + { + "label": "airline_seat_legroom_extra", + "content": "airline_seat_legroom_extra" + }, + { + "label": "airline_seat_legroom_normal", + "content": "airline_seat_legroom_normal" + }, + { + "label": "airline_seat_legroom_reduced", + "content": "airline_seat_legroom_reduced" + }, + { + "label": "airline_seat_recline_extra", + "content": "airline_seat_recline_extra" + }, + { + "label": "airline_seat_recline_normal", + "content": "airline_seat_recline_normal" + }, + { + "label": "airline_stops", + "content": "airline_stops" + }, + { + "label": "airlines", + "content": "airlines" + }, + { + "label": "airplane_ticket", + "content": "airplane_ticket" + }, + { + "label": "airplanemode_active", + "content": "airplanemode_active" + }, + { + "label": "airplanemode_inactive", + "content": "airplanemode_inactive" + }, + { + "label": "airplay", + "content": "airplay" + }, + { + "label": "airport_shuttle", + "content": "airport_shuttle" + }, + { + "label": "airware", + "content": "airware" + }, + { + "label": "airwave", + "content": "airwave" + }, + { + "label": "alarm", + "content": "alarm" + }, + { + "label": "alarm_add", + "content": "alarm_add" + }, + { + "label": "alarm_off", + "content": "alarm_off" + }, + { + "label": "alarm_on", + "content": "alarm_on" + }, + { + "label": "alarm_smart_wake", + "content": "alarm_smart_wake" + }, + { + "label": "album", + "content": "album" + }, + { + "label": "align_center", + "content": "align_center" + }, + { + "label": "align_end", + "content": "align_end" + }, + { + "label": "align_flex_center", + "content": "align_flex_center" + }, + { + "label": "align_flex_end", + "content": "align_flex_end" + }, + { + "label": "align_flex_start", + "content": "align_flex_start" + }, + { + "label": "align_horizontal_center", + "content": "align_horizontal_center" + }, + { + "label": "align_horizontal_left", + "content": "align_horizontal_left" + }, + { + "label": "align_horizontal_right", + "content": "align_horizontal_right" + }, + { + "label": "align_items_stretch", + "content": "align_items_stretch" + }, + { + "label": "align_justify_center", + "content": "align_justify_center" + }, + { + "label": "align_justify_flex_end", + "content": "align_justify_flex_end" + }, + { + "label": "align_justify_flex_start", + "content": "align_justify_flex_start" + }, + { + "label": "align_justify_space_around", + "content": "align_justify_space_around" + }, + { + "label": "align_justify_space_between", + "content": "align_justify_space_between" + }, + { + "label": "align_justify_space_even", + "content": "align_justify_space_even" + }, + { + "label": "align_justify_stretch", + "content": "align_justify_stretch" + }, + { + "label": "align_self_stretch", + "content": "align_self_stretch" + }, + { + "label": "align_space_around", + "content": "align_space_around" + }, + { + "label": "align_space_between", + "content": "align_space_between" + }, + { + "label": "align_space_even", + "content": "align_space_even" + }, + { + "label": "align_start", + "content": "align_start" + }, + { + "label": "align_stretch", + "content": "align_stretch" + }, + { + "label": "align_vertical_bottom", + "content": "align_vertical_bottom" + }, + { + "label": "align_vertical_center", + "content": "align_vertical_center" + }, + { + "label": "align_vertical_top", + "content": "align_vertical_top" + }, + { + "label": "all_inbox", + "content": "all_inbox" + }, + { + "label": "all_inclusive", + "content": "all_inclusive" + }, + { + "label": "all_match", + "content": "all_match" + }, + { + "label": "all_out", + "content": "all_out" + }, + { + "label": "allergies", + "content": "allergies" + }, + { + "label": "allergy", + "content": "allergy" + }, + { + "label": "alt_route", + "content": "alt_route" + }, + { + "label": "alternate_email", + "content": "alternate_email" + }, + { + "label": "altitude", + "content": "altitude" + }, + { + "label": "ambulance", + "content": "ambulance" + }, + { + "label": "amend", + "content": "amend" + }, + { + "label": "amp_stories", + "content": "amp_stories" + }, + { + "label": "analytics", + "content": "analytics" + }, + { + "label": "anchor", + "content": "anchor" + }, + { + "label": "android", + "content": "android" + }, + { + "label": "animated_images", + "content": "animated_images" + }, + { + "label": "animation", + "content": "animation" + }, + { + "label": "aod", + "content": "aod" + }, + { + "label": "aod_tablet", + "content": "aod_tablet" + }, + { + "label": "aod_watch", + "content": "aod_watch" + }, + { + "label": "apartment", + "content": "apartment" + }, + { + "label": "api", + "content": "api" + }, + { + "label": "apk_document", + "content": "apk_document" + }, + { + "label": "apk_install", + "content": "apk_install" + }, + { + "label": "app_badging", + "content": "app_badging" + }, + { + "label": "app_blocking", + "content": "app_blocking" + }, + { + "label": "app_promo", + "content": "app_promo" + }, + { + "label": "app_registration", + "content": "app_registration" + }, + { + "label": "app_shortcut", + "content": "app_shortcut" + }, + { + "label": "apparel", + "content": "apparel" + }, + { + "label": "approval", + "content": "approval" + }, + { + "label": "approval_delegation", + "content": "approval_delegation" + }, + { + "label": "apps", + "content": "apps" + }, + { + "label": "apps_outage", + "content": "apps_outage" + }, + { + "label": "aq", + "content": "aq" + }, + { + "label": "aq_indoor", + "content": "aq_indoor" + }, + { + "label": "ar_on_you", + "content": "ar_on_you" + }, + { + "label": "ar_stickers", + "content": "ar_stickers" + }, + { + "label": "architecture", + "content": "architecture" + }, + { + "label": "archive", + "content": "archive" + }, + { + "label": "area_chart", + "content": "area_chart" + }, + { + "label": "arming_countdown", + "content": "arming_countdown" + }, + { + "label": "arrow_and_edge", + "content": "arrow_and_edge" + }, + { + "label": "arrow_back", + "content": "arrow_back" + }, + { + "label": "arrow_back_ios", + "content": "arrow_back_ios" + }, + { + "label": "arrow_circle_down", + "content": "arrow_circle_down" + }, + { + "label": "arrow_circle_left", + "content": "arrow_circle_left" + }, + { + "label": "arrow_circle_right", + "content": "arrow_circle_right" + }, + { + "label": "arrow_circle_up", + "content": "arrow_circle_up" + }, + { + "label": "arrow_cool_down", + "content": "arrow_cool_down" + }, + { + "label": "arrow_downward", + "content": "arrow_downward" + }, + { + "label": "arrow_downward_alt", + "content": "arrow_downward_alt" + }, + { + "label": "arrow_drop_down", + "content": "arrow_drop_down" + }, + { + "label": "arrow_drop_down_circle", + "content": "arrow_drop_down_circle" + }, + { + "label": "arrow_drop_up", + "content": "arrow_drop_up" + }, + { + "label": "arrow_forward", + "content": "arrow_forward" + }, + { + "label": "arrow_forward_ios", + "content": "arrow_forward_ios" + }, + { + "label": "arrow_insert", + "content": "arrow_insert" + }, + { + "label": "arrow_left", + "content": "arrow_left" + }, + { + "label": "arrow_left_alt", + "content": "arrow_left_alt" + }, + { + "label": "arrow_or_edge", + "content": "arrow_or_edge" + }, + { + "label": "arrow_outward", + "content": "arrow_outward" + }, + { + "label": "arrow_range", + "content": "arrow_range" + }, + { + "label": "arrow_right", + "content": "arrow_right" + }, + { + "label": "arrow_right_alt", + "content": "arrow_right_alt" + }, + { + "label": "arrow_selector_tool", + "content": "arrow_selector_tool" + }, + { + "label": "arrow_split", + "content": "arrow_split" + }, + { + "label": "arrow_top_left", + "content": "arrow_top_left" + }, + { + "label": "arrow_top_right", + "content": "arrow_top_right" + }, + { + "label": "arrow_upward", + "content": "arrow_upward" + }, + { + "label": "arrow_upward_alt", + "content": "arrow_upward_alt" + }, + { + "label": "arrow_warm_up", + "content": "arrow_warm_up" + }, + { + "label": "arrows_more_down", + "content": "arrows_more_down" + }, + { + "label": "arrows_more_up", + "content": "arrows_more_up" + }, + { + "label": "arrows_outward", + "content": "arrows_outward" + }, + { + "label": "art_track", + "content": "art_track" + }, + { + "label": "article", + "content": "article" + }, + { + "label": "article_shortcut", + "content": "article_shortcut" + }, + { + "label": "artist", + "content": "artist" + }, + { + "label": "aspect_ratio", + "content": "aspect_ratio" + }, + { + "label": "assignment", + "content": "assignment" + }, + { + "label": "assignment_add", + "content": "assignment_add" + }, + { + "label": "assignment_ind", + "content": "assignment_ind" + }, + { + "label": "assignment_late", + "content": "assignment_late" + }, + { + "label": "assignment_return", + "content": "assignment_return" + }, + { + "label": "assignment_returned", + "content": "assignment_returned" + }, + { + "label": "assignment_turned_in", + "content": "assignment_turned_in" + }, + { + "label": "assist_walker", + "content": "assist_walker" + }, + { + "label": "assistant_device", + "content": "assistant_device" + }, + { + "label": "assistant_direction", + "content": "assistant_direction" + }, + { + "label": "assistant_navigation", + "content": "assistant_navigation" + }, + { + "label": "assistant_on_hub", + "content": "assistant_on_hub" + }, + { + "label": "assured_workload", + "content": "assured_workload" + }, + { + "label": "asterisk", + "content": "asterisk" + }, + { + "label": "atm", + "content": "atm" + }, + { + "label": "atr", + "content": "atr" + }, + { + "label": "attach_email", + "content": "attach_email" + }, + { + "label": "attach_file", + "content": "attach_file" + }, + { + "label": "attach_file_add", + "content": "attach_file_add" + }, + { + "label": "attach_file_off", + "content": "attach_file_off" + }, + { + "label": "attach_money", + "content": "attach_money" + }, + { + "label": "attachment", + "content": "attachment" + }, + { + "label": "attractions", + "content": "attractions" + }, + { + "label": "attribution", + "content": "attribution" + }, + { + "label": "audio_description", + "content": "audio_description" + }, + { + "label": "audio_file", + "content": "audio_file" + }, + { + "label": "audio_video_receiver", + "content": "audio_video_receiver" + }, + { + "label": "auto_awesome_mosaic", + "content": "auto_awesome_mosaic" + }, + { + "label": "auto_awesome_motion", + "content": "auto_awesome_motion" + }, + { + "label": "auto_delete", + "content": "auto_delete" + }, + { + "label": "auto_read_pause", + "content": "auto_read_pause" + }, + { + "label": "auto_read_play", + "content": "auto_read_play" + }, + { + "label": "auto_stories", + "content": "auto_stories" + }, + { + "label": "auto_towing", + "content": "auto_towing" + }, + { + "label": "auto_transmission", + "content": "auto_transmission" + }, + { + "label": "autofps_select", + "content": "autofps_select" + }, + { + "label": "autopause", + "content": "autopause" + }, + { + "label": "autoplay", + "content": "autoplay" + }, + { + "label": "autorenew", + "content": "autorenew" + }, + { + "label": "autostop", + "content": "autostop" + }, + { + "label": "av1", + "content": "av1" + }, + { + "label": "av_timer", + "content": "av_timer" + }, + { + "label": "avc", + "content": "avc" + }, + { + "label": "avg_pace", + "content": "avg_pace" + }, + { + "label": "avg_time", + "content": "avg_time" + }, + { + "label": "award_star", + "content": "award_star" + }, + { + "label": "azm", + "content": "azm" + }, + { + "label": "baby_changing_station", + "content": "baby_changing_station" + }, + { + "label": "back_hand", + "content": "back_hand" + }, + { + "label": "back_to_tab", + "content": "back_to_tab" + }, + { + "label": "background_dot_large", + "content": "background_dot_large" + }, + { + "label": "background_dot_small", + "content": "background_dot_small" + }, + { + "label": "background_grid_small", + "content": "background_grid_small" + }, + { + "label": "background_replace", + "content": "background_replace" + }, + { + "label": "backlight_high", + "content": "backlight_high" + }, + { + "label": "backlight_high_off", + "content": "backlight_high_off" + }, + { + "label": "backlight_low", + "content": "backlight_low" + }, + { + "label": "backpack", + "content": "backpack" + }, + { + "label": "backspace", + "content": "backspace" + }, + { + "label": "backup", + "content": "backup" + }, + { + "label": "backup_table", + "content": "backup_table" + }, + { + "label": "badge", + "content": "badge" + }, + { + "label": "badge_critical_battery", + "content": "badge_critical_battery" + }, + { + "label": "bakery_dining", + "content": "bakery_dining" + }, + { + "label": "balance", + "content": "balance" + }, + { + "label": "balcony", + "content": "balcony" + }, + { + "label": "ballot", + "content": "ballot" + }, + { + "label": "bar_chart", + "content": "bar_chart" + }, + { + "label": "bar_chart_4_bars", + "content": "bar_chart_4_bars" + }, + { + "label": "barcode", + "content": "barcode" + }, + { + "label": "barcode_reader", + "content": "barcode_reader" + }, + { + "label": "barcode_scanner", + "content": "barcode_scanner" + }, + { + "label": "barefoot", + "content": "barefoot" + }, + { + "label": "batch_prediction", + "content": "batch_prediction" + }, + { + "label": "bath_outdoor", + "content": "bath_outdoor" + }, + { + "label": "bath_private", + "content": "bath_private" + }, + { + "label": "bath_public_large", + "content": "bath_public_large" + }, + { + "label": "bathroom", + "content": "bathroom" + }, + { + "label": "bathtub", + "content": "bathtub" + }, + { + "label": "battery_0_bar", + "content": "battery_0_bar" + }, + { + "label": "battery_1_bar", + "content": "battery_1_bar" + }, + { + "label": "battery_2_bar", + "content": "battery_2_bar" + }, + { + "label": "battery_3_bar", + "content": "battery_3_bar" + }, + { + "label": "battery_4_bar", + "content": "battery_4_bar" + }, + { + "label": "battery_5_bar", + "content": "battery_5_bar" + }, + { + "label": "battery_6_bar", + "content": "battery_6_bar" + }, + { + "label": "battery_alert", + "content": "battery_alert" + }, + { + "label": "battery_change", + "content": "battery_change" + }, + { + "label": "battery_charging_20", + "content": "battery_charging_20" + }, + { + "label": "battery_charging_30", + "content": "battery_charging_30" + }, + { + "label": "battery_charging_50", + "content": "battery_charging_50" + }, + { + "label": "battery_charging_60", + "content": "battery_charging_60" + }, + { + "label": "battery_charging_80", + "content": "battery_charging_80" + }, + { + "label": "battery_charging_90", + "content": "battery_charging_90" + }, + { + "label": "battery_charging_full", + "content": "battery_charging_full" + }, + { + "label": "battery_error", + "content": "battery_error" + }, + { + "label": "battery_full", + "content": "battery_full" + }, + { + "label": "battery_full_alt", + "content": "battery_full_alt" + }, + { + "label": "battery_horiz_000", + "content": "battery_horiz_000" + }, + { + "label": "battery_horiz_050", + "content": "battery_horiz_050" + }, + { + "label": "battery_horiz_075", + "content": "battery_horiz_075" + }, + { + "label": "battery_low", + "content": "battery_low" + }, + { + "label": "battery_plus", + "content": "battery_plus" + }, + { + "label": "battery_profile", + "content": "battery_profile" + }, + { + "label": "battery_saver", + "content": "battery_saver" + }, + { + "label": "battery_share", + "content": "battery_share" + }, + { + "label": "battery_status_good", + "content": "battery_status_good" + }, + { + "label": "battery_unknown", + "content": "battery_unknown" + }, + { + "label": "battery_very_low", + "content": "battery_very_low" + }, + { + "label": "beach_access", + "content": "beach_access" + }, + { + "label": "bed", + "content": "bed" + }, + { + "label": "bedroom_baby", + "content": "bedroom_baby" + }, + { + "label": "bedroom_child", + "content": "bedroom_child" + }, + { + "label": "bedroom_parent", + "content": "bedroom_parent" + }, + { + "label": "bedtime", + "content": "bedtime" + }, + { + "label": "bedtime_off", + "content": "bedtime_off" + }, + { + "label": "beenhere", + "content": "beenhere" + }, + { + "label": "bento", + "content": "bento" + }, + { + "label": "bia", + "content": "bia" + }, + { + "label": "bid_landscape", + "content": "bid_landscape" + }, + { + "label": "bid_landscape_disabled", + "content": "bid_landscape_disabled" + }, + { + "label": "bigtop_updates", + "content": "bigtop_updates" + }, + { + "label": "bike_dock", + "content": "bike_dock" + }, + { + "label": "bike_lane", + "content": "bike_lane" + }, + { + "label": "bike_scooter", + "content": "bike_scooter" + }, + { + "label": "biotech", + "content": "biotech" + }, + { + "label": "blanket", + "content": "blanket" + }, + { + "label": "blender", + "content": "blender" + }, + { + "label": "blind", + "content": "blind" + }, + { + "label": "blinds", + "content": "blinds" + }, + { + "label": "blinds_closed", + "content": "blinds_closed" + }, + { + "label": "block", + "content": "block" + }, + { + "label": "blood_pressure", + "content": "blood_pressure" + }, + { + "label": "bloodtype", + "content": "bloodtype" + }, + { + "label": "bluetooth", + "content": "bluetooth" + }, + { + "label": "bluetooth_connected", + "content": "bluetooth_connected" + }, + { + "label": "bluetooth_disabled", + "content": "bluetooth_disabled" + }, + { + "label": "bluetooth_drive", + "content": "bluetooth_drive" + }, + { + "label": "bluetooth_searching", + "content": "bluetooth_searching" + }, + { + "label": "blur_circular", + "content": "blur_circular" + }, + { + "label": "blur_linear", + "content": "blur_linear" + }, + { + "label": "blur_medium", + "content": "blur_medium" + }, + { + "label": "blur_off", + "content": "blur_off" + }, + { + "label": "blur_on", + "content": "blur_on" + }, + { + "label": "blur_short", + "content": "blur_short" + }, + { + "label": "body_fat", + "content": "body_fat" + }, + { + "label": "body_system", + "content": "body_system" + }, + { + "label": "bolt", + "content": "bolt" + }, + { + "label": "bomb", + "content": "bomb" + }, + { + "label": "book", + "content": "book" + }, + { + "label": "book_2", + "content": "book_2" + }, + { + "label": "book_3", + "content": "book_3" + }, + { + "label": "book_4", + "content": "book_4" + }, + { + "label": "book_5", + "content": "book_5" + }, + { + "label": "book_online", + "content": "book_online" + }, + { + "label": "bookmark", + "content": "bookmark" + }, + { + "label": "bookmark_add", + "content": "bookmark_add" + }, + { + "label": "bookmark_added", + "content": "bookmark_added" + }, + { + "label": "bookmark_check", + "content": "bookmark_check" + }, + { + "label": "bookmark_flag", + "content": "bookmark_flag" + }, + { + "label": "bookmark_heart", + "content": "bookmark_heart" + }, + { + "label": "bookmark_manager", + "content": "bookmark_manager" + }, + { + "label": "bookmark_remove", + "content": "bookmark_remove" + }, + { + "label": "bookmark_star", + "content": "bookmark_star" + }, + { + "label": "bookmarks", + "content": "bookmarks" + }, + { + "label": "border_all", + "content": "border_all" + }, + { + "label": "border_bottom", + "content": "border_bottom" + }, + { + "label": "border_clear", + "content": "border_clear" + }, + { + "label": "border_color", + "content": "border_color" + }, + { + "label": "border_horizontal", + "content": "border_horizontal" + }, + { + "label": "border_inner", + "content": "border_inner" + }, + { + "label": "border_left", + "content": "border_left" + }, + { + "label": "border_outer", + "content": "border_outer" + }, + { + "label": "border_right", + "content": "border_right" + }, + { + "label": "border_style", + "content": "border_style" + }, + { + "label": "border_top", + "content": "border_top" + }, + { + "label": "border_vertical", + "content": "border_vertical" + }, + { + "label": "bottom_app_bar", + "content": "bottom_app_bar" + }, + { + "label": "bottom_drawer", + "content": "bottom_drawer" + }, + { + "label": "bottom_navigation", + "content": "bottom_navigation" + }, + { + "label": "bottom_panel_close", + "content": "bottom_panel_close" + }, + { + "label": "bottom_panel_open", + "content": "bottom_panel_open" + }, + { + "label": "bottom_right_click", + "content": "bottom_right_click" + }, + { + "label": "bottom_sheets", + "content": "bottom_sheets" + }, + { + "label": "box", + "content": "box" + }, + { + "label": "box_add", + "content": "box_add" + }, + { + "label": "box_edit", + "content": "box_edit" + }, + { + "label": "boy", + "content": "boy" + }, + { + "label": "brand_awareness", + "content": "brand_awareness" + }, + { + "label": "brand_family", + "content": "brand_family" + }, + { + "label": "branding_watermark", + "content": "branding_watermark" + }, + { + "label": "breakfast_dining", + "content": "breakfast_dining" + }, + { + "label": "breaking_news", + "content": "breaking_news" + }, + { + "label": "breaking_news_alt_1", + "content": "breaking_news_alt_1" + }, + { + "label": "breastfeeding", + "content": "breastfeeding" + }, + { + "label": "brightness_1", + "content": "brightness_1" + }, + { + "label": "brightness_2", + "content": "brightness_2" + }, + { + "label": "brightness_3", + "content": "brightness_3" + }, + { + "label": "brightness_4", + "content": "brightness_4" + }, + { + "label": "brightness_5", + "content": "brightness_5" + }, + { + "label": "brightness_6", + "content": "brightness_6" + }, + { + "label": "brightness_7", + "content": "brightness_7" + }, + { + "label": "brightness_alert", + "content": "brightness_alert" + }, + { + "label": "brightness_auto", + "content": "brightness_auto" + }, + { + "label": "brightness_empty", + "content": "brightness_empty" + }, + { + "label": "brightness_high", + "content": "brightness_high" + }, + { + "label": "brightness_low", + "content": "brightness_low" + }, + { + "label": "brightness_medium", + "content": "brightness_medium" + }, + { + "label": "bring_your_own_ip", + "content": "bring_your_own_ip" + }, + { + "label": "broadcast_on_home", + "content": "broadcast_on_home" + }, + { + "label": "broadcast_on_personal", + "content": "broadcast_on_personal" + }, + { + "label": "broken_image", + "content": "broken_image" + }, + { + "label": "browse", + "content": "browse" + }, + { + "label": "browse_activity", + "content": "browse_activity" + }, + { + "label": "browse_gallery", + "content": "browse_gallery" + }, + { + "label": "browser_updated", + "content": "browser_updated" + }, + { + "label": "brunch_dining", + "content": "brunch_dining" + }, + { + "label": "brush", + "content": "brush" + }, + { + "label": "bubble", + "content": "bubble" + }, + { + "label": "bubble_chart", + "content": "bubble_chart" + }, + { + "label": "bubbles", + "content": "bubbles" + }, + { + "label": "bug_report", + "content": "bug_report" + }, + { + "label": "build", + "content": "build" + }, + { + "label": "build_circle", + "content": "build_circle" + }, + { + "label": "bungalow", + "content": "bungalow" + }, + { + "label": "burst_mode", + "content": "burst_mode" + }, + { + "label": "bus_alert", + "content": "bus_alert" + }, + { + "label": "business_center", + "content": "business_center" + }, + { + "label": "business_chip", + "content": "business_chip" + }, + { + "label": "business_messages", + "content": "business_messages" + }, + { + "label": "buttons_alt", + "content": "buttons_alt" + }, + { + "label": "cabin", + "content": "cabin" + }, + { + "label": "cable", + "content": "cable" + }, + { + "label": "cable_car", + "content": "cable_car" + }, + { + "label": "cached", + "content": "cached" + }, + { + "label": "cadence", + "content": "cadence" + }, + { + "label": "cake", + "content": "cake" + }, + { + "label": "cake_add", + "content": "cake_add" + }, + { + "label": "calculate", + "content": "calculate" + }, + { + "label": "calendar_add_on", + "content": "calendar_add_on" + }, + { + "label": "calendar_apps_script", + "content": "calendar_apps_script" + }, + { + "label": "calendar_clock", + "content": "calendar_clock" + }, + { + "label": "calendar_month", + "content": "calendar_month" + }, + { + "label": "calendar_today", + "content": "calendar_today" + }, + { + "label": "calendar_view_day", + "content": "calendar_view_day" + }, + { + "label": "calendar_view_month", + "content": "calendar_view_month" + }, + { + "label": "calendar_view_week", + "content": "calendar_view_week" + }, + { + "label": "call", + "content": "call" + }, + { + "label": "call_end", + "content": "call_end" + }, + { + "label": "call_log", + "content": "call_log" + }, + { + "label": "call_made", + "content": "call_made" + }, + { + "label": "call_merge", + "content": "call_merge" + }, + { + "label": "call_missed", + "content": "call_missed" + }, + { + "label": "call_missed_outgoing", + "content": "call_missed_outgoing" + }, + { + "label": "call_quality", + "content": "call_quality" + }, + { + "label": "call_received", + "content": "call_received" + }, + { + "label": "call_split", + "content": "call_split" + }, + { + "label": "call_to_action", + "content": "call_to_action" + }, + { + "label": "camera", + "content": "camera" + }, + { + "label": "camera_front", + "content": "camera_front" + }, + { + "label": "camera_indoor", + "content": "camera_indoor" + }, + { + "label": "camera_outdoor", + "content": "camera_outdoor" + }, + { + "label": "camera_rear", + "content": "camera_rear" + }, + { + "label": "camera_roll", + "content": "camera_roll" + }, + { + "label": "camera_video", + "content": "camera_video" + }, + { + "label": "cameraswitch", + "content": "cameraswitch" + }, + { + "label": "campaign", + "content": "campaign" + }, + { + "label": "camping", + "content": "camping" + }, + { + "label": "cancel", + "content": "cancel" + }, + { + "label": "cancel_presentation", + "content": "cancel_presentation" + }, + { + "label": "cancel_schedule_send", + "content": "cancel_schedule_send" + }, + { + "label": "candle", + "content": "candle" + }, + { + "label": "candlestick_chart", + "content": "candlestick_chart" + }, + { + "label": "captive_portal", + "content": "captive_portal" + }, + { + "label": "capture", + "content": "capture" + }, + { + "label": "car_crash", + "content": "car_crash" + }, + { + "label": "car_rental", + "content": "car_rental" + }, + { + "label": "car_repair", + "content": "car_repair" + }, + { + "label": "car_tag", + "content": "car_tag" + }, + { + "label": "card_membership", + "content": "card_membership" + }, + { + "label": "card_travel", + "content": "card_travel" + }, + { + "label": "cardio_load", + "content": "cardio_load" + }, + { + "label": "cardiology", + "content": "cardiology" + }, + { + "label": "cards", + "content": "cards" + }, + { + "label": "carpenter", + "content": "carpenter" + }, + { + "label": "carry_on_bag", + "content": "carry_on_bag" + }, + { + "label": "carry_on_bag_checked", + "content": "carry_on_bag_checked" + }, + { + "label": "carry_on_bag_inactive", + "content": "carry_on_bag_inactive" + }, + { + "label": "carry_on_bag_question", + "content": "carry_on_bag_question" + }, + { + "label": "cases", + "content": "cases" + }, + { + "label": "casino", + "content": "casino" + }, + { + "label": "cast", + "content": "cast" + }, + { + "label": "cast_connected", + "content": "cast_connected" + }, + { + "label": "cast_for_education", + "content": "cast_for_education" + }, + { + "label": "cast_pause", + "content": "cast_pause" + }, + { + "label": "cast_warning", + "content": "cast_warning" + }, + { + "label": "castle", + "content": "castle" + }, + { + "label": "category", + "content": "category" + }, + { + "label": "celebration", + "content": "celebration" + }, + { + "label": "cell_merge", + "content": "cell_merge" + }, + { + "label": "cell_tower", + "content": "cell_tower" + }, + { + "label": "cell_wifi", + "content": "cell_wifi" + }, + { + "label": "center_focus_strong", + "content": "center_focus_strong" + }, + { + "label": "center_focus_weak", + "content": "center_focus_weak" + }, + { + "label": "chair", + "content": "chair" + }, + { + "label": "chair_alt", + "content": "chair_alt" + }, + { + "label": "chalet", + "content": "chalet" + }, + { + "label": "change_circle", + "content": "change_circle" + }, + { + "label": "change_history", + "content": "change_history" + }, + { + "label": "charger", + "content": "charger" + }, + { + "label": "charging_station", + "content": "charging_station" + }, + { + "label": "chart_data", + "content": "chart_data" + }, + { + "label": "chat", + "content": "chat" + }, + { + "label": "chat_add_on", + "content": "chat_add_on" + }, + { + "label": "chat_apps_script", + "content": "chat_apps_script" + }, + { + "label": "chat_bubble", + "content": "chat_bubble" + }, + { + "label": "chat_error", + "content": "chat_error" + }, + { + "label": "chat_info", + "content": "chat_info" + }, + { + "label": "chat_paste_go", + "content": "chat_paste_go" + }, + { + "label": "check", + "content": "check" + }, + { + "label": "check_box", + "content": "check_box" + }, + { + "label": "check_box_outline_blank", + "content": "check_box_outline_blank" + }, + { + "label": "check_circle", + "content": "check_circle" + }, + { + "label": "check_in_out", + "content": "check_in_out" + }, + { + "label": "check_indeterminate_small", + "content": "check_indeterminate_small" + }, + { + "label": "check_small", + "content": "check_small" + }, + { + "label": "checkbook", + "content": "checkbook" + }, + { + "label": "checked_bag", + "content": "checked_bag" + }, + { + "label": "checked_bag_question", + "content": "checked_bag_question" + }, + { + "label": "checklist", + "content": "checklist" + }, + { + "label": "checklist_rtl", + "content": "checklist_rtl" + }, + { + "label": "checkroom", + "content": "checkroom" + }, + { + "label": "cheer", + "content": "cheer" + }, + { + "label": "chess", + "content": "chess" + }, + { + "label": "chevron_backward", + "content": "chevron_backward" + }, + { + "label": "chevron_forward", + "content": "chevron_forward" + }, + { + "label": "chevron_left", + "content": "chevron_left" + }, + { + "label": "chevron_right", + "content": "chevron_right" + }, + { + "label": "child_care", + "content": "child_care" + }, + { + "label": "child_friendly", + "content": "child_friendly" + }, + { + "label": "chip_extraction", + "content": "chip_extraction" + }, + { + "label": "chips", + "content": "chips" + }, + { + "label": "chrome_reader_mode", + "content": "chrome_reader_mode" + }, + { + "label": "chromecast_2", + "content": "chromecast_2" + }, + { + "label": "chromecast_device", + "content": "chromecast_device" + }, + { + "label": "chronic", + "content": "chronic" + }, + { + "label": "church", + "content": "church" + }, + { + "label": "cinematic_blur", + "content": "cinematic_blur" + }, + { + "label": "circle", + "content": "circle" + }, + { + "label": "circle_notifications", + "content": "circle_notifications" + }, + { + "label": "circles", + "content": "circles" + }, + { + "label": "circles_ext", + "content": "circles_ext" + }, + { + "label": "clarify", + "content": "clarify" + }, + { + "label": "clean_hands", + "content": "clean_hands" + }, + { + "label": "cleaning", + "content": "cleaning" + }, + { + "label": "cleaning_bucket", + "content": "cleaning_bucket" + }, + { + "label": "cleaning_services", + "content": "cleaning_services" + }, + { + "label": "clear_all", + "content": "clear_all" + }, + { + "label": "clear_day", + "content": "clear_day" + }, + { + "label": "clear_night", + "content": "clear_night" + }, + { + "label": "climate_mini_split", + "content": "climate_mini_split" + }, + { + "label": "clinical_notes", + "content": "clinical_notes" + }, + { + "label": "clock_loader_10", + "content": "clock_loader_10" + }, + { + "label": "clock_loader_20", + "content": "clock_loader_20" + }, + { + "label": "clock_loader_40", + "content": "clock_loader_40" + }, + { + "label": "clock_loader_60", + "content": "clock_loader_60" + }, + { + "label": "clock_loader_80", + "content": "clock_loader_80" + }, + { + "label": "clock_loader_90", + "content": "clock_loader_90" + }, + { + "label": "close", + "content": "close" + }, + { + "label": "close_fullscreen", + "content": "close_fullscreen" + }, + { + "label": "close_small", + "content": "close_small" + }, + { + "label": "closed_caption", + "content": "closed_caption" + }, + { + "label": "closed_caption_add", + "content": "closed_caption_add" + }, + { + "label": "closed_caption_disabled", + "content": "closed_caption_disabled" + }, + { + "label": "cloud", + "content": "cloud" + }, + { + "label": "cloud_circle", + "content": "cloud_circle" + }, + { + "label": "cloud_done", + "content": "cloud_done" + }, + { + "label": "cloud_download", + "content": "cloud_download" + }, + { + "label": "cloud_off", + "content": "cloud_off" + }, + { + "label": "cloud_sync", + "content": "cloud_sync" + }, + { + "label": "cloud_upload", + "content": "cloud_upload" + }, + { + "label": "cloudy_snowing", + "content": "cloudy_snowing" + }, + { + "label": "co2", + "content": "co2" + }, + { + "label": "co_present", + "content": "co_present" + }, + { + "label": "code", + "content": "code" + }, + { + "label": "code_blocks", + "content": "code_blocks" + }, + { + "label": "code_off", + "content": "code_off" + }, + { + "label": "coffee", + "content": "coffee" + }, + { + "label": "coffee_maker", + "content": "coffee_maker" + }, + { + "label": "cognition", + "content": "cognition" + }, + { + "label": "collapse_all", + "content": "collapse_all" + }, + { + "label": "collapse_content", + "content": "collapse_content" + }, + { + "label": "collections_bookmark", + "content": "collections_bookmark" + }, + { + "label": "colorize", + "content": "colorize" + }, + { + "label": "colors", + "content": "colors" + }, + { + "label": "comedy_mask", + "content": "comedy_mask" + }, + { + "label": "comic_bubble", + "content": "comic_bubble" + }, + { + "label": "comment", + "content": "comment" + }, + { + "label": "comment_bank", + "content": "comment_bank" + }, + { + "label": "comments_disabled", + "content": "comments_disabled" + }, + { + "label": "commit", + "content": "commit" + }, + { + "label": "communication", + "content": "communication" + }, + { + "label": "communities", + "content": "communities" + }, + { + "label": "commute", + "content": "commute" + }, + { + "label": "compare", + "content": "compare" + }, + { + "label": "compare_arrows", + "content": "compare_arrows" + }, + { + "label": "compass_calibration", + "content": "compass_calibration" + }, + { + "label": "component_exchange", + "content": "component_exchange" + }, + { + "label": "compost", + "content": "compost" + }, + { + "label": "compress", + "content": "compress" + }, + { + "label": "computer", + "content": "computer" + }, + { + "label": "concierge", + "content": "concierge" + }, + { + "label": "conditions", + "content": "conditions" + }, + { + "label": "confirmation_number", + "content": "confirmation_number" + }, + { + "label": "congenital", + "content": "congenital" + }, + { + "label": "connect_without_contact", + "content": "connect_without_contact" + }, + { + "label": "connected_tv", + "content": "connected_tv" + }, + { + "label": "connecting_airports", + "content": "connecting_airports" + }, + { + "label": "construction", + "content": "construction" + }, + { + "label": "contact_emergency", + "content": "contact_emergency" + }, + { + "label": "contact_mail", + "content": "contact_mail" + }, + { + "label": "contact_page", + "content": "contact_page" + }, + { + "label": "contact_phone", + "content": "contact_phone" + }, + { + "label": "contact_support", + "content": "contact_support" + }, + { + "label": "contactless", + "content": "contactless" + }, + { + "label": "contactless_off", + "content": "contactless_off" + }, + { + "label": "contacts", + "content": "contacts" + }, + { + "label": "contacts_product", + "content": "contacts_product" + }, + { + "label": "content_copy", + "content": "content_copy" + }, + { + "label": "content_cut", + "content": "content_cut" + }, + { + "label": "content_paste", + "content": "content_paste" + }, + { + "label": "content_paste_go", + "content": "content_paste_go" + }, + { + "label": "content_paste_off", + "content": "content_paste_off" + }, + { + "label": "content_paste_search", + "content": "content_paste_search" + }, + { + "label": "contextual_token", + "content": "contextual_token" + }, + { + "label": "contextual_token_add", + "content": "contextual_token_add" + }, + { + "label": "contract", + "content": "contract" + }, + { + "label": "contract_delete", + "content": "contract_delete" + }, + { + "label": "contract_edit", + "content": "contract_edit" + }, + { + "label": "contrast", + "content": "contrast" + }, + { + "label": "contrast_circle", + "content": "contrast_circle" + }, + { + "label": "contrast_rtl_off", + "content": "contrast_rtl_off" + }, + { + "label": "contrast_square", + "content": "contrast_square" + }, + { + "label": "control_camera", + "content": "control_camera" + }, + { + "label": "control_point_duplicate", + "content": "control_point_duplicate" + }, + { + "label": "controller_gen", + "content": "controller_gen" + }, + { + "label": "conversion_path", + "content": "conversion_path" + }, + { + "label": "conversion_path_off", + "content": "conversion_path_off" + }, + { + "label": "conveyor_belt", + "content": "conveyor_belt" + }, + { + "label": "cookie", + "content": "cookie" + }, + { + "label": "cookie_off", + "content": "cookie_off" + }, + { + "label": "cooking", + "content": "cooking" + }, + { + "label": "cool_to_dry", + "content": "cool_to_dry" + }, + { + "label": "copy_all", + "content": "copy_all" + }, + { + "label": "copyright", + "content": "copyright" + }, + { + "label": "coronavirus", + "content": "coronavirus" + }, + { + "label": "corporate_fare", + "content": "corporate_fare" + }, + { + "label": "cottage", + "content": "cottage" + }, + { + "label": "counter_0", + "content": "counter_0" + }, + { + "label": "counter_1", + "content": "counter_1" + }, + { + "label": "counter_2", + "content": "counter_2" + }, + { + "label": "counter_3", + "content": "counter_3" + }, + { + "label": "counter_4", + "content": "counter_4" + }, + { + "label": "counter_5", + "content": "counter_5" + }, + { + "label": "counter_6", + "content": "counter_6" + }, + { + "label": "counter_7", + "content": "counter_7" + }, + { + "label": "counter_8", + "content": "counter_8" + }, + { + "label": "counter_9", + "content": "counter_9" + }, + { + "label": "countertops", + "content": "countertops" + }, + { + "label": "create_new_folder", + "content": "create_new_folder" + }, + { + "label": "credit_card", + "content": "credit_card" + }, + { + "label": "credit_card_gear", + "content": "credit_card_gear" + }, + { + "label": "credit_card_heart", + "content": "credit_card_heart" + }, + { + "label": "credit_card_off", + "content": "credit_card_off" + }, + { + "label": "credit_score", + "content": "credit_score" + }, + { + "label": "crib", + "content": "crib" + }, + { + "label": "crisis_alert", + "content": "crisis_alert" + }, + { + "label": "crop", + "content": "crop" + }, + { + "label": "crop_16_9", + "content": "crop_16_9" + }, + { + "label": "crop_3_2", + "content": "crop_3_2" + }, + { + "label": "crop_5_4", + "content": "crop_5_4" + }, + { + "label": "crop_7_5", + "content": "crop_7_5" + }, + { + "label": "crop_9_16", + "content": "crop_9_16" + }, + { + "label": "crop_free", + "content": "crop_free" + }, + { + "label": "crop_landscape", + "content": "crop_landscape" + }, + { + "label": "crop_portrait", + "content": "crop_portrait" + }, + { + "label": "crop_rotate", + "content": "crop_rotate" + }, + { + "label": "crop_square", + "content": "crop_square" + }, + { + "label": "crossword", + "content": "crossword" + }, + { + "label": "crowdsource", + "content": "crowdsource" + }, + { + "label": "cruelty_free", + "content": "cruelty_free" + }, + { + "label": "css", + "content": "css" + }, + { + "label": "csv", + "content": "csv" + }, + { + "label": "currency_bitcoin", + "content": "currency_bitcoin" + }, + { + "label": "currency_exchange", + "content": "currency_exchange" + }, + { + "label": "currency_franc", + "content": "currency_franc" + }, + { + "label": "currency_lira", + "content": "currency_lira" + }, + { + "label": "currency_pound", + "content": "currency_pound" + }, + { + "label": "currency_ruble", + "content": "currency_ruble" + }, + { + "label": "currency_rupee", + "content": "currency_rupee" + }, + { + "label": "currency_rupee_circle", + "content": "currency_rupee_circle" + }, + { + "label": "currency_yen", + "content": "currency_yen" + }, + { + "label": "currency_yuan", + "content": "currency_yuan" + }, + { + "label": "curtains", + "content": "curtains" + }, + { + "label": "curtains_closed", + "content": "curtains_closed" + }, + { + "label": "custom_typography", + "content": "custom_typography" + }, + { + "label": "cycle", + "content": "cycle" + }, + { + "label": "cyclone", + "content": "cyclone" + }, + { + "label": "dangerous", + "content": "dangerous" + }, + { + "label": "dark_mode", + "content": "dark_mode" + }, + { + "label": "dashboard", + "content": "dashboard" + }, + { + "label": "dashboard_customize", + "content": "dashboard_customize" + }, + { + "label": "data_alert", + "content": "data_alert" + }, + { + "label": "data_array", + "content": "data_array" + }, + { + "label": "data_check", + "content": "data_check" + }, + { + "label": "data_exploration", + "content": "data_exploration" + }, + { + "label": "data_info_alert", + "content": "data_info_alert" + }, + { + "label": "data_loss_prevention", + "content": "data_loss_prevention" + }, + { + "label": "data_object", + "content": "data_object" + }, + { + "label": "data_saver_on", + "content": "data_saver_on" + }, + { + "label": "data_table", + "content": "data_table" + }, + { + "label": "data_thresholding", + "content": "data_thresholding" + }, + { + "label": "data_usage", + "content": "data_usage" + }, + { + "label": "database", + "content": "database" + }, + { + "label": "dataset", + "content": "dataset" + }, + { + "label": "dataset_linked", + "content": "dataset_linked" + }, + { + "label": "date_range", + "content": "date_range" + }, + { + "label": "deblur", + "content": "deblur" + }, + { + "label": "deceased", + "content": "deceased" + }, + { + "label": "decimal_decrease", + "content": "decimal_decrease" + }, + { + "label": "decimal_increase", + "content": "decimal_increase" + }, + { + "label": "deck", + "content": "deck" + }, + { + "label": "dehaze", + "content": "dehaze" + }, + { + "label": "delete", + "content": "delete" + }, + { + "label": "delete_forever", + "content": "delete_forever" + }, + { + "label": "delete_history", + "content": "delete_history" + }, + { + "label": "delete_sweep", + "content": "delete_sweep" + }, + { + "label": "demography", + "content": "demography" + }, + { + "label": "density_large", + "content": "density_large" + }, + { + "label": "density_medium", + "content": "density_medium" + }, + { + "label": "density_small", + "content": "density_small" + }, + { + "label": "dentistry", + "content": "dentistry" + }, + { + "label": "departure_board", + "content": "departure_board" + }, + { + "label": "deployed_code", + "content": "deployed_code" + }, + { + "label": "deployed_code_account", + "content": "deployed_code_account" + }, + { + "label": "deployed_code_alert", + "content": "deployed_code_alert" + }, + { + "label": "deployed_code_history", + "content": "deployed_code_history" + }, + { + "label": "deployed_code_update", + "content": "deployed_code_update" + }, + { + "label": "dermatology", + "content": "dermatology" + }, + { + "label": "description", + "content": "description" + }, + { + "label": "deselect", + "content": "deselect" + }, + { + "label": "design_services", + "content": "design_services" + }, + { + "label": "desk", + "content": "desk" + }, + { + "label": "deskphone", + "content": "deskphone" + }, + { + "label": "desktop_access_disabled", + "content": "desktop_access_disabled" + }, + { + "label": "desktop_landscape", + "content": "desktop_landscape" + }, + { + "label": "desktop_mac", + "content": "desktop_mac" + }, + { + "label": "desktop_portrait", + "content": "desktop_portrait" + }, + { + "label": "desktop_windows", + "content": "desktop_windows" + }, + { + "label": "destruction", + "content": "destruction" + }, + { + "label": "details", + "content": "details" + }, + { + "label": "detection_and_zone", + "content": "detection_and_zone" + }, + { + "label": "detector", + "content": "detector" + }, + { + "label": "detector_alarm", + "content": "detector_alarm" + }, + { + "label": "detector_battery", + "content": "detector_battery" + }, + { + "label": "detector_co", + "content": "detector_co" + }, + { + "label": "detector_offline", + "content": "detector_offline" + }, + { + "label": "detector_smoke", + "content": "detector_smoke" + }, + { + "label": "detector_status", + "content": "detector_status" + }, + { + "label": "developer_board", + "content": "developer_board" + }, + { + "label": "developer_board_off", + "content": "developer_board_off" + }, + { + "label": "developer_guide", + "content": "developer_guide" + }, + { + "label": "developer_mode", + "content": "developer_mode" + }, + { + "label": "developer_mode_tv", + "content": "developer_mode_tv" + }, + { + "label": "device_hub", + "content": "device_hub" + }, + { + "label": "device_reset", + "content": "device_reset" + }, + { + "label": "device_thermostat", + "content": "device_thermostat" + }, + { + "label": "device_unknown", + "content": "device_unknown" + }, + { + "label": "devices", + "content": "devices" + }, + { + "label": "devices_fold", + "content": "devices_fold" + }, + { + "label": "devices_off", + "content": "devices_off" + }, + { + "label": "devices_other", + "content": "devices_other" + }, + { + "label": "devices_wearables", + "content": "devices_wearables" + }, + { + "label": "dew_point", + "content": "dew_point" + }, + { + "label": "diagnosis", + "content": "diagnosis" + }, + { + "label": "dialer_sip", + "content": "dialer_sip" + }, + { + "label": "dialogs", + "content": "dialogs" + }, + { + "label": "dialpad", + "content": "dialpad" + }, + { + "label": "diamond", + "content": "diamond" + }, + { + "label": "dictionary", + "content": "dictionary" + }, + { + "label": "difference", + "content": "difference" + }, + { + "label": "digital_out_of_home", + "content": "digital_out_of_home" + }, + { + "label": "digital_wellbeing", + "content": "digital_wellbeing" + }, + { + "label": "dining", + "content": "dining" + }, + { + "label": "dinner_dining", + "content": "dinner_dining" + }, + { + "label": "directions", + "content": "directions" + }, + { + "label": "directions_alt", + "content": "directions_alt" + }, + { + "label": "directions_alt_off", + "content": "directions_alt_off" + }, + { + "label": "directions_bike", + "content": "directions_bike" + }, + { + "label": "directions_boat", + "content": "directions_boat" + }, + { + "label": "directions_bus", + "content": "directions_bus" + }, + { + "label": "directions_car", + "content": "directions_car" + }, + { + "label": "directions_off", + "content": "directions_off" + }, + { + "label": "directions_railway", + "content": "directions_railway" + }, + { + "label": "directions_railway_2", + "content": "directions_railway_2" + }, + { + "label": "directions_run", + "content": "directions_run" + }, + { + "label": "directions_subway", + "content": "directions_subway" + }, + { + "label": "directions_walk", + "content": "directions_walk" + }, + { + "label": "directory_sync", + "content": "directory_sync" + }, + { + "label": "dirty_lens", + "content": "dirty_lens" + }, + { + "label": "disabled_by_default", + "content": "disabled_by_default" + }, + { + "label": "disabled_visible", + "content": "disabled_visible" + }, + { + "label": "disc_full", + "content": "disc_full" + }, + { + "label": "discover_tune", + "content": "discover_tune" + }, + { + "label": "dishwasher", + "content": "dishwasher" + }, + { + "label": "dishwasher_gen", + "content": "dishwasher_gen" + }, + { + "label": "display_external_input", + "content": "display_external_input" + }, + { + "label": "display_settings", + "content": "display_settings" + }, + { + "label": "distance", + "content": "distance" + }, + { + "label": "diversity_1", + "content": "diversity_1" + }, + { + "label": "diversity_2", + "content": "diversity_2" + }, + { + "label": "diversity_3", + "content": "diversity_3" + }, + { + "label": "diversity_4", + "content": "diversity_4" + }, + { + "label": "dns", + "content": "dns" + }, + { + "label": "do_not_disturb_off", + "content": "do_not_disturb_off" + }, + { + "label": "do_not_disturb_on", + "content": "do_not_disturb_on" + }, + { + "label": "do_not_disturb_on_total_silence", + "content": "do_not_disturb_on_total_silence" + }, + { + "label": "do_not_step", + "content": "do_not_step" + }, + { + "label": "do_not_touch", + "content": "do_not_touch" + }, + { + "label": "dock", + "content": "dock" + }, + { + "label": "dock_to_bottom", + "content": "dock_to_bottom" + }, + { + "label": "dock_to_left", + "content": "dock_to_left" + }, + { + "label": "dock_to_right", + "content": "dock_to_right" + }, + { + "label": "docs_add_on", + "content": "docs_add_on" + }, + { + "label": "docs_apps_script", + "content": "docs_apps_script" + }, + { + "label": "document_scanner", + "content": "document_scanner" + }, + { + "label": "domain", + "content": "domain" + }, + { + "label": "domain_add", + "content": "domain_add" + }, + { + "label": "domain_disabled", + "content": "domain_disabled" + }, + { + "label": "domain_verification", + "content": "domain_verification" + }, + { + "label": "domain_verification_off", + "content": "domain_verification_off" + }, + { + "label": "domino_mask", + "content": "domino_mask" + }, + { + "label": "done_all", + "content": "done_all" + }, + { + "label": "done_outline", + "content": "done_outline" + }, + { + "label": "donut_large", + "content": "donut_large" + }, + { + "label": "donut_small", + "content": "donut_small" + }, + { + "label": "door_back", + "content": "door_back" + }, + { + "label": "door_front", + "content": "door_front" + }, + { + "label": "door_open", + "content": "door_open" + }, + { + "label": "door_sensor", + "content": "door_sensor" + }, + { + "label": "door_sliding", + "content": "door_sliding" + }, + { + "label": "doorbell", + "content": "doorbell" + }, + { + "label": "doorbell_3p", + "content": "doorbell_3p" + }, + { + "label": "doorbell_chime", + "content": "doorbell_chime" + }, + { + "label": "double_arrow", + "content": "double_arrow" + }, + { + "label": "downhill_skiing", + "content": "downhill_skiing" + }, + { + "label": "download", + "content": "download" + }, + { + "label": "download_2", + "content": "download_2" + }, + { + "label": "download_done", + "content": "download_done" + }, + { + "label": "download_for_offline", + "content": "download_for_offline" + }, + { + "label": "downloading", + "content": "downloading" + }, + { + "label": "draft", + "content": "draft" + }, + { + "label": "draft_orders", + "content": "draft_orders" + }, + { + "label": "drafts", + "content": "drafts" + }, + { + "label": "drag_click", + "content": "drag_click" + }, + { + "label": "drag_handle", + "content": "drag_handle" + }, + { + "label": "drag_indicator", + "content": "drag_indicator" + }, + { + "label": "drag_pan", + "content": "drag_pan" + }, + { + "label": "draw", + "content": "draw" + }, + { + "label": "draw_abstract", + "content": "draw_abstract" + }, + { + "label": "draw_collage", + "content": "draw_collage" + }, + { + "label": "dresser", + "content": "dresser" + }, + { + "label": "drive_file_move", + "content": "drive_file_move" + }, + { + "label": "drive_folder_upload", + "content": "drive_folder_upload" + }, + { + "label": "dropdown", + "content": "dropdown" + }, + { + "label": "dry", + "content": "dry" + }, + { + "label": "dry_cleaning", + "content": "dry_cleaning" + }, + { + "label": "dual_screen", + "content": "dual_screen" + }, + { + "label": "duo", + "content": "duo" + }, + { + "label": "dvr", + "content": "dvr" + }, + { + "label": "dynamic_feed", + "content": "dynamic_feed" + }, + { + "label": "dynamic_form", + "content": "dynamic_form" + }, + { + "label": "e911_avatar", + "content": "e911_avatar" + }, + { + "label": "e911_emergency", + "content": "e911_emergency" + }, + { + "label": "e_mobiledata", + "content": "e_mobiledata" + }, + { + "label": "e_mobiledata_badge", + "content": "e_mobiledata_badge" + }, + { + "label": "earbuds", + "content": "earbuds" + }, + { + "label": "earbuds_battery", + "content": "earbuds_battery" + }, + { + "label": "early_on", + "content": "early_on" + }, + { + "label": "earthquake", + "content": "earthquake" + }, + { + "label": "east", + "content": "east" + }, + { + "label": "ecg", + "content": "ecg" + }, + { + "label": "ecg_heart", + "content": "ecg_heart" + }, + { + "label": "eco", + "content": "eco" + }, + { + "label": "eda", + "content": "eda" + }, + { + "label": "edgesensor_high", + "content": "edgesensor_high" + }, + { + "label": "edgesensor_low", + "content": "edgesensor_low" + }, + { + "label": "edit", + "content": "edit" + }, + { + "label": "edit_attributes", + "content": "edit_attributes" + }, + { + "label": "edit_calendar", + "content": "edit_calendar" + }, + { + "label": "edit_document", + "content": "edit_document" + }, + { + "label": "edit_location", + "content": "edit_location" + }, + { + "label": "edit_location_alt", + "content": "edit_location_alt" + }, + { + "label": "edit_note", + "content": "edit_note" + }, + { + "label": "edit_notifications", + "content": "edit_notifications" + }, + { + "label": "edit_off", + "content": "edit_off" + }, + { + "label": "edit_road", + "content": "edit_road" + }, + { + "label": "edit_square", + "content": "edit_square" + }, + { + "label": "editor_choice", + "content": "editor_choice" + }, + { + "label": "egg", + "content": "egg" + }, + { + "label": "egg_alt", + "content": "egg_alt" + }, + { + "label": "eject", + "content": "eject" + }, + { + "label": "elderly", + "content": "elderly" + }, + { + "label": "elderly_woman", + "content": "elderly_woman" + }, + { + "label": "electric_bike", + "content": "electric_bike" + }, + { + "label": "electric_bolt", + "content": "electric_bolt" + }, + { + "label": "electric_car", + "content": "electric_car" + }, + { + "label": "electric_meter", + "content": "electric_meter" + }, + { + "label": "electric_moped", + "content": "electric_moped" + }, + { + "label": "electric_rickshaw", + "content": "electric_rickshaw" + }, + { + "label": "electric_scooter", + "content": "electric_scooter" + }, + { + "label": "electrical_services", + "content": "electrical_services" + }, + { + "label": "elevation", + "content": "elevation" + }, + { + "label": "elevator", + "content": "elevator" + }, + { + "label": "emergency", + "content": "emergency" + }, + { + "label": "emergency_heat", + "content": "emergency_heat" + }, + { + "label": "emergency_heat_2", + "content": "emergency_heat_2" + }, + { + "label": "emergency_home", + "content": "emergency_home" + }, + { + "label": "emergency_recording", + "content": "emergency_recording" + }, + { + "label": "emergency_share", + "content": "emergency_share" + }, + { + "label": "emergency_share_off", + "content": "emergency_share_off" + }, + { + "label": "emoji_events", + "content": "emoji_events" + }, + { + "label": "emoji_food_beverage", + "content": "emoji_food_beverage" + }, + { + "label": "emoji_language", + "content": "emoji_language" + }, + { + "label": "emoji_nature", + "content": "emoji_nature" + }, + { + "label": "emoji_objects", + "content": "emoji_objects" + }, + { + "label": "emoji_people", + "content": "emoji_people" + }, + { + "label": "emoji_symbols", + "content": "emoji_symbols" + }, + { + "label": "emoji_transportation", + "content": "emoji_transportation" + }, + { + "label": "emoticon", + "content": "emoticon" + }, + { + "label": "empty_dashboard", + "content": "empty_dashboard" + }, + { + "label": "enable", + "content": "enable" + }, + { + "label": "encrypted", + "content": "encrypted" + }, + { + "label": "endocrinology", + "content": "endocrinology" + }, + { + "label": "energy", + "content": "energy" + }, + { + "label": "energy_program_saving", + "content": "energy_program_saving" + }, + { + "label": "energy_program_time_used", + "content": "energy_program_time_used" + }, + { + "label": "energy_savings_leaf", + "content": "energy_savings_leaf" + }, + { + "label": "engineering", + "content": "engineering" + }, + { + "label": "enhanced_encryption", + "content": "enhanced_encryption" + }, + { + "label": "ent", + "content": "ent" + }, + { + "label": "enterprise", + "content": "enterprise" + }, + { + "label": "enterprise_off", + "content": "enterprise_off" + }, + { + "label": "equal", + "content": "equal" + }, + { + "label": "equalizer", + "content": "equalizer" + }, + { + "label": "error", + "content": "error" + }, + { + "label": "error_med", + "content": "error_med" + }, + { + "label": "escalator", + "content": "escalator" + }, + { + "label": "escalator_warning", + "content": "escalator_warning" + }, + { + "label": "euro", + "content": "euro" + }, + { + "label": "euro_symbol", + "content": "euro_symbol" + }, + { + "label": "ev_charger", + "content": "ev_charger" + }, + { + "label": "ev_mobiledata_badge", + "content": "ev_mobiledata_badge" + }, + { + "label": "ev_shadow", + "content": "ev_shadow" + }, + { + "label": "ev_shadow_add", + "content": "ev_shadow_add" + }, + { + "label": "ev_shadow_minus", + "content": "ev_shadow_minus" + }, + { + "label": "ev_station", + "content": "ev_station" + }, + { + "label": "event", + "content": "event" + }, + { + "label": "event_available", + "content": "event_available" + }, + { + "label": "event_busy", + "content": "event_busy" + }, + { + "label": "event_list", + "content": "event_list" + }, + { + "label": "event_note", + "content": "event_note" + }, + { + "label": "event_repeat", + "content": "event_repeat" + }, + { + "label": "event_seat", + "content": "event_seat" + }, + { + "label": "event_upcoming", + "content": "event_upcoming" + }, + { + "label": "exclamation", + "content": "exclamation" + }, + { + "label": "exercise", + "content": "exercise" + }, + { + "label": "exit_to_app", + "content": "exit_to_app" + }, + { + "label": "expand", + "content": "expand" + }, + { + "label": "expand_all", + "content": "expand_all" + }, + { + "label": "expand_circle_down", + "content": "expand_circle_down" + }, + { + "label": "expand_circle_right", + "content": "expand_circle_right" + }, + { + "label": "expand_circle_up", + "content": "expand_circle_up" + }, + { + "label": "expand_content", + "content": "expand_content" + }, + { + "label": "experiment", + "content": "experiment" + }, + { + "label": "explicit", + "content": "explicit" + }, + { + "label": "explore", + "content": "explore" + }, + { + "label": "explore_nearby", + "content": "explore_nearby" + }, + { + "label": "explore_off", + "content": "explore_off" + }, + { + "label": "explosion", + "content": "explosion" + }, + { + "label": "export_notes", + "content": "export_notes" + }, + { + "label": "exposure", + "content": "exposure" + }, + { + "label": "exposure_neg_1", + "content": "exposure_neg_1" + }, + { + "label": "exposure_neg_2", + "content": "exposure_neg_2" + }, + { + "label": "exposure_plus_1", + "content": "exposure_plus_1" + }, + { + "label": "exposure_plus_2", + "content": "exposure_plus_2" + }, + { + "label": "exposure_zero", + "content": "exposure_zero" + }, + { + "label": "extension", + "content": "extension" + }, + { + "label": "extension_off", + "content": "extension_off" + }, + { + "label": "eye_tracking", + "content": "eye_tracking" + }, + { + "label": "eyeglasses", + "content": "eyeglasses" + }, + { + "label": "face", + "content": "face" + }, + { + "label": "face_2", + "content": "face_2" + }, + { + "label": "face_3", + "content": "face_3" + }, + { + "label": "face_4", + "content": "face_4" + }, + { + "label": "face_5", + "content": "face_5" + }, + { + "label": "face_6", + "content": "face_6" + }, + { + "label": "face_retouching_off", + "content": "face_retouching_off" + }, + { + "label": "fact_check", + "content": "fact_check" + }, + { + "label": "factory", + "content": "factory" + }, + { + "label": "falling", + "content": "falling" + }, + { + "label": "familiar_face_and_zone", + "content": "familiar_face_and_zone" + }, + { + "label": "family_history", + "content": "family_history" + }, + { + "label": "family_home", + "content": "family_home" + }, + { + "label": "family_link", + "content": "family_link" + }, + { + "label": "family_restroom", + "content": "family_restroom" + }, + { + "label": "family_star", + "content": "family_star" + }, + { + "label": "farsight_digital", + "content": "farsight_digital" + }, + { + "label": "fast_forward", + "content": "fast_forward" + }, + { + "label": "fast_rewind", + "content": "fast_rewind" + }, + { + "label": "fastfood", + "content": "fastfood" + }, + { + "label": "faucet", + "content": "faucet" + }, + { + "label": "favorite", + "content": "favorite" + }, + { + "label": "fax", + "content": "fax" + }, + { + "label": "feature_search", + "content": "feature_search" + }, + { + "label": "featured_play_list", + "content": "featured_play_list" + }, + { + "label": "featured_seasonal_and_gifts", + "content": "featured_seasonal_and_gifts" + }, + { + "label": "featured_video", + "content": "featured_video" + }, + { + "label": "feedback", + "content": "feedback" + }, + { + "label": "female", + "content": "female" + }, + { + "label": "femur", + "content": "femur" + }, + { + "label": "femur_alt", + "content": "femur_alt" + }, + { + "label": "fence", + "content": "fence" + }, + { + "label": "fertile", + "content": "fertile" + }, + { + "label": "festival", + "content": "festival" + }, + { + "label": "fiber_dvr", + "content": "fiber_dvr" + }, + { + "label": "fiber_manual_record", + "content": "fiber_manual_record" + }, + { + "label": "fiber_new", + "content": "fiber_new" + }, + { + "label": "fiber_pin", + "content": "fiber_pin" + }, + { + "label": "fiber_smart_record", + "content": "fiber_smart_record" + }, + { + "label": "file_copy", + "content": "file_copy" + }, + { + "label": "file_copy_off", + "content": "file_copy_off" + }, + { + "label": "file_download_off", + "content": "file_download_off" + }, + { + "label": "file_map", + "content": "file_map" + }, + { + "label": "file_open", + "content": "file_open" + }, + { + "label": "file_present", + "content": "file_present" + }, + { + "label": "file_save", + "content": "file_save" + }, + { + "label": "file_save_off", + "content": "file_save_off" + }, + { + "label": "file_upload_off", + "content": "file_upload_off" + }, + { + "label": "filter", + "content": "filter" + }, + { + "label": "filter_1", + "content": "filter_1" + }, + { + "label": "filter_2", + "content": "filter_2" + }, + { + "label": "filter_3", + "content": "filter_3" + }, + { + "label": "filter_4", + "content": "filter_4" + }, + { + "label": "filter_5", + "content": "filter_5" + }, + { + "label": "filter_6", + "content": "filter_6" + }, + { + "label": "filter_7", + "content": "filter_7" + }, + { + "label": "filter_8", + "content": "filter_8" + }, + { + "label": "filter_9", + "content": "filter_9" + }, + { + "label": "filter_9_plus", + "content": "filter_9_plus" + }, + { + "label": "filter_alt", + "content": "filter_alt" + }, + { + "label": "filter_alt_off", + "content": "filter_alt_off" + }, + { + "label": "filter_b_and_w", + "content": "filter_b_and_w" + }, + { + "label": "filter_center_focus", + "content": "filter_center_focus" + }, + { + "label": "filter_drama", + "content": "filter_drama" + }, + { + "label": "filter_frames", + "content": "filter_frames" + }, + { + "label": "filter_hdr", + "content": "filter_hdr" + }, + { + "label": "filter_list", + "content": "filter_list" + }, + { + "label": "filter_list_off", + "content": "filter_list_off" + }, + { + "label": "filter_none", + "content": "filter_none" + }, + { + "label": "filter_retrolux", + "content": "filter_retrolux" + }, + { + "label": "filter_tilt_shift", + "content": "filter_tilt_shift" + }, + { + "label": "filter_vintage", + "content": "filter_vintage" + }, + { + "label": "finance", + "content": "finance" + }, + { + "label": "finance_chip", + "content": "finance_chip" + }, + { + "label": "finance_mode", + "content": "finance_mode" + }, + { + "label": "find_in_page", + "content": "find_in_page" + }, + { + "label": "find_replace", + "content": "find_replace" + }, + { + "label": "fingerprint", + "content": "fingerprint" + }, + { + "label": "fingerprint_off", + "content": "fingerprint_off" + }, + { + "label": "fire_extinguisher", + "content": "fire_extinguisher" + }, + { + "label": "fire_hydrant", + "content": "fire_hydrant" + }, + { + "label": "fire_truck", + "content": "fire_truck" + }, + { + "label": "fireplace", + "content": "fireplace" + }, + { + "label": "first_page", + "content": "first_page" + }, + { + "label": "fit_page", + "content": "fit_page" + }, + { + "label": "fit_screen", + "content": "fit_screen" + }, + { + "label": "fit_width", + "content": "fit_width" + }, + { + "label": "fitness_center", + "content": "fitness_center" + }, + { + "label": "fitness_tracker", + "content": "fitness_tracker" + }, + { + "label": "flag", + "content": "flag" + }, + { + "label": "flag_circle", + "content": "flag_circle" + }, + { + "label": "flaky", + "content": "flaky" + }, + { + "label": "flare", + "content": "flare" + }, + { + "label": "flash_auto", + "content": "flash_auto" + }, + { + "label": "flash_off", + "content": "flash_off" + }, + { + "label": "flash_on", + "content": "flash_on" + }, + { + "label": "flashlight_off", + "content": "flashlight_off" + }, + { + "label": "flashlight_on", + "content": "flashlight_on" + }, + { + "label": "flatware", + "content": "flatware" + }, + { + "label": "flex_direction", + "content": "flex_direction" + }, + { + "label": "flex_no_wrap", + "content": "flex_no_wrap" + }, + { + "label": "flex_wrap", + "content": "flex_wrap" + }, + { + "label": "flight", + "content": "flight" + }, + { + "label": "flight_class", + "content": "flight_class" + }, + { + "label": "flight_land", + "content": "flight_land" + }, + { + "label": "flight_takeoff", + "content": "flight_takeoff" + }, + { + "label": "flights_and_hotels", + "content": "flights_and_hotels" + }, + { + "label": "flightsmode", + "content": "flightsmode" + }, + { + "label": "flip", + "content": "flip" + }, + { + "label": "flip_camera_android", + "content": "flip_camera_android" + }, + { + "label": "flip_camera_ios", + "content": "flip_camera_ios" + }, + { + "label": "flip_to_back", + "content": "flip_to_back" + }, + { + "label": "flip_to_front", + "content": "flip_to_front" + }, + { + "label": "float_landscape_2", + "content": "float_landscape_2" + }, + { + "label": "float_portrait_2", + "content": "float_portrait_2" + }, + { + "label": "flood", + "content": "flood" + }, + { + "label": "floor", + "content": "floor" + }, + { + "label": "floor_lamp", + "content": "floor_lamp" + }, + { + "label": "flowsheet", + "content": "flowsheet" + }, + { + "label": "fluid", + "content": "fluid" + }, + { + "label": "fluid_balance", + "content": "fluid_balance" + }, + { + "label": "fluid_med", + "content": "fluid_med" + }, + { + "label": "fluorescent", + "content": "fluorescent" + }, + { + "label": "flutter", + "content": "flutter" + }, + { + "label": "flutter_dash", + "content": "flutter_dash" + }, + { + "label": "flyover", + "content": "flyover" + }, + { + "label": "fmd_bad", + "content": "fmd_bad" + }, + { + "label": "foggy", + "content": "foggy" + }, + { + "label": "folded_hands", + "content": "folded_hands" + }, + { + "label": "folder", + "content": "folder" + }, + { + "label": "folder_copy", + "content": "folder_copy" + }, + { + "label": "folder_data", + "content": "folder_data" + }, + { + "label": "folder_delete", + "content": "folder_delete" + }, + { + "label": "folder_limited", + "content": "folder_limited" + }, + { + "label": "folder_managed", + "content": "folder_managed" + }, + { + "label": "folder_off", + "content": "folder_off" + }, + { + "label": "folder_open", + "content": "folder_open" + }, + { + "label": "folder_shared", + "content": "folder_shared" + }, + { + "label": "folder_special", + "content": "folder_special" + }, + { + "label": "folder_supervised", + "content": "folder_supervised" + }, + { + "label": "folder_zip", + "content": "folder_zip" + }, + { + "label": "follow_the_signs", + "content": "follow_the_signs" + }, + { + "label": "font_download", + "content": "font_download" + }, + { + "label": "font_download_off", + "content": "font_download_off" + }, + { + "label": "food_bank", + "content": "food_bank" + }, + { + "label": "foot_bones", + "content": "foot_bones" + }, + { + "label": "footprint", + "content": "footprint" + }, + { + "label": "for_you", + "content": "for_you" + }, + { + "label": "forest", + "content": "forest" + }, + { + "label": "fork_left", + "content": "fork_left" + }, + { + "label": "fork_right", + "content": "fork_right" + }, + { + "label": "forklift", + "content": "forklift" + }, + { + "label": "format_align_center", + "content": "format_align_center" + }, + { + "label": "format_align_justify", + "content": "format_align_justify" + }, + { + "label": "format_align_left", + "content": "format_align_left" + }, + { + "label": "format_align_right", + "content": "format_align_right" + }, + { + "label": "format_bold", + "content": "format_bold" + }, + { + "label": "format_clear", + "content": "format_clear" + }, + { + "label": "format_color_fill", + "content": "format_color_fill" + }, + { + "label": "format_color_reset", + "content": "format_color_reset" + }, + { + "label": "format_color_text", + "content": "format_color_text" + }, + { + "label": "format_h1", + "content": "format_h1" + }, + { + "label": "format_h2", + "content": "format_h2" + }, + { + "label": "format_h3", + "content": "format_h3" + }, + { + "label": "format_h4", + "content": "format_h4" + }, + { + "label": "format_h5", + "content": "format_h5" + }, + { + "label": "format_h6", + "content": "format_h6" + }, + { + "label": "format_image_left", + "content": "format_image_left" + }, + { + "label": "format_image_right", + "content": "format_image_right" + }, + { + "label": "format_indent_decrease", + "content": "format_indent_decrease" + }, + { + "label": "format_indent_increase", + "content": "format_indent_increase" + }, + { + "label": "format_ink_highlighter", + "content": "format_ink_highlighter" + }, + { + "label": "format_italic", + "content": "format_italic" + }, + { + "label": "format_letter_spacing", + "content": "format_letter_spacing" + }, + { + "label": "format_letter_spacing_2", + "content": "format_letter_spacing_2" + }, + { + "label": "format_letter_spacing_standard", + "content": "format_letter_spacing_standard" + }, + { + "label": "format_letter_spacing_wide", + "content": "format_letter_spacing_wide" + }, + { + "label": "format_letter_spacing_wider", + "content": "format_letter_spacing_wider" + }, + { + "label": "format_line_spacing", + "content": "format_line_spacing" + }, + { + "label": "format_list_bulleted", + "content": "format_list_bulleted" + }, + { + "label": "format_list_bulleted_add", + "content": "format_list_bulleted_add" + }, + { + "label": "format_list_numbered", + "content": "format_list_numbered" + }, + { + "label": "format_list_numbered_rtl", + "content": "format_list_numbered_rtl" + }, + { + "label": "format_overline", + "content": "format_overline" + }, + { + "label": "format_paint", + "content": "format_paint" + }, + { + "label": "format_paragraph", + "content": "format_paragraph" + }, + { + "label": "format_quote", + "content": "format_quote" + }, + { + "label": "format_shapes", + "content": "format_shapes" + }, + { + "label": "format_size", + "content": "format_size" + }, + { + "label": "format_strikethrough", + "content": "format_strikethrough" + }, + { + "label": "format_text_clip", + "content": "format_text_clip" + }, + { + "label": "format_text_overflow", + "content": "format_text_overflow" + }, + { + "label": "format_text_wrap", + "content": "format_text_wrap" + }, + { + "label": "format_textdirection_l_to_r", + "content": "format_textdirection_l_to_r" + }, + { + "label": "format_textdirection_r_to_l", + "content": "format_textdirection_r_to_l" + }, + { + "label": "format_textdirection_vertical", + "content": "format_textdirection_vertical" + }, + { + "label": "format_underlined", + "content": "format_underlined" + }, + { + "label": "format_underlined_squiggle", + "content": "format_underlined_squiggle" + }, + { + "label": "forms_add_on", + "content": "forms_add_on" + }, + { + "label": "forms_apps_script", + "content": "forms_apps_script" + }, + { + "label": "fort", + "content": "fort" + }, + { + "label": "forum", + "content": "forum" + }, + { + "label": "forward", + "content": "forward" + }, + { + "label": "forward_10", + "content": "forward_10" + }, + { + "label": "forward_30", + "content": "forward_30" + }, + { + "label": "forward_5", + "content": "forward_5" + }, + { + "label": "forward_circle", + "content": "forward_circle" + }, + { + "label": "forward_media", + "content": "forward_media" + }, + { + "label": "forward_to_inbox", + "content": "forward_to_inbox" + }, + { + "label": "foundation", + "content": "foundation" + }, + { + "label": "frame_inspect", + "content": "frame_inspect" + }, + { + "label": "frame_person", + "content": "frame_person" + }, + { + "label": "frame_person_mic", + "content": "frame_person_mic" + }, + { + "label": "frame_person_off", + "content": "frame_person_off" + }, + { + "label": "frame_reload", + "content": "frame_reload" + }, + { + "label": "frame_source", + "content": "frame_source" + }, + { + "label": "free_cancellation", + "content": "free_cancellation" + }, + { + "label": "front_hand", + "content": "front_hand" + }, + { + "label": "front_loader", + "content": "front_loader" + }, + { + "label": "full_coverage", + "content": "full_coverage" + }, + { + "label": "full_hd", + "content": "full_hd" + }, + { + "label": "full_stacked_bar_chart", + "content": "full_stacked_bar_chart" + }, + { + "label": "fullscreen", + "content": "fullscreen" + }, + { + "label": "fullscreen_exit", + "content": "fullscreen_exit" + }, + { + "label": "fullscreen_portrait", + "content": "fullscreen_portrait" + }, + { + "label": "function", + "content": "function" + }, + { + "label": "functions", + "content": "functions" + }, + { + "label": "funicular", + "content": "funicular" + }, + { + "label": "g_mobiledata", + "content": "g_mobiledata" + }, + { + "label": "g_mobiledata_badge", + "content": "g_mobiledata_badge" + }, + { + "label": "g_translate", + "content": "g_translate" + }, + { + "label": "gallery_thumbnail", + "content": "gallery_thumbnail" + }, + { + "label": "gamepad", + "content": "gamepad" + }, + { + "label": "garage", + "content": "garage" + }, + { + "label": "garage_door", + "content": "garage_door" + }, + { + "label": "garage_home", + "content": "garage_home" + }, + { + "label": "garden_cart", + "content": "garden_cart" + }, + { + "label": "gas_meter", + "content": "gas_meter" + }, + { + "label": "gastroenterology", + "content": "gastroenterology" + }, + { + "label": "gate", + "content": "gate" + }, + { + "label": "gavel", + "content": "gavel" + }, + { + "label": "general_device", + "content": "general_device" + }, + { + "label": "genetics", + "content": "genetics" + }, + { + "label": "genres", + "content": "genres" + }, + { + "label": "gesture", + "content": "gesture" + }, + { + "label": "gesture_select", + "content": "gesture_select" + }, + { + "label": "gif", + "content": "gif" + }, + { + "label": "gif_box", + "content": "gif_box" + }, + { + "label": "girl", + "content": "girl" + }, + { + "label": "gite", + "content": "gite" + }, + { + "label": "glass_cup", + "content": "glass_cup" + }, + { + "label": "globe", + "content": "globe" + }, + { + "label": "globe_asia", + "content": "globe_asia" + }, + { + "label": "globe_uk", + "content": "globe_uk" + }, + { + "label": "glucose", + "content": "glucose" + }, + { + "label": "glyphs", + "content": "glyphs" + }, + { + "label": "go_to_line", + "content": "go_to_line" + }, + { + "label": "golf_course", + "content": "golf_course" + }, + { + "label": "gondola_lift", + "content": "gondola_lift" + }, + { + "label": "google_home_devices", + "content": "google_home_devices" + }, + { + "label": "google_tv_remote", + "content": "google_tv_remote" + }, + { + "label": "google_wifi", + "content": "google_wifi" + }, + { + "label": "gpp_bad", + "content": "gpp_bad" + }, + { + "label": "gpp_maybe", + "content": "gpp_maybe" + }, + { + "label": "grade", + "content": "grade" + }, + { + "label": "gradient", + "content": "gradient" + }, + { + "label": "grading", + "content": "grading" + }, + { + "label": "grain", + "content": "grain" + }, + { + "label": "graphic_eq", + "content": "graphic_eq" + }, + { + "label": "grass", + "content": "grass" + }, + { + "label": "grid_3x3", + "content": "grid_3x3" + }, + { + "label": "grid_3x3_off", + "content": "grid_3x3_off" + }, + { + "label": "grid_4x4", + "content": "grid_4x4" + }, + { + "label": "grid_goldenratio", + "content": "grid_goldenratio" + }, + { + "label": "grid_guides", + "content": "grid_guides" + }, + { + "label": "grid_off", + "content": "grid_off" + }, + { + "label": "grid_on", + "content": "grid_on" + }, + { + "label": "grid_view", + "content": "grid_view" + }, + { + "label": "grocery", + "content": "grocery" + }, + { + "label": "group", + "content": "group" + }, + { + "label": "group_add", + "content": "group_add" + }, + { + "label": "group_off", + "content": "group_off" + }, + { + "label": "group_remove", + "content": "group_remove" + }, + { + "label": "group_work", + "content": "group_work" + }, + { + "label": "grouped_bar_chart", + "content": "grouped_bar_chart" + }, + { + "label": "groups", + "content": "groups" + }, + { + "label": "groups_2", + "content": "groups_2" + }, + { + "label": "groups_3", + "content": "groups_3" + }, + { + "label": "guardian", + "content": "guardian" + }, + { + "label": "gynecology", + "content": "gynecology" + }, + { + "label": "h_mobiledata", + "content": "h_mobiledata" + }, + { + "label": "h_mobiledata_badge", + "content": "h_mobiledata_badge" + }, + { + "label": "h_plus_mobiledata", + "content": "h_plus_mobiledata" + }, + { + "label": "h_plus_mobiledata_badge", + "content": "h_plus_mobiledata_badge" + }, + { + "label": "hail", + "content": "hail" + }, + { + "label": "hallway", + "content": "hallway" + }, + { + "label": "hand_bones", + "content": "hand_bones" + }, + { + "label": "hand_gesture", + "content": "hand_gesture" + }, + { + "label": "handheld_controller", + "content": "handheld_controller" + }, + { + "label": "handshake", + "content": "handshake" + }, + { + "label": "handyman", + "content": "handyman" + }, + { + "label": "hangout_video", + "content": "hangout_video" + }, + { + "label": "hangout_video_off", + "content": "hangout_video_off" + }, + { + "label": "hard_drive", + "content": "hard_drive" + }, + { + "label": "hard_drive_2", + "content": "hard_drive_2" + }, + { + "label": "hardware", + "content": "hardware" + }, + { + "label": "hd", + "content": "hd" + }, + { + "label": "hdr_auto", + "content": "hdr_auto" + }, + { + "label": "hdr_auto_select", + "content": "hdr_auto_select" + }, + { + "label": "hdr_enhanced_select", + "content": "hdr_enhanced_select" + }, + { + "label": "hdr_off", + "content": "hdr_off" + }, + { + "label": "hdr_off_select", + "content": "hdr_off_select" + }, + { + "label": "hdr_on", + "content": "hdr_on" + }, + { + "label": "hdr_on_select", + "content": "hdr_on_select" + }, + { + "label": "hdr_plus", + "content": "hdr_plus" + }, + { + "label": "hdr_plus_off", + "content": "hdr_plus_off" + }, + { + "label": "hdr_strong", + "content": "hdr_strong" + }, + { + "label": "hdr_weak", + "content": "hdr_weak" + }, + { + "label": "head_mounted_device", + "content": "head_mounted_device" + }, + { + "label": "headphones", + "content": "headphones" + }, + { + "label": "headphones_battery", + "content": "headphones_battery" + }, + { + "label": "headset_mic", + "content": "headset_mic" + }, + { + "label": "headset_off", + "content": "headset_off" + }, + { + "label": "healing", + "content": "healing" + }, + { + "label": "health_and_beauty", + "content": "health_and_beauty" + }, + { + "label": "health_and_safety", + "content": "health_and_safety" + }, + { + "label": "health_metrics", + "content": "health_metrics" + }, + { + "label": "heap_snapshot_large", + "content": "heap_snapshot_large" + }, + { + "label": "heap_snapshot_multiple", + "content": "heap_snapshot_multiple" + }, + { + "label": "heap_snapshot_thumbnail", + "content": "heap_snapshot_thumbnail" + }, + { + "label": "hearing", + "content": "hearing" + }, + { + "label": "hearing_aid", + "content": "hearing_aid" + }, + { + "label": "hearing_disabled", + "content": "hearing_disabled" + }, + { + "label": "heart_broken", + "content": "heart_broken" + }, + { + "label": "heart_check", + "content": "heart_check" + }, + { + "label": "heart_minus", + "content": "heart_minus" + }, + { + "label": "heart_plus", + "content": "heart_plus" + }, + { + "label": "heat", + "content": "heat" + }, + { + "label": "heat_pump", + "content": "heat_pump" + }, + { + "label": "heat_pump_balance", + "content": "heat_pump_balance" + }, + { + "label": "height", + "content": "height" + }, + { + "label": "helicopter", + "content": "helicopter" + }, + { + "label": "help", + "content": "help" + }, + { + "label": "help_center", + "content": "help_center" + }, + { + "label": "help_clinic", + "content": "help_clinic" + }, + { + "label": "hematology", + "content": "hematology" + }, + { + "label": "hevc", + "content": "hevc" + }, + { + "label": "hexagon", + "content": "hexagon" + }, + { + "label": "hide", + "content": "hide" + }, + { + "label": "hide_image", + "content": "hide_image" + }, + { + "label": "hide_source", + "content": "hide_source" + }, + { + "label": "high_density", + "content": "high_density" + }, + { + "label": "high_quality", + "content": "high_quality" + }, + { + "label": "high_res", + "content": "high_res" + }, + { + "label": "highlight", + "content": "highlight" + }, + { + "label": "highlight_keyboard_focus", + "content": "highlight_keyboard_focus" + }, + { + "label": "highlight_mouse_cursor", + "content": "highlight_mouse_cursor" + }, + { + "label": "highlight_text_cursor", + "content": "highlight_text_cursor" + }, + { + "label": "highlighter_size_1", + "content": "highlighter_size_1" + }, + { + "label": "highlighter_size_2", + "content": "highlighter_size_2" + }, + { + "label": "highlighter_size_3", + "content": "highlighter_size_3" + }, + { + "label": "highlighter_size_4", + "content": "highlighter_size_4" + }, + { + "label": "highlighter_size_5", + "content": "highlighter_size_5" + }, + { + "label": "hiking", + "content": "hiking" + }, + { + "label": "history", + "content": "history" + }, + { + "label": "history_edu", + "content": "history_edu" + }, + { + "label": "history_off", + "content": "history_off" + }, + { + "label": "history_toggle_off", + "content": "history_toggle_off" + }, + { + "label": "hive", + "content": "hive" + }, + { + "label": "hls", + "content": "hls" + }, + { + "label": "hls_off", + "content": "hls_off" + }, + { + "label": "holiday_village", + "content": "holiday_village" + }, + { + "label": "home", + "content": "home" + }, + { + "label": "home_and_garden", + "content": "home_and_garden" + }, + { + "label": "home_app_logo", + "content": "home_app_logo" + }, + { + "label": "home_health", + "content": "home_health" + }, + { + "label": "home_improvement_and_tools", + "content": "home_improvement_and_tools" + }, + { + "label": "home_iot_device", + "content": "home_iot_device" + }, + { + "label": "home_max", + "content": "home_max" + }, + { + "label": "home_max_dots", + "content": "home_max_dots" + }, + { + "label": "home_mini", + "content": "home_mini" + }, + { + "label": "home_pin", + "content": "home_pin" + }, + { + "label": "home_repair_service", + "content": "home_repair_service" + }, + { + "label": "home_speaker", + "content": "home_speaker" + }, + { + "label": "home_storage", + "content": "home_storage" + }, + { + "label": "home_work", + "content": "home_work" + }, + { + "label": "horizontal_distribute", + "content": "horizontal_distribute" + }, + { + "label": "horizontal_rule", + "content": "horizontal_rule" + }, + { + "label": "horizontal_split", + "content": "horizontal_split" + }, + { + "label": "hot_tub", + "content": "hot_tub" + }, + { + "label": "hotel", + "content": "hotel" + }, + { + "label": "hotel_class", + "content": "hotel_class" + }, + { + "label": "hourglass", + "content": "hourglass" + }, + { + "label": "hourglass_bottom", + "content": "hourglass_bottom" + }, + { + "label": "hourglass_disabled", + "content": "hourglass_disabled" + }, + { + "label": "hourglass_empty", + "content": "hourglass_empty" + }, + { + "label": "hourglass_top", + "content": "hourglass_top" + }, + { + "label": "house", + "content": "house" + }, + { + "label": "house_siding", + "content": "house_siding" + }, + { + "label": "house_with_shield", + "content": "house_with_shield" + }, + { + "label": "houseboat", + "content": "houseboat" + }, + { + "label": "household_supplies", + "content": "household_supplies" + }, + { + "label": "hov", + "content": "hov" + }, + { + "label": "how_to_reg", + "content": "how_to_reg" + }, + { + "label": "how_to_vote", + "content": "how_to_vote" + }, + { + "label": "hr_resting", + "content": "hr_resting" + }, + { + "label": "html", + "content": "html" + }, + { + "label": "http", + "content": "http" + }, + { + "label": "hub", + "content": "hub" + }, + { + "label": "humerus", + "content": "humerus" + }, + { + "label": "humerus_alt", + "content": "humerus_alt" + }, + { + "label": "humidity_high", + "content": "humidity_high" + }, + { + "label": "humidity_indoor", + "content": "humidity_indoor" + }, + { + "label": "humidity_low", + "content": "humidity_low" + }, + { + "label": "humidity_mid", + "content": "humidity_mid" + }, + { + "label": "humidity_percentage", + "content": "humidity_percentage" + }, + { + "label": "hvac", + "content": "hvac" + }, + { + "label": "ice_skating", + "content": "ice_skating" + }, + { + "label": "icecream", + "content": "icecream" + }, + { + "label": "id_card", + "content": "id_card" + }, + { + "label": "ifl", + "content": "ifl" + }, + { + "label": "iframe", + "content": "iframe" + }, + { + "label": "iframe_off", + "content": "iframe_off" + }, + { + "label": "image", + "content": "image" + }, + { + "label": "image_aspect_ratio", + "content": "image_aspect_ratio" + }, + { + "label": "image_search", + "content": "image_search" + }, + { + "label": "imagesearch_roller", + "content": "imagesearch_roller" + }, + { + "label": "imagesmode", + "content": "imagesmode" + }, + { + "label": "immunology", + "content": "immunology" + }, + { + "label": "import_contacts", + "content": "import_contacts" + }, + { + "label": "important_devices", + "content": "important_devices" + }, + { + "label": "in_home_mode", + "content": "in_home_mode" + }, + { + "label": "inactive_order", + "content": "inactive_order" + }, + { + "label": "inbox", + "content": "inbox" + }, + { + "label": "inbox_customize", + "content": "inbox_customize" + }, + { + "label": "incomplete_circle", + "content": "incomplete_circle" + }, + { + "label": "indeterminate_check_box", + "content": "indeterminate_check_box" + }, + { + "label": "indeterminate_question_box", + "content": "indeterminate_question_box" + }, + { + "label": "info", + "content": "info" + }, + { + "label": "info_i", + "content": "info_i" + }, + { + "label": "infrared", + "content": "infrared" + }, + { + "label": "ink_eraser", + "content": "ink_eraser" + }, + { + "label": "ink_eraser_off", + "content": "ink_eraser_off" + }, + { + "label": "ink_highlighter", + "content": "ink_highlighter" + }, + { + "label": "ink_highlighter_move", + "content": "ink_highlighter_move" + }, + { + "label": "ink_marker", + "content": "ink_marker" + }, + { + "label": "ink_pen", + "content": "ink_pen" + }, + { + "label": "inpatient", + "content": "inpatient" + }, + { + "label": "input", + "content": "input" + }, + { + "label": "input_circle", + "content": "input_circle" + }, + { + "label": "insert_chart", + "content": "insert_chart" + }, + { + "label": "insert_page_break", + "content": "insert_page_break" + }, + { + "label": "insert_text", + "content": "insert_text" + }, + { + "label": "install_desktop", + "content": "install_desktop" + }, + { + "label": "install_mobile", + "content": "install_mobile" + }, + { + "label": "instant_mix", + "content": "instant_mix" + }, + { + "label": "integration_instructions", + "content": "integration_instructions" + }, + { + "label": "interactive_space", + "content": "interactive_space" + }, + { + "label": "interests", + "content": "interests" + }, + { + "label": "interpreter_mode", + "content": "interpreter_mode" + }, + { + "label": "inventory", + "content": "inventory" + }, + { + "label": "inventory_2", + "content": "inventory_2" + }, + { + "label": "invert_colors", + "content": "invert_colors" + }, + { + "label": "invert_colors_off", + "content": "invert_colors_off" + }, + { + "label": "ios", + "content": "ios" + }, + { + "label": "ios_share", + "content": "ios_share" + }, + { + "label": "iron", + "content": "iron" + }, + { + "label": "jamboard_kiosk", + "content": "jamboard_kiosk" + }, + { + "label": "javascript", + "content": "javascript" + }, + { + "label": "join", + "content": "join" + }, + { + "label": "join_inner", + "content": "join_inner" + }, + { + "label": "join_left", + "content": "join_left" + }, + { + "label": "join_right", + "content": "join_right" + }, + { + "label": "joystick", + "content": "joystick" + }, + { + "label": "jump_to_element", + "content": "jump_to_element" + }, + { + "label": "kayaking", + "content": "kayaking" + }, + { + "label": "kebab_dining", + "content": "kebab_dining" + }, + { + "label": "keep", + "content": "keep" + }, + { + "label": "keep_off", + "content": "keep_off" + }, + { + "label": "keep_public", + "content": "keep_public" + }, + { + "label": "kettle", + "content": "kettle" + }, + { + "label": "key", + "content": "key" + }, + { + "label": "key_off", + "content": "key_off" + }, + { + "label": "key_vertical", + "content": "key_vertical" + }, + { + "label": "key_visualizer", + "content": "key_visualizer" + }, + { + "label": "keyboard", + "content": "keyboard" + }, + { + "label": "keyboard_alt", + "content": "keyboard_alt" + }, + { + "label": "keyboard_arrow_down", + "content": "keyboard_arrow_down" + }, + { + "label": "keyboard_arrow_left", + "content": "keyboard_arrow_left" + }, + { + "label": "keyboard_arrow_right", + "content": "keyboard_arrow_right" + }, + { + "label": "keyboard_arrow_up", + "content": "keyboard_arrow_up" + }, + { + "label": "keyboard_backspace", + "content": "keyboard_backspace" + }, + { + "label": "keyboard_capslock", + "content": "keyboard_capslock" + }, + { + "label": "keyboard_capslock_badge", + "content": "keyboard_capslock_badge" + }, + { + "label": "keyboard_command_key", + "content": "keyboard_command_key" + }, + { + "label": "keyboard_control_key", + "content": "keyboard_control_key" + }, + { + "label": "keyboard_double_arrow_down", + "content": "keyboard_double_arrow_down" + }, + { + "label": "keyboard_double_arrow_left", + "content": "keyboard_double_arrow_left" + }, + { + "label": "keyboard_double_arrow_right", + "content": "keyboard_double_arrow_right" + }, + { + "label": "keyboard_double_arrow_up", + "content": "keyboard_double_arrow_up" + }, + { + "label": "keyboard_external_input", + "content": "keyboard_external_input" + }, + { + "label": "keyboard_full", + "content": "keyboard_full" + }, + { + "label": "keyboard_hide", + "content": "keyboard_hide" + }, + { + "label": "keyboard_keys", + "content": "keyboard_keys" + }, + { + "label": "keyboard_lock", + "content": "keyboard_lock" + }, + { + "label": "keyboard_lock_off", + "content": "keyboard_lock_off" + }, + { + "label": "keyboard_off", + "content": "keyboard_off" + }, + { + "label": "keyboard_onscreen", + "content": "keyboard_onscreen" + }, + { + "label": "keyboard_option_key", + "content": "keyboard_option_key" + }, + { + "label": "keyboard_previous_language", + "content": "keyboard_previous_language" + }, + { + "label": "keyboard_return", + "content": "keyboard_return" + }, + { + "label": "keyboard_tab", + "content": "keyboard_tab" + }, + { + "label": "keyboard_tab_rtl", + "content": "keyboard_tab_rtl" + }, + { + "label": "kid_star", + "content": "kid_star" + }, + { + "label": "king_bed", + "content": "king_bed" + }, + { + "label": "kitchen", + "content": "kitchen" + }, + { + "label": "kitesurfing", + "content": "kitesurfing" + }, + { + "label": "lab_panel", + "content": "lab_panel" + }, + { + "label": "lab_profile", + "content": "lab_profile" + }, + { + "label": "lab_research", + "content": "lab_research" + }, + { + "label": "label", + "content": "label" + }, + { + "label": "label_important", + "content": "label_important" + }, + { + "label": "label_off", + "content": "label_off" + }, + { + "label": "labs", + "content": "labs" + }, + { + "label": "lan", + "content": "lan" + }, + { + "label": "landscape", + "content": "landscape" + }, + { + "label": "landscape_2", + "content": "landscape_2" + }, + { + "label": "landscape_2_off", + "content": "landscape_2_off" + }, + { + "label": "landslide", + "content": "landslide" + }, + { + "label": "language", + "content": "language" + }, + { + "label": "language_chinese_array", + "content": "language_chinese_array" + }, + { + "label": "language_chinese_cangjie", + "content": "language_chinese_cangjie" + }, + { + "label": "language_chinese_dayi", + "content": "language_chinese_dayi" + }, + { + "label": "language_chinese_pinyin", + "content": "language_chinese_pinyin" + }, + { + "label": "language_chinese_quick", + "content": "language_chinese_quick" + }, + { + "label": "language_chinese_wubi", + "content": "language_chinese_wubi" + }, + { + "label": "language_french", + "content": "language_french" + }, + { + "label": "language_gb_english", + "content": "language_gb_english" + }, + { + "label": "language_international", + "content": "language_international" + }, + { + "label": "language_japanese_kana", + "content": "language_japanese_kana" + }, + { + "label": "language_korean_latin", + "content": "language_korean_latin" + }, + { + "label": "language_pinyin", + "content": "language_pinyin" + }, + { + "label": "language_spanish", + "content": "language_spanish" + }, + { + "label": "language_us", + "content": "language_us" + }, + { + "label": "language_us_colemak", + "content": "language_us_colemak" + }, + { + "label": "language_us_dvorak", + "content": "language_us_dvorak" + }, + { + "label": "laps", + "content": "laps" + }, + { + "label": "laptop_chromebook", + "content": "laptop_chromebook" + }, + { + "label": "laptop_mac", + "content": "laptop_mac" + }, + { + "label": "laptop_windows", + "content": "laptop_windows" + }, + { + "label": "lasso_select", + "content": "lasso_select" + }, + { + "label": "last_page", + "content": "last_page" + }, + { + "label": "laundry", + "content": "laundry" + }, + { + "label": "layers", + "content": "layers" + }, + { + "label": "layers_clear", + "content": "layers_clear" + }, + { + "label": "lda", + "content": "lda" + }, + { + "label": "leaderboard", + "content": "leaderboard" + }, + { + "label": "leak_add", + "content": "leak_add" + }, + { + "label": "leak_remove", + "content": "leak_remove" + }, + { + "label": "left_click", + "content": "left_click" + }, + { + "label": "left_panel_close", + "content": "left_panel_close" + }, + { + "label": "left_panel_open", + "content": "left_panel_open" + }, + { + "label": "legend_toggle", + "content": "legend_toggle" + }, + { + "label": "lens", + "content": "lens" + }, + { + "label": "lens_blur", + "content": "lens_blur" + }, + { + "label": "letter_switch", + "content": "letter_switch" + }, + { + "label": "library_add", + "content": "library_add" + }, + { + "label": "library_add_check", + "content": "library_add_check" + }, + { + "label": "library_books", + "content": "library_books" + }, + { + "label": "library_music", + "content": "library_music" + }, + { + "label": "license", + "content": "license" + }, + { + "label": "lift_to_talk", + "content": "lift_to_talk" + }, + { + "label": "light", + "content": "light" + }, + { + "label": "light_group", + "content": "light_group" + }, + { + "label": "light_mode", + "content": "light_mode" + }, + { + "label": "light_off", + "content": "light_off" + }, + { + "label": "lightbulb", + "content": "lightbulb" + }, + { + "label": "lightbulb_circle", + "content": "lightbulb_circle" + }, + { + "label": "lightning_stand", + "content": "lightning_stand" + }, + { + "label": "line_axis", + "content": "line_axis" + }, + { + "label": "line_curve", + "content": "line_curve" + }, + { + "label": "line_end", + "content": "line_end" + }, + { + "label": "line_end_arrow", + "content": "line_end_arrow" + }, + { + "label": "line_end_arrow_notch", + "content": "line_end_arrow_notch" + }, + { + "label": "line_end_circle", + "content": "line_end_circle" + }, + { + "label": "line_end_diamond", + "content": "line_end_diamond" + }, + { + "label": "line_end_square", + "content": "line_end_square" + }, + { + "label": "line_start", + "content": "line_start" + }, + { + "label": "line_start_arrow", + "content": "line_start_arrow" + }, + { + "label": "line_start_arrow_notch", + "content": "line_start_arrow_notch" + }, + { + "label": "line_start_circle", + "content": "line_start_circle" + }, + { + "label": "line_start_diamond", + "content": "line_start_diamond" + }, + { + "label": "line_start_square", + "content": "line_start_square" + }, + { + "label": "line_style", + "content": "line_style" + }, + { + "label": "line_weight", + "content": "line_weight" + }, + { + "label": "linear_scale", + "content": "linear_scale" + }, + { + "label": "link", + "content": "link" + }, + { + "label": "link_off", + "content": "link_off" + }, + { + "label": "linked_camera", + "content": "linked_camera" + }, + { + "label": "linked_services", + "content": "linked_services" + }, + { + "label": "liquor", + "content": "liquor" + }, + { + "label": "list", + "content": "list" + }, + { + "label": "list_alt", + "content": "list_alt" + }, + { + "label": "list_alt_add", + "content": "list_alt_add" + }, + { + "label": "lists", + "content": "lists" + }, + { + "label": "live_help", + "content": "live_help" + }, + { + "label": "live_tv", + "content": "live_tv" + }, + { + "label": "living", + "content": "living" + }, + { + "label": "local_activity", + "content": "local_activity" + }, + { + "label": "local_atm", + "content": "local_atm" + }, + { + "label": "local_bar", + "content": "local_bar" + }, + { + "label": "local_cafe", + "content": "local_cafe" + }, + { + "label": "local_car_wash", + "content": "local_car_wash" + }, + { + "label": "local_convenience_store", + "content": "local_convenience_store" + }, + { + "label": "local_dining", + "content": "local_dining" + }, + { + "label": "local_drink", + "content": "local_drink" + }, + { + "label": "local_fire_department", + "content": "local_fire_department" + }, + { + "label": "local_florist", + "content": "local_florist" + }, + { + "label": "local_gas_station", + "content": "local_gas_station" + }, + { + "label": "local_hospital", + "content": "local_hospital" + }, + { + "label": "local_laundry_service", + "content": "local_laundry_service" + }, + { + "label": "local_library", + "content": "local_library" + }, + { + "label": "local_mall", + "content": "local_mall" + }, + { + "label": "local_parking", + "content": "local_parking" + }, + { + "label": "local_pharmacy", + "content": "local_pharmacy" + }, + { + "label": "local_pizza", + "content": "local_pizza" + }, + { + "label": "local_police", + "content": "local_police" + }, + { + "label": "local_post_office", + "content": "local_post_office" + }, + { + "label": "local_see", + "content": "local_see" + }, + { + "label": "local_shipping", + "content": "local_shipping" + }, + { + "label": "local_taxi", + "content": "local_taxi" + }, + { + "label": "location_away", + "content": "location_away" + }, + { + "label": "location_chip", + "content": "location_chip" + }, + { + "label": "location_city", + "content": "location_city" + }, + { + "label": "location_disabled", + "content": "location_disabled" + }, + { + "label": "location_home", + "content": "location_home" + }, + { + "label": "location_off", + "content": "location_off" + }, + { + "label": "location_on", + "content": "location_on" + }, + { + "label": "location_searching", + "content": "location_searching" + }, + { + "label": "lock", + "content": "lock" + }, + { + "label": "lock_clock", + "content": "lock_clock" + }, + { + "label": "lock_open", + "content": "lock_open" + }, + { + "label": "lock_open_right", + "content": "lock_open_right" + }, + { + "label": "lock_person", + "content": "lock_person" + }, + { + "label": "lock_reset", + "content": "lock_reset" + }, + { + "label": "login", + "content": "login" + }, + { + "label": "logo_dev", + "content": "logo_dev" + }, + { + "label": "logout", + "content": "logout" + }, + { + "label": "looks", + "content": "looks" + }, + { + "label": "looks_3", + "content": "looks_3" + }, + { + "label": "looks_4", + "content": "looks_4" + }, + { + "label": "looks_5", + "content": "looks_5" + }, + { + "label": "looks_6", + "content": "looks_6" + }, + { + "label": "looks_one", + "content": "looks_one" + }, + { + "label": "looks_two", + "content": "looks_two" + }, + { + "label": "loupe", + "content": "loupe" + }, + { + "label": "low_density", + "content": "low_density" + }, + { + "label": "low_priority", + "content": "low_priority" + }, + { + "label": "lowercase", + "content": "lowercase" + }, + { + "label": "loyalty", + "content": "loyalty" + }, + { + "label": "lte_mobiledata", + "content": "lte_mobiledata" + }, + { + "label": "lte_mobiledata_badge", + "content": "lte_mobiledata_badge" + }, + { + "label": "lte_plus_mobiledata", + "content": "lte_plus_mobiledata" + }, + { + "label": "lte_plus_mobiledata_badge", + "content": "lte_plus_mobiledata_badge" + }, + { + "label": "luggage", + "content": "luggage" + }, + { + "label": "lunch_dining", + "content": "lunch_dining" + }, + { + "label": "lyrics", + "content": "lyrics" + }, + { + "label": "macro_auto", + "content": "macro_auto" + }, + { + "label": "macro_off", + "content": "macro_off" + }, + { + "label": "magnification_large", + "content": "magnification_large" + }, + { + "label": "magnification_small", + "content": "magnification_small" + }, + { + "label": "magnify_docked", + "content": "magnify_docked" + }, + { + "label": "magnify_fullscreen", + "content": "magnify_fullscreen" + }, + { + "label": "mail", + "content": "mail" + }, + { + "label": "mail_lock", + "content": "mail_lock" + }, + { + "label": "mail_off", + "content": "mail_off" + }, + { + "label": "male", + "content": "male" + }, + { + "label": "man", + "content": "man" + }, + { + "label": "man_2", + "content": "man_2" + }, + { + "label": "man_3", + "content": "man_3" + }, + { + "label": "man_4", + "content": "man_4" + }, + { + "label": "manage_accounts", + "content": "manage_accounts" + }, + { + "label": "manage_history", + "content": "manage_history" + }, + { + "label": "manage_search", + "content": "manage_search" + }, + { + "label": "manga", + "content": "manga" + }, + { + "label": "manufacturing", + "content": "manufacturing" + }, + { + "label": "map", + "content": "map" + }, + { + "label": "maps_ugc", + "content": "maps_ugc" + }, + { + "label": "margin", + "content": "margin" + }, + { + "label": "mark_as_unread", + "content": "mark_as_unread" + }, + { + "label": "mark_chat_read", + "content": "mark_chat_read" + }, + { + "label": "mark_chat_unread", + "content": "mark_chat_unread" + }, + { + "label": "mark_email_read", + "content": "mark_email_read" + }, + { + "label": "mark_email_unread", + "content": "mark_email_unread" + }, + { + "label": "mark_unread_chat_alt", + "content": "mark_unread_chat_alt" + }, + { + "label": "markdown", + "content": "markdown" + }, + { + "label": "markdown_copy", + "content": "markdown_copy" + }, + { + "label": "markdown_paste", + "content": "markdown_paste" + }, + { + "label": "markunread_mailbox", + "content": "markunread_mailbox" + }, + { + "label": "masked_transitions", + "content": "masked_transitions" + }, + { + "label": "masks", + "content": "masks" + }, + { + "label": "match_case", + "content": "match_case" + }, + { + "label": "match_word", + "content": "match_word" + }, + { + "label": "matter", + "content": "matter" + }, + { + "label": "maximize", + "content": "maximize" + }, + { + "label": "measuring_tape", + "content": "measuring_tape" + }, + { + "label": "media_bluetooth_off", + "content": "media_bluetooth_off" + }, + { + "label": "media_bluetooth_on", + "content": "media_bluetooth_on" + }, + { + "label": "media_link", + "content": "media_link" + }, + { + "label": "media_output", + "content": "media_output" + }, + { + "label": "media_output_off", + "content": "media_output_off" + }, + { + "label": "mediation", + "content": "mediation" + }, + { + "label": "medical_information", + "content": "medical_information" + }, + { + "label": "medical_mask", + "content": "medical_mask" + }, + { + "label": "medical_services", + "content": "medical_services" + }, + { + "label": "medication", + "content": "medication" + }, + { + "label": "medication_liquid", + "content": "medication_liquid" + }, + { + "label": "meeting_room", + "content": "meeting_room" + }, + { + "label": "memory", + "content": "memory" + }, + { + "label": "memory_alt", + "content": "memory_alt" + }, + { + "label": "menstrual_health", + "content": "menstrual_health" + }, + { + "label": "menu", + "content": "menu" + }, + { + "label": "menu_book", + "content": "menu_book" + }, + { + "label": "menu_open", + "content": "menu_open" + }, + { + "label": "merge", + "content": "merge" + }, + { + "label": "merge_type", + "content": "merge_type" + }, + { + "label": "metabolism", + "content": "metabolism" + }, + { + "label": "metro", + "content": "metro" + }, + { + "label": "mfg_nest_yale_lock", + "content": "mfg_nest_yale_lock" + }, + { + "label": "mic", + "content": "mic" + }, + { + "label": "mic_double", + "content": "mic_double" + }, + { + "label": "mic_external_off", + "content": "mic_external_off" + }, + { + "label": "mic_external_on", + "content": "mic_external_on" + }, + { + "label": "mic_off", + "content": "mic_off" + }, + { + "label": "microbiology", + "content": "microbiology" + }, + { + "label": "microwave", + "content": "microwave" + }, + { + "label": "microwave_gen", + "content": "microwave_gen" + }, + { + "label": "military_tech", + "content": "military_tech" + }, + { + "label": "mimo", + "content": "mimo" + }, + { + "label": "mimo_disconnect", + "content": "mimo_disconnect" + }, + { + "label": "mindfulness", + "content": "mindfulness" + }, + { + "label": "minimize", + "content": "minimize" + }, + { + "label": "minor_crash", + "content": "minor_crash" + }, + { + "label": "mintmark", + "content": "mintmark" + }, + { + "label": "missed_video_call", + "content": "missed_video_call" + }, + { + "label": "missing_controller", + "content": "missing_controller" + }, + { + "label": "mist", + "content": "mist" + }, + { + "label": "mitre", + "content": "mitre" + }, + { + "label": "mixture_med", + "content": "mixture_med" + }, + { + "label": "mms", + "content": "mms" + }, + { + "label": "mobile_friendly", + "content": "mobile_friendly" + }, + { + "label": "mobile_off", + "content": "mobile_off" + }, + { + "label": "mobile_screen_share", + "content": "mobile_screen_share" + }, + { + "label": "mobiledata_off", + "content": "mobiledata_off" + }, + { + "label": "mode_comment", + "content": "mode_comment" + }, + { + "label": "mode_cool", + "content": "mode_cool" + }, + { + "label": "mode_cool_off", + "content": "mode_cool_off" + }, + { + "label": "mode_dual", + "content": "mode_dual" + }, + { + "label": "mode_fan", + "content": "mode_fan" + }, + { + "label": "mode_fan_off", + "content": "mode_fan_off" + }, + { + "label": "mode_heat", + "content": "mode_heat" + }, + { + "label": "mode_heat_cool", + "content": "mode_heat_cool" + }, + { + "label": "mode_heat_off", + "content": "mode_heat_off" + }, + { + "label": "mode_night", + "content": "mode_night" + }, + { + "label": "mode_of_travel", + "content": "mode_of_travel" + }, + { + "label": "mode_off_on", + "content": "mode_off_on" + }, + { + "label": "mode_standby", + "content": "mode_standby" + }, + { + "label": "model_training", + "content": "model_training" + }, + { + "label": "money", + "content": "money" + }, + { + "label": "money_off", + "content": "money_off" + }, + { + "label": "monitor", + "content": "monitor" + }, + { + "label": "monitor_heart", + "content": "monitor_heart" + }, + { + "label": "monitor_weight", + "content": "monitor_weight" + }, + { + "label": "monitor_weight_gain", + "content": "monitor_weight_gain" + }, + { + "label": "monitor_weight_loss", + "content": "monitor_weight_loss" + }, + { + "label": "monitoring", + "content": "monitoring" + }, + { + "label": "monochrome_photos", + "content": "monochrome_photos" + }, + { + "label": "monorail", + "content": "monorail" + }, + { + "label": "mood", + "content": "mood" + }, + { + "label": "mood_bad", + "content": "mood_bad" + }, + { + "label": "mop", + "content": "mop" + }, + { + "label": "more", + "content": "more" + }, + { + "label": "more_down", + "content": "more_down" + }, + { + "label": "more_horiz", + "content": "more_horiz" + }, + { + "label": "more_time", + "content": "more_time" + }, + { + "label": "more_up", + "content": "more_up" + }, + { + "label": "more_vert", + "content": "more_vert" + }, + { + "label": "mosque", + "content": "mosque" + }, + { + "label": "motion_blur", + "content": "motion_blur" + }, + { + "label": "motion_mode", + "content": "motion_mode" + }, + { + "label": "motion_photos_auto", + "content": "motion_photos_auto" + }, + { + "label": "motion_photos_off", + "content": "motion_photos_off" + }, + { + "label": "motion_photos_on", + "content": "motion_photos_on" + }, + { + "label": "motion_photos_paused", + "content": "motion_photos_paused" + }, + { + "label": "motion_sensor_active", + "content": "motion_sensor_active" + }, + { + "label": "motion_sensor_alert", + "content": "motion_sensor_alert" + }, + { + "label": "motion_sensor_idle", + "content": "motion_sensor_idle" + }, + { + "label": "motion_sensor_urgent", + "content": "motion_sensor_urgent" + }, + { + "label": "motorcycle", + "content": "motorcycle" + }, + { + "label": "mountain_flag", + "content": "mountain_flag" + }, + { + "label": "mouse", + "content": "mouse" + }, + { + "label": "mouse_lock", + "content": "mouse_lock" + }, + { + "label": "mouse_lock_off", + "content": "mouse_lock_off" + }, + { + "label": "move", + "content": "move" + }, + { + "label": "move_down", + "content": "move_down" + }, + { + "label": "move_group", + "content": "move_group" + }, + { + "label": "move_item", + "content": "move_item" + }, + { + "label": "move_location", + "content": "move_location" + }, + { + "label": "move_selection_down", + "content": "move_selection_down" + }, + { + "label": "move_selection_left", + "content": "move_selection_left" + }, + { + "label": "move_selection_right", + "content": "move_selection_right" + }, + { + "label": "move_selection_up", + "content": "move_selection_up" + }, + { + "label": "move_to_inbox", + "content": "move_to_inbox" + }, + { + "label": "move_up", + "content": "move_up" + }, + { + "label": "moved_location", + "content": "moved_location" + }, + { + "label": "movie", + "content": "movie" + }, + { + "label": "movie_edit", + "content": "movie_edit" + }, + { + "label": "movie_info", + "content": "movie_info" + }, + { + "label": "movie_off", + "content": "movie_off" + }, + { + "label": "moving", + "content": "moving" + }, + { + "label": "moving_beds", + "content": "moving_beds" + }, + { + "label": "moving_ministry", + "content": "moving_ministry" + }, + { + "label": "mp", + "content": "mp" + }, + { + "label": "multicooker", + "content": "multicooker" + }, + { + "label": "multiline_chart", + "content": "multiline_chart" + }, + { + "label": "multiple_stop", + "content": "multiple_stop" + }, + { + "label": "museum", + "content": "museum" + }, + { + "label": "music_cast", + "content": "music_cast" + }, + { + "label": "music_note", + "content": "music_note" + }, + { + "label": "music_off", + "content": "music_off" + }, + { + "label": "music_video", + "content": "music_video" + }, + { + "label": "my_location", + "content": "my_location" + }, + { + "label": "mystery", + "content": "mystery" + }, + { + "label": "nat", + "content": "nat" + }, + { + "label": "nature", + "content": "nature" + }, + { + "label": "nature_people", + "content": "nature_people" + }, + { + "label": "navigation", + "content": "navigation" + }, + { + "label": "near_me", + "content": "near_me" + }, + { + "label": "near_me_disabled", + "content": "near_me_disabled" + }, + { + "label": "nearby", + "content": "nearby" + }, + { + "label": "nearby_error", + "content": "nearby_error" + }, + { + "label": "nearby_off", + "content": "nearby_off" + }, + { + "label": "nephrology", + "content": "nephrology" + }, + { + "label": "nest_audio", + "content": "nest_audio" + }, + { + "label": "nest_cam_floodlight", + "content": "nest_cam_floodlight" + }, + { + "label": "nest_cam_indoor", + "content": "nest_cam_indoor" + }, + { + "label": "nest_cam_iq", + "content": "nest_cam_iq" + }, + { + "label": "nest_cam_iq_outdoor", + "content": "nest_cam_iq_outdoor" + }, + { + "label": "nest_cam_magnet_mount", + "content": "nest_cam_magnet_mount" + }, + { + "label": "nest_cam_outdoor", + "content": "nest_cam_outdoor" + }, + { + "label": "nest_cam_stand", + "content": "nest_cam_stand" + }, + { + "label": "nest_cam_wall_mount", + "content": "nest_cam_wall_mount" + }, + { + "label": "nest_cam_wired_stand", + "content": "nest_cam_wired_stand" + }, + { + "label": "nest_clock_farsight_analog", + "content": "nest_clock_farsight_analog" + }, + { + "label": "nest_clock_farsight_digital", + "content": "nest_clock_farsight_digital" + }, + { + "label": "nest_connect", + "content": "nest_connect" + }, + { + "label": "nest_detect", + "content": "nest_detect" + }, + { + "label": "nest_display", + "content": "nest_display" + }, + { + "label": "nest_display_max", + "content": "nest_display_max" + }, + { + "label": "nest_doorbell_visitor", + "content": "nest_doorbell_visitor" + }, + { + "label": "nest_eco_leaf", + "content": "nest_eco_leaf" + }, + { + "label": "nest_farsight_weather", + "content": "nest_farsight_weather" + }, + { + "label": "nest_found_savings", + "content": "nest_found_savings" + }, + { + "label": "nest_gale_wifi", + "content": "nest_gale_wifi" + }, + { + "label": "nest_heat_link_e", + "content": "nest_heat_link_e" + }, + { + "label": "nest_heat_link_gen_3", + "content": "nest_heat_link_gen_3" + }, + { + "label": "nest_hello_doorbell", + "content": "nest_hello_doorbell" + }, + { + "label": "nest_mini", + "content": "nest_mini" + }, + { + "label": "nest_multi_room", + "content": "nest_multi_room" + }, + { + "label": "nest_protect", + "content": "nest_protect" + }, + { + "label": "nest_remote", + "content": "nest_remote" + }, + { + "label": "nest_remote_comfort_sensor", + "content": "nest_remote_comfort_sensor" + }, + { + "label": "nest_secure_alarm", + "content": "nest_secure_alarm" + }, + { + "label": "nest_sunblock", + "content": "nest_sunblock" + }, + { + "label": "nest_tag", + "content": "nest_tag" + }, + { + "label": "nest_thermostat", + "content": "nest_thermostat" + }, + { + "label": "nest_thermostat_e_eu", + "content": "nest_thermostat_e_eu" + }, + { + "label": "nest_thermostat_gen_3", + "content": "nest_thermostat_gen_3" + }, + { + "label": "nest_thermostat_sensor", + "content": "nest_thermostat_sensor" + }, + { + "label": "nest_thermostat_sensor_eu", + "content": "nest_thermostat_sensor_eu" + }, + { + "label": "nest_thermostat_zirconium_eu", + "content": "nest_thermostat_zirconium_eu" + }, + { + "label": "nest_true_radiant", + "content": "nest_true_radiant" + }, + { + "label": "nest_wake_on_approach", + "content": "nest_wake_on_approach" + }, + { + "label": "nest_wake_on_press", + "content": "nest_wake_on_press" + }, + { + "label": "nest_wifi_point", + "content": "nest_wifi_point" + }, + { + "label": "nest_wifi_pro", + "content": "nest_wifi_pro" + }, + { + "label": "nest_wifi_pro_2", + "content": "nest_wifi_pro_2" + }, + { + "label": "nest_wifi_router", + "content": "nest_wifi_router" + }, + { + "label": "network_cell", + "content": "network_cell" + }, + { + "label": "network_check", + "content": "network_check" + }, + { + "label": "network_intelligence_history", + "content": "network_intelligence_history" + }, + { + "label": "network_intelligence_update", + "content": "network_intelligence_update" + }, + { + "label": "network_locked", + "content": "network_locked" + }, + { + "label": "network_manage", + "content": "network_manage" + }, + { + "label": "network_node", + "content": "network_node" + }, + { + "label": "network_ping", + "content": "network_ping" + }, + { + "label": "network_wifi", + "content": "network_wifi" + }, + { + "label": "network_wifi_1_bar", + "content": "network_wifi_1_bar" + }, + { + "label": "network_wifi_1_bar_locked", + "content": "network_wifi_1_bar_locked" + }, + { + "label": "network_wifi_2_bar", + "content": "network_wifi_2_bar" + }, + { + "label": "network_wifi_2_bar_locked", + "content": "network_wifi_2_bar_locked" + }, + { + "label": "network_wifi_3_bar", + "content": "network_wifi_3_bar" + }, + { + "label": "network_wifi_3_bar_locked", + "content": "network_wifi_3_bar_locked" + }, + { + "label": "network_wifi_locked", + "content": "network_wifi_locked" + }, + { + "label": "neurology", + "content": "neurology" + }, + { + "label": "new_label", + "content": "new_label" + }, + { + "label": "new_releases", + "content": "new_releases" + }, + { + "label": "new_window", + "content": "new_window" + }, + { + "label": "news", + "content": "news" + }, + { + "label": "newsmode", + "content": "newsmode" + }, + { + "label": "newspaper", + "content": "newspaper" + }, + { + "label": "newsstand", + "content": "newsstand" + }, + { + "label": "next_plan", + "content": "next_plan" + }, + { + "label": "next_week", + "content": "next_week" + }, + { + "label": "nfc", + "content": "nfc" + }, + { + "label": "night_shelter", + "content": "night_shelter" + }, + { + "label": "night_sight_auto", + "content": "night_sight_auto" + }, + { + "label": "night_sight_auto_off", + "content": "night_sight_auto_off" + }, + { + "label": "night_sight_max", + "content": "night_sight_max" + }, + { + "label": "nightlife", + "content": "nightlife" + }, + { + "label": "nightlight", + "content": "nightlight" + }, + { + "label": "nights_stay", + "content": "nights_stay" + }, + { + "label": "no_accounts", + "content": "no_accounts" + }, + { + "label": "no_adult_content", + "content": "no_adult_content" + }, + { + "label": "no_backpack", + "content": "no_backpack" + }, + { + "label": "no_crash", + "content": "no_crash" + }, + { + "label": "no_drinks", + "content": "no_drinks" + }, + { + "label": "no_encryption", + "content": "no_encryption" + }, + { + "label": "no_flash", + "content": "no_flash" + }, + { + "label": "no_food", + "content": "no_food" + }, + { + "label": "no_luggage", + "content": "no_luggage" + }, + { + "label": "no_meals", + "content": "no_meals" + }, + { + "label": "no_meeting_room", + "content": "no_meeting_room" + }, + { + "label": "no_photography", + "content": "no_photography" + }, + { + "label": "no_sim", + "content": "no_sim" + }, + { + "label": "no_sound", + "content": "no_sound" + }, + { + "label": "no_stroller", + "content": "no_stroller" + }, + { + "label": "no_transfer", + "content": "no_transfer" + }, + { + "label": "noise_aware", + "content": "noise_aware" + }, + { + "label": "noise_control_off", + "content": "noise_control_off" + }, + { + "label": "noise_control_on", + "content": "noise_control_on" + }, + { + "label": "nordic_walking", + "content": "nordic_walking" + }, + { + "label": "north", + "content": "north" + }, + { + "label": "north_east", + "content": "north_east" + }, + { + "label": "north_west", + "content": "north_west" + }, + { + "label": "not_accessible", + "content": "not_accessible" + }, + { + "label": "not_accessible_forward", + "content": "not_accessible_forward" + }, + { + "label": "not_listed_location", + "content": "not_listed_location" + }, + { + "label": "not_started", + "content": "not_started" + }, + { + "label": "note_add", + "content": "note_add" + }, + { + "label": "note_alt", + "content": "note_alt" + }, + { + "label": "note_stack", + "content": "note_stack" + }, + { + "label": "note_stack_add", + "content": "note_stack_add" + }, + { + "label": "notes", + "content": "notes" + }, + { + "label": "notification_add", + "content": "notification_add" + }, + { + "label": "notification_important", + "content": "notification_important" + }, + { + "label": "notification_multiple", + "content": "notification_multiple" + }, + { + "label": "notifications", + "content": "notifications" + }, + { + "label": "notifications_active", + "content": "notifications_active" + }, + { + "label": "notifications_off", + "content": "notifications_off" + }, + { + "label": "notifications_paused", + "content": "notifications_paused" + }, + { + "label": "notifications_unread", + "content": "notifications_unread" + }, + { + "label": "numbers", + "content": "numbers" + }, + { + "label": "nutrition", + "content": "nutrition" + }, + { + "label": "ods", + "content": "ods" + }, + { + "label": "odt", + "content": "odt" + }, + { + "label": "offline_bolt", + "content": "offline_bolt" + }, + { + "label": "offline_pin", + "content": "offline_pin" + }, + { + "label": "offline_pin_off", + "content": "offline_pin_off" + }, + { + "label": "offline_share", + "content": "offline_share" + }, + { + "label": "oil_barrel", + "content": "oil_barrel" + }, + { + "label": "on_device_training", + "content": "on_device_training" + }, + { + "label": "on_hub_device", + "content": "on_hub_device" + }, + { + "label": "oncology", + "content": "oncology" + }, + { + "label": "online_prediction", + "content": "online_prediction" + }, + { + "label": "onsen", + "content": "onsen" + }, + { + "label": "opacity", + "content": "opacity" + }, + { + "label": "open_in_browser", + "content": "open_in_browser" + }, + { + "label": "open_in_full", + "content": "open_in_full" + }, + { + "label": "open_in_new", + "content": "open_in_new" + }, + { + "label": "open_in_new_down", + "content": "open_in_new_down" + }, + { + "label": "open_in_new_off", + "content": "open_in_new_off" + }, + { + "label": "open_in_phone", + "content": "open_in_phone" + }, + { + "label": "open_jam", + "content": "open_jam" + }, + { + "label": "open_run", + "content": "open_run" + }, + { + "label": "open_with", + "content": "open_with" + }, + { + "label": "ophthalmology", + "content": "ophthalmology" + }, + { + "label": "oral_disease", + "content": "oral_disease" + }, + { + "label": "order_approve", + "content": "order_approve" + }, + { + "label": "order_play", + "content": "order_play" + }, + { + "label": "orders", + "content": "orders" + }, + { + "label": "orthopedics", + "content": "orthopedics" + }, + { + "label": "other_admission", + "content": "other_admission" + }, + { + "label": "other_houses", + "content": "other_houses" + }, + { + "label": "outbound", + "content": "outbound" + }, + { + "label": "outbox", + "content": "outbox" + }, + { + "label": "outbox_alt", + "content": "outbox_alt" + }, + { + "label": "outdoor_garden", + "content": "outdoor_garden" + }, + { + "label": "outdoor_grill", + "content": "outdoor_grill" + }, + { + "label": "outgoing_mail", + "content": "outgoing_mail" + }, + { + "label": "outlet", + "content": "outlet" + }, + { + "label": "outpatient", + "content": "outpatient" + }, + { + "label": "outpatient_med", + "content": "outpatient_med" + }, + { + "label": "output", + "content": "output" + }, + { + "label": "output_circle", + "content": "output_circle" + }, + { + "label": "oven", + "content": "oven" + }, + { + "label": "oven_gen", + "content": "oven_gen" + }, + { + "label": "overview", + "content": "overview" + }, + { + "label": "overview_key", + "content": "overview_key" + }, + { + "label": "oxygen_saturation", + "content": "oxygen_saturation" + }, + { + "label": "p2p", + "content": "p2p" + }, + { + "label": "pace", + "content": "pace" + }, + { + "label": "pacemaker", + "content": "pacemaker" + }, + { + "label": "package", + "content": "package" + }, + { + "label": "package_2", + "content": "package_2" + }, + { + "label": "padding", + "content": "padding" + }, + { + "label": "page_control", + "content": "page_control" + }, + { + "label": "page_info", + "content": "page_info" + }, + { + "label": "pageless", + "content": "pageless" + }, + { + "label": "pages", + "content": "pages" + }, + { + "label": "pageview", + "content": "pageview" + }, + { + "label": "paid", + "content": "paid" + }, + { + "label": "palette", + "content": "palette" + }, + { + "label": "pallet", + "content": "pallet" + }, + { + "label": "pan_tool", + "content": "pan_tool" + }, + { + "label": "pan_tool_alt", + "content": "pan_tool_alt" + }, + { + "label": "pan_zoom", + "content": "pan_zoom" + }, + { + "label": "panorama", + "content": "panorama" + }, + { + "label": "panorama_fish_eye", + "content": "panorama_fish_eye" + }, + { + "label": "panorama_horizontal", + "content": "panorama_horizontal" + }, + { + "label": "panorama_photosphere", + "content": "panorama_photosphere" + }, + { + "label": "panorama_vertical", + "content": "panorama_vertical" + }, + { + "label": "panorama_wide_angle", + "content": "panorama_wide_angle" + }, + { + "label": "paragliding", + "content": "paragliding" + }, + { + "label": "park", + "content": "park" + }, + { + "label": "partly_cloudy_day", + "content": "partly_cloudy_day" + }, + { + "label": "partly_cloudy_night", + "content": "partly_cloudy_night" + }, + { + "label": "partner_exchange", + "content": "partner_exchange" + }, + { + "label": "partner_reports", + "content": "partner_reports" + }, + { + "label": "party_mode", + "content": "party_mode" + }, + { + "label": "passkey", + "content": "passkey" + }, + { + "label": "password", + "content": "password" + }, + { + "label": "password_2", + "content": "password_2" + }, + { + "label": "password_2_off", + "content": "password_2_off" + }, + { + "label": "patient_list", + "content": "patient_list" + }, + { + "label": "pattern", + "content": "pattern" + }, + { + "label": "pause", + "content": "pause" + }, + { + "label": "pause_circle", + "content": "pause_circle" + }, + { + "label": "pause_presentation", + "content": "pause_presentation" + }, + { + "label": "payments", + "content": "payments" + }, + { + "label": "pedal_bike", + "content": "pedal_bike" + }, + { + "label": "pediatrics", + "content": "pediatrics" + }, + { + "label": "pen_size_1", + "content": "pen_size_1" + }, + { + "label": "pen_size_2", + "content": "pen_size_2" + }, + { + "label": "pen_size_3", + "content": "pen_size_3" + }, + { + "label": "pen_size_4", + "content": "pen_size_4" + }, + { + "label": "pen_size_5", + "content": "pen_size_5" + }, + { + "label": "pending", + "content": "pending" + }, + { + "label": "pending_actions", + "content": "pending_actions" + }, + { + "label": "pentagon", + "content": "pentagon" + }, + { + "label": "percent", + "content": "percent" + }, + { + "label": "pergola", + "content": "pergola" + }, + { + "label": "perm_camera_mic", + "content": "perm_camera_mic" + }, + { + "label": "perm_contact_calendar", + "content": "perm_contact_calendar" + }, + { + "label": "perm_data_setting", + "content": "perm_data_setting" + }, + { + "label": "perm_device_information", + "content": "perm_device_information" + }, + { + "label": "perm_media", + "content": "perm_media" + }, + { + "label": "perm_phone_msg", + "content": "perm_phone_msg" + }, + { + "label": "perm_scan_wifi", + "content": "perm_scan_wifi" + }, + { + "label": "person", + "content": "person" + }, + { + "label": "person_2", + "content": "person_2" + }, + { + "label": "person_3", + "content": "person_3" + }, + { + "label": "person_4", + "content": "person_4" + }, + { + "label": "person_add", + "content": "person_add" + }, + { + "label": "person_add_disabled", + "content": "person_add_disabled" + }, + { + "label": "person_alert", + "content": "person_alert" + }, + { + "label": "person_apron", + "content": "person_apron" + }, + { + "label": "person_book", + "content": "person_book" + }, + { + "label": "person_cancel", + "content": "person_cancel" + }, + { + "label": "person_celebrate", + "content": "person_celebrate" + }, + { + "label": "person_check", + "content": "person_check" + }, + { + "label": "person_edit", + "content": "person_edit" + }, + { + "label": "person_off", + "content": "person_off" + }, + { + "label": "person_pin", + "content": "person_pin" + }, + { + "label": "person_pin_circle", + "content": "person_pin_circle" + }, + { + "label": "person_play", + "content": "person_play" + }, + { + "label": "person_raised_hand", + "content": "person_raised_hand" + }, + { + "label": "person_remove", + "content": "person_remove" + }, + { + "label": "person_search", + "content": "person_search" + }, + { + "label": "personal_bag", + "content": "personal_bag" + }, + { + "label": "personal_bag_off", + "content": "personal_bag_off" + }, + { + "label": "personal_bag_question", + "content": "personal_bag_question" + }, + { + "label": "personal_injury", + "content": "personal_injury" + }, + { + "label": "personal_places", + "content": "personal_places" + }, + { + "label": "pest_control", + "content": "pest_control" + }, + { + "label": "pest_control_rodent", + "content": "pest_control_rodent" + }, + { + "label": "pet_supplies", + "content": "pet_supplies" + }, + { + "label": "pets", + "content": "pets" + }, + { + "label": "phishing", + "content": "phishing" + }, + { + "label": "phone_android", + "content": "phone_android" + }, + { + "label": "phone_bluetooth_speaker", + "content": "phone_bluetooth_speaker" + }, + { + "label": "phone_callback", + "content": "phone_callback" + }, + { + "label": "phone_disabled", + "content": "phone_disabled" + }, + { + "label": "phone_enabled", + "content": "phone_enabled" + }, + { + "label": "phone_forwarded", + "content": "phone_forwarded" + }, + { + "label": "phone_in_talk", + "content": "phone_in_talk" + }, + { + "label": "phone_iphone", + "content": "phone_iphone" + }, + { + "label": "phone_locked", + "content": "phone_locked" + }, + { + "label": "phone_missed", + "content": "phone_missed" + }, + { + "label": "phone_paused", + "content": "phone_paused" + }, + { + "label": "phonelink_erase", + "content": "phonelink_erase" + }, + { + "label": "phonelink_lock", + "content": "phonelink_lock" + }, + { + "label": "phonelink_off", + "content": "phonelink_off" + }, + { + "label": "phonelink_ring", + "content": "phonelink_ring" + }, + { + "label": "phonelink_ring_off", + "content": "phonelink_ring_off" + }, + { + "label": "phonelink_setup", + "content": "phonelink_setup" + }, + { + "label": "photo", + "content": "photo" + }, + { + "label": "photo_album", + "content": "photo_album" + }, + { + "label": "photo_auto_merge", + "content": "photo_auto_merge" + }, + { + "label": "photo_camera", + "content": "photo_camera" + }, + { + "label": "photo_camera_back", + "content": "photo_camera_back" + }, + { + "label": "photo_camera_front", + "content": "photo_camera_front" + }, + { + "label": "photo_frame", + "content": "photo_frame" + }, + { + "label": "photo_library", + "content": "photo_library" + }, + { + "label": "photo_prints", + "content": "photo_prints" + }, + { + "label": "photo_size_select_large", + "content": "photo_size_select_large" + }, + { + "label": "photo_size_select_small", + "content": "photo_size_select_small" + }, + { + "label": "php", + "content": "php" + }, + { + "label": "physical_therapy", + "content": "physical_therapy" + }, + { + "label": "piano", + "content": "piano" + }, + { + "label": "piano_off", + "content": "piano_off" + }, + { + "label": "picture_as_pdf", + "content": "picture_as_pdf" + }, + { + "label": "picture_in_picture", + "content": "picture_in_picture" + }, + { + "label": "picture_in_picture_alt", + "content": "picture_in_picture_alt" + }, + { + "label": "picture_in_picture_center", + "content": "picture_in_picture_center" + }, + { + "label": "picture_in_picture_large", + "content": "picture_in_picture_large" + }, + { + "label": "picture_in_picture_medium", + "content": "picture_in_picture_medium" + }, + { + "label": "picture_in_picture_mobile", + "content": "picture_in_picture_mobile" + }, + { + "label": "picture_in_picture_off", + "content": "picture_in_picture_off" + }, + { + "label": "picture_in_picture_small", + "content": "picture_in_picture_small" + }, + { + "label": "pie_chart", + "content": "pie_chart" + }, + { + "label": "pill", + "content": "pill" + }, + { + "label": "pill_off", + "content": "pill_off" + }, + { + "label": "pin", + "content": "pin" + }, + { + "label": "pin_drop", + "content": "pin_drop" + }, + { + "label": "pin_end", + "content": "pin_end" + }, + { + "label": "pin_invoke", + "content": "pin_invoke" + }, + { + "label": "pinch", + "content": "pinch" + }, + { + "label": "pinch_zoom_in", + "content": "pinch_zoom_in" + }, + { + "label": "pinch_zoom_out", + "content": "pinch_zoom_out" + }, + { + "label": "pip", + "content": "pip" + }, + { + "label": "pip_exit", + "content": "pip_exit" + }, + { + "label": "pivot_table_chart", + "content": "pivot_table_chart" + }, + { + "label": "place_item", + "content": "place_item" + }, + { + "label": "plagiarism", + "content": "plagiarism" + }, + { + "label": "planner_banner_ad_pt", + "content": "planner_banner_ad_pt" + }, + { + "label": "planner_review", + "content": "planner_review" + }, + { + "label": "play_arrow", + "content": "play_arrow" + }, + { + "label": "play_circle", + "content": "play_circle" + }, + { + "label": "play_disabled", + "content": "play_disabled" + }, + { + "label": "play_for_work", + "content": "play_for_work" + }, + { + "label": "play_lesson", + "content": "play_lesson" + }, + { + "label": "play_pause", + "content": "play_pause" + }, + { + "label": "playing_cards", + "content": "playing_cards" + }, + { + "label": "playlist_add", + "content": "playlist_add" + }, + { + "label": "playlist_add_check", + "content": "playlist_add_check" + }, + { + "label": "playlist_add_check_circle", + "content": "playlist_add_check_circle" + }, + { + "label": "playlist_add_circle", + "content": "playlist_add_circle" + }, + { + "label": "playlist_play", + "content": "playlist_play" + }, + { + "label": "playlist_remove", + "content": "playlist_remove" + }, + { + "label": "plumbing", + "content": "plumbing" + }, + { + "label": "podcasts", + "content": "podcasts" + }, + { + "label": "podiatry", + "content": "podiatry" + }, + { + "label": "podium", + "content": "podium" + }, + { + "label": "point_of_sale", + "content": "point_of_sale" + }, + { + "label": "point_scan", + "content": "point_scan" + }, + { + "label": "poker_chip", + "content": "poker_chip" + }, + { + "label": "policy", + "content": "policy" + }, + { + "label": "polyline", + "content": "polyline" + }, + { + "label": "polymer", + "content": "polymer" + }, + { + "label": "pool", + "content": "pool" + }, + { + "label": "portable_wifi_off", + "content": "portable_wifi_off" + }, + { + "label": "position_bottom_left", + "content": "position_bottom_left" + }, + { + "label": "position_bottom_right", + "content": "position_bottom_right" + }, + { + "label": "position_top_right", + "content": "position_top_right" + }, + { + "label": "post", + "content": "post" + }, + { + "label": "post_add", + "content": "post_add" + }, + { + "label": "potted_plant", + "content": "potted_plant" + }, + { + "label": "power", + "content": "power" + }, + { + "label": "power_input", + "content": "power_input" + }, + { + "label": "power_off", + "content": "power_off" + }, + { + "label": "power_settings_new", + "content": "power_settings_new" + }, + { + "label": "prayer_times", + "content": "prayer_times" + }, + { + "label": "precision_manufacturing", + "content": "precision_manufacturing" + }, + { + "label": "pregnancy", + "content": "pregnancy" + }, + { + "label": "pregnant_woman", + "content": "pregnant_woman" + }, + { + "label": "preliminary", + "content": "preliminary" + }, + { + "label": "prescriptions", + "content": "prescriptions" + }, + { + "label": "present_to_all", + "content": "present_to_all" + }, + { + "label": "preview", + "content": "preview" + }, + { + "label": "preview_off", + "content": "preview_off" + }, + { + "label": "price_change", + "content": "price_change" + }, + { + "label": "price_check", + "content": "price_check" + }, + { + "label": "print", + "content": "print" + }, + { + "label": "print_add", + "content": "print_add" + }, + { + "label": "print_connect", + "content": "print_connect" + }, + { + "label": "print_disabled", + "content": "print_disabled" + }, + { + "label": "print_error", + "content": "print_error" + }, + { + "label": "print_lock", + "content": "print_lock" + }, + { + "label": "priority", + "content": "priority" + }, + { + "label": "priority_high", + "content": "priority_high" + }, + { + "label": "privacy", + "content": "privacy" + }, + { + "label": "privacy_tip", + "content": "privacy_tip" + }, + { + "label": "private_connectivity", + "content": "private_connectivity" + }, + { + "label": "problem", + "content": "problem" + }, + { + "label": "procedure", + "content": "procedure" + }, + { + "label": "process_chart", + "content": "process_chart" + }, + { + "label": "production_quantity_limits", + "content": "production_quantity_limits" + }, + { + "label": "productivity", + "content": "productivity" + }, + { + "label": "progress_activity", + "content": "progress_activity" + }, + { + "label": "prompt_suggestion", + "content": "prompt_suggestion" + }, + { + "label": "propane", + "content": "propane" + }, + { + "label": "propane_tank", + "content": "propane_tank" + }, + { + "label": "psychiatry", + "content": "psychiatry" + }, + { + "label": "psychology", + "content": "psychology" + }, + { + "label": "psychology_alt", + "content": "psychology_alt" + }, + { + "label": "public", + "content": "public" + }, + { + "label": "public_off", + "content": "public_off" + }, + { + "label": "publish", + "content": "publish" + }, + { + "label": "published_with_changes", + "content": "published_with_changes" + }, + { + "label": "pulmonology", + "content": "pulmonology" + }, + { + "label": "pulse_alert", + "content": "pulse_alert" + }, + { + "label": "punch_clock", + "content": "punch_clock" + }, + { + "label": "qr_code", + "content": "qr_code" + }, + { + "label": "qr_code_2", + "content": "qr_code_2" + }, + { + "label": "qr_code_2_add", + "content": "qr_code_2_add" + }, + { + "label": "qr_code_scanner", + "content": "qr_code_scanner" + }, + { + "label": "query_stats", + "content": "query_stats" + }, + { + "label": "question_exchange", + "content": "question_exchange" + }, + { + "label": "question_mark", + "content": "question_mark" + }, + { + "label": "queue_music", + "content": "queue_music" + }, + { + "label": "queue_play_next", + "content": "queue_play_next" + }, + { + "label": "quick_phrases", + "content": "quick_phrases" + }, + { + "label": "quick_reference", + "content": "quick_reference" + }, + { + "label": "quick_reference_all", + "content": "quick_reference_all" + }, + { + "label": "quick_reorder", + "content": "quick_reorder" + }, + { + "label": "quickreply", + "content": "quickreply" + }, + { + "label": "quiet_time", + "content": "quiet_time" + }, + { + "label": "quiet_time_active", + "content": "quiet_time_active" + }, + { + "label": "quiz", + "content": "quiz" + }, + { + "label": "r_mobiledata", + "content": "r_mobiledata" + }, + { + "label": "radar", + "content": "radar" + }, + { + "label": "radio", + "content": "radio" + }, + { + "label": "radio_button_checked", + "content": "radio_button_checked" + }, + { + "label": "radio_button_partial", + "content": "radio_button_partial" + }, + { + "label": "radio_button_unchecked", + "content": "radio_button_unchecked" + }, + { + "label": "radiology", + "content": "radiology" + }, + { + "label": "railway_alert", + "content": "railway_alert" + }, + { + "label": "railway_alert_2", + "content": "railway_alert_2" + }, + { + "label": "rainy", + "content": "rainy" + }, + { + "label": "rainy_heavy", + "content": "rainy_heavy" + }, + { + "label": "rainy_light", + "content": "rainy_light" + }, + { + "label": "rainy_snow", + "content": "rainy_snow" + }, + { + "label": "ramen_dining", + "content": "ramen_dining" + }, + { + "label": "ramp_left", + "content": "ramp_left" + }, + { + "label": "ramp_right", + "content": "ramp_right" + }, + { + "label": "range_hood", + "content": "range_hood" + }, + { + "label": "rate_review", + "content": "rate_review" + }, + { + "label": "raven", + "content": "raven" + }, + { + "label": "raw_off", + "content": "raw_off" + }, + { + "label": "raw_on", + "content": "raw_on" + }, + { + "label": "read_more", + "content": "read_more" + }, + { + "label": "readiness_score", + "content": "readiness_score" + }, + { + "label": "real_estate_agent", + "content": "real_estate_agent" + }, + { + "label": "rear_camera", + "content": "rear_camera" + }, + { + "label": "rebase", + "content": "rebase" + }, + { + "label": "rebase_edit", + "content": "rebase_edit" + }, + { + "label": "receipt", + "content": "receipt" + }, + { + "label": "receipt_long", + "content": "receipt_long" + }, + { + "label": "recent_actors", + "content": "recent_actors" + }, + { + "label": "recent_patient", + "content": "recent_patient" + }, + { + "label": "recenter", + "content": "recenter" + }, + { + "label": "recommend", + "content": "recommend" + }, + { + "label": "record_voice_over", + "content": "record_voice_over" + }, + { + "label": "rectangle", + "content": "rectangle" + }, + { + "label": "recycling", + "content": "recycling" + }, + { + "label": "redeem", + "content": "redeem" + }, + { + "label": "redo", + "content": "redo" + }, + { + "label": "reduce_capacity", + "content": "reduce_capacity" + }, + { + "label": "refresh", + "content": "refresh" + }, + { + "label": "regular_expression", + "content": "regular_expression" + }, + { + "label": "relax", + "content": "relax" + }, + { + "label": "release_alert", + "content": "release_alert" + }, + { + "label": "remember_me", + "content": "remember_me" + }, + { + "label": "reminder", + "content": "reminder" + }, + { + "label": "remote_gen", + "content": "remote_gen" + }, + { + "label": "remove", + "content": "remove" + }, + { + "label": "remove_done", + "content": "remove_done" + }, + { + "label": "remove_from_queue", + "content": "remove_from_queue" + }, + { + "label": "remove_moderator", + "content": "remove_moderator" + }, + { + "label": "remove_road", + "content": "remove_road" + }, + { + "label": "remove_selection", + "content": "remove_selection" + }, + { + "label": "remove_shopping_cart", + "content": "remove_shopping_cart" + }, + { + "label": "reopen_window", + "content": "reopen_window" + }, + { + "label": "reorder", + "content": "reorder" + }, + { + "label": "repartition", + "content": "repartition" + }, + { + "label": "repeat", + "content": "repeat" + }, + { + "label": "repeat_on", + "content": "repeat_on" + }, + { + "label": "repeat_one", + "content": "repeat_one" + }, + { + "label": "repeat_one_on", + "content": "repeat_one_on" + }, + { + "label": "replay", + "content": "replay" + }, + { + "label": "replay_10", + "content": "replay_10" + }, + { + "label": "replay_30", + "content": "replay_30" + }, + { + "label": "replay_5", + "content": "replay_5" + }, + { + "label": "reply", + "content": "reply" + }, + { + "label": "reply_all", + "content": "reply_all" + }, + { + "label": "report", + "content": "report" + }, + { + "label": "report_off", + "content": "report_off" + }, + { + "label": "request_page", + "content": "request_page" + }, + { + "label": "request_quote", + "content": "request_quote" + }, + { + "label": "reset_brightness", + "content": "reset_brightness" + }, + { + "label": "reset_focus", + "content": "reset_focus" + }, + { + "label": "reset_image", + "content": "reset_image" + }, + { + "label": "reset_iso", + "content": "reset_iso" + }, + { + "label": "reset_settings", + "content": "reset_settings" + }, + { + "label": "reset_shadow", + "content": "reset_shadow" + }, + { + "label": "reset_shutter_speed", + "content": "reset_shutter_speed" + }, + { + "label": "reset_tv", + "content": "reset_tv" + }, + { + "label": "reset_white_balance", + "content": "reset_white_balance" + }, + { + "label": "reset_wrench", + "content": "reset_wrench" + }, + { + "label": "resize", + "content": "resize" + }, + { + "label": "respiratory_rate", + "content": "respiratory_rate" + }, + { + "label": "responsive_layout", + "content": "responsive_layout" + }, + { + "label": "restart_alt", + "content": "restart_alt" + }, + { + "label": "restaurant", + "content": "restaurant" + }, + { + "label": "restaurant_menu", + "content": "restaurant_menu" + }, + { + "label": "restore_from_trash", + "content": "restore_from_trash" + }, + { + "label": "restore_page", + "content": "restore_page" + }, + { + "label": "resume", + "content": "resume" + }, + { + "label": "reviews", + "content": "reviews" + }, + { + "label": "rewarded_ads", + "content": "rewarded_ads" + }, + { + "label": "rheumatology", + "content": "rheumatology" + }, + { + "label": "rib_cage", + "content": "rib_cage" + }, + { + "label": "rice_bowl", + "content": "rice_bowl" + }, + { + "label": "right_click", + "content": "right_click" + }, + { + "label": "right_panel_close", + "content": "right_panel_close" + }, + { + "label": "right_panel_open", + "content": "right_panel_open" + }, + { + "label": "ring_volume", + "content": "ring_volume" + }, + { + "label": "ripples", + "content": "ripples" + }, + { + "label": "road", + "content": "road" + }, + { + "label": "robot", + "content": "robot" + }, + { + "label": "robot_2", + "content": "robot_2" + }, + { + "label": "rocket", + "content": "rocket" + }, + { + "label": "rocket_launch", + "content": "rocket_launch" + }, + { + "label": "roller_shades", + "content": "roller_shades" + }, + { + "label": "roller_shades_closed", + "content": "roller_shades_closed" + }, + { + "label": "roller_skating", + "content": "roller_skating" + }, + { + "label": "roofing", + "content": "roofing" + }, + { + "label": "room_preferences", + "content": "room_preferences" + }, + { + "label": "room_service", + "content": "room_service" + }, + { + "label": "rotate_90_degrees_ccw", + "content": "rotate_90_degrees_ccw" + }, + { + "label": "rotate_90_degrees_cw", + "content": "rotate_90_degrees_cw" + }, + { + "label": "rotate_left", + "content": "rotate_left" + }, + { + "label": "rotate_right", + "content": "rotate_right" + }, + { + "label": "roundabout_left", + "content": "roundabout_left" + }, + { + "label": "roundabout_right", + "content": "roundabout_right" + }, + { + "label": "rounded_corner", + "content": "rounded_corner" + }, + { + "label": "route", + "content": "route" + }, + { + "label": "router", + "content": "router" + }, + { + "label": "routine", + "content": "routine" + }, + { + "label": "rowing", + "content": "rowing" + }, + { + "label": "rss_feed", + "content": "rss_feed" + }, + { + "label": "rsvp", + "content": "rsvp" + }, + { + "label": "rtt", + "content": "rtt" + }, + { + "label": "rubric", + "content": "rubric" + }, + { + "label": "rule", + "content": "rule" + }, + { + "label": "rule_folder", + "content": "rule_folder" + }, + { + "label": "rule_settings", + "content": "rule_settings" + }, + { + "label": "run_circle", + "content": "run_circle" + }, + { + "label": "running_with_errors", + "content": "running_with_errors" + }, + { + "label": "rv_hookup", + "content": "rv_hookup" + }, + { + "label": "safety_check", + "content": "safety_check" + }, + { + "label": "safety_check_off", + "content": "safety_check_off" + }, + { + "label": "safety_divider", + "content": "safety_divider" + }, + { + "label": "sailing", + "content": "sailing" + }, + { + "label": "salinity", + "content": "salinity" + }, + { + "label": "sanitizer", + "content": "sanitizer" + }, + { + "label": "satellite", + "content": "satellite" + }, + { + "label": "satellite_alt", + "content": "satellite_alt" + }, + { + "label": "sauna", + "content": "sauna" + }, + { + "label": "save", + "content": "save" + }, + { + "label": "save_as", + "content": "save_as" + }, + { + "label": "saved_search", + "content": "saved_search" + }, + { + "label": "savings", + "content": "savings" + }, + { + "label": "scale", + "content": "scale" + }, + { + "label": "scan", + "content": "scan" + }, + { + "label": "scan_delete", + "content": "scan_delete" + }, + { + "label": "scanner", + "content": "scanner" + }, + { + "label": "scatter_plot", + "content": "scatter_plot" + }, + { + "label": "scene", + "content": "scene" + }, + { + "label": "schedule", + "content": "schedule" + }, + { + "label": "schedule_send", + "content": "schedule_send" + }, + { + "label": "schema", + "content": "schema" + }, + { + "label": "school", + "content": "school" + }, + { + "label": "science", + "content": "science" + }, + { + "label": "science_off", + "content": "science_off" + }, + { + "label": "scooter", + "content": "scooter" + }, + { + "label": "score", + "content": "score" + }, + { + "label": "scoreboard", + "content": "scoreboard" + }, + { + "label": "screen_lock_landscape", + "content": "screen_lock_landscape" + }, + { + "label": "screen_lock_portrait", + "content": "screen_lock_portrait" + }, + { + "label": "screen_lock_rotation", + "content": "screen_lock_rotation" + }, + { + "label": "screen_record", + "content": "screen_record" + }, + { + "label": "screen_rotation", + "content": "screen_rotation" + }, + { + "label": "screen_rotation_alt", + "content": "screen_rotation_alt" + }, + { + "label": "screen_rotation_up", + "content": "screen_rotation_up" + }, + { + "label": "screen_search_desktop", + "content": "screen_search_desktop" + }, + { + "label": "screen_share", + "content": "screen_share" + }, + { + "label": "screenshot", + "content": "screenshot" + }, + { + "label": "screenshot_frame", + "content": "screenshot_frame" + }, + { + "label": "screenshot_keyboard", + "content": "screenshot_keyboard" + }, + { + "label": "screenshot_monitor", + "content": "screenshot_monitor" + }, + { + "label": "screenshot_region", + "content": "screenshot_region" + }, + { + "label": "screenshot_tablet", + "content": "screenshot_tablet" + }, + { + "label": "script", + "content": "script" + }, + { + "label": "scrollable_header", + "content": "scrollable_header" + }, + { + "label": "scuba_diving", + "content": "scuba_diving" + }, + { + "label": "sd", + "content": "sd" + }, + { + "label": "sd_card", + "content": "sd_card" + }, + { + "label": "sd_card_alert", + "content": "sd_card_alert" + }, + { + "label": "sdk", + "content": "sdk" + }, + { + "label": "search", + "content": "search" + }, + { + "label": "search_check", + "content": "search_check" + }, + { + "label": "search_check_2", + "content": "search_check_2" + }, + { + "label": "search_hands_free", + "content": "search_hands_free" + }, + { + "label": "search_insights", + "content": "search_insights" + }, + { + "label": "search_off", + "content": "search_off" + }, + { + "label": "security", + "content": "security" + }, + { + "label": "security_key", + "content": "security_key" + }, + { + "label": "security_update_good", + "content": "security_update_good" + }, + { + "label": "security_update_warning", + "content": "security_update_warning" + }, + { + "label": "segment", + "content": "segment" + }, + { + "label": "select", + "content": "select" + }, + { + "label": "select_all", + "content": "select_all" + }, + { + "label": "select_check_box", + "content": "select_check_box" + }, + { + "label": "select_to_speak", + "content": "select_to_speak" + }, + { + "label": "select_window", + "content": "select_window" + }, + { + "label": "select_window_2", + "content": "select_window_2" + }, + { + "label": "select_window_off", + "content": "select_window_off" + }, + { + "label": "self_care", + "content": "self_care" + }, + { + "label": "self_improvement", + "content": "self_improvement" + }, + { + "label": "sell", + "content": "sell" + }, + { + "label": "send", + "content": "send" + }, + { + "label": "send_and_archive", + "content": "send_and_archive" + }, + { + "label": "send_money", + "content": "send_money" + }, + { + "label": "send_time_extension", + "content": "send_time_extension" + }, + { + "label": "send_to_mobile", + "content": "send_to_mobile" + }, + { + "label": "sensor_door", + "content": "sensor_door" + }, + { + "label": "sensor_occupied", + "content": "sensor_occupied" + }, + { + "label": "sensor_window", + "content": "sensor_window" + }, + { + "label": "sensors", + "content": "sensors" + }, + { + "label": "sensors_krx", + "content": "sensors_krx" + }, + { + "label": "sensors_krx_off", + "content": "sensors_krx_off" + }, + { + "label": "sensors_off", + "content": "sensors_off" + }, + { + "label": "sentiment_calm", + "content": "sentiment_calm" + }, + { + "label": "sentiment_content", + "content": "sentiment_content" + }, + { + "label": "sentiment_dissatisfied", + "content": "sentiment_dissatisfied" + }, + { + "label": "sentiment_excited", + "content": "sentiment_excited" + }, + { + "label": "sentiment_extremely_dissatisfied", + "content": "sentiment_extremely_dissatisfied" + }, + { + "label": "sentiment_frustrated", + "content": "sentiment_frustrated" + }, + { + "label": "sentiment_neutral", + "content": "sentiment_neutral" + }, + { + "label": "sentiment_sad", + "content": "sentiment_sad" + }, + { + "label": "sentiment_satisfied", + "content": "sentiment_satisfied" + }, + { + "label": "sentiment_stressed", + "content": "sentiment_stressed" + }, + { + "label": "sentiment_very_dissatisfied", + "content": "sentiment_very_dissatisfied" + }, + { + "label": "sentiment_very_satisfied", + "content": "sentiment_very_satisfied" + }, + { + "label": "sentiment_worried", + "content": "sentiment_worried" + }, + { + "label": "serif", + "content": "serif" + }, + { + "label": "service_toolbox", + "content": "service_toolbox" + }, + { + "label": "set_meal", + "content": "set_meal" + }, + { + "label": "settings", + "content": "settings" + }, + { + "label": "settings_accessibility", + "content": "settings_accessibility" + }, + { + "label": "settings_account_box", + "content": "settings_account_box" + }, + { + "label": "settings_alert", + "content": "settings_alert" + }, + { + "label": "settings_applications", + "content": "settings_applications" + }, + { + "label": "settings_b_roll", + "content": "settings_b_roll" + }, + { + "label": "settings_backup_restore", + "content": "settings_backup_restore" + }, + { + "label": "settings_bluetooth", + "content": "settings_bluetooth" + }, + { + "label": "settings_brightness", + "content": "settings_brightness" + }, + { + "label": "settings_cell", + "content": "settings_cell" + }, + { + "label": "settings_cinematic_blur", + "content": "settings_cinematic_blur" + }, + { + "label": "settings_ethernet", + "content": "settings_ethernet" + }, + { + "label": "settings_heart", + "content": "settings_heart" + }, + { + "label": "settings_input_antenna", + "content": "settings_input_antenna" + }, + { + "label": "settings_input_component", + "content": "settings_input_component" + }, + { + "label": "settings_input_hdmi", + "content": "settings_input_hdmi" + }, + { + "label": "settings_input_svideo", + "content": "settings_input_svideo" + }, + { + "label": "settings_motion_mode", + "content": "settings_motion_mode" + }, + { + "label": "settings_night_sight", + "content": "settings_night_sight" + }, + { + "label": "settings_overscan", + "content": "settings_overscan" + }, + { + "label": "settings_panorama", + "content": "settings_panorama" + }, + { + "label": "settings_phone", + "content": "settings_phone" + }, + { + "label": "settings_photo_camera", + "content": "settings_photo_camera" + }, + { + "label": "settings_power", + "content": "settings_power" + }, + { + "label": "settings_remote", + "content": "settings_remote" + }, + { + "label": "settings_slow_motion", + "content": "settings_slow_motion" + }, + { + "label": "settings_system_daydream", + "content": "settings_system_daydream" + }, + { + "label": "settings_timelapse", + "content": "settings_timelapse" + }, + { + "label": "settings_video_camera", + "content": "settings_video_camera" + }, + { + "label": "settings_voice", + "content": "settings_voice" + }, + { + "label": "settop_component", + "content": "settop_component" + }, + { + "label": "severe_cold", + "content": "severe_cold" + }, + { + "label": "shadow", + "content": "shadow" + }, + { + "label": "shadow_add", + "content": "shadow_add" + }, + { + "label": "shadow_minus", + "content": "shadow_minus" + }, + { + "label": "shape_line", + "content": "shape_line" + }, + { + "label": "shapes", + "content": "shapes" + }, + { + "label": "share", + "content": "share" + }, + { + "label": "share_location", + "content": "share_location" + }, + { + "label": "share_off", + "content": "share_off" + }, + { + "label": "share_reviews", + "content": "share_reviews" + }, + { + "label": "share_windows", + "content": "share_windows" + }, + { + "label": "sheets_rtl", + "content": "sheets_rtl" + }, + { + "label": "shelf_auto_hide", + "content": "shelf_auto_hide" + }, + { + "label": "shelf_position", + "content": "shelf_position" + }, + { + "label": "shelves", + "content": "shelves" + }, + { + "label": "shield", + "content": "shield" + }, + { + "label": "shield_lock", + "content": "shield_lock" + }, + { + "label": "shield_locked", + "content": "shield_locked" + }, + { + "label": "shield_moon", + "content": "shield_moon" + }, + { + "label": "shield_person", + "content": "shield_person" + }, + { + "label": "shield_question", + "content": "shield_question" + }, + { + "label": "shield_with_heart", + "content": "shield_with_heart" + }, + { + "label": "shield_with_house", + "content": "shield_with_house" + }, + { + "label": "shift", + "content": "shift" + }, + { + "label": "shift_lock", + "content": "shift_lock" + }, + { + "label": "shift_lock_off", + "content": "shift_lock_off" + }, + { + "label": "shop", + "content": "shop" + }, + { + "label": "shop_two", + "content": "shop_two" + }, + { + "label": "shopping_bag", + "content": "shopping_bag" + }, + { + "label": "shopping_basket", + "content": "shopping_basket" + }, + { + "label": "shopping_cart", + "content": "shopping_cart" + }, + { + "label": "shopping_cart_checkout", + "content": "shopping_cart_checkout" + }, + { + "label": "shopping_cart_off", + "content": "shopping_cart_off" + }, + { + "label": "shoppingmode", + "content": "shoppingmode" + }, + { + "label": "short_stay", + "content": "short_stay" + }, + { + "label": "short_text", + "content": "short_text" + }, + { + "label": "show_chart", + "content": "show_chart" + }, + { + "label": "shower", + "content": "shower" + }, + { + "label": "shuffle", + "content": "shuffle" + }, + { + "label": "shuffle_on", + "content": "shuffle_on" + }, + { + "label": "shutter_speed", + "content": "shutter_speed" + }, + { + "label": "shutter_speed_add", + "content": "shutter_speed_add" + }, + { + "label": "shutter_speed_minus", + "content": "shutter_speed_minus" + }, + { + "label": "sick", + "content": "sick" + }, + { + "label": "side_navigation", + "content": "side_navigation" + }, + { + "label": "sign_language", + "content": "sign_language" + }, + { + "label": "signal_cellular_0_bar", + "content": "signal_cellular_0_bar" + }, + { + "label": "signal_cellular_1_bar", + "content": "signal_cellular_1_bar" + }, + { + "label": "signal_cellular_2_bar", + "content": "signal_cellular_2_bar" + }, + { + "label": "signal_cellular_3_bar", + "content": "signal_cellular_3_bar" + }, + { + "label": "signal_cellular_4_bar", + "content": "signal_cellular_4_bar" + }, + { + "label": "signal_cellular_add", + "content": "signal_cellular_add" + }, + { + "label": "signal_cellular_alt", + "content": "signal_cellular_alt" + }, + { + "label": "signal_cellular_alt_1_bar", + "content": "signal_cellular_alt_1_bar" + }, + { + "label": "signal_cellular_alt_2_bar", + "content": "signal_cellular_alt_2_bar" + }, + { + "label": "signal_cellular_connected_no_internet_0_bar", + "content": "signal_cellular_connected_no_internet_0_bar" + }, + { + "label": "signal_cellular_connected_no_internet_4_bar", + "content": "signal_cellular_connected_no_internet_4_bar" + }, + { + "label": "signal_cellular_nodata", + "content": "signal_cellular_nodata" + }, + { + "label": "signal_cellular_null", + "content": "signal_cellular_null" + }, + { + "label": "signal_cellular_off", + "content": "signal_cellular_off" + }, + { + "label": "signal_cellular_pause", + "content": "signal_cellular_pause" + }, + { + "label": "signal_disconnected", + "content": "signal_disconnected" + }, + { + "label": "signal_wifi_0_bar", + "content": "signal_wifi_0_bar" + }, + { + "label": "signal_wifi_4_bar", + "content": "signal_wifi_4_bar" + }, + { + "label": "signal_wifi_bad", + "content": "signal_wifi_bad" + }, + { + "label": "signal_wifi_off", + "content": "signal_wifi_off" + }, + { + "label": "signal_wifi_statusbar_not_connected", + "content": "signal_wifi_statusbar_not_connected" + }, + { + "label": "signal_wifi_statusbar_null", + "content": "signal_wifi_statusbar_null" + }, + { + "label": "signature", + "content": "signature" + }, + { + "label": "signpost", + "content": "signpost" + }, + { + "label": "sim_card", + "content": "sim_card" + }, + { + "label": "sim_card_download", + "content": "sim_card_download" + }, + { + "label": "single_bed", + "content": "single_bed" + }, + { + "label": "sip", + "content": "sip" + }, + { + "label": "skateboarding", + "content": "skateboarding" + }, + { + "label": "skeleton", + "content": "skeleton" + }, + { + "label": "skillet", + "content": "skillet" + }, + { + "label": "skillet_cooktop", + "content": "skillet_cooktop" + }, + { + "label": "skip_next", + "content": "skip_next" + }, + { + "label": "skip_previous", + "content": "skip_previous" + }, + { + "label": "skull", + "content": "skull" + }, + { + "label": "slab_serif", + "content": "slab_serif" + }, + { + "label": "sledding", + "content": "sledding" + }, + { + "label": "sleep_score", + "content": "sleep_score" + }, + { + "label": "slide_library", + "content": "slide_library" + }, + { + "label": "sliders", + "content": "sliders" + }, + { + "label": "slideshow", + "content": "slideshow" + }, + { + "label": "slow_motion_video", + "content": "slow_motion_video" + }, + { + "label": "smart_card_reader", + "content": "smart_card_reader" + }, + { + "label": "smart_card_reader_off", + "content": "smart_card_reader_off" + }, + { + "label": "smart_display", + "content": "smart_display" + }, + { + "label": "smart_outlet", + "content": "smart_outlet" + }, + { + "label": "smart_screen", + "content": "smart_screen" + }, + { + "label": "smart_toy", + "content": "smart_toy" + }, + { + "label": "smartphone", + "content": "smartphone" + }, + { + "label": "smb_share", + "content": "smb_share" + }, + { + "label": "smoke_free", + "content": "smoke_free" + }, + { + "label": "smoking_rooms", + "content": "smoking_rooms" + }, + { + "label": "sms", + "content": "sms" + }, + { + "label": "snippet_folder", + "content": "snippet_folder" + }, + { + "label": "snooze", + "content": "snooze" + }, + { + "label": "snowboarding", + "content": "snowboarding" + }, + { + "label": "snowing", + "content": "snowing" + }, + { + "label": "snowing_heavy", + "content": "snowing_heavy" + }, + { + "label": "snowmobile", + "content": "snowmobile" + }, + { + "label": "snowshoeing", + "content": "snowshoeing" + }, + { + "label": "soap", + "content": "soap" + }, + { + "label": "social_distance", + "content": "social_distance" + }, + { + "label": "social_leaderboard", + "content": "social_leaderboard" + }, + { + "label": "solar_power", + "content": "solar_power" + }, + { + "label": "sort", + "content": "sort" + }, + { + "label": "sort_by_alpha", + "content": "sort_by_alpha" + }, + { + "label": "sos", + "content": "sos" + }, + { + "label": "sound_detection_dog_barking", + "content": "sound_detection_dog_barking" + }, + { + "label": "sound_detection_glass_break", + "content": "sound_detection_glass_break" + }, + { + "label": "sound_detection_loud_sound", + "content": "sound_detection_loud_sound" + }, + { + "label": "sound_sampler", + "content": "sound_sampler" + }, + { + "label": "soup_kitchen", + "content": "soup_kitchen" + }, + { + "label": "source_environment", + "content": "source_environment" + }, + { + "label": "source_notes", + "content": "source_notes" + }, + { + "label": "south", + "content": "south" + }, + { + "label": "south_america", + "content": "south_america" + }, + { + "label": "south_east", + "content": "south_east" + }, + { + "label": "south_west", + "content": "south_west" + }, + { + "label": "spa", + "content": "spa" + }, + { + "label": "space_bar", + "content": "space_bar" + }, + { + "label": "space_dashboard", + "content": "space_dashboard" + }, + { + "label": "spatial_audio", + "content": "spatial_audio" + }, + { + "label": "spatial_audio_off", + "content": "spatial_audio_off" + }, + { + "label": "spatial_speaker", + "content": "spatial_speaker" + }, + { + "label": "spatial_tracking", + "content": "spatial_tracking" + }, + { + "label": "speaker", + "content": "speaker" + }, + { + "label": "speaker_group", + "content": "speaker_group" + }, + { + "label": "speaker_notes", + "content": "speaker_notes" + }, + { + "label": "speaker_notes_off", + "content": "speaker_notes_off" + }, + { + "label": "speaker_phone", + "content": "speaker_phone" + }, + { + "label": "special_character", + "content": "special_character" + }, + { + "label": "specific_gravity", + "content": "specific_gravity" + }, + { + "label": "speech_to_text", + "content": "speech_to_text" + }, + { + "label": "speed", + "content": "speed" + }, + { + "label": "speed_0_25", + "content": "speed_0_25" + }, + { + "label": "speed_0_2x", + "content": "speed_0_2x" + }, + { + "label": "speed_0_5", + "content": "speed_0_5" + }, + { + "label": "speed_0_5x", + "content": "speed_0_5x" + }, + { + "label": "speed_0_75", + "content": "speed_0_75" + }, + { + "label": "speed_0_7x", + "content": "speed_0_7x" + }, + { + "label": "speed_1_2", + "content": "speed_1_2" + }, + { + "label": "speed_1_25", + "content": "speed_1_25" + }, + { + "label": "speed_1_2x", + "content": "speed_1_2x" + }, + { + "label": "speed_1_5", + "content": "speed_1_5" + }, + { + "label": "speed_1_5x", + "content": "speed_1_5x" + }, + { + "label": "speed_1_75", + "content": "speed_1_75" + }, + { + "label": "speed_1_7x", + "content": "speed_1_7x" + }, + { + "label": "speed_2x", + "content": "speed_2x" + }, + { + "label": "speed_camera", + "content": "speed_camera" + }, + { + "label": "spellcheck", + "content": "spellcheck" + }, + { + "label": "splitscreen", + "content": "splitscreen" + }, + { + "label": "splitscreen_add", + "content": "splitscreen_add" + }, + { + "label": "splitscreen_bottom", + "content": "splitscreen_bottom" + }, + { + "label": "splitscreen_landscape", + "content": "splitscreen_landscape" + }, + { + "label": "splitscreen_left", + "content": "splitscreen_left" + }, + { + "label": "splitscreen_portrait", + "content": "splitscreen_portrait" + }, + { + "label": "splitscreen_right", + "content": "splitscreen_right" + }, + { + "label": "splitscreen_top", + "content": "splitscreen_top" + }, + { + "label": "splitscreen_vertical_add", + "content": "splitscreen_vertical_add" + }, + { + "label": "spo2", + "content": "spo2" + }, + { + "label": "spoke", + "content": "spoke" + }, + { + "label": "sports", + "content": "sports" + }, + { + "label": "sports_and_outdoors", + "content": "sports_and_outdoors" + }, + { + "label": "sports_bar", + "content": "sports_bar" + }, + { + "label": "sports_baseball", + "content": "sports_baseball" + }, + { + "label": "sports_basketball", + "content": "sports_basketball" + }, + { + "label": "sports_cricket", + "content": "sports_cricket" + }, + { + "label": "sports_esports", + "content": "sports_esports" + }, + { + "label": "sports_football", + "content": "sports_football" + }, + { + "label": "sports_golf", + "content": "sports_golf" + }, + { + "label": "sports_gymnastics", + "content": "sports_gymnastics" + }, + { + "label": "sports_handball", + "content": "sports_handball" + }, + { + "label": "sports_hockey", + "content": "sports_hockey" + }, + { + "label": "sports_kabaddi", + "content": "sports_kabaddi" + }, + { + "label": "sports_martial_arts", + "content": "sports_martial_arts" + }, + { + "label": "sports_mma", + "content": "sports_mma" + }, + { + "label": "sports_motorsports", + "content": "sports_motorsports" + }, + { + "label": "sports_rugby", + "content": "sports_rugby" + }, + { + "label": "sports_score", + "content": "sports_score" + }, + { + "label": "sports_soccer", + "content": "sports_soccer" + }, + { + "label": "sports_tennis", + "content": "sports_tennis" + }, + { + "label": "sports_volleyball", + "content": "sports_volleyball" + }, + { + "label": "sprinkler", + "content": "sprinkler" + }, + { + "label": "sprint", + "content": "sprint" + }, + { + "label": "square", + "content": "square" + }, + { + "label": "square_foot", + "content": "square_foot" + }, + { + "label": "ssid_chart", + "content": "ssid_chart" + }, + { + "label": "stack", + "content": "stack" + }, + { + "label": "stack_off", + "content": "stack_off" + }, + { + "label": "stack_star", + "content": "stack_star" + }, + { + "label": "stacked_bar_chart", + "content": "stacked_bar_chart" + }, + { + "label": "stacked_email", + "content": "stacked_email" + }, + { + "label": "stacked_inbox", + "content": "stacked_inbox" + }, + { + "label": "stacked_line_chart", + "content": "stacked_line_chart" + }, + { + "label": "stacks", + "content": "stacks" + }, + { + "label": "stadia_controller", + "content": "stadia_controller" + }, + { + "label": "stadium", + "content": "stadium" + }, + { + "label": "stairs", + "content": "stairs" + }, + { + "label": "stairs_2", + "content": "stairs_2" + }, + { + "label": "star", + "content": "star" + }, + { + "label": "star_half", + "content": "star_half" + }, + { + "label": "star_rate", + "content": "star_rate" + }, + { + "label": "star_rate_half", + "content": "star_rate_half" + }, + { + "label": "stars", + "content": "stars" + }, + { + "label": "start", + "content": "start" + }, + { + "label": "stat_0", + "content": "stat_0" + }, + { + "label": "stat_1", + "content": "stat_1" + }, + { + "label": "stat_2", + "content": "stat_2" + }, + { + "label": "stat_3", + "content": "stat_3" + }, + { + "label": "stat_minus_1", + "content": "stat_minus_1" + }, + { + "label": "stat_minus_2", + "content": "stat_minus_2" + }, + { + "label": "stat_minus_3", + "content": "stat_minus_3" + }, + { + "label": "stay_current_landscape", + "content": "stay_current_landscape" + }, + { + "label": "stay_current_portrait", + "content": "stay_current_portrait" + }, + { + "label": "stay_primary_landscape", + "content": "stay_primary_landscape" + }, + { + "label": "stay_primary_portrait", + "content": "stay_primary_portrait" + }, + { + "label": "step", + "content": "step" + }, + { + "label": "step_into", + "content": "step_into" + }, + { + "label": "step_out", + "content": "step_out" + }, + { + "label": "step_over", + "content": "step_over" + }, + { + "label": "steppers", + "content": "steppers" + }, + { + "label": "steps", + "content": "steps" + }, + { + "label": "stethoscope", + "content": "stethoscope" + }, + { + "label": "stethoscope_arrow", + "content": "stethoscope_arrow" + }, + { + "label": "stethoscope_check", + "content": "stethoscope_check" + }, + { + "label": "sticky_note", + "content": "sticky_note" + }, + { + "label": "sticky_note_2", + "content": "sticky_note_2" + }, + { + "label": "stock_media", + "content": "stock_media" + }, + { + "label": "stockpot", + "content": "stockpot" + }, + { + "label": "stop", + "content": "stop" + }, + { + "label": "stop_circle", + "content": "stop_circle" + }, + { + "label": "stop_screen_share", + "content": "stop_screen_share" + }, + { + "label": "storage", + "content": "storage" + }, + { + "label": "store", + "content": "store" + }, + { + "label": "storefront", + "content": "storefront" + }, + { + "label": "storm", + "content": "storm" + }, + { + "label": "straight", + "content": "straight" + }, + { + "label": "straighten", + "content": "straighten" + }, + { + "label": "strategy", + "content": "strategy" + }, + { + "label": "stream", + "content": "stream" + }, + { + "label": "stream_apps", + "content": "stream_apps" + }, + { + "label": "streetview", + "content": "streetview" + }, + { + "label": "stress_management", + "content": "stress_management" + }, + { + "label": "strikethrough_s", + "content": "strikethrough_s" + }, + { + "label": "stroke_full", + "content": "stroke_full" + }, + { + "label": "stroke_partial", + "content": "stroke_partial" + }, + { + "label": "stroller", + "content": "stroller" + }, + { + "label": "style", + "content": "style" + }, + { + "label": "styler", + "content": "styler" + }, + { + "label": "stylus", + "content": "stylus" + }, + { + "label": "stylus_laser_pointer", + "content": "stylus_laser_pointer" + }, + { + "label": "stylus_note", + "content": "stylus_note" + }, + { + "label": "subdirectory_arrow_left", + "content": "subdirectory_arrow_left" + }, + { + "label": "subdirectory_arrow_right", + "content": "subdirectory_arrow_right" + }, + { + "label": "subheader", + "content": "subheader" + }, + { + "label": "subject", + "content": "subject" + }, + { + "label": "subscript", + "content": "subscript" + }, + { + "label": "subscriptions", + "content": "subscriptions" + }, + { + "label": "subtitles", + "content": "subtitles" + }, + { + "label": "subtitles_off", + "content": "subtitles_off" + }, + { + "label": "subway", + "content": "subway" + }, + { + "label": "summarize", + "content": "summarize" + }, + { + "label": "sunny", + "content": "sunny" + }, + { + "label": "sunny_snowing", + "content": "sunny_snowing" + }, + { + "label": "superscript", + "content": "superscript" + }, + { + "label": "supervised_user_circle", + "content": "supervised_user_circle" + }, + { + "label": "supervised_user_circle_off", + "content": "supervised_user_circle_off" + }, + { + "label": "supervisor_account", + "content": "supervisor_account" + }, + { + "label": "support", + "content": "support" + }, + { + "label": "support_agent", + "content": "support_agent" + }, + { + "label": "surfing", + "content": "surfing" + }, + { + "label": "surgical", + "content": "surgical" + }, + { + "label": "surround_sound", + "content": "surround_sound" + }, + { + "label": "swap_calls", + "content": "swap_calls" + }, + { + "label": "swap_driving_apps", + "content": "swap_driving_apps" + }, + { + "label": "swap_driving_apps_wheel", + "content": "swap_driving_apps_wheel" + }, + { + "label": "swap_horiz", + "content": "swap_horiz" + }, + { + "label": "swap_horizontal_circle", + "content": "swap_horizontal_circle" + }, + { + "label": "swap_vert", + "content": "swap_vert" + }, + { + "label": "swap_vertical_circle", + "content": "swap_vertical_circle" + }, + { + "label": "sweep", + "content": "sweep" + }, + { + "label": "swipe", + "content": "swipe" + }, + { + "label": "swipe_down", + "content": "swipe_down" + }, + { + "label": "swipe_down_alt", + "content": "swipe_down_alt" + }, + { + "label": "swipe_left", + "content": "swipe_left" + }, + { + "label": "swipe_left_alt", + "content": "swipe_left_alt" + }, + { + "label": "swipe_right", + "content": "swipe_right" + }, + { + "label": "swipe_right_alt", + "content": "swipe_right_alt" + }, + { + "label": "swipe_up", + "content": "swipe_up" + }, + { + "label": "swipe_up_alt", + "content": "swipe_up_alt" + }, + { + "label": "swipe_vertical", + "content": "swipe_vertical" + }, + { + "label": "switch", + "content": "switch" + }, + { + "label": "switch_access", + "content": "switch_access" + }, + { + "label": "switch_access_2", + "content": "switch_access_2" + }, + { + "label": "switch_access_shortcut", + "content": "switch_access_shortcut" + }, + { + "label": "switch_access_shortcut_add", + "content": "switch_access_shortcut_add" + }, + { + "label": "switch_account", + "content": "switch_account" + }, + { + "label": "switch_camera", + "content": "switch_camera" + }, + { + "label": "switch_left", + "content": "switch_left" + }, + { + "label": "switch_right", + "content": "switch_right" + }, + { + "label": "switch_video", + "content": "switch_video" + }, + { + "label": "switches", + "content": "switches" + }, + { + "label": "sword_rose", + "content": "sword_rose" + }, + { + "label": "swords", + "content": "swords" + }, + { + "label": "symptoms", + "content": "symptoms" + }, + { + "label": "synagogue", + "content": "synagogue" + }, + { + "label": "sync", + "content": "sync" + }, + { + "label": "sync_alt", + "content": "sync_alt" + }, + { + "label": "sync_disabled", + "content": "sync_disabled" + }, + { + "label": "sync_lock", + "content": "sync_lock" + }, + { + "label": "sync_problem", + "content": "sync_problem" + }, + { + "label": "sync_saved_locally", + "content": "sync_saved_locally" + }, + { + "label": "syringe", + "content": "syringe" + }, + { + "label": "system_update", + "content": "system_update" + }, + { + "label": "system_update_alt", + "content": "system_update_alt" + }, + { + "label": "tab", + "content": "tab" + }, + { + "label": "tab_close", + "content": "tab_close" + }, + { + "label": "tab_close_right", + "content": "tab_close_right" + }, + { + "label": "tab_duplicate", + "content": "tab_duplicate" + }, + { + "label": "tab_group", + "content": "tab_group" + }, + { + "label": "tab_move", + "content": "tab_move" + }, + { + "label": "tab_new_right", + "content": "tab_new_right" + }, + { + "label": "tab_recent", + "content": "tab_recent" + }, + { + "label": "tab_unselected", + "content": "tab_unselected" + }, + { + "label": "table", + "content": "table" + }, + { + "label": "table_bar", + "content": "table_bar" + }, + { + "label": "table_chart", + "content": "table_chart" + }, + { + "label": "table_chart_view", + "content": "table_chart_view" + }, + { + "label": "table_eye", + "content": "table_eye" + }, + { + "label": "table_lamp", + "content": "table_lamp" + }, + { + "label": "table_restaurant", + "content": "table_restaurant" + }, + { + "label": "table_rows", + "content": "table_rows" + }, + { + "label": "table_rows_narrow", + "content": "table_rows_narrow" + }, + { + "label": "table_view", + "content": "table_view" + }, + { + "label": "tablet", + "content": "tablet" + }, + { + "label": "tablet_android", + "content": "tablet_android" + }, + { + "label": "tablet_mac", + "content": "tablet_mac" + }, + { + "label": "tabs", + "content": "tabs" + }, + { + "label": "tactic", + "content": "tactic" + }, + { + "label": "tag", + "content": "tag" + }, + { + "label": "takeout_dining", + "content": "takeout_dining" + }, + { + "label": "tamper_detection_off", + "content": "tamper_detection_off" + }, + { + "label": "tamper_detection_on", + "content": "tamper_detection_on" + }, + { + "label": "tap_and_play", + "content": "tap_and_play" + }, + { + "label": "tapas", + "content": "tapas" + }, + { + "label": "target", + "content": "target" + }, + { + "label": "task", + "content": "task" + }, + { + "label": "task_alt", + "content": "task_alt" + }, + { + "label": "taunt", + "content": "taunt" + }, + { + "label": "taxi_alert", + "content": "taxi_alert" + }, + { + "label": "team_dashboard", + "content": "team_dashboard" + }, + { + "label": "temp_preferences_eco", + "content": "temp_preferences_eco" + }, + { + "label": "temple_buddhist", + "content": "temple_buddhist" + }, + { + "label": "temple_hindu", + "content": "temple_hindu" + }, + { + "label": "tenancy", + "content": "tenancy" + }, + { + "label": "terminal", + "content": "terminal" + }, + { + "label": "text_ad", + "content": "text_ad" + }, + { + "label": "text_decrease", + "content": "text_decrease" + }, + { + "label": "text_fields", + "content": "text_fields" + }, + { + "label": "text_fields_alt", + "content": "text_fields_alt" + }, + { + "label": "text_format", + "content": "text_format" + }, + { + "label": "text_increase", + "content": "text_increase" + }, + { + "label": "text_rotate_up", + "content": "text_rotate_up" + }, + { + "label": "text_rotate_vertical", + "content": "text_rotate_vertical" + }, + { + "label": "text_rotation_angledown", + "content": "text_rotation_angledown" + }, + { + "label": "text_rotation_angleup", + "content": "text_rotation_angleup" + }, + { + "label": "text_rotation_down", + "content": "text_rotation_down" + }, + { + "label": "text_rotation_none", + "content": "text_rotation_none" + }, + { + "label": "text_select_end", + "content": "text_select_end" + }, + { + "label": "text_select_jump_to_beginning", + "content": "text_select_jump_to_beginning" + }, + { + "label": "text_select_jump_to_end", + "content": "text_select_jump_to_end" + }, + { + "label": "text_select_move_back_character", + "content": "text_select_move_back_character" + }, + { + "label": "text_select_move_back_word", + "content": "text_select_move_back_word" + }, + { + "label": "text_select_move_down", + "content": "text_select_move_down" + }, + { + "label": "text_select_move_forward_character", + "content": "text_select_move_forward_character" + }, + { + "label": "text_select_move_forward_word", + "content": "text_select_move_forward_word" + }, + { + "label": "text_select_move_up", + "content": "text_select_move_up" + }, + { + "label": "text_select_start", + "content": "text_select_start" + }, + { + "label": "text_snippet", + "content": "text_snippet" + }, + { + "label": "text_to_speech", + "content": "text_to_speech" + }, + { + "label": "text_up", + "content": "text_up" + }, + { + "label": "texture", + "content": "texture" + }, + { + "label": "texture_add", + "content": "texture_add" + }, + { + "label": "texture_minus", + "content": "texture_minus" + }, + { + "label": "theater_comedy", + "content": "theater_comedy" + }, + { + "label": "theaters", + "content": "theaters" + }, + { + "label": "thermometer", + "content": "thermometer" + }, + { + "label": "thermometer_add", + "content": "thermometer_add" + }, + { + "label": "thermometer_gain", + "content": "thermometer_gain" + }, + { + "label": "thermometer_loss", + "content": "thermometer_loss" + }, + { + "label": "thermometer_minus", + "content": "thermometer_minus" + }, + { + "label": "thermostat", + "content": "thermostat" + }, + { + "label": "thermostat_auto", + "content": "thermostat_auto" + }, + { + "label": "thermostat_carbon", + "content": "thermostat_carbon" + }, + { + "label": "things_to_do", + "content": "things_to_do" + }, + { + "label": "thread_unread", + "content": "thread_unread" + }, + { + "label": "thumb_down", + "content": "thumb_down" + }, + { + "label": "thumb_up", + "content": "thumb_up" + }, + { + "label": "thumbnail_bar", + "content": "thumbnail_bar" + }, + { + "label": "thumbs_up_down", + "content": "thumbs_up_down" + }, + { + "label": "thunderstorm", + "content": "thunderstorm" + }, + { + "label": "tibia", + "content": "tibia" + }, + { + "label": "tibia_alt", + "content": "tibia_alt" + }, + { + "label": "time_auto", + "content": "time_auto" + }, + { + "label": "timelapse", + "content": "timelapse" + }, + { + "label": "timeline", + "content": "timeline" + }, + { + "label": "timer", + "content": "timer" + }, + { + "label": "timer_10", + "content": "timer_10" + }, + { + "label": "timer_10_alt_1", + "content": "timer_10_alt_1" + }, + { + "label": "timer_10_select", + "content": "timer_10_select" + }, + { + "label": "timer_3", + "content": "timer_3" + }, + { + "label": "timer_3_alt_1", + "content": "timer_3_alt_1" + }, + { + "label": "timer_3_select", + "content": "timer_3_select" + }, + { + "label": "timer_5", + "content": "timer_5" + }, + { + "label": "timer_5_shutter", + "content": "timer_5_shutter" + }, + { + "label": "timer_off", + "content": "timer_off" + }, + { + "label": "timer_pause", + "content": "timer_pause" + }, + { + "label": "timer_play", + "content": "timer_play" + }, + { + "label": "tire_repair", + "content": "tire_repair" + }, + { + "label": "title", + "content": "title" + }, + { + "label": "titlecase", + "content": "titlecase" + }, + { + "label": "toast", + "content": "toast" + }, + { + "label": "toc", + "content": "toc" + }, + { + "label": "today", + "content": "today" + }, + { + "label": "toggle_off", + "content": "toggle_off" + }, + { + "label": "toggle_on", + "content": "toggle_on" + }, + { + "label": "token", + "content": "token" + }, + { + "label": "toll", + "content": "toll" + }, + { + "label": "tonality", + "content": "tonality" + }, + { + "label": "toolbar", + "content": "toolbar" + }, + { + "label": "tools_flat_head", + "content": "tools_flat_head" + }, + { + "label": "tools_installation_kit", + "content": "tools_installation_kit" + }, + { + "label": "tools_ladder", + "content": "tools_ladder" + }, + { + "label": "tools_level", + "content": "tools_level" + }, + { + "label": "tools_phillips", + "content": "tools_phillips" + }, + { + "label": "tools_pliers_wire_stripper", + "content": "tools_pliers_wire_stripper" + }, + { + "label": "tools_power_drill", + "content": "tools_power_drill" + }, + { + "label": "tooltip", + "content": "tooltip" + }, + { + "label": "top_panel_close", + "content": "top_panel_close" + }, + { + "label": "top_panel_open", + "content": "top_panel_open" + }, + { + "label": "topic", + "content": "topic" + }, + { + "label": "tornado", + "content": "tornado" + }, + { + "label": "total_dissolved_solids", + "content": "total_dissolved_solids" + }, + { + "label": "touch_app", + "content": "touch_app" + }, + { + "label": "touchpad_mouse", + "content": "touchpad_mouse" + }, + { + "label": "touchpad_mouse_off", + "content": "touchpad_mouse_off" + }, + { + "label": "tour", + "content": "tour" + }, + { + "label": "toys", + "content": "toys" + }, + { + "label": "toys_and_games", + "content": "toys_and_games" + }, + { + "label": "toys_fan", + "content": "toys_fan" + }, + { + "label": "track_changes", + "content": "track_changes" + }, + { + "label": "trackpad_input", + "content": "trackpad_input" + }, + { + "label": "traffic", + "content": "traffic" + }, + { + "label": "traffic_jam", + "content": "traffic_jam" + }, + { + "label": "trail_length", + "content": "trail_length" + }, + { + "label": "trail_length_medium", + "content": "trail_length_medium" + }, + { + "label": "trail_length_short", + "content": "trail_length_short" + }, + { + "label": "train", + "content": "train" + }, + { + "label": "tram", + "content": "tram" + }, + { + "label": "transcribe", + "content": "transcribe" + }, + { + "label": "transfer_within_a_station", + "content": "transfer_within_a_station" + }, + { + "label": "transform", + "content": "transform" + }, + { + "label": "transgender", + "content": "transgender" + }, + { + "label": "transit_enterexit", + "content": "transit_enterexit" + }, + { + "label": "transition_chop", + "content": "transition_chop" + }, + { + "label": "transition_dissolve", + "content": "transition_dissolve" + }, + { + "label": "transition_fade", + "content": "transition_fade" + }, + { + "label": "transition_push", + "content": "transition_push" + }, + { + "label": "transition_slide", + "content": "transition_slide" + }, + { + "label": "translate", + "content": "translate" + }, + { + "label": "transportation", + "content": "transportation" + }, + { + "label": "travel", + "content": "travel" + }, + { + "label": "travel_explore", + "content": "travel_explore" + }, + { + "label": "travel_luggage_and_bags", + "content": "travel_luggage_and_bags" + }, + { + "label": "trending_down", + "content": "trending_down" + }, + { + "label": "trending_flat", + "content": "trending_flat" + }, + { + "label": "trending_up", + "content": "trending_up" + }, + { + "label": "trip", + "content": "trip" + }, + { + "label": "trip_origin", + "content": "trip_origin" + }, + { + "label": "trolley", + "content": "trolley" + }, + { + "label": "trolley_cable_car", + "content": "trolley_cable_car" + }, + { + "label": "trophy", + "content": "trophy" + }, + { + "label": "troubleshoot", + "content": "troubleshoot" + }, + { + "label": "tsunami", + "content": "tsunami" + }, + { + "label": "tsv", + "content": "tsv" + }, + { + "label": "tty", + "content": "tty" + }, + { + "label": "tune", + "content": "tune" + }, + { + "label": "turn_left", + "content": "turn_left" + }, + { + "label": "turn_right", + "content": "turn_right" + }, + { + "label": "turn_sharp_left", + "content": "turn_sharp_left" + }, + { + "label": "turn_sharp_right", + "content": "turn_sharp_right" + }, + { + "label": "turn_slight_left", + "content": "turn_slight_left" + }, + { + "label": "turn_slight_right", + "content": "turn_slight_right" + }, + { + "label": "tv", + "content": "tv" + }, + { + "label": "tv_gen", + "content": "tv_gen" + }, + { + "label": "tv_guide", + "content": "tv_guide" + }, + { + "label": "tv_off", + "content": "tv_off" + }, + { + "label": "tv_options_edit_channels", + "content": "tv_options_edit_channels" + }, + { + "label": "tv_options_input_settings", + "content": "tv_options_input_settings" + }, + { + "label": "tv_remote", + "content": "tv_remote" + }, + { + "label": "tv_signin", + "content": "tv_signin" + }, + { + "label": "tv_with_assistant", + "content": "tv_with_assistant" + }, + { + "label": "two_pager", + "content": "two_pager" + }, + { + "label": "two_wheeler", + "content": "two_wheeler" + }, + { + "label": "type_specimen", + "content": "type_specimen" + }, + { + "label": "u_turn_left", + "content": "u_turn_left" + }, + { + "label": "u_turn_right", + "content": "u_turn_right" + }, + { + "label": "ulna_radius", + "content": "ulna_radius" + }, + { + "label": "ulna_radius_alt", + "content": "ulna_radius_alt" + }, + { + "label": "umbrella", + "content": "umbrella" + }, + { + "label": "unarchive", + "content": "unarchive" + }, + { + "label": "undo", + "content": "undo" + }, + { + "label": "unfold_less", + "content": "unfold_less" + }, + { + "label": "unfold_less_double", + "content": "unfold_less_double" + }, + { + "label": "unfold_more", + "content": "unfold_more" + }, + { + "label": "unfold_more_double", + "content": "unfold_more_double" + }, + { + "label": "ungroup", + "content": "ungroup" + }, + { + "label": "universal_currency", + "content": "universal_currency" + }, + { + "label": "universal_currency_alt", + "content": "universal_currency_alt" + }, + { + "label": "universal_local", + "content": "universal_local" + }, + { + "label": "unknown_2", + "content": "unknown_2" + }, + { + "label": "unknown_5", + "content": "unknown_5" + }, + { + "label": "unknown_7", + "content": "unknown_7" + }, + { + "label": "unknown_document", + "content": "unknown_document" + }, + { + "label": "unknown_med", + "content": "unknown_med" + }, + { + "label": "unlicense", + "content": "unlicense" + }, + { + "label": "unpaved_road", + "content": "unpaved_road" + }, + { + "label": "unpublished", + "content": "unpublished" + }, + { + "label": "unsubscribe", + "content": "unsubscribe" + }, + { + "label": "upcoming", + "content": "upcoming" + }, + { + "label": "update", + "content": "update" + }, + { + "label": "update_disabled", + "content": "update_disabled" + }, + { + "label": "upgrade", + "content": "upgrade" + }, + { + "label": "upload", + "content": "upload" + }, + { + "label": "upload_2", + "content": "upload_2" + }, + { + "label": "upload_file", + "content": "upload_file" + }, + { + "label": "uppercase", + "content": "uppercase" + }, + { + "label": "urology", + "content": "urology" + }, + { + "label": "usb", + "content": "usb" + }, + { + "label": "usb_off", + "content": "usb_off" + }, + { + "label": "user_attributes", + "content": "user_attributes" + }, + { + "label": "vaccines", + "content": "vaccines" + }, + { + "label": "vacuum", + "content": "vacuum" + }, + { + "label": "valve", + "content": "valve" + }, + { + "label": "vape_free", + "content": "vape_free" + }, + { + "label": "vaping_rooms", + "content": "vaping_rooms" + }, + { + "label": "variable_add", + "content": "variable_add" + }, + { + "label": "variable_insert", + "content": "variable_insert" + }, + { + "label": "variable_remove", + "content": "variable_remove" + }, + { + "label": "variables", + "content": "variables" + }, + { + "label": "ventilator", + "content": "ventilator" + }, + { + "label": "verified", + "content": "verified" + }, + { + "label": "verified_user", + "content": "verified_user" + }, + { + "label": "vertical_align_bottom", + "content": "vertical_align_bottom" + }, + { + "label": "vertical_align_center", + "content": "vertical_align_center" + }, + { + "label": "vertical_align_top", + "content": "vertical_align_top" + }, + { + "label": "vertical_distribute", + "content": "vertical_distribute" + }, + { + "label": "vertical_shades", + "content": "vertical_shades" + }, + { + "label": "vertical_shades_closed", + "content": "vertical_shades_closed" + }, + { + "label": "vertical_split", + "content": "vertical_split" + }, + { + "label": "vibration", + "content": "vibration" + }, + { + "label": "video_call", + "content": "video_call" + }, + { + "label": "video_camera_back", + "content": "video_camera_back" + }, + { + "label": "video_camera_front", + "content": "video_camera_front" + }, + { + "label": "video_camera_front_off", + "content": "video_camera_front_off" + }, + { + "label": "video_chat", + "content": "video_chat" + }, + { + "label": "video_file", + "content": "video_file" + }, + { + "label": "video_label", + "content": "video_label" + }, + { + "label": "video_library", + "content": "video_library" + }, + { + "label": "video_search", + "content": "video_search" + }, + { + "label": "video_settings", + "content": "video_settings" + }, + { + "label": "video_stable", + "content": "video_stable" + }, + { + "label": "videocam", + "content": "videocam" + }, + { + "label": "videocam_off", + "content": "videocam_off" + }, + { + "label": "videogame_asset", + "content": "videogame_asset" + }, + { + "label": "videogame_asset_off", + "content": "videogame_asset_off" + }, + { + "label": "view_agenda", + "content": "view_agenda" + }, + { + "label": "view_array", + "content": "view_array" + }, + { + "label": "view_carousel", + "content": "view_carousel" + }, + { + "label": "view_column", + "content": "view_column" + }, + { + "label": "view_column_2", + "content": "view_column_2" + }, + { + "label": "view_comfy", + "content": "view_comfy" + }, + { + "label": "view_comfy_alt", + "content": "view_comfy_alt" + }, + { + "label": "view_compact", + "content": "view_compact" + }, + { + "label": "view_compact_alt", + "content": "view_compact_alt" + }, + { + "label": "view_cozy", + "content": "view_cozy" + }, + { + "label": "view_day", + "content": "view_day" + }, + { + "label": "view_headline", + "content": "view_headline" + }, + { + "label": "view_in_ar", + "content": "view_in_ar" + }, + { + "label": "view_in_ar_off", + "content": "view_in_ar_off" + }, + { + "label": "view_kanban", + "content": "view_kanban" + }, + { + "label": "view_list", + "content": "view_list" + }, + { + "label": "view_module", + "content": "view_module" + }, + { + "label": "view_quilt", + "content": "view_quilt" + }, + { + "label": "view_real_size", + "content": "view_real_size" + }, + { + "label": "view_sidebar", + "content": "view_sidebar" + }, + { + "label": "view_stream", + "content": "view_stream" + }, + { + "label": "view_timeline", + "content": "view_timeline" + }, + { + "label": "view_week", + "content": "view_week" + }, + { + "label": "vignette", + "content": "vignette" + }, + { + "label": "villa", + "content": "villa" + }, + { + "label": "visibility", + "content": "visibility" + }, + { + "label": "visibility_lock", + "content": "visibility_lock" + }, + { + "label": "visibility_off", + "content": "visibility_off" + }, + { + "label": "vital_signs", + "content": "vital_signs" + }, + { + "label": "vo2_max", + "content": "vo2_max" + }, + { + "label": "voice_chat", + "content": "voice_chat" + }, + { + "label": "voice_over_off", + "content": "voice_over_off" + }, + { + "label": "voice_selection", + "content": "voice_selection" + }, + { + "label": "voicemail", + "content": "voicemail" + }, + { + "label": "volcano", + "content": "volcano" + }, + { + "label": "volume_down", + "content": "volume_down" + }, + { + "label": "volume_down_alt", + "content": "volume_down_alt" + }, + { + "label": "volume_mute", + "content": "volume_mute" + }, + { + "label": "volume_off", + "content": "volume_off" + }, + { + "label": "volume_up", + "content": "volume_up" + }, + { + "label": "volunteer_activism", + "content": "volunteer_activism" + }, + { + "label": "voting_chip", + "content": "voting_chip" + }, + { + "label": "vpn_key", + "content": "vpn_key" + }, + { + "label": "vpn_key_alert", + "content": "vpn_key_alert" + }, + { + "label": "vpn_key_off", + "content": "vpn_key_off" + }, + { + "label": "vpn_lock", + "content": "vpn_lock" + }, + { + "label": "vr180_create2d", + "content": "vr180_create2d" + }, + { + "label": "vr180_create2d_off", + "content": "vr180_create2d_off" + }, + { + "label": "vrpano", + "content": "vrpano" + }, + { + "label": "wall_art", + "content": "wall_art" + }, + { + "label": "wall_lamp", + "content": "wall_lamp" + }, + { + "label": "wallet", + "content": "wallet" + }, + { + "label": "wallpaper", + "content": "wallpaper" + }, + { + "label": "wallpaper_slideshow", + "content": "wallpaper_slideshow" + }, + { + "label": "ward", + "content": "ward" + }, + { + "label": "warehouse", + "content": "warehouse" + }, + { + "label": "warning", + "content": "warning" + }, + { + "label": "warning_off", + "content": "warning_off" + }, + { + "label": "wash", + "content": "wash" + }, + { + "label": "watch", + "content": "watch" + }, + { + "label": "watch_button_press", + "content": "watch_button_press" + }, + { + "label": "watch_check", + "content": "watch_check" + }, + { + "label": "watch_off", + "content": "watch_off" + }, + { + "label": "watch_screentime", + "content": "watch_screentime" + }, + { + "label": "watch_vibration", + "content": "watch_vibration" + }, + { + "label": "watch_wake", + "content": "watch_wake" + }, + { + "label": "water", + "content": "water" + }, + { + "label": "water_bottle", + "content": "water_bottle" + }, + { + "label": "water_bottle_large", + "content": "water_bottle_large" + }, + { + "label": "water_damage", + "content": "water_damage" + }, + { + "label": "water_do", + "content": "water_do" + }, + { + "label": "water_drop", + "content": "water_drop" + }, + { + "label": "water_ec", + "content": "water_ec" + }, + { + "label": "water_full", + "content": "water_full" + }, + { + "label": "water_heater", + "content": "water_heater" + }, + { + "label": "water_lock", + "content": "water_lock" + }, + { + "label": "water_loss", + "content": "water_loss" + }, + { + "label": "water_lux", + "content": "water_lux" + }, + { + "label": "water_medium", + "content": "water_medium" + }, + { + "label": "water_orp", + "content": "water_orp" + }, + { + "label": "water_ph", + "content": "water_ph" + }, + { + "label": "water_pump", + "content": "water_pump" + }, + { + "label": "water_voc", + "content": "water_voc" + }, + { + "label": "waterfall_chart", + "content": "waterfall_chart" + }, + { + "label": "waves", + "content": "waves" + }, + { + "label": "waving_hand", + "content": "waving_hand" + }, + { + "label": "wb_auto", + "content": "wb_auto" + }, + { + "label": "wb_incandescent", + "content": "wb_incandescent" + }, + { + "label": "wb_iridescent", + "content": "wb_iridescent" + }, + { + "label": "wb_shade", + "content": "wb_shade" + }, + { + "label": "wb_sunny", + "content": "wb_sunny" + }, + { + "label": "wb_twilight", + "content": "wb_twilight" + }, + { + "label": "wc", + "content": "wc" + }, + { + "label": "weather_hail", + "content": "weather_hail" + }, + { + "label": "weather_mix", + "content": "weather_mix" + }, + { + "label": "weather_snowy", + "content": "weather_snowy" + }, + { + "label": "web", + "content": "web" + }, + { + "label": "web_asset", + "content": "web_asset" + }, + { + "label": "web_asset_off", + "content": "web_asset_off" + }, + { + "label": "web_stories", + "content": "web_stories" + }, + { + "label": "web_traffic", + "content": "web_traffic" + }, + { + "label": "webhook", + "content": "webhook" + }, + { + "label": "weekend", + "content": "weekend" + }, + { + "label": "weight", + "content": "weight" + }, + { + "label": "west", + "content": "west" + }, + { + "label": "whatshot", + "content": "whatshot" + }, + { + "label": "wheelchair_pickup", + "content": "wheelchair_pickup" + }, + { + "label": "where_to_vote", + "content": "where_to_vote" + }, + { + "label": "widgets", + "content": "widgets" + }, + { + "label": "width", + "content": "width" + }, + { + "label": "width_full", + "content": "width_full" + }, + { + "label": "width_normal", + "content": "width_normal" + }, + { + "label": "width_wide", + "content": "width_wide" + }, + { + "label": "wifi", + "content": "wifi" + }, + { + "label": "wifi_1_bar", + "content": "wifi_1_bar" + }, + { + "label": "wifi_2_bar", + "content": "wifi_2_bar" + }, + { + "label": "wifi_add", + "content": "wifi_add" + }, + { + "label": "wifi_calling", + "content": "wifi_calling" + }, + { + "label": "wifi_calling_1", + "content": "wifi_calling_1" + }, + { + "label": "wifi_calling_2", + "content": "wifi_calling_2" + }, + { + "label": "wifi_calling_3", + "content": "wifi_calling_3" + }, + { + "label": "wifi_channel", + "content": "wifi_channel" + }, + { + "label": "wifi_find", + "content": "wifi_find" + }, + { + "label": "wifi_home", + "content": "wifi_home" + }, + { + "label": "wifi_lock", + "content": "wifi_lock" + }, + { + "label": "wifi_notification", + "content": "wifi_notification" + }, + { + "label": "wifi_off", + "content": "wifi_off" + }, + { + "label": "wifi_password", + "content": "wifi_password" + }, + { + "label": "wifi_protected_setup", + "content": "wifi_protected_setup" + }, + { + "label": "wifi_proxy", + "content": "wifi_proxy" + }, + { + "label": "wifi_tethering", + "content": "wifi_tethering" + }, + { + "label": "wifi_tethering_error", + "content": "wifi_tethering_error" + }, + { + "label": "wifi_tethering_off", + "content": "wifi_tethering_off" + }, + { + "label": "wind_power", + "content": "wind_power" + }, + { + "label": "window", + "content": "window" + }, + { + "label": "window_closed", + "content": "window_closed" + }, + { + "label": "window_open", + "content": "window_open" + }, + { + "label": "window_sensor", + "content": "window_sensor" + }, + { + "label": "wine_bar", + "content": "wine_bar" + }, + { + "label": "woman", + "content": "woman" + }, + { + "label": "woman_2", + "content": "woman_2" + }, + { + "label": "work", + "content": "work" + }, + { + "label": "work_alert", + "content": "work_alert" + }, + { + "label": "work_history", + "content": "work_history" + }, + { + "label": "work_update", + "content": "work_update" + }, + { + "label": "workspace_premium", + "content": "workspace_premium" + }, + { + "label": "workspaces", + "content": "workspaces" + }, + { + "label": "wounds_injuries", + "content": "wounds_injuries" + }, + { + "label": "wrap_text", + "content": "wrap_text" + }, + { + "label": "wrist", + "content": "wrist" + }, + { + "label": "wrong_location", + "content": "wrong_location" + }, + { + "label": "wysiwyg", + "content": "wysiwyg" + }, + { + "label": "yard", + "content": "yard" + }, + { + "label": "your_trips", + "content": "your_trips" + }, + { + "label": "youtube_activity", + "content": "youtube_activity" + }, + { + "label": "youtube_searched_for", + "content": "youtube_searched_for" + }, + { + "label": "zone_person_alert", + "content": "zone_person_alert" + }, + { + "label": "zone_person_idle", + "content": "zone_person_idle" + }, + { + "label": "zone_person_urgent", + "content": "zone_person_urgent" + }, + { + "label": "zoom_in", + "content": "zoom_in" + }, + { + "label": "zoom_in_map", + "content": "zoom_in_map" + }, + { + "label": "zoom_out", + "content": "zoom_out" + }, + { + "label": "zoom_out_map", + "content": "zoom_out_map" + } + ] +} diff --git a/packages/iconography/config/material-symbols-rounded.config.json b/packages/iconography/config/material-symbols-rounded.config.json new file mode 100644 index 0000000..b96d8cb --- /dev/null +++ b/packages/iconography/config/material-symbols-rounded.config.json @@ -0,0 +1,13263 @@ +{ + "$schema": "../schema.json", + "title": "Rounded", + "name": "boxuk/material-symbols-rounded", + "tagName": "span", + "className": "material-symbols-rounded", + "url": "https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200", + "additionalCss": ".material-symbols-rounded { font-size: inherit !important; vertical-align: text-bottom; line-height: 1.333; text-decoration: inherit; font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }", + "icons": [ + { + "label": "123", + "content": "123" + }, + { + "label": "360", + "content": "360" + }, + { + "label": "10k", + "content": "10k" + }, + { + "label": "10mp", + "content": "10mp" + }, + { + "label": "11mp", + "content": "11mp" + }, + { + "label": "12mp", + "content": "12mp" + }, + { + "label": "13mp", + "content": "13mp" + }, + { + "label": "14mp", + "content": "14mp" + }, + { + "label": "15mp", + "content": "15mp" + }, + { + "label": "16mp", + "content": "16mp" + }, + { + "label": "17mp", + "content": "17mp" + }, + { + "label": "18_up_rating", + "content": "18_up_rating" + }, + { + "label": "18mp", + "content": "18mp" + }, + { + "label": "19mp", + "content": "19mp" + }, + { + "label": "1k", + "content": "1k" + }, + { + "label": "1k_plus", + "content": "1k_plus" + }, + { + "label": "1x_mobiledata", + "content": "1x_mobiledata" + }, + { + "label": "1x_mobiledata_badge", + "content": "1x_mobiledata_badge" + }, + { + "label": "20mp", + "content": "20mp" + }, + { + "label": "21mp", + "content": "21mp" + }, + { + "label": "22mp", + "content": "22mp" + }, + { + "label": "23mp", + "content": "23mp" + }, + { + "label": "24mp", + "content": "24mp" + }, + { + "label": "2d", + "content": "2d" + }, + { + "label": "2k", + "content": "2k" + }, + { + "label": "2k_plus", + "content": "2k_plus" + }, + { + "label": "2mp", + "content": "2mp" + }, + { + "label": "30fps", + "content": "30fps" + }, + { + "label": "30fps_select", + "content": "30fps_select" + }, + { + "label": "3d_rotation", + "content": "3d_rotation" + }, + { + "label": "3g_mobiledata", + "content": "3g_mobiledata" + }, + { + "label": "3g_mobiledata_badge", + "content": "3g_mobiledata_badge" + }, + { + "label": "3k", + "content": "3k" + }, + { + "label": "3k_plus", + "content": "3k_plus" + }, + { + "label": "3mp", + "content": "3mp" + }, + { + "label": "3p", + "content": "3p" + }, + { + "label": "4g_mobiledata", + "content": "4g_mobiledata" + }, + { + "label": "4g_mobiledata_badge", + "content": "4g_mobiledata_badge" + }, + { + "label": "4g_plus_mobiledata", + "content": "4g_plus_mobiledata" + }, + { + "label": "4k", + "content": "4k" + }, + { + "label": "4k_plus", + "content": "4k_plus" + }, + { + "label": "4mp", + "content": "4mp" + }, + { + "label": "50mp", + "content": "50mp" + }, + { + "label": "5g", + "content": "5g" + }, + { + "label": "5g_mobiledata_badge", + "content": "5g_mobiledata_badge" + }, + { + "label": "5k", + "content": "5k" + }, + { + "label": "5k_plus", + "content": "5k_plus" + }, + { + "label": "5mp", + "content": "5mp" + }, + { + "label": "60fps", + "content": "60fps" + }, + { + "label": "60fps_select", + "content": "60fps_select" + }, + { + "label": "6_ft_apart", + "content": "6_ft_apart" + }, + { + "label": "6k", + "content": "6k" + }, + { + "label": "6k_plus", + "content": "6k_plus" + }, + { + "label": "6mp", + "content": "6mp" + }, + { + "label": "7k", + "content": "7k" + }, + { + "label": "7k_plus", + "content": "7k_plus" + }, + { + "label": "7mp", + "content": "7mp" + }, + { + "label": "8k", + "content": "8k" + }, + { + "label": "8k_plus", + "content": "8k_plus" + }, + { + "label": "8mp", + "content": "8mp" + }, + { + "label": "9k", + "content": "9k" + }, + { + "label": "9k_plus", + "content": "9k_plus" + }, + { + "label": "9mp", + "content": "9mp" + }, + { + "label": "abc", + "content": "abc" + }, + { + "label": "ac_unit", + "content": "ac_unit" + }, + { + "label": "accessibility", + "content": "accessibility" + }, + { + "label": "accessibility_new", + "content": "accessibility_new" + }, + { + "label": "accessible", + "content": "accessible" + }, + { + "label": "accessible_forward", + "content": "accessible_forward" + }, + { + "label": "account_balance", + "content": "account_balance" + }, + { + "label": "account_balance_wallet", + "content": "account_balance_wallet" + }, + { + "label": "account_box", + "content": "account_box" + }, + { + "label": "account_child", + "content": "account_child" + }, + { + "label": "account_child_invert", + "content": "account_child_invert" + }, + { + "label": "account_circle", + "content": "account_circle" + }, + { + "label": "account_circle_off", + "content": "account_circle_off" + }, + { + "label": "account_tree", + "content": "account_tree" + }, + { + "label": "action_key", + "content": "action_key" + }, + { + "label": "activity_zone", + "content": "activity_zone" + }, + { + "label": "acute", + "content": "acute" + }, + { + "label": "ad", + "content": "ad" + }, + { + "label": "ad_group", + "content": "ad_group" + }, + { + "label": "ad_group_off", + "content": "ad_group_off" + }, + { + "label": "ad_off", + "content": "ad_off" + }, + { + "label": "ad_units", + "content": "ad_units" + }, + { + "label": "adaptive_audio_mic", + "content": "adaptive_audio_mic" + }, + { + "label": "adaptive_audio_mic_off", + "content": "adaptive_audio_mic_off" + }, + { + "label": "adb", + "content": "adb" + }, + { + "label": "add", + "content": "add" + }, + { + "label": "add_a_photo", + "content": "add_a_photo" + }, + { + "label": "add_ad", + "content": "add_ad" + }, + { + "label": "add_alert", + "content": "add_alert" + }, + { + "label": "add_box", + "content": "add_box" + }, + { + "label": "add_business", + "content": "add_business" + }, + { + "label": "add_call", + "content": "add_call" + }, + { + "label": "add_card", + "content": "add_card" + }, + { + "label": "add_chart", + "content": "add_chart" + }, + { + "label": "add_circle", + "content": "add_circle" + }, + { + "label": "add_comment", + "content": "add_comment" + }, + { + "label": "add_diamond", + "content": "add_diamond" + }, + { + "label": "add_home", + "content": "add_home" + }, + { + "label": "add_home_work", + "content": "add_home_work" + }, + { + "label": "add_link", + "content": "add_link" + }, + { + "label": "add_location", + "content": "add_location" + }, + { + "label": "add_location_alt", + "content": "add_location_alt" + }, + { + "label": "add_moderator", + "content": "add_moderator" + }, + { + "label": "add_notes", + "content": "add_notes" + }, + { + "label": "add_photo_alternate", + "content": "add_photo_alternate" + }, + { + "label": "add_reaction", + "content": "add_reaction" + }, + { + "label": "add_road", + "content": "add_road" + }, + { + "label": "add_shopping_cart", + "content": "add_shopping_cart" + }, + { + "label": "add_task", + "content": "add_task" + }, + { + "label": "add_to_drive", + "content": "add_to_drive" + }, + { + "label": "add_to_home_screen", + "content": "add_to_home_screen" + }, + { + "label": "add_to_photos", + "content": "add_to_photos" + }, + { + "label": "add_to_queue", + "content": "add_to_queue" + }, + { + "label": "add_triangle", + "content": "add_triangle" + }, + { + "label": "adf_scanner", + "content": "adf_scanner" + }, + { + "label": "adjust", + "content": "adjust" + }, + { + "label": "admin_meds", + "content": "admin_meds" + }, + { + "label": "admin_panel_settings", + "content": "admin_panel_settings" + }, + { + "label": "ads_click", + "content": "ads_click" + }, + { + "label": "agender", + "content": "agender" + }, + { + "label": "agriculture", + "content": "agriculture" + }, + { + "label": "air", + "content": "air" + }, + { + "label": "air_freshener", + "content": "air_freshener" + }, + { + "label": "air_purifier", + "content": "air_purifier" + }, + { + "label": "air_purifier_gen", + "content": "air_purifier_gen" + }, + { + "label": "airline_seat_flat", + "content": "airline_seat_flat" + }, + { + "label": "airline_seat_flat_angled", + "content": "airline_seat_flat_angled" + }, + { + "label": "airline_seat_individual_suite", + "content": "airline_seat_individual_suite" + }, + { + "label": "airline_seat_legroom_extra", + "content": "airline_seat_legroom_extra" + }, + { + "label": "airline_seat_legroom_normal", + "content": "airline_seat_legroom_normal" + }, + { + "label": "airline_seat_legroom_reduced", + "content": "airline_seat_legroom_reduced" + }, + { + "label": "airline_seat_recline_extra", + "content": "airline_seat_recline_extra" + }, + { + "label": "airline_seat_recline_normal", + "content": "airline_seat_recline_normal" + }, + { + "label": "airline_stops", + "content": "airline_stops" + }, + { + "label": "airlines", + "content": "airlines" + }, + { + "label": "airplane_ticket", + "content": "airplane_ticket" + }, + { + "label": "airplanemode_active", + "content": "airplanemode_active" + }, + { + "label": "airplanemode_inactive", + "content": "airplanemode_inactive" + }, + { + "label": "airplay", + "content": "airplay" + }, + { + "label": "airport_shuttle", + "content": "airport_shuttle" + }, + { + "label": "airware", + "content": "airware" + }, + { + "label": "airwave", + "content": "airwave" + }, + { + "label": "alarm", + "content": "alarm" + }, + { + "label": "alarm_add", + "content": "alarm_add" + }, + { + "label": "alarm_off", + "content": "alarm_off" + }, + { + "label": "alarm_on", + "content": "alarm_on" + }, + { + "label": "alarm_smart_wake", + "content": "alarm_smart_wake" + }, + { + "label": "album", + "content": "album" + }, + { + "label": "align_center", + "content": "align_center" + }, + { + "label": "align_end", + "content": "align_end" + }, + { + "label": "align_flex_center", + "content": "align_flex_center" + }, + { + "label": "align_flex_end", + "content": "align_flex_end" + }, + { + "label": "align_flex_start", + "content": "align_flex_start" + }, + { + "label": "align_horizontal_center", + "content": "align_horizontal_center" + }, + { + "label": "align_horizontal_left", + "content": "align_horizontal_left" + }, + { + "label": "align_horizontal_right", + "content": "align_horizontal_right" + }, + { + "label": "align_items_stretch", + "content": "align_items_stretch" + }, + { + "label": "align_justify_center", + "content": "align_justify_center" + }, + { + "label": "align_justify_flex_end", + "content": "align_justify_flex_end" + }, + { + "label": "align_justify_flex_start", + "content": "align_justify_flex_start" + }, + { + "label": "align_justify_space_around", + "content": "align_justify_space_around" + }, + { + "label": "align_justify_space_between", + "content": "align_justify_space_between" + }, + { + "label": "align_justify_space_even", + "content": "align_justify_space_even" + }, + { + "label": "align_justify_stretch", + "content": "align_justify_stretch" + }, + { + "label": "align_self_stretch", + "content": "align_self_stretch" + }, + { + "label": "align_space_around", + "content": "align_space_around" + }, + { + "label": "align_space_between", + "content": "align_space_between" + }, + { + "label": "align_space_even", + "content": "align_space_even" + }, + { + "label": "align_start", + "content": "align_start" + }, + { + "label": "align_stretch", + "content": "align_stretch" + }, + { + "label": "align_vertical_bottom", + "content": "align_vertical_bottom" + }, + { + "label": "align_vertical_center", + "content": "align_vertical_center" + }, + { + "label": "align_vertical_top", + "content": "align_vertical_top" + }, + { + "label": "all_inbox", + "content": "all_inbox" + }, + { + "label": "all_inclusive", + "content": "all_inclusive" + }, + { + "label": "all_match", + "content": "all_match" + }, + { + "label": "all_out", + "content": "all_out" + }, + { + "label": "allergies", + "content": "allergies" + }, + { + "label": "allergy", + "content": "allergy" + }, + { + "label": "alt_route", + "content": "alt_route" + }, + { + "label": "alternate_email", + "content": "alternate_email" + }, + { + "label": "altitude", + "content": "altitude" + }, + { + "label": "ambulance", + "content": "ambulance" + }, + { + "label": "amend", + "content": "amend" + }, + { + "label": "amp_stories", + "content": "amp_stories" + }, + { + "label": "analytics", + "content": "analytics" + }, + { + "label": "anchor", + "content": "anchor" + }, + { + "label": "android", + "content": "android" + }, + { + "label": "animated_images", + "content": "animated_images" + }, + { + "label": "animation", + "content": "animation" + }, + { + "label": "aod", + "content": "aod" + }, + { + "label": "aod_tablet", + "content": "aod_tablet" + }, + { + "label": "aod_watch", + "content": "aod_watch" + }, + { + "label": "apartment", + "content": "apartment" + }, + { + "label": "api", + "content": "api" + }, + { + "label": "apk_document", + "content": "apk_document" + }, + { + "label": "apk_install", + "content": "apk_install" + }, + { + "label": "app_badging", + "content": "app_badging" + }, + { + "label": "app_blocking", + "content": "app_blocking" + }, + { + "label": "app_promo", + "content": "app_promo" + }, + { + "label": "app_registration", + "content": "app_registration" + }, + { + "label": "app_shortcut", + "content": "app_shortcut" + }, + { + "label": "apparel", + "content": "apparel" + }, + { + "label": "approval", + "content": "approval" + }, + { + "label": "approval_delegation", + "content": "approval_delegation" + }, + { + "label": "apps", + "content": "apps" + }, + { + "label": "apps_outage", + "content": "apps_outage" + }, + { + "label": "aq", + "content": "aq" + }, + { + "label": "aq_indoor", + "content": "aq_indoor" + }, + { + "label": "ar_on_you", + "content": "ar_on_you" + }, + { + "label": "ar_stickers", + "content": "ar_stickers" + }, + { + "label": "architecture", + "content": "architecture" + }, + { + "label": "archive", + "content": "archive" + }, + { + "label": "area_chart", + "content": "area_chart" + }, + { + "label": "arming_countdown", + "content": "arming_countdown" + }, + { + "label": "arrow_and_edge", + "content": "arrow_and_edge" + }, + { + "label": "arrow_back", + "content": "arrow_back" + }, + { + "label": "arrow_back_ios", + "content": "arrow_back_ios" + }, + { + "label": "arrow_circle_down", + "content": "arrow_circle_down" + }, + { + "label": "arrow_circle_left", + "content": "arrow_circle_left" + }, + { + "label": "arrow_circle_right", + "content": "arrow_circle_right" + }, + { + "label": "arrow_circle_up", + "content": "arrow_circle_up" + }, + { + "label": "arrow_cool_down", + "content": "arrow_cool_down" + }, + { + "label": "arrow_downward", + "content": "arrow_downward" + }, + { + "label": "arrow_downward_alt", + "content": "arrow_downward_alt" + }, + { + "label": "arrow_drop_down", + "content": "arrow_drop_down" + }, + { + "label": "arrow_drop_down_circle", + "content": "arrow_drop_down_circle" + }, + { + "label": "arrow_drop_up", + "content": "arrow_drop_up" + }, + { + "label": "arrow_forward", + "content": "arrow_forward" + }, + { + "label": "arrow_forward_ios", + "content": "arrow_forward_ios" + }, + { + "label": "arrow_insert", + "content": "arrow_insert" + }, + { + "label": "arrow_left", + "content": "arrow_left" + }, + { + "label": "arrow_left_alt", + "content": "arrow_left_alt" + }, + { + "label": "arrow_or_edge", + "content": "arrow_or_edge" + }, + { + "label": "arrow_outward", + "content": "arrow_outward" + }, + { + "label": "arrow_range", + "content": "arrow_range" + }, + { + "label": "arrow_right", + "content": "arrow_right" + }, + { + "label": "arrow_right_alt", + "content": "arrow_right_alt" + }, + { + "label": "arrow_selector_tool", + "content": "arrow_selector_tool" + }, + { + "label": "arrow_split", + "content": "arrow_split" + }, + { + "label": "arrow_top_left", + "content": "arrow_top_left" + }, + { + "label": "arrow_top_right", + "content": "arrow_top_right" + }, + { + "label": "arrow_upward", + "content": "arrow_upward" + }, + { + "label": "arrow_upward_alt", + "content": "arrow_upward_alt" + }, + { + "label": "arrow_warm_up", + "content": "arrow_warm_up" + }, + { + "label": "arrows_more_down", + "content": "arrows_more_down" + }, + { + "label": "arrows_more_up", + "content": "arrows_more_up" + }, + { + "label": "arrows_outward", + "content": "arrows_outward" + }, + { + "label": "art_track", + "content": "art_track" + }, + { + "label": "article", + "content": "article" + }, + { + "label": "article_shortcut", + "content": "article_shortcut" + }, + { + "label": "artist", + "content": "artist" + }, + { + "label": "aspect_ratio", + "content": "aspect_ratio" + }, + { + "label": "assignment", + "content": "assignment" + }, + { + "label": "assignment_add", + "content": "assignment_add" + }, + { + "label": "assignment_ind", + "content": "assignment_ind" + }, + { + "label": "assignment_late", + "content": "assignment_late" + }, + { + "label": "assignment_return", + "content": "assignment_return" + }, + { + "label": "assignment_returned", + "content": "assignment_returned" + }, + { + "label": "assignment_turned_in", + "content": "assignment_turned_in" + }, + { + "label": "assist_walker", + "content": "assist_walker" + }, + { + "label": "assistant_device", + "content": "assistant_device" + }, + { + "label": "assistant_direction", + "content": "assistant_direction" + }, + { + "label": "assistant_navigation", + "content": "assistant_navigation" + }, + { + "label": "assistant_on_hub", + "content": "assistant_on_hub" + }, + { + "label": "assured_workload", + "content": "assured_workload" + }, + { + "label": "asterisk", + "content": "asterisk" + }, + { + "label": "atm", + "content": "atm" + }, + { + "label": "atr", + "content": "atr" + }, + { + "label": "attach_email", + "content": "attach_email" + }, + { + "label": "attach_file", + "content": "attach_file" + }, + { + "label": "attach_file_add", + "content": "attach_file_add" + }, + { + "label": "attach_file_off", + "content": "attach_file_off" + }, + { + "label": "attach_money", + "content": "attach_money" + }, + { + "label": "attachment", + "content": "attachment" + }, + { + "label": "attractions", + "content": "attractions" + }, + { + "label": "attribution", + "content": "attribution" + }, + { + "label": "audio_description", + "content": "audio_description" + }, + { + "label": "audio_file", + "content": "audio_file" + }, + { + "label": "audio_video_receiver", + "content": "audio_video_receiver" + }, + { + "label": "auto_awesome_mosaic", + "content": "auto_awesome_mosaic" + }, + { + "label": "auto_awesome_motion", + "content": "auto_awesome_motion" + }, + { + "label": "auto_delete", + "content": "auto_delete" + }, + { + "label": "auto_read_pause", + "content": "auto_read_pause" + }, + { + "label": "auto_read_play", + "content": "auto_read_play" + }, + { + "label": "auto_stories", + "content": "auto_stories" + }, + { + "label": "auto_towing", + "content": "auto_towing" + }, + { + "label": "auto_transmission", + "content": "auto_transmission" + }, + { + "label": "autofps_select", + "content": "autofps_select" + }, + { + "label": "autopause", + "content": "autopause" + }, + { + "label": "autoplay", + "content": "autoplay" + }, + { + "label": "autorenew", + "content": "autorenew" + }, + { + "label": "autostop", + "content": "autostop" + }, + { + "label": "av1", + "content": "av1" + }, + { + "label": "av_timer", + "content": "av_timer" + }, + { + "label": "avc", + "content": "avc" + }, + { + "label": "avg_pace", + "content": "avg_pace" + }, + { + "label": "avg_time", + "content": "avg_time" + }, + { + "label": "award_star", + "content": "award_star" + }, + { + "label": "azm", + "content": "azm" + }, + { + "label": "baby_changing_station", + "content": "baby_changing_station" + }, + { + "label": "back_hand", + "content": "back_hand" + }, + { + "label": "back_to_tab", + "content": "back_to_tab" + }, + { + "label": "background_dot_large", + "content": "background_dot_large" + }, + { + "label": "background_dot_small", + "content": "background_dot_small" + }, + { + "label": "background_grid_small", + "content": "background_grid_small" + }, + { + "label": "background_replace", + "content": "background_replace" + }, + { + "label": "backlight_high", + "content": "backlight_high" + }, + { + "label": "backlight_high_off", + "content": "backlight_high_off" + }, + { + "label": "backlight_low", + "content": "backlight_low" + }, + { + "label": "backpack", + "content": "backpack" + }, + { + "label": "backspace", + "content": "backspace" + }, + { + "label": "backup", + "content": "backup" + }, + { + "label": "backup_table", + "content": "backup_table" + }, + { + "label": "badge", + "content": "badge" + }, + { + "label": "badge_critical_battery", + "content": "badge_critical_battery" + }, + { + "label": "bakery_dining", + "content": "bakery_dining" + }, + { + "label": "balance", + "content": "balance" + }, + { + "label": "balcony", + "content": "balcony" + }, + { + "label": "ballot", + "content": "ballot" + }, + { + "label": "bar_chart", + "content": "bar_chart" + }, + { + "label": "bar_chart_4_bars", + "content": "bar_chart_4_bars" + }, + { + "label": "barcode", + "content": "barcode" + }, + { + "label": "barcode_reader", + "content": "barcode_reader" + }, + { + "label": "barcode_scanner", + "content": "barcode_scanner" + }, + { + "label": "barefoot", + "content": "barefoot" + }, + { + "label": "batch_prediction", + "content": "batch_prediction" + }, + { + "label": "bath_outdoor", + "content": "bath_outdoor" + }, + { + "label": "bath_private", + "content": "bath_private" + }, + { + "label": "bath_public_large", + "content": "bath_public_large" + }, + { + "label": "bathroom", + "content": "bathroom" + }, + { + "label": "bathtub", + "content": "bathtub" + }, + { + "label": "battery_0_bar", + "content": "battery_0_bar" + }, + { + "label": "battery_1_bar", + "content": "battery_1_bar" + }, + { + "label": "battery_2_bar", + "content": "battery_2_bar" + }, + { + "label": "battery_3_bar", + "content": "battery_3_bar" + }, + { + "label": "battery_4_bar", + "content": "battery_4_bar" + }, + { + "label": "battery_5_bar", + "content": "battery_5_bar" + }, + { + "label": "battery_6_bar", + "content": "battery_6_bar" + }, + { + "label": "battery_alert", + "content": "battery_alert" + }, + { + "label": "battery_change", + "content": "battery_change" + }, + { + "label": "battery_charging_20", + "content": "battery_charging_20" + }, + { + "label": "battery_charging_30", + "content": "battery_charging_30" + }, + { + "label": "battery_charging_50", + "content": "battery_charging_50" + }, + { + "label": "battery_charging_60", + "content": "battery_charging_60" + }, + { + "label": "battery_charging_80", + "content": "battery_charging_80" + }, + { + "label": "battery_charging_90", + "content": "battery_charging_90" + }, + { + "label": "battery_charging_full", + "content": "battery_charging_full" + }, + { + "label": "battery_error", + "content": "battery_error" + }, + { + "label": "battery_full", + "content": "battery_full" + }, + { + "label": "battery_full_alt", + "content": "battery_full_alt" + }, + { + "label": "battery_horiz_000", + "content": "battery_horiz_000" + }, + { + "label": "battery_horiz_050", + "content": "battery_horiz_050" + }, + { + "label": "battery_horiz_075", + "content": "battery_horiz_075" + }, + { + "label": "battery_low", + "content": "battery_low" + }, + { + "label": "battery_plus", + "content": "battery_plus" + }, + { + "label": "battery_profile", + "content": "battery_profile" + }, + { + "label": "battery_saver", + "content": "battery_saver" + }, + { + "label": "battery_share", + "content": "battery_share" + }, + { + "label": "battery_status_good", + "content": "battery_status_good" + }, + { + "label": "battery_unknown", + "content": "battery_unknown" + }, + { + "label": "battery_very_low", + "content": "battery_very_low" + }, + { + "label": "beach_access", + "content": "beach_access" + }, + { + "label": "bed", + "content": "bed" + }, + { + "label": "bedroom_baby", + "content": "bedroom_baby" + }, + { + "label": "bedroom_child", + "content": "bedroom_child" + }, + { + "label": "bedroom_parent", + "content": "bedroom_parent" + }, + { + "label": "bedtime", + "content": "bedtime" + }, + { + "label": "bedtime_off", + "content": "bedtime_off" + }, + { + "label": "beenhere", + "content": "beenhere" + }, + { + "label": "bento", + "content": "bento" + }, + { + "label": "bia", + "content": "bia" + }, + { + "label": "bid_landscape", + "content": "bid_landscape" + }, + { + "label": "bid_landscape_disabled", + "content": "bid_landscape_disabled" + }, + { + "label": "bigtop_updates", + "content": "bigtop_updates" + }, + { + "label": "bike_dock", + "content": "bike_dock" + }, + { + "label": "bike_lane", + "content": "bike_lane" + }, + { + "label": "bike_scooter", + "content": "bike_scooter" + }, + { + "label": "biotech", + "content": "biotech" + }, + { + "label": "blanket", + "content": "blanket" + }, + { + "label": "blender", + "content": "blender" + }, + { + "label": "blind", + "content": "blind" + }, + { + "label": "blinds", + "content": "blinds" + }, + { + "label": "blinds_closed", + "content": "blinds_closed" + }, + { + "label": "block", + "content": "block" + }, + { + "label": "blood_pressure", + "content": "blood_pressure" + }, + { + "label": "bloodtype", + "content": "bloodtype" + }, + { + "label": "bluetooth", + "content": "bluetooth" + }, + { + "label": "bluetooth_connected", + "content": "bluetooth_connected" + }, + { + "label": "bluetooth_disabled", + "content": "bluetooth_disabled" + }, + { + "label": "bluetooth_drive", + "content": "bluetooth_drive" + }, + { + "label": "bluetooth_searching", + "content": "bluetooth_searching" + }, + { + "label": "blur_circular", + "content": "blur_circular" + }, + { + "label": "blur_linear", + "content": "blur_linear" + }, + { + "label": "blur_medium", + "content": "blur_medium" + }, + { + "label": "blur_off", + "content": "blur_off" + }, + { + "label": "blur_on", + "content": "blur_on" + }, + { + "label": "blur_short", + "content": "blur_short" + }, + { + "label": "body_fat", + "content": "body_fat" + }, + { + "label": "body_system", + "content": "body_system" + }, + { + "label": "bolt", + "content": "bolt" + }, + { + "label": "bomb", + "content": "bomb" + }, + { + "label": "book", + "content": "book" + }, + { + "label": "book_2", + "content": "book_2" + }, + { + "label": "book_3", + "content": "book_3" + }, + { + "label": "book_4", + "content": "book_4" + }, + { + "label": "book_5", + "content": "book_5" + }, + { + "label": "book_online", + "content": "book_online" + }, + { + "label": "bookmark", + "content": "bookmark" + }, + { + "label": "bookmark_add", + "content": "bookmark_add" + }, + { + "label": "bookmark_added", + "content": "bookmark_added" + }, + { + "label": "bookmark_check", + "content": "bookmark_check" + }, + { + "label": "bookmark_flag", + "content": "bookmark_flag" + }, + { + "label": "bookmark_heart", + "content": "bookmark_heart" + }, + { + "label": "bookmark_manager", + "content": "bookmark_manager" + }, + { + "label": "bookmark_remove", + "content": "bookmark_remove" + }, + { + "label": "bookmark_star", + "content": "bookmark_star" + }, + { + "label": "bookmarks", + "content": "bookmarks" + }, + { + "label": "border_all", + "content": "border_all" + }, + { + "label": "border_bottom", + "content": "border_bottom" + }, + { + "label": "border_clear", + "content": "border_clear" + }, + { + "label": "border_color", + "content": "border_color" + }, + { + "label": "border_horizontal", + "content": "border_horizontal" + }, + { + "label": "border_inner", + "content": "border_inner" + }, + { + "label": "border_left", + "content": "border_left" + }, + { + "label": "border_outer", + "content": "border_outer" + }, + { + "label": "border_right", + "content": "border_right" + }, + { + "label": "border_style", + "content": "border_style" + }, + { + "label": "border_top", + "content": "border_top" + }, + { + "label": "border_vertical", + "content": "border_vertical" + }, + { + "label": "bottom_app_bar", + "content": "bottom_app_bar" + }, + { + "label": "bottom_drawer", + "content": "bottom_drawer" + }, + { + "label": "bottom_navigation", + "content": "bottom_navigation" + }, + { + "label": "bottom_panel_close", + "content": "bottom_panel_close" + }, + { + "label": "bottom_panel_open", + "content": "bottom_panel_open" + }, + { + "label": "bottom_right_click", + "content": "bottom_right_click" + }, + { + "label": "bottom_sheets", + "content": "bottom_sheets" + }, + { + "label": "box", + "content": "box" + }, + { + "label": "box_add", + "content": "box_add" + }, + { + "label": "box_edit", + "content": "box_edit" + }, + { + "label": "boy", + "content": "boy" + }, + { + "label": "brand_awareness", + "content": "brand_awareness" + }, + { + "label": "brand_family", + "content": "brand_family" + }, + { + "label": "branding_watermark", + "content": "branding_watermark" + }, + { + "label": "breakfast_dining", + "content": "breakfast_dining" + }, + { + "label": "breaking_news", + "content": "breaking_news" + }, + { + "label": "breaking_news_alt_1", + "content": "breaking_news_alt_1" + }, + { + "label": "breastfeeding", + "content": "breastfeeding" + }, + { + "label": "brightness_1", + "content": "brightness_1" + }, + { + "label": "brightness_2", + "content": "brightness_2" + }, + { + "label": "brightness_3", + "content": "brightness_3" + }, + { + "label": "brightness_4", + "content": "brightness_4" + }, + { + "label": "brightness_5", + "content": "brightness_5" + }, + { + "label": "brightness_6", + "content": "brightness_6" + }, + { + "label": "brightness_7", + "content": "brightness_7" + }, + { + "label": "brightness_alert", + "content": "brightness_alert" + }, + { + "label": "brightness_auto", + "content": "brightness_auto" + }, + { + "label": "brightness_empty", + "content": "brightness_empty" + }, + { + "label": "brightness_high", + "content": "brightness_high" + }, + { + "label": "brightness_low", + "content": "brightness_low" + }, + { + "label": "brightness_medium", + "content": "brightness_medium" + }, + { + "label": "bring_your_own_ip", + "content": "bring_your_own_ip" + }, + { + "label": "broadcast_on_home", + "content": "broadcast_on_home" + }, + { + "label": "broadcast_on_personal", + "content": "broadcast_on_personal" + }, + { + "label": "broken_image", + "content": "broken_image" + }, + { + "label": "browse", + "content": "browse" + }, + { + "label": "browse_activity", + "content": "browse_activity" + }, + { + "label": "browse_gallery", + "content": "browse_gallery" + }, + { + "label": "browser_updated", + "content": "browser_updated" + }, + { + "label": "brunch_dining", + "content": "brunch_dining" + }, + { + "label": "brush", + "content": "brush" + }, + { + "label": "bubble", + "content": "bubble" + }, + { + "label": "bubble_chart", + "content": "bubble_chart" + }, + { + "label": "bubbles", + "content": "bubbles" + }, + { + "label": "bug_report", + "content": "bug_report" + }, + { + "label": "build", + "content": "build" + }, + { + "label": "build_circle", + "content": "build_circle" + }, + { + "label": "bungalow", + "content": "bungalow" + }, + { + "label": "burst_mode", + "content": "burst_mode" + }, + { + "label": "bus_alert", + "content": "bus_alert" + }, + { + "label": "business_center", + "content": "business_center" + }, + { + "label": "business_chip", + "content": "business_chip" + }, + { + "label": "business_messages", + "content": "business_messages" + }, + { + "label": "buttons_alt", + "content": "buttons_alt" + }, + { + "label": "cabin", + "content": "cabin" + }, + { + "label": "cable", + "content": "cable" + }, + { + "label": "cable_car", + "content": "cable_car" + }, + { + "label": "cached", + "content": "cached" + }, + { + "label": "cadence", + "content": "cadence" + }, + { + "label": "cake", + "content": "cake" + }, + { + "label": "cake_add", + "content": "cake_add" + }, + { + "label": "calculate", + "content": "calculate" + }, + { + "label": "calendar_add_on", + "content": "calendar_add_on" + }, + { + "label": "calendar_apps_script", + "content": "calendar_apps_script" + }, + { + "label": "calendar_clock", + "content": "calendar_clock" + }, + { + "label": "calendar_month", + "content": "calendar_month" + }, + { + "label": "calendar_today", + "content": "calendar_today" + }, + { + "label": "calendar_view_day", + "content": "calendar_view_day" + }, + { + "label": "calendar_view_month", + "content": "calendar_view_month" + }, + { + "label": "calendar_view_week", + "content": "calendar_view_week" + }, + { + "label": "call", + "content": "call" + }, + { + "label": "call_end", + "content": "call_end" + }, + { + "label": "call_log", + "content": "call_log" + }, + { + "label": "call_made", + "content": "call_made" + }, + { + "label": "call_merge", + "content": "call_merge" + }, + { + "label": "call_missed", + "content": "call_missed" + }, + { + "label": "call_missed_outgoing", + "content": "call_missed_outgoing" + }, + { + "label": "call_quality", + "content": "call_quality" + }, + { + "label": "call_received", + "content": "call_received" + }, + { + "label": "call_split", + "content": "call_split" + }, + { + "label": "call_to_action", + "content": "call_to_action" + }, + { + "label": "camera", + "content": "camera" + }, + { + "label": "camera_front", + "content": "camera_front" + }, + { + "label": "camera_indoor", + "content": "camera_indoor" + }, + { + "label": "camera_outdoor", + "content": "camera_outdoor" + }, + { + "label": "camera_rear", + "content": "camera_rear" + }, + { + "label": "camera_roll", + "content": "camera_roll" + }, + { + "label": "camera_video", + "content": "camera_video" + }, + { + "label": "cameraswitch", + "content": "cameraswitch" + }, + { + "label": "campaign", + "content": "campaign" + }, + { + "label": "camping", + "content": "camping" + }, + { + "label": "cancel", + "content": "cancel" + }, + { + "label": "cancel_presentation", + "content": "cancel_presentation" + }, + { + "label": "cancel_schedule_send", + "content": "cancel_schedule_send" + }, + { + "label": "candle", + "content": "candle" + }, + { + "label": "candlestick_chart", + "content": "candlestick_chart" + }, + { + "label": "captive_portal", + "content": "captive_portal" + }, + { + "label": "capture", + "content": "capture" + }, + { + "label": "car_crash", + "content": "car_crash" + }, + { + "label": "car_rental", + "content": "car_rental" + }, + { + "label": "car_repair", + "content": "car_repair" + }, + { + "label": "car_tag", + "content": "car_tag" + }, + { + "label": "card_membership", + "content": "card_membership" + }, + { + "label": "card_travel", + "content": "card_travel" + }, + { + "label": "cardio_load", + "content": "cardio_load" + }, + { + "label": "cardiology", + "content": "cardiology" + }, + { + "label": "cards", + "content": "cards" + }, + { + "label": "carpenter", + "content": "carpenter" + }, + { + "label": "carry_on_bag", + "content": "carry_on_bag" + }, + { + "label": "carry_on_bag_checked", + "content": "carry_on_bag_checked" + }, + { + "label": "carry_on_bag_inactive", + "content": "carry_on_bag_inactive" + }, + { + "label": "carry_on_bag_question", + "content": "carry_on_bag_question" + }, + { + "label": "cases", + "content": "cases" + }, + { + "label": "casino", + "content": "casino" + }, + { + "label": "cast", + "content": "cast" + }, + { + "label": "cast_connected", + "content": "cast_connected" + }, + { + "label": "cast_for_education", + "content": "cast_for_education" + }, + { + "label": "cast_pause", + "content": "cast_pause" + }, + { + "label": "cast_warning", + "content": "cast_warning" + }, + { + "label": "castle", + "content": "castle" + }, + { + "label": "category", + "content": "category" + }, + { + "label": "celebration", + "content": "celebration" + }, + { + "label": "cell_merge", + "content": "cell_merge" + }, + { + "label": "cell_tower", + "content": "cell_tower" + }, + { + "label": "cell_wifi", + "content": "cell_wifi" + }, + { + "label": "center_focus_strong", + "content": "center_focus_strong" + }, + { + "label": "center_focus_weak", + "content": "center_focus_weak" + }, + { + "label": "chair", + "content": "chair" + }, + { + "label": "chair_alt", + "content": "chair_alt" + }, + { + "label": "chalet", + "content": "chalet" + }, + { + "label": "change_circle", + "content": "change_circle" + }, + { + "label": "change_history", + "content": "change_history" + }, + { + "label": "charger", + "content": "charger" + }, + { + "label": "charging_station", + "content": "charging_station" + }, + { + "label": "chart_data", + "content": "chart_data" + }, + { + "label": "chat", + "content": "chat" + }, + { + "label": "chat_add_on", + "content": "chat_add_on" + }, + { + "label": "chat_apps_script", + "content": "chat_apps_script" + }, + { + "label": "chat_bubble", + "content": "chat_bubble" + }, + { + "label": "chat_error", + "content": "chat_error" + }, + { + "label": "chat_info", + "content": "chat_info" + }, + { + "label": "chat_paste_go", + "content": "chat_paste_go" + }, + { + "label": "check", + "content": "check" + }, + { + "label": "check_box", + "content": "check_box" + }, + { + "label": "check_box_outline_blank", + "content": "check_box_outline_blank" + }, + { + "label": "check_circle", + "content": "check_circle" + }, + { + "label": "check_in_out", + "content": "check_in_out" + }, + { + "label": "check_indeterminate_small", + "content": "check_indeterminate_small" + }, + { + "label": "check_small", + "content": "check_small" + }, + { + "label": "checkbook", + "content": "checkbook" + }, + { + "label": "checked_bag", + "content": "checked_bag" + }, + { + "label": "checked_bag_question", + "content": "checked_bag_question" + }, + { + "label": "checklist", + "content": "checklist" + }, + { + "label": "checklist_rtl", + "content": "checklist_rtl" + }, + { + "label": "checkroom", + "content": "checkroom" + }, + { + "label": "cheer", + "content": "cheer" + }, + { + "label": "chess", + "content": "chess" + }, + { + "label": "chevron_backward", + "content": "chevron_backward" + }, + { + "label": "chevron_forward", + "content": "chevron_forward" + }, + { + "label": "chevron_left", + "content": "chevron_left" + }, + { + "label": "chevron_right", + "content": "chevron_right" + }, + { + "label": "child_care", + "content": "child_care" + }, + { + "label": "child_friendly", + "content": "child_friendly" + }, + { + "label": "chip_extraction", + "content": "chip_extraction" + }, + { + "label": "chips", + "content": "chips" + }, + { + "label": "chrome_reader_mode", + "content": "chrome_reader_mode" + }, + { + "label": "chromecast_2", + "content": "chromecast_2" + }, + { + "label": "chromecast_device", + "content": "chromecast_device" + }, + { + "label": "chronic", + "content": "chronic" + }, + { + "label": "church", + "content": "church" + }, + { + "label": "cinematic_blur", + "content": "cinematic_blur" + }, + { + "label": "circle", + "content": "circle" + }, + { + "label": "circle_notifications", + "content": "circle_notifications" + }, + { + "label": "circles", + "content": "circles" + }, + { + "label": "circles_ext", + "content": "circles_ext" + }, + { + "label": "clarify", + "content": "clarify" + }, + { + "label": "clean_hands", + "content": "clean_hands" + }, + { + "label": "cleaning", + "content": "cleaning" + }, + { + "label": "cleaning_bucket", + "content": "cleaning_bucket" + }, + { + "label": "cleaning_services", + "content": "cleaning_services" + }, + { + "label": "clear_all", + "content": "clear_all" + }, + { + "label": "clear_day", + "content": "clear_day" + }, + { + "label": "clear_night", + "content": "clear_night" + }, + { + "label": "climate_mini_split", + "content": "climate_mini_split" + }, + { + "label": "clinical_notes", + "content": "clinical_notes" + }, + { + "label": "clock_loader_10", + "content": "clock_loader_10" + }, + { + "label": "clock_loader_20", + "content": "clock_loader_20" + }, + { + "label": "clock_loader_40", + "content": "clock_loader_40" + }, + { + "label": "clock_loader_60", + "content": "clock_loader_60" + }, + { + "label": "clock_loader_80", + "content": "clock_loader_80" + }, + { + "label": "clock_loader_90", + "content": "clock_loader_90" + }, + { + "label": "close", + "content": "close" + }, + { + "label": "close_fullscreen", + "content": "close_fullscreen" + }, + { + "label": "close_small", + "content": "close_small" + }, + { + "label": "closed_caption", + "content": "closed_caption" + }, + { + "label": "closed_caption_add", + "content": "closed_caption_add" + }, + { + "label": "closed_caption_disabled", + "content": "closed_caption_disabled" + }, + { + "label": "cloud", + "content": "cloud" + }, + { + "label": "cloud_circle", + "content": "cloud_circle" + }, + { + "label": "cloud_done", + "content": "cloud_done" + }, + { + "label": "cloud_download", + "content": "cloud_download" + }, + { + "label": "cloud_off", + "content": "cloud_off" + }, + { + "label": "cloud_sync", + "content": "cloud_sync" + }, + { + "label": "cloud_upload", + "content": "cloud_upload" + }, + { + "label": "cloudy_snowing", + "content": "cloudy_snowing" + }, + { + "label": "co2", + "content": "co2" + }, + { + "label": "co_present", + "content": "co_present" + }, + { + "label": "code", + "content": "code" + }, + { + "label": "code_blocks", + "content": "code_blocks" + }, + { + "label": "code_off", + "content": "code_off" + }, + { + "label": "coffee", + "content": "coffee" + }, + { + "label": "coffee_maker", + "content": "coffee_maker" + }, + { + "label": "cognition", + "content": "cognition" + }, + { + "label": "collapse_all", + "content": "collapse_all" + }, + { + "label": "collapse_content", + "content": "collapse_content" + }, + { + "label": "collections_bookmark", + "content": "collections_bookmark" + }, + { + "label": "colorize", + "content": "colorize" + }, + { + "label": "colors", + "content": "colors" + }, + { + "label": "comedy_mask", + "content": "comedy_mask" + }, + { + "label": "comic_bubble", + "content": "comic_bubble" + }, + { + "label": "comment", + "content": "comment" + }, + { + "label": "comment_bank", + "content": "comment_bank" + }, + { + "label": "comments_disabled", + "content": "comments_disabled" + }, + { + "label": "commit", + "content": "commit" + }, + { + "label": "communication", + "content": "communication" + }, + { + "label": "communities", + "content": "communities" + }, + { + "label": "commute", + "content": "commute" + }, + { + "label": "compare", + "content": "compare" + }, + { + "label": "compare_arrows", + "content": "compare_arrows" + }, + { + "label": "compass_calibration", + "content": "compass_calibration" + }, + { + "label": "component_exchange", + "content": "component_exchange" + }, + { + "label": "compost", + "content": "compost" + }, + { + "label": "compress", + "content": "compress" + }, + { + "label": "computer", + "content": "computer" + }, + { + "label": "concierge", + "content": "concierge" + }, + { + "label": "conditions", + "content": "conditions" + }, + { + "label": "confirmation_number", + "content": "confirmation_number" + }, + { + "label": "congenital", + "content": "congenital" + }, + { + "label": "connect_without_contact", + "content": "connect_without_contact" + }, + { + "label": "connected_tv", + "content": "connected_tv" + }, + { + "label": "connecting_airports", + "content": "connecting_airports" + }, + { + "label": "construction", + "content": "construction" + }, + { + "label": "contact_emergency", + "content": "contact_emergency" + }, + { + "label": "contact_mail", + "content": "contact_mail" + }, + { + "label": "contact_page", + "content": "contact_page" + }, + { + "label": "contact_phone", + "content": "contact_phone" + }, + { + "label": "contact_support", + "content": "contact_support" + }, + { + "label": "contactless", + "content": "contactless" + }, + { + "label": "contactless_off", + "content": "contactless_off" + }, + { + "label": "contacts", + "content": "contacts" + }, + { + "label": "contacts_product", + "content": "contacts_product" + }, + { + "label": "content_copy", + "content": "content_copy" + }, + { + "label": "content_cut", + "content": "content_cut" + }, + { + "label": "content_paste", + "content": "content_paste" + }, + { + "label": "content_paste_go", + "content": "content_paste_go" + }, + { + "label": "content_paste_off", + "content": "content_paste_off" + }, + { + "label": "content_paste_search", + "content": "content_paste_search" + }, + { + "label": "contextual_token", + "content": "contextual_token" + }, + { + "label": "contextual_token_add", + "content": "contextual_token_add" + }, + { + "label": "contract", + "content": "contract" + }, + { + "label": "contract_delete", + "content": "contract_delete" + }, + { + "label": "contract_edit", + "content": "contract_edit" + }, + { + "label": "contrast", + "content": "contrast" + }, + { + "label": "contrast_circle", + "content": "contrast_circle" + }, + { + "label": "contrast_rtl_off", + "content": "contrast_rtl_off" + }, + { + "label": "contrast_square", + "content": "contrast_square" + }, + { + "label": "control_camera", + "content": "control_camera" + }, + { + "label": "control_point_duplicate", + "content": "control_point_duplicate" + }, + { + "label": "controller_gen", + "content": "controller_gen" + }, + { + "label": "conversion_path", + "content": "conversion_path" + }, + { + "label": "conversion_path_off", + "content": "conversion_path_off" + }, + { + "label": "conveyor_belt", + "content": "conveyor_belt" + }, + { + "label": "cookie", + "content": "cookie" + }, + { + "label": "cookie_off", + "content": "cookie_off" + }, + { + "label": "cooking", + "content": "cooking" + }, + { + "label": "cool_to_dry", + "content": "cool_to_dry" + }, + { + "label": "copy_all", + "content": "copy_all" + }, + { + "label": "copyright", + "content": "copyright" + }, + { + "label": "coronavirus", + "content": "coronavirus" + }, + { + "label": "corporate_fare", + "content": "corporate_fare" + }, + { + "label": "cottage", + "content": "cottage" + }, + { + "label": "counter_0", + "content": "counter_0" + }, + { + "label": "counter_1", + "content": "counter_1" + }, + { + "label": "counter_2", + "content": "counter_2" + }, + { + "label": "counter_3", + "content": "counter_3" + }, + { + "label": "counter_4", + "content": "counter_4" + }, + { + "label": "counter_5", + "content": "counter_5" + }, + { + "label": "counter_6", + "content": "counter_6" + }, + { + "label": "counter_7", + "content": "counter_7" + }, + { + "label": "counter_8", + "content": "counter_8" + }, + { + "label": "counter_9", + "content": "counter_9" + }, + { + "label": "countertops", + "content": "countertops" + }, + { + "label": "create_new_folder", + "content": "create_new_folder" + }, + { + "label": "credit_card", + "content": "credit_card" + }, + { + "label": "credit_card_gear", + "content": "credit_card_gear" + }, + { + "label": "credit_card_heart", + "content": "credit_card_heart" + }, + { + "label": "credit_card_off", + "content": "credit_card_off" + }, + { + "label": "credit_score", + "content": "credit_score" + }, + { + "label": "crib", + "content": "crib" + }, + { + "label": "crisis_alert", + "content": "crisis_alert" + }, + { + "label": "crop", + "content": "crop" + }, + { + "label": "crop_16_9", + "content": "crop_16_9" + }, + { + "label": "crop_3_2", + "content": "crop_3_2" + }, + { + "label": "crop_5_4", + "content": "crop_5_4" + }, + { + "label": "crop_7_5", + "content": "crop_7_5" + }, + { + "label": "crop_9_16", + "content": "crop_9_16" + }, + { + "label": "crop_free", + "content": "crop_free" + }, + { + "label": "crop_landscape", + "content": "crop_landscape" + }, + { + "label": "crop_portrait", + "content": "crop_portrait" + }, + { + "label": "crop_rotate", + "content": "crop_rotate" + }, + { + "label": "crop_square", + "content": "crop_square" + }, + { + "label": "crossword", + "content": "crossword" + }, + { + "label": "crowdsource", + "content": "crowdsource" + }, + { + "label": "cruelty_free", + "content": "cruelty_free" + }, + { + "label": "css", + "content": "css" + }, + { + "label": "csv", + "content": "csv" + }, + { + "label": "currency_bitcoin", + "content": "currency_bitcoin" + }, + { + "label": "currency_exchange", + "content": "currency_exchange" + }, + { + "label": "currency_franc", + "content": "currency_franc" + }, + { + "label": "currency_lira", + "content": "currency_lira" + }, + { + "label": "currency_pound", + "content": "currency_pound" + }, + { + "label": "currency_ruble", + "content": "currency_ruble" + }, + { + "label": "currency_rupee", + "content": "currency_rupee" + }, + { + "label": "currency_rupee_circle", + "content": "currency_rupee_circle" + }, + { + "label": "currency_yen", + "content": "currency_yen" + }, + { + "label": "currency_yuan", + "content": "currency_yuan" + }, + { + "label": "curtains", + "content": "curtains" + }, + { + "label": "curtains_closed", + "content": "curtains_closed" + }, + { + "label": "custom_typography", + "content": "custom_typography" + }, + { + "label": "cycle", + "content": "cycle" + }, + { + "label": "cyclone", + "content": "cyclone" + }, + { + "label": "dangerous", + "content": "dangerous" + }, + { + "label": "dark_mode", + "content": "dark_mode" + }, + { + "label": "dashboard", + "content": "dashboard" + }, + { + "label": "dashboard_customize", + "content": "dashboard_customize" + }, + { + "label": "data_alert", + "content": "data_alert" + }, + { + "label": "data_array", + "content": "data_array" + }, + { + "label": "data_check", + "content": "data_check" + }, + { + "label": "data_exploration", + "content": "data_exploration" + }, + { + "label": "data_info_alert", + "content": "data_info_alert" + }, + { + "label": "data_loss_prevention", + "content": "data_loss_prevention" + }, + { + "label": "data_object", + "content": "data_object" + }, + { + "label": "data_saver_on", + "content": "data_saver_on" + }, + { + "label": "data_table", + "content": "data_table" + }, + { + "label": "data_thresholding", + "content": "data_thresholding" + }, + { + "label": "data_usage", + "content": "data_usage" + }, + { + "label": "database", + "content": "database" + }, + { + "label": "dataset", + "content": "dataset" + }, + { + "label": "dataset_linked", + "content": "dataset_linked" + }, + { + "label": "date_range", + "content": "date_range" + }, + { + "label": "deblur", + "content": "deblur" + }, + { + "label": "deceased", + "content": "deceased" + }, + { + "label": "decimal_decrease", + "content": "decimal_decrease" + }, + { + "label": "decimal_increase", + "content": "decimal_increase" + }, + { + "label": "deck", + "content": "deck" + }, + { + "label": "dehaze", + "content": "dehaze" + }, + { + "label": "delete", + "content": "delete" + }, + { + "label": "delete_forever", + "content": "delete_forever" + }, + { + "label": "delete_history", + "content": "delete_history" + }, + { + "label": "delete_sweep", + "content": "delete_sweep" + }, + { + "label": "demography", + "content": "demography" + }, + { + "label": "density_large", + "content": "density_large" + }, + { + "label": "density_medium", + "content": "density_medium" + }, + { + "label": "density_small", + "content": "density_small" + }, + { + "label": "dentistry", + "content": "dentistry" + }, + { + "label": "departure_board", + "content": "departure_board" + }, + { + "label": "deployed_code", + "content": "deployed_code" + }, + { + "label": "deployed_code_account", + "content": "deployed_code_account" + }, + { + "label": "deployed_code_alert", + "content": "deployed_code_alert" + }, + { + "label": "deployed_code_history", + "content": "deployed_code_history" + }, + { + "label": "deployed_code_update", + "content": "deployed_code_update" + }, + { + "label": "dermatology", + "content": "dermatology" + }, + { + "label": "description", + "content": "description" + }, + { + "label": "deselect", + "content": "deselect" + }, + { + "label": "design_services", + "content": "design_services" + }, + { + "label": "desk", + "content": "desk" + }, + { + "label": "deskphone", + "content": "deskphone" + }, + { + "label": "desktop_access_disabled", + "content": "desktop_access_disabled" + }, + { + "label": "desktop_landscape", + "content": "desktop_landscape" + }, + { + "label": "desktop_mac", + "content": "desktop_mac" + }, + { + "label": "desktop_portrait", + "content": "desktop_portrait" + }, + { + "label": "desktop_windows", + "content": "desktop_windows" + }, + { + "label": "destruction", + "content": "destruction" + }, + { + "label": "details", + "content": "details" + }, + { + "label": "detection_and_zone", + "content": "detection_and_zone" + }, + { + "label": "detector", + "content": "detector" + }, + { + "label": "detector_alarm", + "content": "detector_alarm" + }, + { + "label": "detector_battery", + "content": "detector_battery" + }, + { + "label": "detector_co", + "content": "detector_co" + }, + { + "label": "detector_offline", + "content": "detector_offline" + }, + { + "label": "detector_smoke", + "content": "detector_smoke" + }, + { + "label": "detector_status", + "content": "detector_status" + }, + { + "label": "developer_board", + "content": "developer_board" + }, + { + "label": "developer_board_off", + "content": "developer_board_off" + }, + { + "label": "developer_guide", + "content": "developer_guide" + }, + { + "label": "developer_mode", + "content": "developer_mode" + }, + { + "label": "developer_mode_tv", + "content": "developer_mode_tv" + }, + { + "label": "device_hub", + "content": "device_hub" + }, + { + "label": "device_reset", + "content": "device_reset" + }, + { + "label": "device_thermostat", + "content": "device_thermostat" + }, + { + "label": "device_unknown", + "content": "device_unknown" + }, + { + "label": "devices", + "content": "devices" + }, + { + "label": "devices_fold", + "content": "devices_fold" + }, + { + "label": "devices_off", + "content": "devices_off" + }, + { + "label": "devices_other", + "content": "devices_other" + }, + { + "label": "devices_wearables", + "content": "devices_wearables" + }, + { + "label": "dew_point", + "content": "dew_point" + }, + { + "label": "diagnosis", + "content": "diagnosis" + }, + { + "label": "dialer_sip", + "content": "dialer_sip" + }, + { + "label": "dialogs", + "content": "dialogs" + }, + { + "label": "dialpad", + "content": "dialpad" + }, + { + "label": "diamond", + "content": "diamond" + }, + { + "label": "dictionary", + "content": "dictionary" + }, + { + "label": "difference", + "content": "difference" + }, + { + "label": "digital_out_of_home", + "content": "digital_out_of_home" + }, + { + "label": "digital_wellbeing", + "content": "digital_wellbeing" + }, + { + "label": "dining", + "content": "dining" + }, + { + "label": "dinner_dining", + "content": "dinner_dining" + }, + { + "label": "directions", + "content": "directions" + }, + { + "label": "directions_alt", + "content": "directions_alt" + }, + { + "label": "directions_alt_off", + "content": "directions_alt_off" + }, + { + "label": "directions_bike", + "content": "directions_bike" + }, + { + "label": "directions_boat", + "content": "directions_boat" + }, + { + "label": "directions_bus", + "content": "directions_bus" + }, + { + "label": "directions_car", + "content": "directions_car" + }, + { + "label": "directions_off", + "content": "directions_off" + }, + { + "label": "directions_railway", + "content": "directions_railway" + }, + { + "label": "directions_railway_2", + "content": "directions_railway_2" + }, + { + "label": "directions_run", + "content": "directions_run" + }, + { + "label": "directions_subway", + "content": "directions_subway" + }, + { + "label": "directions_walk", + "content": "directions_walk" + }, + { + "label": "directory_sync", + "content": "directory_sync" + }, + { + "label": "dirty_lens", + "content": "dirty_lens" + }, + { + "label": "disabled_by_default", + "content": "disabled_by_default" + }, + { + "label": "disabled_visible", + "content": "disabled_visible" + }, + { + "label": "disc_full", + "content": "disc_full" + }, + { + "label": "discover_tune", + "content": "discover_tune" + }, + { + "label": "dishwasher", + "content": "dishwasher" + }, + { + "label": "dishwasher_gen", + "content": "dishwasher_gen" + }, + { + "label": "display_external_input", + "content": "display_external_input" + }, + { + "label": "display_settings", + "content": "display_settings" + }, + { + "label": "distance", + "content": "distance" + }, + { + "label": "diversity_1", + "content": "diversity_1" + }, + { + "label": "diversity_2", + "content": "diversity_2" + }, + { + "label": "diversity_3", + "content": "diversity_3" + }, + { + "label": "diversity_4", + "content": "diversity_4" + }, + { + "label": "dns", + "content": "dns" + }, + { + "label": "do_not_disturb_off", + "content": "do_not_disturb_off" + }, + { + "label": "do_not_disturb_on", + "content": "do_not_disturb_on" + }, + { + "label": "do_not_disturb_on_total_silence", + "content": "do_not_disturb_on_total_silence" + }, + { + "label": "do_not_step", + "content": "do_not_step" + }, + { + "label": "do_not_touch", + "content": "do_not_touch" + }, + { + "label": "dock", + "content": "dock" + }, + { + "label": "dock_to_bottom", + "content": "dock_to_bottom" + }, + { + "label": "dock_to_left", + "content": "dock_to_left" + }, + { + "label": "dock_to_right", + "content": "dock_to_right" + }, + { + "label": "docs_add_on", + "content": "docs_add_on" + }, + { + "label": "docs_apps_script", + "content": "docs_apps_script" + }, + { + "label": "document_scanner", + "content": "document_scanner" + }, + { + "label": "domain", + "content": "domain" + }, + { + "label": "domain_add", + "content": "domain_add" + }, + { + "label": "domain_disabled", + "content": "domain_disabled" + }, + { + "label": "domain_verification", + "content": "domain_verification" + }, + { + "label": "domain_verification_off", + "content": "domain_verification_off" + }, + { + "label": "domino_mask", + "content": "domino_mask" + }, + { + "label": "done_all", + "content": "done_all" + }, + { + "label": "done_outline", + "content": "done_outline" + }, + { + "label": "donut_large", + "content": "donut_large" + }, + { + "label": "donut_small", + "content": "donut_small" + }, + { + "label": "door_back", + "content": "door_back" + }, + { + "label": "door_front", + "content": "door_front" + }, + { + "label": "door_open", + "content": "door_open" + }, + { + "label": "door_sensor", + "content": "door_sensor" + }, + { + "label": "door_sliding", + "content": "door_sliding" + }, + { + "label": "doorbell", + "content": "doorbell" + }, + { + "label": "doorbell_3p", + "content": "doorbell_3p" + }, + { + "label": "doorbell_chime", + "content": "doorbell_chime" + }, + { + "label": "double_arrow", + "content": "double_arrow" + }, + { + "label": "downhill_skiing", + "content": "downhill_skiing" + }, + { + "label": "download", + "content": "download" + }, + { + "label": "download_2", + "content": "download_2" + }, + { + "label": "download_done", + "content": "download_done" + }, + { + "label": "download_for_offline", + "content": "download_for_offline" + }, + { + "label": "downloading", + "content": "downloading" + }, + { + "label": "draft", + "content": "draft" + }, + { + "label": "draft_orders", + "content": "draft_orders" + }, + { + "label": "drafts", + "content": "drafts" + }, + { + "label": "drag_click", + "content": "drag_click" + }, + { + "label": "drag_handle", + "content": "drag_handle" + }, + { + "label": "drag_indicator", + "content": "drag_indicator" + }, + { + "label": "drag_pan", + "content": "drag_pan" + }, + { + "label": "draw", + "content": "draw" + }, + { + "label": "draw_abstract", + "content": "draw_abstract" + }, + { + "label": "draw_collage", + "content": "draw_collage" + }, + { + "label": "dresser", + "content": "dresser" + }, + { + "label": "drive_file_move", + "content": "drive_file_move" + }, + { + "label": "drive_folder_upload", + "content": "drive_folder_upload" + }, + { + "label": "dropdown", + "content": "dropdown" + }, + { + "label": "dry", + "content": "dry" + }, + { + "label": "dry_cleaning", + "content": "dry_cleaning" + }, + { + "label": "dual_screen", + "content": "dual_screen" + }, + { + "label": "duo", + "content": "duo" + }, + { + "label": "dvr", + "content": "dvr" + }, + { + "label": "dynamic_feed", + "content": "dynamic_feed" + }, + { + "label": "dynamic_form", + "content": "dynamic_form" + }, + { + "label": "e911_avatar", + "content": "e911_avatar" + }, + { + "label": "e911_emergency", + "content": "e911_emergency" + }, + { + "label": "e_mobiledata", + "content": "e_mobiledata" + }, + { + "label": "e_mobiledata_badge", + "content": "e_mobiledata_badge" + }, + { + "label": "earbuds", + "content": "earbuds" + }, + { + "label": "earbuds_battery", + "content": "earbuds_battery" + }, + { + "label": "early_on", + "content": "early_on" + }, + { + "label": "earthquake", + "content": "earthquake" + }, + { + "label": "east", + "content": "east" + }, + { + "label": "ecg", + "content": "ecg" + }, + { + "label": "ecg_heart", + "content": "ecg_heart" + }, + { + "label": "eco", + "content": "eco" + }, + { + "label": "eda", + "content": "eda" + }, + { + "label": "edgesensor_high", + "content": "edgesensor_high" + }, + { + "label": "edgesensor_low", + "content": "edgesensor_low" + }, + { + "label": "edit", + "content": "edit" + }, + { + "label": "edit_attributes", + "content": "edit_attributes" + }, + { + "label": "edit_calendar", + "content": "edit_calendar" + }, + { + "label": "edit_document", + "content": "edit_document" + }, + { + "label": "edit_location", + "content": "edit_location" + }, + { + "label": "edit_location_alt", + "content": "edit_location_alt" + }, + { + "label": "edit_note", + "content": "edit_note" + }, + { + "label": "edit_notifications", + "content": "edit_notifications" + }, + { + "label": "edit_off", + "content": "edit_off" + }, + { + "label": "edit_road", + "content": "edit_road" + }, + { + "label": "edit_square", + "content": "edit_square" + }, + { + "label": "editor_choice", + "content": "editor_choice" + }, + { + "label": "egg", + "content": "egg" + }, + { + "label": "egg_alt", + "content": "egg_alt" + }, + { + "label": "eject", + "content": "eject" + }, + { + "label": "elderly", + "content": "elderly" + }, + { + "label": "elderly_woman", + "content": "elderly_woman" + }, + { + "label": "electric_bike", + "content": "electric_bike" + }, + { + "label": "electric_bolt", + "content": "electric_bolt" + }, + { + "label": "electric_car", + "content": "electric_car" + }, + { + "label": "electric_meter", + "content": "electric_meter" + }, + { + "label": "electric_moped", + "content": "electric_moped" + }, + { + "label": "electric_rickshaw", + "content": "electric_rickshaw" + }, + { + "label": "electric_scooter", + "content": "electric_scooter" + }, + { + "label": "electrical_services", + "content": "electrical_services" + }, + { + "label": "elevation", + "content": "elevation" + }, + { + "label": "elevator", + "content": "elevator" + }, + { + "label": "emergency", + "content": "emergency" + }, + { + "label": "emergency_heat", + "content": "emergency_heat" + }, + { + "label": "emergency_heat_2", + "content": "emergency_heat_2" + }, + { + "label": "emergency_home", + "content": "emergency_home" + }, + { + "label": "emergency_recording", + "content": "emergency_recording" + }, + { + "label": "emergency_share", + "content": "emergency_share" + }, + { + "label": "emergency_share_off", + "content": "emergency_share_off" + }, + { + "label": "emoji_events", + "content": "emoji_events" + }, + { + "label": "emoji_food_beverage", + "content": "emoji_food_beverage" + }, + { + "label": "emoji_language", + "content": "emoji_language" + }, + { + "label": "emoji_nature", + "content": "emoji_nature" + }, + { + "label": "emoji_objects", + "content": "emoji_objects" + }, + { + "label": "emoji_people", + "content": "emoji_people" + }, + { + "label": "emoji_symbols", + "content": "emoji_symbols" + }, + { + "label": "emoji_transportation", + "content": "emoji_transportation" + }, + { + "label": "emoticon", + "content": "emoticon" + }, + { + "label": "empty_dashboard", + "content": "empty_dashboard" + }, + { + "label": "enable", + "content": "enable" + }, + { + "label": "encrypted", + "content": "encrypted" + }, + { + "label": "endocrinology", + "content": "endocrinology" + }, + { + "label": "energy", + "content": "energy" + }, + { + "label": "energy_program_saving", + "content": "energy_program_saving" + }, + { + "label": "energy_program_time_used", + "content": "energy_program_time_used" + }, + { + "label": "energy_savings_leaf", + "content": "energy_savings_leaf" + }, + { + "label": "engineering", + "content": "engineering" + }, + { + "label": "enhanced_encryption", + "content": "enhanced_encryption" + }, + { + "label": "ent", + "content": "ent" + }, + { + "label": "enterprise", + "content": "enterprise" + }, + { + "label": "enterprise_off", + "content": "enterprise_off" + }, + { + "label": "equal", + "content": "equal" + }, + { + "label": "equalizer", + "content": "equalizer" + }, + { + "label": "error", + "content": "error" + }, + { + "label": "error_med", + "content": "error_med" + }, + { + "label": "escalator", + "content": "escalator" + }, + { + "label": "escalator_warning", + "content": "escalator_warning" + }, + { + "label": "euro", + "content": "euro" + }, + { + "label": "euro_symbol", + "content": "euro_symbol" + }, + { + "label": "ev_charger", + "content": "ev_charger" + }, + { + "label": "ev_mobiledata_badge", + "content": "ev_mobiledata_badge" + }, + { + "label": "ev_shadow", + "content": "ev_shadow" + }, + { + "label": "ev_shadow_add", + "content": "ev_shadow_add" + }, + { + "label": "ev_shadow_minus", + "content": "ev_shadow_minus" + }, + { + "label": "ev_station", + "content": "ev_station" + }, + { + "label": "event", + "content": "event" + }, + { + "label": "event_available", + "content": "event_available" + }, + { + "label": "event_busy", + "content": "event_busy" + }, + { + "label": "event_list", + "content": "event_list" + }, + { + "label": "event_note", + "content": "event_note" + }, + { + "label": "event_repeat", + "content": "event_repeat" + }, + { + "label": "event_seat", + "content": "event_seat" + }, + { + "label": "event_upcoming", + "content": "event_upcoming" + }, + { + "label": "exclamation", + "content": "exclamation" + }, + { + "label": "exercise", + "content": "exercise" + }, + { + "label": "exit_to_app", + "content": "exit_to_app" + }, + { + "label": "expand", + "content": "expand" + }, + { + "label": "expand_all", + "content": "expand_all" + }, + { + "label": "expand_circle_down", + "content": "expand_circle_down" + }, + { + "label": "expand_circle_right", + "content": "expand_circle_right" + }, + { + "label": "expand_circle_up", + "content": "expand_circle_up" + }, + { + "label": "expand_content", + "content": "expand_content" + }, + { + "label": "experiment", + "content": "experiment" + }, + { + "label": "explicit", + "content": "explicit" + }, + { + "label": "explore", + "content": "explore" + }, + { + "label": "explore_nearby", + "content": "explore_nearby" + }, + { + "label": "explore_off", + "content": "explore_off" + }, + { + "label": "explosion", + "content": "explosion" + }, + { + "label": "export_notes", + "content": "export_notes" + }, + { + "label": "exposure", + "content": "exposure" + }, + { + "label": "exposure_neg_1", + "content": "exposure_neg_1" + }, + { + "label": "exposure_neg_2", + "content": "exposure_neg_2" + }, + { + "label": "exposure_plus_1", + "content": "exposure_plus_1" + }, + { + "label": "exposure_plus_2", + "content": "exposure_plus_2" + }, + { + "label": "exposure_zero", + "content": "exposure_zero" + }, + { + "label": "extension", + "content": "extension" + }, + { + "label": "extension_off", + "content": "extension_off" + }, + { + "label": "eye_tracking", + "content": "eye_tracking" + }, + { + "label": "eyeglasses", + "content": "eyeglasses" + }, + { + "label": "face", + "content": "face" + }, + { + "label": "face_2", + "content": "face_2" + }, + { + "label": "face_3", + "content": "face_3" + }, + { + "label": "face_4", + "content": "face_4" + }, + { + "label": "face_5", + "content": "face_5" + }, + { + "label": "face_6", + "content": "face_6" + }, + { + "label": "face_retouching_off", + "content": "face_retouching_off" + }, + { + "label": "fact_check", + "content": "fact_check" + }, + { + "label": "factory", + "content": "factory" + }, + { + "label": "falling", + "content": "falling" + }, + { + "label": "familiar_face_and_zone", + "content": "familiar_face_and_zone" + }, + { + "label": "family_history", + "content": "family_history" + }, + { + "label": "family_home", + "content": "family_home" + }, + { + "label": "family_link", + "content": "family_link" + }, + { + "label": "family_restroom", + "content": "family_restroom" + }, + { + "label": "family_star", + "content": "family_star" + }, + { + "label": "farsight_digital", + "content": "farsight_digital" + }, + { + "label": "fast_forward", + "content": "fast_forward" + }, + { + "label": "fast_rewind", + "content": "fast_rewind" + }, + { + "label": "fastfood", + "content": "fastfood" + }, + { + "label": "faucet", + "content": "faucet" + }, + { + "label": "favorite", + "content": "favorite" + }, + { + "label": "fax", + "content": "fax" + }, + { + "label": "feature_search", + "content": "feature_search" + }, + { + "label": "featured_play_list", + "content": "featured_play_list" + }, + { + "label": "featured_seasonal_and_gifts", + "content": "featured_seasonal_and_gifts" + }, + { + "label": "featured_video", + "content": "featured_video" + }, + { + "label": "feedback", + "content": "feedback" + }, + { + "label": "female", + "content": "female" + }, + { + "label": "femur", + "content": "femur" + }, + { + "label": "femur_alt", + "content": "femur_alt" + }, + { + "label": "fence", + "content": "fence" + }, + { + "label": "fertile", + "content": "fertile" + }, + { + "label": "festival", + "content": "festival" + }, + { + "label": "fiber_dvr", + "content": "fiber_dvr" + }, + { + "label": "fiber_manual_record", + "content": "fiber_manual_record" + }, + { + "label": "fiber_new", + "content": "fiber_new" + }, + { + "label": "fiber_pin", + "content": "fiber_pin" + }, + { + "label": "fiber_smart_record", + "content": "fiber_smart_record" + }, + { + "label": "file_copy", + "content": "file_copy" + }, + { + "label": "file_copy_off", + "content": "file_copy_off" + }, + { + "label": "file_download_off", + "content": "file_download_off" + }, + { + "label": "file_map", + "content": "file_map" + }, + { + "label": "file_open", + "content": "file_open" + }, + { + "label": "file_present", + "content": "file_present" + }, + { + "label": "file_save", + "content": "file_save" + }, + { + "label": "file_save_off", + "content": "file_save_off" + }, + { + "label": "file_upload_off", + "content": "file_upload_off" + }, + { + "label": "filter", + "content": "filter" + }, + { + "label": "filter_1", + "content": "filter_1" + }, + { + "label": "filter_2", + "content": "filter_2" + }, + { + "label": "filter_3", + "content": "filter_3" + }, + { + "label": "filter_4", + "content": "filter_4" + }, + { + "label": "filter_5", + "content": "filter_5" + }, + { + "label": "filter_6", + "content": "filter_6" + }, + { + "label": "filter_7", + "content": "filter_7" + }, + { + "label": "filter_8", + "content": "filter_8" + }, + { + "label": "filter_9", + "content": "filter_9" + }, + { + "label": "filter_9_plus", + "content": "filter_9_plus" + }, + { + "label": "filter_alt", + "content": "filter_alt" + }, + { + "label": "filter_alt_off", + "content": "filter_alt_off" + }, + { + "label": "filter_b_and_w", + "content": "filter_b_and_w" + }, + { + "label": "filter_center_focus", + "content": "filter_center_focus" + }, + { + "label": "filter_drama", + "content": "filter_drama" + }, + { + "label": "filter_frames", + "content": "filter_frames" + }, + { + "label": "filter_hdr", + "content": "filter_hdr" + }, + { + "label": "filter_list", + "content": "filter_list" + }, + { + "label": "filter_list_off", + "content": "filter_list_off" + }, + { + "label": "filter_none", + "content": "filter_none" + }, + { + "label": "filter_retrolux", + "content": "filter_retrolux" + }, + { + "label": "filter_tilt_shift", + "content": "filter_tilt_shift" + }, + { + "label": "filter_vintage", + "content": "filter_vintage" + }, + { + "label": "finance", + "content": "finance" + }, + { + "label": "finance_chip", + "content": "finance_chip" + }, + { + "label": "finance_mode", + "content": "finance_mode" + }, + { + "label": "find_in_page", + "content": "find_in_page" + }, + { + "label": "find_replace", + "content": "find_replace" + }, + { + "label": "fingerprint", + "content": "fingerprint" + }, + { + "label": "fingerprint_off", + "content": "fingerprint_off" + }, + { + "label": "fire_extinguisher", + "content": "fire_extinguisher" + }, + { + "label": "fire_hydrant", + "content": "fire_hydrant" + }, + { + "label": "fire_truck", + "content": "fire_truck" + }, + { + "label": "fireplace", + "content": "fireplace" + }, + { + "label": "first_page", + "content": "first_page" + }, + { + "label": "fit_page", + "content": "fit_page" + }, + { + "label": "fit_screen", + "content": "fit_screen" + }, + { + "label": "fit_width", + "content": "fit_width" + }, + { + "label": "fitness_center", + "content": "fitness_center" + }, + { + "label": "fitness_tracker", + "content": "fitness_tracker" + }, + { + "label": "flag", + "content": "flag" + }, + { + "label": "flag_circle", + "content": "flag_circle" + }, + { + "label": "flaky", + "content": "flaky" + }, + { + "label": "flare", + "content": "flare" + }, + { + "label": "flash_auto", + "content": "flash_auto" + }, + { + "label": "flash_off", + "content": "flash_off" + }, + { + "label": "flash_on", + "content": "flash_on" + }, + { + "label": "flashlight_off", + "content": "flashlight_off" + }, + { + "label": "flashlight_on", + "content": "flashlight_on" + }, + { + "label": "flatware", + "content": "flatware" + }, + { + "label": "flex_direction", + "content": "flex_direction" + }, + { + "label": "flex_no_wrap", + "content": "flex_no_wrap" + }, + { + "label": "flex_wrap", + "content": "flex_wrap" + }, + { + "label": "flight", + "content": "flight" + }, + { + "label": "flight_class", + "content": "flight_class" + }, + { + "label": "flight_land", + "content": "flight_land" + }, + { + "label": "flight_takeoff", + "content": "flight_takeoff" + }, + { + "label": "flights_and_hotels", + "content": "flights_and_hotels" + }, + { + "label": "flightsmode", + "content": "flightsmode" + }, + { + "label": "flip", + "content": "flip" + }, + { + "label": "flip_camera_android", + "content": "flip_camera_android" + }, + { + "label": "flip_camera_ios", + "content": "flip_camera_ios" + }, + { + "label": "flip_to_back", + "content": "flip_to_back" + }, + { + "label": "flip_to_front", + "content": "flip_to_front" + }, + { + "label": "float_landscape_2", + "content": "float_landscape_2" + }, + { + "label": "float_portrait_2", + "content": "float_portrait_2" + }, + { + "label": "flood", + "content": "flood" + }, + { + "label": "floor", + "content": "floor" + }, + { + "label": "floor_lamp", + "content": "floor_lamp" + }, + { + "label": "flowsheet", + "content": "flowsheet" + }, + { + "label": "fluid", + "content": "fluid" + }, + { + "label": "fluid_balance", + "content": "fluid_balance" + }, + { + "label": "fluid_med", + "content": "fluid_med" + }, + { + "label": "fluorescent", + "content": "fluorescent" + }, + { + "label": "flutter", + "content": "flutter" + }, + { + "label": "flutter_dash", + "content": "flutter_dash" + }, + { + "label": "flyover", + "content": "flyover" + }, + { + "label": "fmd_bad", + "content": "fmd_bad" + }, + { + "label": "foggy", + "content": "foggy" + }, + { + "label": "folded_hands", + "content": "folded_hands" + }, + { + "label": "folder", + "content": "folder" + }, + { + "label": "folder_copy", + "content": "folder_copy" + }, + { + "label": "folder_data", + "content": "folder_data" + }, + { + "label": "folder_delete", + "content": "folder_delete" + }, + { + "label": "folder_limited", + "content": "folder_limited" + }, + { + "label": "folder_managed", + "content": "folder_managed" + }, + { + "label": "folder_off", + "content": "folder_off" + }, + { + "label": "folder_open", + "content": "folder_open" + }, + { + "label": "folder_shared", + "content": "folder_shared" + }, + { + "label": "folder_special", + "content": "folder_special" + }, + { + "label": "folder_supervised", + "content": "folder_supervised" + }, + { + "label": "folder_zip", + "content": "folder_zip" + }, + { + "label": "follow_the_signs", + "content": "follow_the_signs" + }, + { + "label": "font_download", + "content": "font_download" + }, + { + "label": "font_download_off", + "content": "font_download_off" + }, + { + "label": "food_bank", + "content": "food_bank" + }, + { + "label": "foot_bones", + "content": "foot_bones" + }, + { + "label": "footprint", + "content": "footprint" + }, + { + "label": "for_you", + "content": "for_you" + }, + { + "label": "forest", + "content": "forest" + }, + { + "label": "fork_left", + "content": "fork_left" + }, + { + "label": "fork_right", + "content": "fork_right" + }, + { + "label": "forklift", + "content": "forklift" + }, + { + "label": "format_align_center", + "content": "format_align_center" + }, + { + "label": "format_align_justify", + "content": "format_align_justify" + }, + { + "label": "format_align_left", + "content": "format_align_left" + }, + { + "label": "format_align_right", + "content": "format_align_right" + }, + { + "label": "format_bold", + "content": "format_bold" + }, + { + "label": "format_clear", + "content": "format_clear" + }, + { + "label": "format_color_fill", + "content": "format_color_fill" + }, + { + "label": "format_color_reset", + "content": "format_color_reset" + }, + { + "label": "format_color_text", + "content": "format_color_text" + }, + { + "label": "format_h1", + "content": "format_h1" + }, + { + "label": "format_h2", + "content": "format_h2" + }, + { + "label": "format_h3", + "content": "format_h3" + }, + { + "label": "format_h4", + "content": "format_h4" + }, + { + "label": "format_h5", + "content": "format_h5" + }, + { + "label": "format_h6", + "content": "format_h6" + }, + { + "label": "format_image_left", + "content": "format_image_left" + }, + { + "label": "format_image_right", + "content": "format_image_right" + }, + { + "label": "format_indent_decrease", + "content": "format_indent_decrease" + }, + { + "label": "format_indent_increase", + "content": "format_indent_increase" + }, + { + "label": "format_ink_highlighter", + "content": "format_ink_highlighter" + }, + { + "label": "format_italic", + "content": "format_italic" + }, + { + "label": "format_letter_spacing", + "content": "format_letter_spacing" + }, + { + "label": "format_letter_spacing_2", + "content": "format_letter_spacing_2" + }, + { + "label": "format_letter_spacing_standard", + "content": "format_letter_spacing_standard" + }, + { + "label": "format_letter_spacing_wide", + "content": "format_letter_spacing_wide" + }, + { + "label": "format_letter_spacing_wider", + "content": "format_letter_spacing_wider" + }, + { + "label": "format_line_spacing", + "content": "format_line_spacing" + }, + { + "label": "format_list_bulleted", + "content": "format_list_bulleted" + }, + { + "label": "format_list_bulleted_add", + "content": "format_list_bulleted_add" + }, + { + "label": "format_list_numbered", + "content": "format_list_numbered" + }, + { + "label": "format_list_numbered_rtl", + "content": "format_list_numbered_rtl" + }, + { + "label": "format_overline", + "content": "format_overline" + }, + { + "label": "format_paint", + "content": "format_paint" + }, + { + "label": "format_paragraph", + "content": "format_paragraph" + }, + { + "label": "format_quote", + "content": "format_quote" + }, + { + "label": "format_shapes", + "content": "format_shapes" + }, + { + "label": "format_size", + "content": "format_size" + }, + { + "label": "format_strikethrough", + "content": "format_strikethrough" + }, + { + "label": "format_text_clip", + "content": "format_text_clip" + }, + { + "label": "format_text_overflow", + "content": "format_text_overflow" + }, + { + "label": "format_text_wrap", + "content": "format_text_wrap" + }, + { + "label": "format_textdirection_l_to_r", + "content": "format_textdirection_l_to_r" + }, + { + "label": "format_textdirection_r_to_l", + "content": "format_textdirection_r_to_l" + }, + { + "label": "format_textdirection_vertical", + "content": "format_textdirection_vertical" + }, + { + "label": "format_underlined", + "content": "format_underlined" + }, + { + "label": "format_underlined_squiggle", + "content": "format_underlined_squiggle" + }, + { + "label": "forms_add_on", + "content": "forms_add_on" + }, + { + "label": "forms_apps_script", + "content": "forms_apps_script" + }, + { + "label": "fort", + "content": "fort" + }, + { + "label": "forum", + "content": "forum" + }, + { + "label": "forward", + "content": "forward" + }, + { + "label": "forward_10", + "content": "forward_10" + }, + { + "label": "forward_30", + "content": "forward_30" + }, + { + "label": "forward_5", + "content": "forward_5" + }, + { + "label": "forward_circle", + "content": "forward_circle" + }, + { + "label": "forward_media", + "content": "forward_media" + }, + { + "label": "forward_to_inbox", + "content": "forward_to_inbox" + }, + { + "label": "foundation", + "content": "foundation" + }, + { + "label": "frame_inspect", + "content": "frame_inspect" + }, + { + "label": "frame_person", + "content": "frame_person" + }, + { + "label": "frame_person_mic", + "content": "frame_person_mic" + }, + { + "label": "frame_person_off", + "content": "frame_person_off" + }, + { + "label": "frame_reload", + "content": "frame_reload" + }, + { + "label": "frame_source", + "content": "frame_source" + }, + { + "label": "free_cancellation", + "content": "free_cancellation" + }, + { + "label": "front_hand", + "content": "front_hand" + }, + { + "label": "front_loader", + "content": "front_loader" + }, + { + "label": "full_coverage", + "content": "full_coverage" + }, + { + "label": "full_hd", + "content": "full_hd" + }, + { + "label": "full_stacked_bar_chart", + "content": "full_stacked_bar_chart" + }, + { + "label": "fullscreen", + "content": "fullscreen" + }, + { + "label": "fullscreen_exit", + "content": "fullscreen_exit" + }, + { + "label": "fullscreen_portrait", + "content": "fullscreen_portrait" + }, + { + "label": "function", + "content": "function" + }, + { + "label": "functions", + "content": "functions" + }, + { + "label": "funicular", + "content": "funicular" + }, + { + "label": "g_mobiledata", + "content": "g_mobiledata" + }, + { + "label": "g_mobiledata_badge", + "content": "g_mobiledata_badge" + }, + { + "label": "g_translate", + "content": "g_translate" + }, + { + "label": "gallery_thumbnail", + "content": "gallery_thumbnail" + }, + { + "label": "gamepad", + "content": "gamepad" + }, + { + "label": "garage", + "content": "garage" + }, + { + "label": "garage_door", + "content": "garage_door" + }, + { + "label": "garage_home", + "content": "garage_home" + }, + { + "label": "garden_cart", + "content": "garden_cart" + }, + { + "label": "gas_meter", + "content": "gas_meter" + }, + { + "label": "gastroenterology", + "content": "gastroenterology" + }, + { + "label": "gate", + "content": "gate" + }, + { + "label": "gavel", + "content": "gavel" + }, + { + "label": "general_device", + "content": "general_device" + }, + { + "label": "genetics", + "content": "genetics" + }, + { + "label": "genres", + "content": "genres" + }, + { + "label": "gesture", + "content": "gesture" + }, + { + "label": "gesture_select", + "content": "gesture_select" + }, + { + "label": "gif", + "content": "gif" + }, + { + "label": "gif_box", + "content": "gif_box" + }, + { + "label": "girl", + "content": "girl" + }, + { + "label": "gite", + "content": "gite" + }, + { + "label": "glass_cup", + "content": "glass_cup" + }, + { + "label": "globe", + "content": "globe" + }, + { + "label": "globe_asia", + "content": "globe_asia" + }, + { + "label": "globe_uk", + "content": "globe_uk" + }, + { + "label": "glucose", + "content": "glucose" + }, + { + "label": "glyphs", + "content": "glyphs" + }, + { + "label": "go_to_line", + "content": "go_to_line" + }, + { + "label": "golf_course", + "content": "golf_course" + }, + { + "label": "gondola_lift", + "content": "gondola_lift" + }, + { + "label": "google_home_devices", + "content": "google_home_devices" + }, + { + "label": "google_tv_remote", + "content": "google_tv_remote" + }, + { + "label": "google_wifi", + "content": "google_wifi" + }, + { + "label": "gpp_bad", + "content": "gpp_bad" + }, + { + "label": "gpp_maybe", + "content": "gpp_maybe" + }, + { + "label": "grade", + "content": "grade" + }, + { + "label": "gradient", + "content": "gradient" + }, + { + "label": "grading", + "content": "grading" + }, + { + "label": "grain", + "content": "grain" + }, + { + "label": "graphic_eq", + "content": "graphic_eq" + }, + { + "label": "grass", + "content": "grass" + }, + { + "label": "grid_3x3", + "content": "grid_3x3" + }, + { + "label": "grid_3x3_off", + "content": "grid_3x3_off" + }, + { + "label": "grid_4x4", + "content": "grid_4x4" + }, + { + "label": "grid_goldenratio", + "content": "grid_goldenratio" + }, + { + "label": "grid_guides", + "content": "grid_guides" + }, + { + "label": "grid_off", + "content": "grid_off" + }, + { + "label": "grid_on", + "content": "grid_on" + }, + { + "label": "grid_view", + "content": "grid_view" + }, + { + "label": "grocery", + "content": "grocery" + }, + { + "label": "group", + "content": "group" + }, + { + "label": "group_add", + "content": "group_add" + }, + { + "label": "group_off", + "content": "group_off" + }, + { + "label": "group_remove", + "content": "group_remove" + }, + { + "label": "group_work", + "content": "group_work" + }, + { + "label": "grouped_bar_chart", + "content": "grouped_bar_chart" + }, + { + "label": "groups", + "content": "groups" + }, + { + "label": "groups_2", + "content": "groups_2" + }, + { + "label": "groups_3", + "content": "groups_3" + }, + { + "label": "guardian", + "content": "guardian" + }, + { + "label": "gynecology", + "content": "gynecology" + }, + { + "label": "h_mobiledata", + "content": "h_mobiledata" + }, + { + "label": "h_mobiledata_badge", + "content": "h_mobiledata_badge" + }, + { + "label": "h_plus_mobiledata", + "content": "h_plus_mobiledata" + }, + { + "label": "h_plus_mobiledata_badge", + "content": "h_plus_mobiledata_badge" + }, + { + "label": "hail", + "content": "hail" + }, + { + "label": "hallway", + "content": "hallway" + }, + { + "label": "hand_bones", + "content": "hand_bones" + }, + { + "label": "hand_gesture", + "content": "hand_gesture" + }, + { + "label": "handheld_controller", + "content": "handheld_controller" + }, + { + "label": "handshake", + "content": "handshake" + }, + { + "label": "handyman", + "content": "handyman" + }, + { + "label": "hangout_video", + "content": "hangout_video" + }, + { + "label": "hangout_video_off", + "content": "hangout_video_off" + }, + { + "label": "hard_drive", + "content": "hard_drive" + }, + { + "label": "hard_drive_2", + "content": "hard_drive_2" + }, + { + "label": "hardware", + "content": "hardware" + }, + { + "label": "hd", + "content": "hd" + }, + { + "label": "hdr_auto", + "content": "hdr_auto" + }, + { + "label": "hdr_auto_select", + "content": "hdr_auto_select" + }, + { + "label": "hdr_enhanced_select", + "content": "hdr_enhanced_select" + }, + { + "label": "hdr_off", + "content": "hdr_off" + }, + { + "label": "hdr_off_select", + "content": "hdr_off_select" + }, + { + "label": "hdr_on", + "content": "hdr_on" + }, + { + "label": "hdr_on_select", + "content": "hdr_on_select" + }, + { + "label": "hdr_plus", + "content": "hdr_plus" + }, + { + "label": "hdr_plus_off", + "content": "hdr_plus_off" + }, + { + "label": "hdr_strong", + "content": "hdr_strong" + }, + { + "label": "hdr_weak", + "content": "hdr_weak" + }, + { + "label": "head_mounted_device", + "content": "head_mounted_device" + }, + { + "label": "headphones", + "content": "headphones" + }, + { + "label": "headphones_battery", + "content": "headphones_battery" + }, + { + "label": "headset_mic", + "content": "headset_mic" + }, + { + "label": "headset_off", + "content": "headset_off" + }, + { + "label": "healing", + "content": "healing" + }, + { + "label": "health_and_beauty", + "content": "health_and_beauty" + }, + { + "label": "health_and_safety", + "content": "health_and_safety" + }, + { + "label": "health_metrics", + "content": "health_metrics" + }, + { + "label": "heap_snapshot_large", + "content": "heap_snapshot_large" + }, + { + "label": "heap_snapshot_multiple", + "content": "heap_snapshot_multiple" + }, + { + "label": "heap_snapshot_thumbnail", + "content": "heap_snapshot_thumbnail" + }, + { + "label": "hearing", + "content": "hearing" + }, + { + "label": "hearing_aid", + "content": "hearing_aid" + }, + { + "label": "hearing_disabled", + "content": "hearing_disabled" + }, + { + "label": "heart_broken", + "content": "heart_broken" + }, + { + "label": "heart_check", + "content": "heart_check" + }, + { + "label": "heart_minus", + "content": "heart_minus" + }, + { + "label": "heart_plus", + "content": "heart_plus" + }, + { + "label": "heat", + "content": "heat" + }, + { + "label": "heat_pump", + "content": "heat_pump" + }, + { + "label": "heat_pump_balance", + "content": "heat_pump_balance" + }, + { + "label": "height", + "content": "height" + }, + { + "label": "helicopter", + "content": "helicopter" + }, + { + "label": "help", + "content": "help" + }, + { + "label": "help_center", + "content": "help_center" + }, + { + "label": "help_clinic", + "content": "help_clinic" + }, + { + "label": "hematology", + "content": "hematology" + }, + { + "label": "hevc", + "content": "hevc" + }, + { + "label": "hexagon", + "content": "hexagon" + }, + { + "label": "hide", + "content": "hide" + }, + { + "label": "hide_image", + "content": "hide_image" + }, + { + "label": "hide_source", + "content": "hide_source" + }, + { + "label": "high_density", + "content": "high_density" + }, + { + "label": "high_quality", + "content": "high_quality" + }, + { + "label": "high_res", + "content": "high_res" + }, + { + "label": "highlight", + "content": "highlight" + }, + { + "label": "highlight_keyboard_focus", + "content": "highlight_keyboard_focus" + }, + { + "label": "highlight_mouse_cursor", + "content": "highlight_mouse_cursor" + }, + { + "label": "highlight_text_cursor", + "content": "highlight_text_cursor" + }, + { + "label": "highlighter_size_1", + "content": "highlighter_size_1" + }, + { + "label": "highlighter_size_2", + "content": "highlighter_size_2" + }, + { + "label": "highlighter_size_3", + "content": "highlighter_size_3" + }, + { + "label": "highlighter_size_4", + "content": "highlighter_size_4" + }, + { + "label": "highlighter_size_5", + "content": "highlighter_size_5" + }, + { + "label": "hiking", + "content": "hiking" + }, + { + "label": "history", + "content": "history" + }, + { + "label": "history_edu", + "content": "history_edu" + }, + { + "label": "history_off", + "content": "history_off" + }, + { + "label": "history_toggle_off", + "content": "history_toggle_off" + }, + { + "label": "hive", + "content": "hive" + }, + { + "label": "hls", + "content": "hls" + }, + { + "label": "hls_off", + "content": "hls_off" + }, + { + "label": "holiday_village", + "content": "holiday_village" + }, + { + "label": "home", + "content": "home" + }, + { + "label": "home_and_garden", + "content": "home_and_garden" + }, + { + "label": "home_app_logo", + "content": "home_app_logo" + }, + { + "label": "home_health", + "content": "home_health" + }, + { + "label": "home_improvement_and_tools", + "content": "home_improvement_and_tools" + }, + { + "label": "home_iot_device", + "content": "home_iot_device" + }, + { + "label": "home_max", + "content": "home_max" + }, + { + "label": "home_max_dots", + "content": "home_max_dots" + }, + { + "label": "home_mini", + "content": "home_mini" + }, + { + "label": "home_pin", + "content": "home_pin" + }, + { + "label": "home_repair_service", + "content": "home_repair_service" + }, + { + "label": "home_speaker", + "content": "home_speaker" + }, + { + "label": "home_storage", + "content": "home_storage" + }, + { + "label": "home_work", + "content": "home_work" + }, + { + "label": "horizontal_distribute", + "content": "horizontal_distribute" + }, + { + "label": "horizontal_rule", + "content": "horizontal_rule" + }, + { + "label": "horizontal_split", + "content": "horizontal_split" + }, + { + "label": "hot_tub", + "content": "hot_tub" + }, + { + "label": "hotel", + "content": "hotel" + }, + { + "label": "hotel_class", + "content": "hotel_class" + }, + { + "label": "hourglass", + "content": "hourglass" + }, + { + "label": "hourglass_bottom", + "content": "hourglass_bottom" + }, + { + "label": "hourglass_disabled", + "content": "hourglass_disabled" + }, + { + "label": "hourglass_empty", + "content": "hourglass_empty" + }, + { + "label": "hourglass_top", + "content": "hourglass_top" + }, + { + "label": "house", + "content": "house" + }, + { + "label": "house_siding", + "content": "house_siding" + }, + { + "label": "house_with_shield", + "content": "house_with_shield" + }, + { + "label": "houseboat", + "content": "houseboat" + }, + { + "label": "household_supplies", + "content": "household_supplies" + }, + { + "label": "hov", + "content": "hov" + }, + { + "label": "how_to_reg", + "content": "how_to_reg" + }, + { + "label": "how_to_vote", + "content": "how_to_vote" + }, + { + "label": "hr_resting", + "content": "hr_resting" + }, + { + "label": "html", + "content": "html" + }, + { + "label": "http", + "content": "http" + }, + { + "label": "hub", + "content": "hub" + }, + { + "label": "humerus", + "content": "humerus" + }, + { + "label": "humerus_alt", + "content": "humerus_alt" + }, + { + "label": "humidity_high", + "content": "humidity_high" + }, + { + "label": "humidity_indoor", + "content": "humidity_indoor" + }, + { + "label": "humidity_low", + "content": "humidity_low" + }, + { + "label": "humidity_mid", + "content": "humidity_mid" + }, + { + "label": "humidity_percentage", + "content": "humidity_percentage" + }, + { + "label": "hvac", + "content": "hvac" + }, + { + "label": "ice_skating", + "content": "ice_skating" + }, + { + "label": "icecream", + "content": "icecream" + }, + { + "label": "id_card", + "content": "id_card" + }, + { + "label": "ifl", + "content": "ifl" + }, + { + "label": "iframe", + "content": "iframe" + }, + { + "label": "iframe_off", + "content": "iframe_off" + }, + { + "label": "image", + "content": "image" + }, + { + "label": "image_aspect_ratio", + "content": "image_aspect_ratio" + }, + { + "label": "image_search", + "content": "image_search" + }, + { + "label": "imagesearch_roller", + "content": "imagesearch_roller" + }, + { + "label": "imagesmode", + "content": "imagesmode" + }, + { + "label": "immunology", + "content": "immunology" + }, + { + "label": "import_contacts", + "content": "import_contacts" + }, + { + "label": "important_devices", + "content": "important_devices" + }, + { + "label": "in_home_mode", + "content": "in_home_mode" + }, + { + "label": "inactive_order", + "content": "inactive_order" + }, + { + "label": "inbox", + "content": "inbox" + }, + { + "label": "inbox_customize", + "content": "inbox_customize" + }, + { + "label": "incomplete_circle", + "content": "incomplete_circle" + }, + { + "label": "indeterminate_check_box", + "content": "indeterminate_check_box" + }, + { + "label": "indeterminate_question_box", + "content": "indeterminate_question_box" + }, + { + "label": "info", + "content": "info" + }, + { + "label": "info_i", + "content": "info_i" + }, + { + "label": "infrared", + "content": "infrared" + }, + { + "label": "ink_eraser", + "content": "ink_eraser" + }, + { + "label": "ink_eraser_off", + "content": "ink_eraser_off" + }, + { + "label": "ink_highlighter", + "content": "ink_highlighter" + }, + { + "label": "ink_highlighter_move", + "content": "ink_highlighter_move" + }, + { + "label": "ink_marker", + "content": "ink_marker" + }, + { + "label": "ink_pen", + "content": "ink_pen" + }, + { + "label": "inpatient", + "content": "inpatient" + }, + { + "label": "input", + "content": "input" + }, + { + "label": "input_circle", + "content": "input_circle" + }, + { + "label": "insert_chart", + "content": "insert_chart" + }, + { + "label": "insert_page_break", + "content": "insert_page_break" + }, + { + "label": "insert_text", + "content": "insert_text" + }, + { + "label": "install_desktop", + "content": "install_desktop" + }, + { + "label": "install_mobile", + "content": "install_mobile" + }, + { + "label": "instant_mix", + "content": "instant_mix" + }, + { + "label": "integration_instructions", + "content": "integration_instructions" + }, + { + "label": "interactive_space", + "content": "interactive_space" + }, + { + "label": "interests", + "content": "interests" + }, + { + "label": "interpreter_mode", + "content": "interpreter_mode" + }, + { + "label": "inventory", + "content": "inventory" + }, + { + "label": "inventory_2", + "content": "inventory_2" + }, + { + "label": "invert_colors", + "content": "invert_colors" + }, + { + "label": "invert_colors_off", + "content": "invert_colors_off" + }, + { + "label": "ios", + "content": "ios" + }, + { + "label": "ios_share", + "content": "ios_share" + }, + { + "label": "iron", + "content": "iron" + }, + { + "label": "jamboard_kiosk", + "content": "jamboard_kiosk" + }, + { + "label": "javascript", + "content": "javascript" + }, + { + "label": "join", + "content": "join" + }, + { + "label": "join_inner", + "content": "join_inner" + }, + { + "label": "join_left", + "content": "join_left" + }, + { + "label": "join_right", + "content": "join_right" + }, + { + "label": "joystick", + "content": "joystick" + }, + { + "label": "jump_to_element", + "content": "jump_to_element" + }, + { + "label": "kayaking", + "content": "kayaking" + }, + { + "label": "kebab_dining", + "content": "kebab_dining" + }, + { + "label": "keep", + "content": "keep" + }, + { + "label": "keep_off", + "content": "keep_off" + }, + { + "label": "keep_public", + "content": "keep_public" + }, + { + "label": "kettle", + "content": "kettle" + }, + { + "label": "key", + "content": "key" + }, + { + "label": "key_off", + "content": "key_off" + }, + { + "label": "key_vertical", + "content": "key_vertical" + }, + { + "label": "key_visualizer", + "content": "key_visualizer" + }, + { + "label": "keyboard", + "content": "keyboard" + }, + { + "label": "keyboard_alt", + "content": "keyboard_alt" + }, + { + "label": "keyboard_arrow_down", + "content": "keyboard_arrow_down" + }, + { + "label": "keyboard_arrow_left", + "content": "keyboard_arrow_left" + }, + { + "label": "keyboard_arrow_right", + "content": "keyboard_arrow_right" + }, + { + "label": "keyboard_arrow_up", + "content": "keyboard_arrow_up" + }, + { + "label": "keyboard_backspace", + "content": "keyboard_backspace" + }, + { + "label": "keyboard_capslock", + "content": "keyboard_capslock" + }, + { + "label": "keyboard_capslock_badge", + "content": "keyboard_capslock_badge" + }, + { + "label": "keyboard_command_key", + "content": "keyboard_command_key" + }, + { + "label": "keyboard_control_key", + "content": "keyboard_control_key" + }, + { + "label": "keyboard_double_arrow_down", + "content": "keyboard_double_arrow_down" + }, + { + "label": "keyboard_double_arrow_left", + "content": "keyboard_double_arrow_left" + }, + { + "label": "keyboard_double_arrow_right", + "content": "keyboard_double_arrow_right" + }, + { + "label": "keyboard_double_arrow_up", + "content": "keyboard_double_arrow_up" + }, + { + "label": "keyboard_external_input", + "content": "keyboard_external_input" + }, + { + "label": "keyboard_full", + "content": "keyboard_full" + }, + { + "label": "keyboard_hide", + "content": "keyboard_hide" + }, + { + "label": "keyboard_keys", + "content": "keyboard_keys" + }, + { + "label": "keyboard_lock", + "content": "keyboard_lock" + }, + { + "label": "keyboard_lock_off", + "content": "keyboard_lock_off" + }, + { + "label": "keyboard_off", + "content": "keyboard_off" + }, + { + "label": "keyboard_onscreen", + "content": "keyboard_onscreen" + }, + { + "label": "keyboard_option_key", + "content": "keyboard_option_key" + }, + { + "label": "keyboard_previous_language", + "content": "keyboard_previous_language" + }, + { + "label": "keyboard_return", + "content": "keyboard_return" + }, + { + "label": "keyboard_tab", + "content": "keyboard_tab" + }, + { + "label": "keyboard_tab_rtl", + "content": "keyboard_tab_rtl" + }, + { + "label": "kid_star", + "content": "kid_star" + }, + { + "label": "king_bed", + "content": "king_bed" + }, + { + "label": "kitchen", + "content": "kitchen" + }, + { + "label": "kitesurfing", + "content": "kitesurfing" + }, + { + "label": "lab_panel", + "content": "lab_panel" + }, + { + "label": "lab_profile", + "content": "lab_profile" + }, + { + "label": "lab_research", + "content": "lab_research" + }, + { + "label": "label", + "content": "label" + }, + { + "label": "label_important", + "content": "label_important" + }, + { + "label": "label_off", + "content": "label_off" + }, + { + "label": "labs", + "content": "labs" + }, + { + "label": "lan", + "content": "lan" + }, + { + "label": "landscape", + "content": "landscape" + }, + { + "label": "landscape_2", + "content": "landscape_2" + }, + { + "label": "landscape_2_off", + "content": "landscape_2_off" + }, + { + "label": "landslide", + "content": "landslide" + }, + { + "label": "language", + "content": "language" + }, + { + "label": "language_chinese_array", + "content": "language_chinese_array" + }, + { + "label": "language_chinese_cangjie", + "content": "language_chinese_cangjie" + }, + { + "label": "language_chinese_dayi", + "content": "language_chinese_dayi" + }, + { + "label": "language_chinese_pinyin", + "content": "language_chinese_pinyin" + }, + { + "label": "language_chinese_quick", + "content": "language_chinese_quick" + }, + { + "label": "language_chinese_wubi", + "content": "language_chinese_wubi" + }, + { + "label": "language_french", + "content": "language_french" + }, + { + "label": "language_gb_english", + "content": "language_gb_english" + }, + { + "label": "language_international", + "content": "language_international" + }, + { + "label": "language_japanese_kana", + "content": "language_japanese_kana" + }, + { + "label": "language_korean_latin", + "content": "language_korean_latin" + }, + { + "label": "language_pinyin", + "content": "language_pinyin" + }, + { + "label": "language_spanish", + "content": "language_spanish" + }, + { + "label": "language_us", + "content": "language_us" + }, + { + "label": "language_us_colemak", + "content": "language_us_colemak" + }, + { + "label": "language_us_dvorak", + "content": "language_us_dvorak" + }, + { + "label": "laps", + "content": "laps" + }, + { + "label": "laptop_chromebook", + "content": "laptop_chromebook" + }, + { + "label": "laptop_mac", + "content": "laptop_mac" + }, + { + "label": "laptop_windows", + "content": "laptop_windows" + }, + { + "label": "lasso_select", + "content": "lasso_select" + }, + { + "label": "last_page", + "content": "last_page" + }, + { + "label": "laundry", + "content": "laundry" + }, + { + "label": "layers", + "content": "layers" + }, + { + "label": "layers_clear", + "content": "layers_clear" + }, + { + "label": "lda", + "content": "lda" + }, + { + "label": "leaderboard", + "content": "leaderboard" + }, + { + "label": "leak_add", + "content": "leak_add" + }, + { + "label": "leak_remove", + "content": "leak_remove" + }, + { + "label": "left_click", + "content": "left_click" + }, + { + "label": "left_panel_close", + "content": "left_panel_close" + }, + { + "label": "left_panel_open", + "content": "left_panel_open" + }, + { + "label": "legend_toggle", + "content": "legend_toggle" + }, + { + "label": "lens", + "content": "lens" + }, + { + "label": "lens_blur", + "content": "lens_blur" + }, + { + "label": "letter_switch", + "content": "letter_switch" + }, + { + "label": "library_add", + "content": "library_add" + }, + { + "label": "library_add_check", + "content": "library_add_check" + }, + { + "label": "library_books", + "content": "library_books" + }, + { + "label": "library_music", + "content": "library_music" + }, + { + "label": "license", + "content": "license" + }, + { + "label": "lift_to_talk", + "content": "lift_to_talk" + }, + { + "label": "light", + "content": "light" + }, + { + "label": "light_group", + "content": "light_group" + }, + { + "label": "light_mode", + "content": "light_mode" + }, + { + "label": "light_off", + "content": "light_off" + }, + { + "label": "lightbulb", + "content": "lightbulb" + }, + { + "label": "lightbulb_circle", + "content": "lightbulb_circle" + }, + { + "label": "lightning_stand", + "content": "lightning_stand" + }, + { + "label": "line_axis", + "content": "line_axis" + }, + { + "label": "line_curve", + "content": "line_curve" + }, + { + "label": "line_end", + "content": "line_end" + }, + { + "label": "line_end_arrow", + "content": "line_end_arrow" + }, + { + "label": "line_end_arrow_notch", + "content": "line_end_arrow_notch" + }, + { + "label": "line_end_circle", + "content": "line_end_circle" + }, + { + "label": "line_end_diamond", + "content": "line_end_diamond" + }, + { + "label": "line_end_square", + "content": "line_end_square" + }, + { + "label": "line_start", + "content": "line_start" + }, + { + "label": "line_start_arrow", + "content": "line_start_arrow" + }, + { + "label": "line_start_arrow_notch", + "content": "line_start_arrow_notch" + }, + { + "label": "line_start_circle", + "content": "line_start_circle" + }, + { + "label": "line_start_diamond", + "content": "line_start_diamond" + }, + { + "label": "line_start_square", + "content": "line_start_square" + }, + { + "label": "line_style", + "content": "line_style" + }, + { + "label": "line_weight", + "content": "line_weight" + }, + { + "label": "linear_scale", + "content": "linear_scale" + }, + { + "label": "link", + "content": "link" + }, + { + "label": "link_off", + "content": "link_off" + }, + { + "label": "linked_camera", + "content": "linked_camera" + }, + { + "label": "linked_services", + "content": "linked_services" + }, + { + "label": "liquor", + "content": "liquor" + }, + { + "label": "list", + "content": "list" + }, + { + "label": "list_alt", + "content": "list_alt" + }, + { + "label": "list_alt_add", + "content": "list_alt_add" + }, + { + "label": "lists", + "content": "lists" + }, + { + "label": "live_help", + "content": "live_help" + }, + { + "label": "live_tv", + "content": "live_tv" + }, + { + "label": "living", + "content": "living" + }, + { + "label": "local_activity", + "content": "local_activity" + }, + { + "label": "local_atm", + "content": "local_atm" + }, + { + "label": "local_bar", + "content": "local_bar" + }, + { + "label": "local_cafe", + "content": "local_cafe" + }, + { + "label": "local_car_wash", + "content": "local_car_wash" + }, + { + "label": "local_convenience_store", + "content": "local_convenience_store" + }, + { + "label": "local_dining", + "content": "local_dining" + }, + { + "label": "local_drink", + "content": "local_drink" + }, + { + "label": "local_fire_department", + "content": "local_fire_department" + }, + { + "label": "local_florist", + "content": "local_florist" + }, + { + "label": "local_gas_station", + "content": "local_gas_station" + }, + { + "label": "local_hospital", + "content": "local_hospital" + }, + { + "label": "local_laundry_service", + "content": "local_laundry_service" + }, + { + "label": "local_library", + "content": "local_library" + }, + { + "label": "local_mall", + "content": "local_mall" + }, + { + "label": "local_parking", + "content": "local_parking" + }, + { + "label": "local_pharmacy", + "content": "local_pharmacy" + }, + { + "label": "local_pizza", + "content": "local_pizza" + }, + { + "label": "local_police", + "content": "local_police" + }, + { + "label": "local_post_office", + "content": "local_post_office" + }, + { + "label": "local_see", + "content": "local_see" + }, + { + "label": "local_shipping", + "content": "local_shipping" + }, + { + "label": "local_taxi", + "content": "local_taxi" + }, + { + "label": "location_away", + "content": "location_away" + }, + { + "label": "location_chip", + "content": "location_chip" + }, + { + "label": "location_city", + "content": "location_city" + }, + { + "label": "location_disabled", + "content": "location_disabled" + }, + { + "label": "location_home", + "content": "location_home" + }, + { + "label": "location_off", + "content": "location_off" + }, + { + "label": "location_on", + "content": "location_on" + }, + { + "label": "location_searching", + "content": "location_searching" + }, + { + "label": "lock", + "content": "lock" + }, + { + "label": "lock_clock", + "content": "lock_clock" + }, + { + "label": "lock_open", + "content": "lock_open" + }, + { + "label": "lock_open_right", + "content": "lock_open_right" + }, + { + "label": "lock_person", + "content": "lock_person" + }, + { + "label": "lock_reset", + "content": "lock_reset" + }, + { + "label": "login", + "content": "login" + }, + { + "label": "logo_dev", + "content": "logo_dev" + }, + { + "label": "logout", + "content": "logout" + }, + { + "label": "looks", + "content": "looks" + }, + { + "label": "looks_3", + "content": "looks_3" + }, + { + "label": "looks_4", + "content": "looks_4" + }, + { + "label": "looks_5", + "content": "looks_5" + }, + { + "label": "looks_6", + "content": "looks_6" + }, + { + "label": "looks_one", + "content": "looks_one" + }, + { + "label": "looks_two", + "content": "looks_two" + }, + { + "label": "loupe", + "content": "loupe" + }, + { + "label": "low_density", + "content": "low_density" + }, + { + "label": "low_priority", + "content": "low_priority" + }, + { + "label": "lowercase", + "content": "lowercase" + }, + { + "label": "loyalty", + "content": "loyalty" + }, + { + "label": "lte_mobiledata", + "content": "lte_mobiledata" + }, + { + "label": "lte_mobiledata_badge", + "content": "lte_mobiledata_badge" + }, + { + "label": "lte_plus_mobiledata", + "content": "lte_plus_mobiledata" + }, + { + "label": "lte_plus_mobiledata_badge", + "content": "lte_plus_mobiledata_badge" + }, + { + "label": "luggage", + "content": "luggage" + }, + { + "label": "lunch_dining", + "content": "lunch_dining" + }, + { + "label": "lyrics", + "content": "lyrics" + }, + { + "label": "macro_auto", + "content": "macro_auto" + }, + { + "label": "macro_off", + "content": "macro_off" + }, + { + "label": "magnification_large", + "content": "magnification_large" + }, + { + "label": "magnification_small", + "content": "magnification_small" + }, + { + "label": "magnify_docked", + "content": "magnify_docked" + }, + { + "label": "magnify_fullscreen", + "content": "magnify_fullscreen" + }, + { + "label": "mail", + "content": "mail" + }, + { + "label": "mail_lock", + "content": "mail_lock" + }, + { + "label": "mail_off", + "content": "mail_off" + }, + { + "label": "male", + "content": "male" + }, + { + "label": "man", + "content": "man" + }, + { + "label": "man_2", + "content": "man_2" + }, + { + "label": "man_3", + "content": "man_3" + }, + { + "label": "man_4", + "content": "man_4" + }, + { + "label": "manage_accounts", + "content": "manage_accounts" + }, + { + "label": "manage_history", + "content": "manage_history" + }, + { + "label": "manage_search", + "content": "manage_search" + }, + { + "label": "manga", + "content": "manga" + }, + { + "label": "manufacturing", + "content": "manufacturing" + }, + { + "label": "map", + "content": "map" + }, + { + "label": "maps_ugc", + "content": "maps_ugc" + }, + { + "label": "margin", + "content": "margin" + }, + { + "label": "mark_as_unread", + "content": "mark_as_unread" + }, + { + "label": "mark_chat_read", + "content": "mark_chat_read" + }, + { + "label": "mark_chat_unread", + "content": "mark_chat_unread" + }, + { + "label": "mark_email_read", + "content": "mark_email_read" + }, + { + "label": "mark_email_unread", + "content": "mark_email_unread" + }, + { + "label": "mark_unread_chat_alt", + "content": "mark_unread_chat_alt" + }, + { + "label": "markdown", + "content": "markdown" + }, + { + "label": "markdown_copy", + "content": "markdown_copy" + }, + { + "label": "markdown_paste", + "content": "markdown_paste" + }, + { + "label": "markunread_mailbox", + "content": "markunread_mailbox" + }, + { + "label": "masked_transitions", + "content": "masked_transitions" + }, + { + "label": "masks", + "content": "masks" + }, + { + "label": "match_case", + "content": "match_case" + }, + { + "label": "match_word", + "content": "match_word" + }, + { + "label": "matter", + "content": "matter" + }, + { + "label": "maximize", + "content": "maximize" + }, + { + "label": "measuring_tape", + "content": "measuring_tape" + }, + { + "label": "media_bluetooth_off", + "content": "media_bluetooth_off" + }, + { + "label": "media_bluetooth_on", + "content": "media_bluetooth_on" + }, + { + "label": "media_link", + "content": "media_link" + }, + { + "label": "media_output", + "content": "media_output" + }, + { + "label": "media_output_off", + "content": "media_output_off" + }, + { + "label": "mediation", + "content": "mediation" + }, + { + "label": "medical_information", + "content": "medical_information" + }, + { + "label": "medical_mask", + "content": "medical_mask" + }, + { + "label": "medical_services", + "content": "medical_services" + }, + { + "label": "medication", + "content": "medication" + }, + { + "label": "medication_liquid", + "content": "medication_liquid" + }, + { + "label": "meeting_room", + "content": "meeting_room" + }, + { + "label": "memory", + "content": "memory" + }, + { + "label": "memory_alt", + "content": "memory_alt" + }, + { + "label": "menstrual_health", + "content": "menstrual_health" + }, + { + "label": "menu", + "content": "menu" + }, + { + "label": "menu_book", + "content": "menu_book" + }, + { + "label": "menu_open", + "content": "menu_open" + }, + { + "label": "merge", + "content": "merge" + }, + { + "label": "merge_type", + "content": "merge_type" + }, + { + "label": "metabolism", + "content": "metabolism" + }, + { + "label": "metro", + "content": "metro" + }, + { + "label": "mfg_nest_yale_lock", + "content": "mfg_nest_yale_lock" + }, + { + "label": "mic", + "content": "mic" + }, + { + "label": "mic_double", + "content": "mic_double" + }, + { + "label": "mic_external_off", + "content": "mic_external_off" + }, + { + "label": "mic_external_on", + "content": "mic_external_on" + }, + { + "label": "mic_off", + "content": "mic_off" + }, + { + "label": "microbiology", + "content": "microbiology" + }, + { + "label": "microwave", + "content": "microwave" + }, + { + "label": "microwave_gen", + "content": "microwave_gen" + }, + { + "label": "military_tech", + "content": "military_tech" + }, + { + "label": "mimo", + "content": "mimo" + }, + { + "label": "mimo_disconnect", + "content": "mimo_disconnect" + }, + { + "label": "mindfulness", + "content": "mindfulness" + }, + { + "label": "minimize", + "content": "minimize" + }, + { + "label": "minor_crash", + "content": "minor_crash" + }, + { + "label": "mintmark", + "content": "mintmark" + }, + { + "label": "missed_video_call", + "content": "missed_video_call" + }, + { + "label": "missing_controller", + "content": "missing_controller" + }, + { + "label": "mist", + "content": "mist" + }, + { + "label": "mitre", + "content": "mitre" + }, + { + "label": "mixture_med", + "content": "mixture_med" + }, + { + "label": "mms", + "content": "mms" + }, + { + "label": "mobile_friendly", + "content": "mobile_friendly" + }, + { + "label": "mobile_off", + "content": "mobile_off" + }, + { + "label": "mobile_screen_share", + "content": "mobile_screen_share" + }, + { + "label": "mobiledata_off", + "content": "mobiledata_off" + }, + { + "label": "mode_comment", + "content": "mode_comment" + }, + { + "label": "mode_cool", + "content": "mode_cool" + }, + { + "label": "mode_cool_off", + "content": "mode_cool_off" + }, + { + "label": "mode_dual", + "content": "mode_dual" + }, + { + "label": "mode_fan", + "content": "mode_fan" + }, + { + "label": "mode_fan_off", + "content": "mode_fan_off" + }, + { + "label": "mode_heat", + "content": "mode_heat" + }, + { + "label": "mode_heat_cool", + "content": "mode_heat_cool" + }, + { + "label": "mode_heat_off", + "content": "mode_heat_off" + }, + { + "label": "mode_night", + "content": "mode_night" + }, + { + "label": "mode_of_travel", + "content": "mode_of_travel" + }, + { + "label": "mode_off_on", + "content": "mode_off_on" + }, + { + "label": "mode_standby", + "content": "mode_standby" + }, + { + "label": "model_training", + "content": "model_training" + }, + { + "label": "money", + "content": "money" + }, + { + "label": "money_off", + "content": "money_off" + }, + { + "label": "monitor", + "content": "monitor" + }, + { + "label": "monitor_heart", + "content": "monitor_heart" + }, + { + "label": "monitor_weight", + "content": "monitor_weight" + }, + { + "label": "monitor_weight_gain", + "content": "monitor_weight_gain" + }, + { + "label": "monitor_weight_loss", + "content": "monitor_weight_loss" + }, + { + "label": "monitoring", + "content": "monitoring" + }, + { + "label": "monochrome_photos", + "content": "monochrome_photos" + }, + { + "label": "monorail", + "content": "monorail" + }, + { + "label": "mood", + "content": "mood" + }, + { + "label": "mood_bad", + "content": "mood_bad" + }, + { + "label": "mop", + "content": "mop" + }, + { + "label": "more", + "content": "more" + }, + { + "label": "more_down", + "content": "more_down" + }, + { + "label": "more_horiz", + "content": "more_horiz" + }, + { + "label": "more_time", + "content": "more_time" + }, + { + "label": "more_up", + "content": "more_up" + }, + { + "label": "more_vert", + "content": "more_vert" + }, + { + "label": "mosque", + "content": "mosque" + }, + { + "label": "motion_blur", + "content": "motion_blur" + }, + { + "label": "motion_mode", + "content": "motion_mode" + }, + { + "label": "motion_photos_auto", + "content": "motion_photos_auto" + }, + { + "label": "motion_photos_off", + "content": "motion_photos_off" + }, + { + "label": "motion_photos_on", + "content": "motion_photos_on" + }, + { + "label": "motion_photos_paused", + "content": "motion_photos_paused" + }, + { + "label": "motion_sensor_active", + "content": "motion_sensor_active" + }, + { + "label": "motion_sensor_alert", + "content": "motion_sensor_alert" + }, + { + "label": "motion_sensor_idle", + "content": "motion_sensor_idle" + }, + { + "label": "motion_sensor_urgent", + "content": "motion_sensor_urgent" + }, + { + "label": "motorcycle", + "content": "motorcycle" + }, + { + "label": "mountain_flag", + "content": "mountain_flag" + }, + { + "label": "mouse", + "content": "mouse" + }, + { + "label": "mouse_lock", + "content": "mouse_lock" + }, + { + "label": "mouse_lock_off", + "content": "mouse_lock_off" + }, + { + "label": "move", + "content": "move" + }, + { + "label": "move_down", + "content": "move_down" + }, + { + "label": "move_group", + "content": "move_group" + }, + { + "label": "move_item", + "content": "move_item" + }, + { + "label": "move_location", + "content": "move_location" + }, + { + "label": "move_selection_down", + "content": "move_selection_down" + }, + { + "label": "move_selection_left", + "content": "move_selection_left" + }, + { + "label": "move_selection_right", + "content": "move_selection_right" + }, + { + "label": "move_selection_up", + "content": "move_selection_up" + }, + { + "label": "move_to_inbox", + "content": "move_to_inbox" + }, + { + "label": "move_up", + "content": "move_up" + }, + { + "label": "moved_location", + "content": "moved_location" + }, + { + "label": "movie", + "content": "movie" + }, + { + "label": "movie_edit", + "content": "movie_edit" + }, + { + "label": "movie_info", + "content": "movie_info" + }, + { + "label": "movie_off", + "content": "movie_off" + }, + { + "label": "moving", + "content": "moving" + }, + { + "label": "moving_beds", + "content": "moving_beds" + }, + { + "label": "moving_ministry", + "content": "moving_ministry" + }, + { + "label": "mp", + "content": "mp" + }, + { + "label": "multicooker", + "content": "multicooker" + }, + { + "label": "multiline_chart", + "content": "multiline_chart" + }, + { + "label": "multiple_stop", + "content": "multiple_stop" + }, + { + "label": "museum", + "content": "museum" + }, + { + "label": "music_cast", + "content": "music_cast" + }, + { + "label": "music_note", + "content": "music_note" + }, + { + "label": "music_off", + "content": "music_off" + }, + { + "label": "music_video", + "content": "music_video" + }, + { + "label": "my_location", + "content": "my_location" + }, + { + "label": "mystery", + "content": "mystery" + }, + { + "label": "nat", + "content": "nat" + }, + { + "label": "nature", + "content": "nature" + }, + { + "label": "nature_people", + "content": "nature_people" + }, + { + "label": "navigation", + "content": "navigation" + }, + { + "label": "near_me", + "content": "near_me" + }, + { + "label": "near_me_disabled", + "content": "near_me_disabled" + }, + { + "label": "nearby", + "content": "nearby" + }, + { + "label": "nearby_error", + "content": "nearby_error" + }, + { + "label": "nearby_off", + "content": "nearby_off" + }, + { + "label": "nephrology", + "content": "nephrology" + }, + { + "label": "nest_audio", + "content": "nest_audio" + }, + { + "label": "nest_cam_floodlight", + "content": "nest_cam_floodlight" + }, + { + "label": "nest_cam_indoor", + "content": "nest_cam_indoor" + }, + { + "label": "nest_cam_iq", + "content": "nest_cam_iq" + }, + { + "label": "nest_cam_iq_outdoor", + "content": "nest_cam_iq_outdoor" + }, + { + "label": "nest_cam_magnet_mount", + "content": "nest_cam_magnet_mount" + }, + { + "label": "nest_cam_outdoor", + "content": "nest_cam_outdoor" + }, + { + "label": "nest_cam_stand", + "content": "nest_cam_stand" + }, + { + "label": "nest_cam_wall_mount", + "content": "nest_cam_wall_mount" + }, + { + "label": "nest_cam_wired_stand", + "content": "nest_cam_wired_stand" + }, + { + "label": "nest_clock_farsight_analog", + "content": "nest_clock_farsight_analog" + }, + { + "label": "nest_clock_farsight_digital", + "content": "nest_clock_farsight_digital" + }, + { + "label": "nest_connect", + "content": "nest_connect" + }, + { + "label": "nest_detect", + "content": "nest_detect" + }, + { + "label": "nest_display", + "content": "nest_display" + }, + { + "label": "nest_display_max", + "content": "nest_display_max" + }, + { + "label": "nest_doorbell_visitor", + "content": "nest_doorbell_visitor" + }, + { + "label": "nest_eco_leaf", + "content": "nest_eco_leaf" + }, + { + "label": "nest_farsight_weather", + "content": "nest_farsight_weather" + }, + { + "label": "nest_found_savings", + "content": "nest_found_savings" + }, + { + "label": "nest_gale_wifi", + "content": "nest_gale_wifi" + }, + { + "label": "nest_heat_link_e", + "content": "nest_heat_link_e" + }, + { + "label": "nest_heat_link_gen_3", + "content": "nest_heat_link_gen_3" + }, + { + "label": "nest_hello_doorbell", + "content": "nest_hello_doorbell" + }, + { + "label": "nest_mini", + "content": "nest_mini" + }, + { + "label": "nest_multi_room", + "content": "nest_multi_room" + }, + { + "label": "nest_protect", + "content": "nest_protect" + }, + { + "label": "nest_remote", + "content": "nest_remote" + }, + { + "label": "nest_remote_comfort_sensor", + "content": "nest_remote_comfort_sensor" + }, + { + "label": "nest_secure_alarm", + "content": "nest_secure_alarm" + }, + { + "label": "nest_sunblock", + "content": "nest_sunblock" + }, + { + "label": "nest_tag", + "content": "nest_tag" + }, + { + "label": "nest_thermostat", + "content": "nest_thermostat" + }, + { + "label": "nest_thermostat_e_eu", + "content": "nest_thermostat_e_eu" + }, + { + "label": "nest_thermostat_gen_3", + "content": "nest_thermostat_gen_3" + }, + { + "label": "nest_thermostat_sensor", + "content": "nest_thermostat_sensor" + }, + { + "label": "nest_thermostat_sensor_eu", + "content": "nest_thermostat_sensor_eu" + }, + { + "label": "nest_thermostat_zirconium_eu", + "content": "nest_thermostat_zirconium_eu" + }, + { + "label": "nest_true_radiant", + "content": "nest_true_radiant" + }, + { + "label": "nest_wake_on_approach", + "content": "nest_wake_on_approach" + }, + { + "label": "nest_wake_on_press", + "content": "nest_wake_on_press" + }, + { + "label": "nest_wifi_point", + "content": "nest_wifi_point" + }, + { + "label": "nest_wifi_pro", + "content": "nest_wifi_pro" + }, + { + "label": "nest_wifi_pro_2", + "content": "nest_wifi_pro_2" + }, + { + "label": "nest_wifi_router", + "content": "nest_wifi_router" + }, + { + "label": "network_cell", + "content": "network_cell" + }, + { + "label": "network_check", + "content": "network_check" + }, + { + "label": "network_intelligence_history", + "content": "network_intelligence_history" + }, + { + "label": "network_intelligence_update", + "content": "network_intelligence_update" + }, + { + "label": "network_locked", + "content": "network_locked" + }, + { + "label": "network_manage", + "content": "network_manage" + }, + { + "label": "network_node", + "content": "network_node" + }, + { + "label": "network_ping", + "content": "network_ping" + }, + { + "label": "network_wifi", + "content": "network_wifi" + }, + { + "label": "network_wifi_1_bar", + "content": "network_wifi_1_bar" + }, + { + "label": "network_wifi_1_bar_locked", + "content": "network_wifi_1_bar_locked" + }, + { + "label": "network_wifi_2_bar", + "content": "network_wifi_2_bar" + }, + { + "label": "network_wifi_2_bar_locked", + "content": "network_wifi_2_bar_locked" + }, + { + "label": "network_wifi_3_bar", + "content": "network_wifi_3_bar" + }, + { + "label": "network_wifi_3_bar_locked", + "content": "network_wifi_3_bar_locked" + }, + { + "label": "network_wifi_locked", + "content": "network_wifi_locked" + }, + { + "label": "neurology", + "content": "neurology" + }, + { + "label": "new_label", + "content": "new_label" + }, + { + "label": "new_releases", + "content": "new_releases" + }, + { + "label": "new_window", + "content": "new_window" + }, + { + "label": "news", + "content": "news" + }, + { + "label": "newsmode", + "content": "newsmode" + }, + { + "label": "newspaper", + "content": "newspaper" + }, + { + "label": "newsstand", + "content": "newsstand" + }, + { + "label": "next_plan", + "content": "next_plan" + }, + { + "label": "next_week", + "content": "next_week" + }, + { + "label": "nfc", + "content": "nfc" + }, + { + "label": "night_shelter", + "content": "night_shelter" + }, + { + "label": "night_sight_auto", + "content": "night_sight_auto" + }, + { + "label": "night_sight_auto_off", + "content": "night_sight_auto_off" + }, + { + "label": "night_sight_max", + "content": "night_sight_max" + }, + { + "label": "nightlife", + "content": "nightlife" + }, + { + "label": "nightlight", + "content": "nightlight" + }, + { + "label": "nights_stay", + "content": "nights_stay" + }, + { + "label": "no_accounts", + "content": "no_accounts" + }, + { + "label": "no_adult_content", + "content": "no_adult_content" + }, + { + "label": "no_backpack", + "content": "no_backpack" + }, + { + "label": "no_crash", + "content": "no_crash" + }, + { + "label": "no_drinks", + "content": "no_drinks" + }, + { + "label": "no_encryption", + "content": "no_encryption" + }, + { + "label": "no_flash", + "content": "no_flash" + }, + { + "label": "no_food", + "content": "no_food" + }, + { + "label": "no_luggage", + "content": "no_luggage" + }, + { + "label": "no_meals", + "content": "no_meals" + }, + { + "label": "no_meeting_room", + "content": "no_meeting_room" + }, + { + "label": "no_photography", + "content": "no_photography" + }, + { + "label": "no_sim", + "content": "no_sim" + }, + { + "label": "no_sound", + "content": "no_sound" + }, + { + "label": "no_stroller", + "content": "no_stroller" + }, + { + "label": "no_transfer", + "content": "no_transfer" + }, + { + "label": "noise_aware", + "content": "noise_aware" + }, + { + "label": "noise_control_off", + "content": "noise_control_off" + }, + { + "label": "noise_control_on", + "content": "noise_control_on" + }, + { + "label": "nordic_walking", + "content": "nordic_walking" + }, + { + "label": "north", + "content": "north" + }, + { + "label": "north_east", + "content": "north_east" + }, + { + "label": "north_west", + "content": "north_west" + }, + { + "label": "not_accessible", + "content": "not_accessible" + }, + { + "label": "not_accessible_forward", + "content": "not_accessible_forward" + }, + { + "label": "not_listed_location", + "content": "not_listed_location" + }, + { + "label": "not_started", + "content": "not_started" + }, + { + "label": "note_add", + "content": "note_add" + }, + { + "label": "note_alt", + "content": "note_alt" + }, + { + "label": "note_stack", + "content": "note_stack" + }, + { + "label": "note_stack_add", + "content": "note_stack_add" + }, + { + "label": "notes", + "content": "notes" + }, + { + "label": "notification_add", + "content": "notification_add" + }, + { + "label": "notification_important", + "content": "notification_important" + }, + { + "label": "notification_multiple", + "content": "notification_multiple" + }, + { + "label": "notifications", + "content": "notifications" + }, + { + "label": "notifications_active", + "content": "notifications_active" + }, + { + "label": "notifications_off", + "content": "notifications_off" + }, + { + "label": "notifications_paused", + "content": "notifications_paused" + }, + { + "label": "notifications_unread", + "content": "notifications_unread" + }, + { + "label": "numbers", + "content": "numbers" + }, + { + "label": "nutrition", + "content": "nutrition" + }, + { + "label": "ods", + "content": "ods" + }, + { + "label": "odt", + "content": "odt" + }, + { + "label": "offline_bolt", + "content": "offline_bolt" + }, + { + "label": "offline_pin", + "content": "offline_pin" + }, + { + "label": "offline_pin_off", + "content": "offline_pin_off" + }, + { + "label": "offline_share", + "content": "offline_share" + }, + { + "label": "oil_barrel", + "content": "oil_barrel" + }, + { + "label": "on_device_training", + "content": "on_device_training" + }, + { + "label": "on_hub_device", + "content": "on_hub_device" + }, + { + "label": "oncology", + "content": "oncology" + }, + { + "label": "online_prediction", + "content": "online_prediction" + }, + { + "label": "onsen", + "content": "onsen" + }, + { + "label": "opacity", + "content": "opacity" + }, + { + "label": "open_in_browser", + "content": "open_in_browser" + }, + { + "label": "open_in_full", + "content": "open_in_full" + }, + { + "label": "open_in_new", + "content": "open_in_new" + }, + { + "label": "open_in_new_down", + "content": "open_in_new_down" + }, + { + "label": "open_in_new_off", + "content": "open_in_new_off" + }, + { + "label": "open_in_phone", + "content": "open_in_phone" + }, + { + "label": "open_jam", + "content": "open_jam" + }, + { + "label": "open_run", + "content": "open_run" + }, + { + "label": "open_with", + "content": "open_with" + }, + { + "label": "ophthalmology", + "content": "ophthalmology" + }, + { + "label": "oral_disease", + "content": "oral_disease" + }, + { + "label": "order_approve", + "content": "order_approve" + }, + { + "label": "order_play", + "content": "order_play" + }, + { + "label": "orders", + "content": "orders" + }, + { + "label": "orthopedics", + "content": "orthopedics" + }, + { + "label": "other_admission", + "content": "other_admission" + }, + { + "label": "other_houses", + "content": "other_houses" + }, + { + "label": "outbound", + "content": "outbound" + }, + { + "label": "outbox", + "content": "outbox" + }, + { + "label": "outbox_alt", + "content": "outbox_alt" + }, + { + "label": "outdoor_garden", + "content": "outdoor_garden" + }, + { + "label": "outdoor_grill", + "content": "outdoor_grill" + }, + { + "label": "outgoing_mail", + "content": "outgoing_mail" + }, + { + "label": "outlet", + "content": "outlet" + }, + { + "label": "outpatient", + "content": "outpatient" + }, + { + "label": "outpatient_med", + "content": "outpatient_med" + }, + { + "label": "output", + "content": "output" + }, + { + "label": "output_circle", + "content": "output_circle" + }, + { + "label": "oven", + "content": "oven" + }, + { + "label": "oven_gen", + "content": "oven_gen" + }, + { + "label": "overview", + "content": "overview" + }, + { + "label": "overview_key", + "content": "overview_key" + }, + { + "label": "oxygen_saturation", + "content": "oxygen_saturation" + }, + { + "label": "p2p", + "content": "p2p" + }, + { + "label": "pace", + "content": "pace" + }, + { + "label": "pacemaker", + "content": "pacemaker" + }, + { + "label": "package", + "content": "package" + }, + { + "label": "package_2", + "content": "package_2" + }, + { + "label": "padding", + "content": "padding" + }, + { + "label": "page_control", + "content": "page_control" + }, + { + "label": "page_info", + "content": "page_info" + }, + { + "label": "pageless", + "content": "pageless" + }, + { + "label": "pages", + "content": "pages" + }, + { + "label": "pageview", + "content": "pageview" + }, + { + "label": "paid", + "content": "paid" + }, + { + "label": "palette", + "content": "palette" + }, + { + "label": "pallet", + "content": "pallet" + }, + { + "label": "pan_tool", + "content": "pan_tool" + }, + { + "label": "pan_tool_alt", + "content": "pan_tool_alt" + }, + { + "label": "pan_zoom", + "content": "pan_zoom" + }, + { + "label": "panorama", + "content": "panorama" + }, + { + "label": "panorama_fish_eye", + "content": "panorama_fish_eye" + }, + { + "label": "panorama_horizontal", + "content": "panorama_horizontal" + }, + { + "label": "panorama_photosphere", + "content": "panorama_photosphere" + }, + { + "label": "panorama_vertical", + "content": "panorama_vertical" + }, + { + "label": "panorama_wide_angle", + "content": "panorama_wide_angle" + }, + { + "label": "paragliding", + "content": "paragliding" + }, + { + "label": "park", + "content": "park" + }, + { + "label": "partly_cloudy_day", + "content": "partly_cloudy_day" + }, + { + "label": "partly_cloudy_night", + "content": "partly_cloudy_night" + }, + { + "label": "partner_exchange", + "content": "partner_exchange" + }, + { + "label": "partner_reports", + "content": "partner_reports" + }, + { + "label": "party_mode", + "content": "party_mode" + }, + { + "label": "passkey", + "content": "passkey" + }, + { + "label": "password", + "content": "password" + }, + { + "label": "password_2", + "content": "password_2" + }, + { + "label": "password_2_off", + "content": "password_2_off" + }, + { + "label": "patient_list", + "content": "patient_list" + }, + { + "label": "pattern", + "content": "pattern" + }, + { + "label": "pause", + "content": "pause" + }, + { + "label": "pause_circle", + "content": "pause_circle" + }, + { + "label": "pause_presentation", + "content": "pause_presentation" + }, + { + "label": "payments", + "content": "payments" + }, + { + "label": "pedal_bike", + "content": "pedal_bike" + }, + { + "label": "pediatrics", + "content": "pediatrics" + }, + { + "label": "pen_size_1", + "content": "pen_size_1" + }, + { + "label": "pen_size_2", + "content": "pen_size_2" + }, + { + "label": "pen_size_3", + "content": "pen_size_3" + }, + { + "label": "pen_size_4", + "content": "pen_size_4" + }, + { + "label": "pen_size_5", + "content": "pen_size_5" + }, + { + "label": "pending", + "content": "pending" + }, + { + "label": "pending_actions", + "content": "pending_actions" + }, + { + "label": "pentagon", + "content": "pentagon" + }, + { + "label": "percent", + "content": "percent" + }, + { + "label": "pergola", + "content": "pergola" + }, + { + "label": "perm_camera_mic", + "content": "perm_camera_mic" + }, + { + "label": "perm_contact_calendar", + "content": "perm_contact_calendar" + }, + { + "label": "perm_data_setting", + "content": "perm_data_setting" + }, + { + "label": "perm_device_information", + "content": "perm_device_information" + }, + { + "label": "perm_media", + "content": "perm_media" + }, + { + "label": "perm_phone_msg", + "content": "perm_phone_msg" + }, + { + "label": "perm_scan_wifi", + "content": "perm_scan_wifi" + }, + { + "label": "person", + "content": "person" + }, + { + "label": "person_2", + "content": "person_2" + }, + { + "label": "person_3", + "content": "person_3" + }, + { + "label": "person_4", + "content": "person_4" + }, + { + "label": "person_add", + "content": "person_add" + }, + { + "label": "person_add_disabled", + "content": "person_add_disabled" + }, + { + "label": "person_alert", + "content": "person_alert" + }, + { + "label": "person_apron", + "content": "person_apron" + }, + { + "label": "person_book", + "content": "person_book" + }, + { + "label": "person_cancel", + "content": "person_cancel" + }, + { + "label": "person_celebrate", + "content": "person_celebrate" + }, + { + "label": "person_check", + "content": "person_check" + }, + { + "label": "person_edit", + "content": "person_edit" + }, + { + "label": "person_off", + "content": "person_off" + }, + { + "label": "person_pin", + "content": "person_pin" + }, + { + "label": "person_pin_circle", + "content": "person_pin_circle" + }, + { + "label": "person_play", + "content": "person_play" + }, + { + "label": "person_raised_hand", + "content": "person_raised_hand" + }, + { + "label": "person_remove", + "content": "person_remove" + }, + { + "label": "person_search", + "content": "person_search" + }, + { + "label": "personal_bag", + "content": "personal_bag" + }, + { + "label": "personal_bag_off", + "content": "personal_bag_off" + }, + { + "label": "personal_bag_question", + "content": "personal_bag_question" + }, + { + "label": "personal_injury", + "content": "personal_injury" + }, + { + "label": "personal_places", + "content": "personal_places" + }, + { + "label": "pest_control", + "content": "pest_control" + }, + { + "label": "pest_control_rodent", + "content": "pest_control_rodent" + }, + { + "label": "pet_supplies", + "content": "pet_supplies" + }, + { + "label": "pets", + "content": "pets" + }, + { + "label": "phishing", + "content": "phishing" + }, + { + "label": "phone_android", + "content": "phone_android" + }, + { + "label": "phone_bluetooth_speaker", + "content": "phone_bluetooth_speaker" + }, + { + "label": "phone_callback", + "content": "phone_callback" + }, + { + "label": "phone_disabled", + "content": "phone_disabled" + }, + { + "label": "phone_enabled", + "content": "phone_enabled" + }, + { + "label": "phone_forwarded", + "content": "phone_forwarded" + }, + { + "label": "phone_in_talk", + "content": "phone_in_talk" + }, + { + "label": "phone_iphone", + "content": "phone_iphone" + }, + { + "label": "phone_locked", + "content": "phone_locked" + }, + { + "label": "phone_missed", + "content": "phone_missed" + }, + { + "label": "phone_paused", + "content": "phone_paused" + }, + { + "label": "phonelink_erase", + "content": "phonelink_erase" + }, + { + "label": "phonelink_lock", + "content": "phonelink_lock" + }, + { + "label": "phonelink_off", + "content": "phonelink_off" + }, + { + "label": "phonelink_ring", + "content": "phonelink_ring" + }, + { + "label": "phonelink_ring_off", + "content": "phonelink_ring_off" + }, + { + "label": "phonelink_setup", + "content": "phonelink_setup" + }, + { + "label": "photo", + "content": "photo" + }, + { + "label": "photo_album", + "content": "photo_album" + }, + { + "label": "photo_auto_merge", + "content": "photo_auto_merge" + }, + { + "label": "photo_camera", + "content": "photo_camera" + }, + { + "label": "photo_camera_back", + "content": "photo_camera_back" + }, + { + "label": "photo_camera_front", + "content": "photo_camera_front" + }, + { + "label": "photo_frame", + "content": "photo_frame" + }, + { + "label": "photo_library", + "content": "photo_library" + }, + { + "label": "photo_prints", + "content": "photo_prints" + }, + { + "label": "photo_size_select_large", + "content": "photo_size_select_large" + }, + { + "label": "photo_size_select_small", + "content": "photo_size_select_small" + }, + { + "label": "php", + "content": "php" + }, + { + "label": "physical_therapy", + "content": "physical_therapy" + }, + { + "label": "piano", + "content": "piano" + }, + { + "label": "piano_off", + "content": "piano_off" + }, + { + "label": "picture_as_pdf", + "content": "picture_as_pdf" + }, + { + "label": "picture_in_picture", + "content": "picture_in_picture" + }, + { + "label": "picture_in_picture_alt", + "content": "picture_in_picture_alt" + }, + { + "label": "picture_in_picture_center", + "content": "picture_in_picture_center" + }, + { + "label": "picture_in_picture_large", + "content": "picture_in_picture_large" + }, + { + "label": "picture_in_picture_medium", + "content": "picture_in_picture_medium" + }, + { + "label": "picture_in_picture_mobile", + "content": "picture_in_picture_mobile" + }, + { + "label": "picture_in_picture_off", + "content": "picture_in_picture_off" + }, + { + "label": "picture_in_picture_small", + "content": "picture_in_picture_small" + }, + { + "label": "pie_chart", + "content": "pie_chart" + }, + { + "label": "pill", + "content": "pill" + }, + { + "label": "pill_off", + "content": "pill_off" + }, + { + "label": "pin", + "content": "pin" + }, + { + "label": "pin_drop", + "content": "pin_drop" + }, + { + "label": "pin_end", + "content": "pin_end" + }, + { + "label": "pin_invoke", + "content": "pin_invoke" + }, + { + "label": "pinch", + "content": "pinch" + }, + { + "label": "pinch_zoom_in", + "content": "pinch_zoom_in" + }, + { + "label": "pinch_zoom_out", + "content": "pinch_zoom_out" + }, + { + "label": "pip", + "content": "pip" + }, + { + "label": "pip_exit", + "content": "pip_exit" + }, + { + "label": "pivot_table_chart", + "content": "pivot_table_chart" + }, + { + "label": "place_item", + "content": "place_item" + }, + { + "label": "plagiarism", + "content": "plagiarism" + }, + { + "label": "planner_banner_ad_pt", + "content": "planner_banner_ad_pt" + }, + { + "label": "planner_review", + "content": "planner_review" + }, + { + "label": "play_arrow", + "content": "play_arrow" + }, + { + "label": "play_circle", + "content": "play_circle" + }, + { + "label": "play_disabled", + "content": "play_disabled" + }, + { + "label": "play_for_work", + "content": "play_for_work" + }, + { + "label": "play_lesson", + "content": "play_lesson" + }, + { + "label": "play_pause", + "content": "play_pause" + }, + { + "label": "playing_cards", + "content": "playing_cards" + }, + { + "label": "playlist_add", + "content": "playlist_add" + }, + { + "label": "playlist_add_check", + "content": "playlist_add_check" + }, + { + "label": "playlist_add_check_circle", + "content": "playlist_add_check_circle" + }, + { + "label": "playlist_add_circle", + "content": "playlist_add_circle" + }, + { + "label": "playlist_play", + "content": "playlist_play" + }, + { + "label": "playlist_remove", + "content": "playlist_remove" + }, + { + "label": "plumbing", + "content": "plumbing" + }, + { + "label": "podcasts", + "content": "podcasts" + }, + { + "label": "podiatry", + "content": "podiatry" + }, + { + "label": "podium", + "content": "podium" + }, + { + "label": "point_of_sale", + "content": "point_of_sale" + }, + { + "label": "point_scan", + "content": "point_scan" + }, + { + "label": "poker_chip", + "content": "poker_chip" + }, + { + "label": "policy", + "content": "policy" + }, + { + "label": "polyline", + "content": "polyline" + }, + { + "label": "polymer", + "content": "polymer" + }, + { + "label": "pool", + "content": "pool" + }, + { + "label": "portable_wifi_off", + "content": "portable_wifi_off" + }, + { + "label": "position_bottom_left", + "content": "position_bottom_left" + }, + { + "label": "position_bottom_right", + "content": "position_bottom_right" + }, + { + "label": "position_top_right", + "content": "position_top_right" + }, + { + "label": "post", + "content": "post" + }, + { + "label": "post_add", + "content": "post_add" + }, + { + "label": "potted_plant", + "content": "potted_plant" + }, + { + "label": "power", + "content": "power" + }, + { + "label": "power_input", + "content": "power_input" + }, + { + "label": "power_off", + "content": "power_off" + }, + { + "label": "power_settings_new", + "content": "power_settings_new" + }, + { + "label": "prayer_times", + "content": "prayer_times" + }, + { + "label": "precision_manufacturing", + "content": "precision_manufacturing" + }, + { + "label": "pregnancy", + "content": "pregnancy" + }, + { + "label": "pregnant_woman", + "content": "pregnant_woman" + }, + { + "label": "preliminary", + "content": "preliminary" + }, + { + "label": "prescriptions", + "content": "prescriptions" + }, + { + "label": "present_to_all", + "content": "present_to_all" + }, + { + "label": "preview", + "content": "preview" + }, + { + "label": "preview_off", + "content": "preview_off" + }, + { + "label": "price_change", + "content": "price_change" + }, + { + "label": "price_check", + "content": "price_check" + }, + { + "label": "print", + "content": "print" + }, + { + "label": "print_add", + "content": "print_add" + }, + { + "label": "print_connect", + "content": "print_connect" + }, + { + "label": "print_disabled", + "content": "print_disabled" + }, + { + "label": "print_error", + "content": "print_error" + }, + { + "label": "print_lock", + "content": "print_lock" + }, + { + "label": "priority", + "content": "priority" + }, + { + "label": "priority_high", + "content": "priority_high" + }, + { + "label": "privacy", + "content": "privacy" + }, + { + "label": "privacy_tip", + "content": "privacy_tip" + }, + { + "label": "private_connectivity", + "content": "private_connectivity" + }, + { + "label": "problem", + "content": "problem" + }, + { + "label": "procedure", + "content": "procedure" + }, + { + "label": "process_chart", + "content": "process_chart" + }, + { + "label": "production_quantity_limits", + "content": "production_quantity_limits" + }, + { + "label": "productivity", + "content": "productivity" + }, + { + "label": "progress_activity", + "content": "progress_activity" + }, + { + "label": "prompt_suggestion", + "content": "prompt_suggestion" + }, + { + "label": "propane", + "content": "propane" + }, + { + "label": "propane_tank", + "content": "propane_tank" + }, + { + "label": "psychiatry", + "content": "psychiatry" + }, + { + "label": "psychology", + "content": "psychology" + }, + { + "label": "psychology_alt", + "content": "psychology_alt" + }, + { + "label": "public", + "content": "public" + }, + { + "label": "public_off", + "content": "public_off" + }, + { + "label": "publish", + "content": "publish" + }, + { + "label": "published_with_changes", + "content": "published_with_changes" + }, + { + "label": "pulmonology", + "content": "pulmonology" + }, + { + "label": "pulse_alert", + "content": "pulse_alert" + }, + { + "label": "punch_clock", + "content": "punch_clock" + }, + { + "label": "qr_code", + "content": "qr_code" + }, + { + "label": "qr_code_2", + "content": "qr_code_2" + }, + { + "label": "qr_code_2_add", + "content": "qr_code_2_add" + }, + { + "label": "qr_code_scanner", + "content": "qr_code_scanner" + }, + { + "label": "query_stats", + "content": "query_stats" + }, + { + "label": "question_exchange", + "content": "question_exchange" + }, + { + "label": "question_mark", + "content": "question_mark" + }, + { + "label": "queue_music", + "content": "queue_music" + }, + { + "label": "queue_play_next", + "content": "queue_play_next" + }, + { + "label": "quick_phrases", + "content": "quick_phrases" + }, + { + "label": "quick_reference", + "content": "quick_reference" + }, + { + "label": "quick_reference_all", + "content": "quick_reference_all" + }, + { + "label": "quick_reorder", + "content": "quick_reorder" + }, + { + "label": "quickreply", + "content": "quickreply" + }, + { + "label": "quiet_time", + "content": "quiet_time" + }, + { + "label": "quiet_time_active", + "content": "quiet_time_active" + }, + { + "label": "quiz", + "content": "quiz" + }, + { + "label": "r_mobiledata", + "content": "r_mobiledata" + }, + { + "label": "radar", + "content": "radar" + }, + { + "label": "radio", + "content": "radio" + }, + { + "label": "radio_button_checked", + "content": "radio_button_checked" + }, + { + "label": "radio_button_partial", + "content": "radio_button_partial" + }, + { + "label": "radio_button_unchecked", + "content": "radio_button_unchecked" + }, + { + "label": "radiology", + "content": "radiology" + }, + { + "label": "railway_alert", + "content": "railway_alert" + }, + { + "label": "railway_alert_2", + "content": "railway_alert_2" + }, + { + "label": "rainy", + "content": "rainy" + }, + { + "label": "rainy_heavy", + "content": "rainy_heavy" + }, + { + "label": "rainy_light", + "content": "rainy_light" + }, + { + "label": "rainy_snow", + "content": "rainy_snow" + }, + { + "label": "ramen_dining", + "content": "ramen_dining" + }, + { + "label": "ramp_left", + "content": "ramp_left" + }, + { + "label": "ramp_right", + "content": "ramp_right" + }, + { + "label": "range_hood", + "content": "range_hood" + }, + { + "label": "rate_review", + "content": "rate_review" + }, + { + "label": "raven", + "content": "raven" + }, + { + "label": "raw_off", + "content": "raw_off" + }, + { + "label": "raw_on", + "content": "raw_on" + }, + { + "label": "read_more", + "content": "read_more" + }, + { + "label": "readiness_score", + "content": "readiness_score" + }, + { + "label": "real_estate_agent", + "content": "real_estate_agent" + }, + { + "label": "rear_camera", + "content": "rear_camera" + }, + { + "label": "rebase", + "content": "rebase" + }, + { + "label": "rebase_edit", + "content": "rebase_edit" + }, + { + "label": "receipt", + "content": "receipt" + }, + { + "label": "receipt_long", + "content": "receipt_long" + }, + { + "label": "recent_actors", + "content": "recent_actors" + }, + { + "label": "recent_patient", + "content": "recent_patient" + }, + { + "label": "recenter", + "content": "recenter" + }, + { + "label": "recommend", + "content": "recommend" + }, + { + "label": "record_voice_over", + "content": "record_voice_over" + }, + { + "label": "rectangle", + "content": "rectangle" + }, + { + "label": "recycling", + "content": "recycling" + }, + { + "label": "redeem", + "content": "redeem" + }, + { + "label": "redo", + "content": "redo" + }, + { + "label": "reduce_capacity", + "content": "reduce_capacity" + }, + { + "label": "refresh", + "content": "refresh" + }, + { + "label": "regular_expression", + "content": "regular_expression" + }, + { + "label": "relax", + "content": "relax" + }, + { + "label": "release_alert", + "content": "release_alert" + }, + { + "label": "remember_me", + "content": "remember_me" + }, + { + "label": "reminder", + "content": "reminder" + }, + { + "label": "remote_gen", + "content": "remote_gen" + }, + { + "label": "remove", + "content": "remove" + }, + { + "label": "remove_done", + "content": "remove_done" + }, + { + "label": "remove_from_queue", + "content": "remove_from_queue" + }, + { + "label": "remove_moderator", + "content": "remove_moderator" + }, + { + "label": "remove_road", + "content": "remove_road" + }, + { + "label": "remove_selection", + "content": "remove_selection" + }, + { + "label": "remove_shopping_cart", + "content": "remove_shopping_cart" + }, + { + "label": "reopen_window", + "content": "reopen_window" + }, + { + "label": "reorder", + "content": "reorder" + }, + { + "label": "repartition", + "content": "repartition" + }, + { + "label": "repeat", + "content": "repeat" + }, + { + "label": "repeat_on", + "content": "repeat_on" + }, + { + "label": "repeat_one", + "content": "repeat_one" + }, + { + "label": "repeat_one_on", + "content": "repeat_one_on" + }, + { + "label": "replay", + "content": "replay" + }, + { + "label": "replay_10", + "content": "replay_10" + }, + { + "label": "replay_30", + "content": "replay_30" + }, + { + "label": "replay_5", + "content": "replay_5" + }, + { + "label": "reply", + "content": "reply" + }, + { + "label": "reply_all", + "content": "reply_all" + }, + { + "label": "report", + "content": "report" + }, + { + "label": "report_off", + "content": "report_off" + }, + { + "label": "request_page", + "content": "request_page" + }, + { + "label": "request_quote", + "content": "request_quote" + }, + { + "label": "reset_brightness", + "content": "reset_brightness" + }, + { + "label": "reset_focus", + "content": "reset_focus" + }, + { + "label": "reset_image", + "content": "reset_image" + }, + { + "label": "reset_iso", + "content": "reset_iso" + }, + { + "label": "reset_settings", + "content": "reset_settings" + }, + { + "label": "reset_shadow", + "content": "reset_shadow" + }, + { + "label": "reset_shutter_speed", + "content": "reset_shutter_speed" + }, + { + "label": "reset_tv", + "content": "reset_tv" + }, + { + "label": "reset_white_balance", + "content": "reset_white_balance" + }, + { + "label": "reset_wrench", + "content": "reset_wrench" + }, + { + "label": "resize", + "content": "resize" + }, + { + "label": "respiratory_rate", + "content": "respiratory_rate" + }, + { + "label": "responsive_layout", + "content": "responsive_layout" + }, + { + "label": "restart_alt", + "content": "restart_alt" + }, + { + "label": "restaurant", + "content": "restaurant" + }, + { + "label": "restaurant_menu", + "content": "restaurant_menu" + }, + { + "label": "restore_from_trash", + "content": "restore_from_trash" + }, + { + "label": "restore_page", + "content": "restore_page" + }, + { + "label": "resume", + "content": "resume" + }, + { + "label": "reviews", + "content": "reviews" + }, + { + "label": "rewarded_ads", + "content": "rewarded_ads" + }, + { + "label": "rheumatology", + "content": "rheumatology" + }, + { + "label": "rib_cage", + "content": "rib_cage" + }, + { + "label": "rice_bowl", + "content": "rice_bowl" + }, + { + "label": "right_click", + "content": "right_click" + }, + { + "label": "right_panel_close", + "content": "right_panel_close" + }, + { + "label": "right_panel_open", + "content": "right_panel_open" + }, + { + "label": "ring_volume", + "content": "ring_volume" + }, + { + "label": "ripples", + "content": "ripples" + }, + { + "label": "road", + "content": "road" + }, + { + "label": "robot", + "content": "robot" + }, + { + "label": "robot_2", + "content": "robot_2" + }, + { + "label": "rocket", + "content": "rocket" + }, + { + "label": "rocket_launch", + "content": "rocket_launch" + }, + { + "label": "roller_shades", + "content": "roller_shades" + }, + { + "label": "roller_shades_closed", + "content": "roller_shades_closed" + }, + { + "label": "roller_skating", + "content": "roller_skating" + }, + { + "label": "roofing", + "content": "roofing" + }, + { + "label": "room_preferences", + "content": "room_preferences" + }, + { + "label": "room_service", + "content": "room_service" + }, + { + "label": "rotate_90_degrees_ccw", + "content": "rotate_90_degrees_ccw" + }, + { + "label": "rotate_90_degrees_cw", + "content": "rotate_90_degrees_cw" + }, + { + "label": "rotate_left", + "content": "rotate_left" + }, + { + "label": "rotate_right", + "content": "rotate_right" + }, + { + "label": "roundabout_left", + "content": "roundabout_left" + }, + { + "label": "roundabout_right", + "content": "roundabout_right" + }, + { + "label": "rounded_corner", + "content": "rounded_corner" + }, + { + "label": "route", + "content": "route" + }, + { + "label": "router", + "content": "router" + }, + { + "label": "routine", + "content": "routine" + }, + { + "label": "rowing", + "content": "rowing" + }, + { + "label": "rss_feed", + "content": "rss_feed" + }, + { + "label": "rsvp", + "content": "rsvp" + }, + { + "label": "rtt", + "content": "rtt" + }, + { + "label": "rubric", + "content": "rubric" + }, + { + "label": "rule", + "content": "rule" + }, + { + "label": "rule_folder", + "content": "rule_folder" + }, + { + "label": "rule_settings", + "content": "rule_settings" + }, + { + "label": "run_circle", + "content": "run_circle" + }, + { + "label": "running_with_errors", + "content": "running_with_errors" + }, + { + "label": "rv_hookup", + "content": "rv_hookup" + }, + { + "label": "safety_check", + "content": "safety_check" + }, + { + "label": "safety_check_off", + "content": "safety_check_off" + }, + { + "label": "safety_divider", + "content": "safety_divider" + }, + { + "label": "sailing", + "content": "sailing" + }, + { + "label": "salinity", + "content": "salinity" + }, + { + "label": "sanitizer", + "content": "sanitizer" + }, + { + "label": "satellite", + "content": "satellite" + }, + { + "label": "satellite_alt", + "content": "satellite_alt" + }, + { + "label": "sauna", + "content": "sauna" + }, + { + "label": "save", + "content": "save" + }, + { + "label": "save_as", + "content": "save_as" + }, + { + "label": "saved_search", + "content": "saved_search" + }, + { + "label": "savings", + "content": "savings" + }, + { + "label": "scale", + "content": "scale" + }, + { + "label": "scan", + "content": "scan" + }, + { + "label": "scan_delete", + "content": "scan_delete" + }, + { + "label": "scanner", + "content": "scanner" + }, + { + "label": "scatter_plot", + "content": "scatter_plot" + }, + { + "label": "scene", + "content": "scene" + }, + { + "label": "schedule", + "content": "schedule" + }, + { + "label": "schedule_send", + "content": "schedule_send" + }, + { + "label": "schema", + "content": "schema" + }, + { + "label": "school", + "content": "school" + }, + { + "label": "science", + "content": "science" + }, + { + "label": "science_off", + "content": "science_off" + }, + { + "label": "scooter", + "content": "scooter" + }, + { + "label": "score", + "content": "score" + }, + { + "label": "scoreboard", + "content": "scoreboard" + }, + { + "label": "screen_lock_landscape", + "content": "screen_lock_landscape" + }, + { + "label": "screen_lock_portrait", + "content": "screen_lock_portrait" + }, + { + "label": "screen_lock_rotation", + "content": "screen_lock_rotation" + }, + { + "label": "screen_record", + "content": "screen_record" + }, + { + "label": "screen_rotation", + "content": "screen_rotation" + }, + { + "label": "screen_rotation_alt", + "content": "screen_rotation_alt" + }, + { + "label": "screen_rotation_up", + "content": "screen_rotation_up" + }, + { + "label": "screen_search_desktop", + "content": "screen_search_desktop" + }, + { + "label": "screen_share", + "content": "screen_share" + }, + { + "label": "screenshot", + "content": "screenshot" + }, + { + "label": "screenshot_frame", + "content": "screenshot_frame" + }, + { + "label": "screenshot_keyboard", + "content": "screenshot_keyboard" + }, + { + "label": "screenshot_monitor", + "content": "screenshot_monitor" + }, + { + "label": "screenshot_region", + "content": "screenshot_region" + }, + { + "label": "screenshot_tablet", + "content": "screenshot_tablet" + }, + { + "label": "script", + "content": "script" + }, + { + "label": "scrollable_header", + "content": "scrollable_header" + }, + { + "label": "scuba_diving", + "content": "scuba_diving" + }, + { + "label": "sd", + "content": "sd" + }, + { + "label": "sd_card", + "content": "sd_card" + }, + { + "label": "sd_card_alert", + "content": "sd_card_alert" + }, + { + "label": "sdk", + "content": "sdk" + }, + { + "label": "search", + "content": "search" + }, + { + "label": "search_check", + "content": "search_check" + }, + { + "label": "search_check_2", + "content": "search_check_2" + }, + { + "label": "search_hands_free", + "content": "search_hands_free" + }, + { + "label": "search_insights", + "content": "search_insights" + }, + { + "label": "search_off", + "content": "search_off" + }, + { + "label": "security", + "content": "security" + }, + { + "label": "security_key", + "content": "security_key" + }, + { + "label": "security_update_good", + "content": "security_update_good" + }, + { + "label": "security_update_warning", + "content": "security_update_warning" + }, + { + "label": "segment", + "content": "segment" + }, + { + "label": "select", + "content": "select" + }, + { + "label": "select_all", + "content": "select_all" + }, + { + "label": "select_check_box", + "content": "select_check_box" + }, + { + "label": "select_to_speak", + "content": "select_to_speak" + }, + { + "label": "select_window", + "content": "select_window" + }, + { + "label": "select_window_2", + "content": "select_window_2" + }, + { + "label": "select_window_off", + "content": "select_window_off" + }, + { + "label": "self_care", + "content": "self_care" + }, + { + "label": "self_improvement", + "content": "self_improvement" + }, + { + "label": "sell", + "content": "sell" + }, + { + "label": "send", + "content": "send" + }, + { + "label": "send_and_archive", + "content": "send_and_archive" + }, + { + "label": "send_money", + "content": "send_money" + }, + { + "label": "send_time_extension", + "content": "send_time_extension" + }, + { + "label": "send_to_mobile", + "content": "send_to_mobile" + }, + { + "label": "sensor_door", + "content": "sensor_door" + }, + { + "label": "sensor_occupied", + "content": "sensor_occupied" + }, + { + "label": "sensor_window", + "content": "sensor_window" + }, + { + "label": "sensors", + "content": "sensors" + }, + { + "label": "sensors_krx", + "content": "sensors_krx" + }, + { + "label": "sensors_krx_off", + "content": "sensors_krx_off" + }, + { + "label": "sensors_off", + "content": "sensors_off" + }, + { + "label": "sentiment_calm", + "content": "sentiment_calm" + }, + { + "label": "sentiment_content", + "content": "sentiment_content" + }, + { + "label": "sentiment_dissatisfied", + "content": "sentiment_dissatisfied" + }, + { + "label": "sentiment_excited", + "content": "sentiment_excited" + }, + { + "label": "sentiment_extremely_dissatisfied", + "content": "sentiment_extremely_dissatisfied" + }, + { + "label": "sentiment_frustrated", + "content": "sentiment_frustrated" + }, + { + "label": "sentiment_neutral", + "content": "sentiment_neutral" + }, + { + "label": "sentiment_sad", + "content": "sentiment_sad" + }, + { + "label": "sentiment_satisfied", + "content": "sentiment_satisfied" + }, + { + "label": "sentiment_stressed", + "content": "sentiment_stressed" + }, + { + "label": "sentiment_very_dissatisfied", + "content": "sentiment_very_dissatisfied" + }, + { + "label": "sentiment_very_satisfied", + "content": "sentiment_very_satisfied" + }, + { + "label": "sentiment_worried", + "content": "sentiment_worried" + }, + { + "label": "serif", + "content": "serif" + }, + { + "label": "service_toolbox", + "content": "service_toolbox" + }, + { + "label": "set_meal", + "content": "set_meal" + }, + { + "label": "settings", + "content": "settings" + }, + { + "label": "settings_accessibility", + "content": "settings_accessibility" + }, + { + "label": "settings_account_box", + "content": "settings_account_box" + }, + { + "label": "settings_alert", + "content": "settings_alert" + }, + { + "label": "settings_applications", + "content": "settings_applications" + }, + { + "label": "settings_b_roll", + "content": "settings_b_roll" + }, + { + "label": "settings_backup_restore", + "content": "settings_backup_restore" + }, + { + "label": "settings_bluetooth", + "content": "settings_bluetooth" + }, + { + "label": "settings_brightness", + "content": "settings_brightness" + }, + { + "label": "settings_cell", + "content": "settings_cell" + }, + { + "label": "settings_cinematic_blur", + "content": "settings_cinematic_blur" + }, + { + "label": "settings_ethernet", + "content": "settings_ethernet" + }, + { + "label": "settings_heart", + "content": "settings_heart" + }, + { + "label": "settings_input_antenna", + "content": "settings_input_antenna" + }, + { + "label": "settings_input_component", + "content": "settings_input_component" + }, + { + "label": "settings_input_hdmi", + "content": "settings_input_hdmi" + }, + { + "label": "settings_input_svideo", + "content": "settings_input_svideo" + }, + { + "label": "settings_motion_mode", + "content": "settings_motion_mode" + }, + { + "label": "settings_night_sight", + "content": "settings_night_sight" + }, + { + "label": "settings_overscan", + "content": "settings_overscan" + }, + { + "label": "settings_panorama", + "content": "settings_panorama" + }, + { + "label": "settings_phone", + "content": "settings_phone" + }, + { + "label": "settings_photo_camera", + "content": "settings_photo_camera" + }, + { + "label": "settings_power", + "content": "settings_power" + }, + { + "label": "settings_remote", + "content": "settings_remote" + }, + { + "label": "settings_slow_motion", + "content": "settings_slow_motion" + }, + { + "label": "settings_system_daydream", + "content": "settings_system_daydream" + }, + { + "label": "settings_timelapse", + "content": "settings_timelapse" + }, + { + "label": "settings_video_camera", + "content": "settings_video_camera" + }, + { + "label": "settings_voice", + "content": "settings_voice" + }, + { + "label": "settop_component", + "content": "settop_component" + }, + { + "label": "severe_cold", + "content": "severe_cold" + }, + { + "label": "shadow", + "content": "shadow" + }, + { + "label": "shadow_add", + "content": "shadow_add" + }, + { + "label": "shadow_minus", + "content": "shadow_minus" + }, + { + "label": "shape_line", + "content": "shape_line" + }, + { + "label": "shapes", + "content": "shapes" + }, + { + "label": "share", + "content": "share" + }, + { + "label": "share_location", + "content": "share_location" + }, + { + "label": "share_off", + "content": "share_off" + }, + { + "label": "share_reviews", + "content": "share_reviews" + }, + { + "label": "share_windows", + "content": "share_windows" + }, + { + "label": "sheets_rtl", + "content": "sheets_rtl" + }, + { + "label": "shelf_auto_hide", + "content": "shelf_auto_hide" + }, + { + "label": "shelf_position", + "content": "shelf_position" + }, + { + "label": "shelves", + "content": "shelves" + }, + { + "label": "shield", + "content": "shield" + }, + { + "label": "shield_lock", + "content": "shield_lock" + }, + { + "label": "shield_locked", + "content": "shield_locked" + }, + { + "label": "shield_moon", + "content": "shield_moon" + }, + { + "label": "shield_person", + "content": "shield_person" + }, + { + "label": "shield_question", + "content": "shield_question" + }, + { + "label": "shield_with_heart", + "content": "shield_with_heart" + }, + { + "label": "shield_with_house", + "content": "shield_with_house" + }, + { + "label": "shift", + "content": "shift" + }, + { + "label": "shift_lock", + "content": "shift_lock" + }, + { + "label": "shift_lock_off", + "content": "shift_lock_off" + }, + { + "label": "shop", + "content": "shop" + }, + { + "label": "shop_two", + "content": "shop_two" + }, + { + "label": "shopping_bag", + "content": "shopping_bag" + }, + { + "label": "shopping_basket", + "content": "shopping_basket" + }, + { + "label": "shopping_cart", + "content": "shopping_cart" + }, + { + "label": "shopping_cart_checkout", + "content": "shopping_cart_checkout" + }, + { + "label": "shopping_cart_off", + "content": "shopping_cart_off" + }, + { + "label": "shoppingmode", + "content": "shoppingmode" + }, + { + "label": "short_stay", + "content": "short_stay" + }, + { + "label": "short_text", + "content": "short_text" + }, + { + "label": "show_chart", + "content": "show_chart" + }, + { + "label": "shower", + "content": "shower" + }, + { + "label": "shuffle", + "content": "shuffle" + }, + { + "label": "shuffle_on", + "content": "shuffle_on" + }, + { + "label": "shutter_speed", + "content": "shutter_speed" + }, + { + "label": "shutter_speed_add", + "content": "shutter_speed_add" + }, + { + "label": "shutter_speed_minus", + "content": "shutter_speed_minus" + }, + { + "label": "sick", + "content": "sick" + }, + { + "label": "side_navigation", + "content": "side_navigation" + }, + { + "label": "sign_language", + "content": "sign_language" + }, + { + "label": "signal_cellular_0_bar", + "content": "signal_cellular_0_bar" + }, + { + "label": "signal_cellular_1_bar", + "content": "signal_cellular_1_bar" + }, + { + "label": "signal_cellular_2_bar", + "content": "signal_cellular_2_bar" + }, + { + "label": "signal_cellular_3_bar", + "content": "signal_cellular_3_bar" + }, + { + "label": "signal_cellular_4_bar", + "content": "signal_cellular_4_bar" + }, + { + "label": "signal_cellular_add", + "content": "signal_cellular_add" + }, + { + "label": "signal_cellular_alt", + "content": "signal_cellular_alt" + }, + { + "label": "signal_cellular_alt_1_bar", + "content": "signal_cellular_alt_1_bar" + }, + { + "label": "signal_cellular_alt_2_bar", + "content": "signal_cellular_alt_2_bar" + }, + { + "label": "signal_cellular_connected_no_internet_0_bar", + "content": "signal_cellular_connected_no_internet_0_bar" + }, + { + "label": "signal_cellular_connected_no_internet_4_bar", + "content": "signal_cellular_connected_no_internet_4_bar" + }, + { + "label": "signal_cellular_nodata", + "content": "signal_cellular_nodata" + }, + { + "label": "signal_cellular_null", + "content": "signal_cellular_null" + }, + { + "label": "signal_cellular_off", + "content": "signal_cellular_off" + }, + { + "label": "signal_cellular_pause", + "content": "signal_cellular_pause" + }, + { + "label": "signal_disconnected", + "content": "signal_disconnected" + }, + { + "label": "signal_wifi_0_bar", + "content": "signal_wifi_0_bar" + }, + { + "label": "signal_wifi_4_bar", + "content": "signal_wifi_4_bar" + }, + { + "label": "signal_wifi_bad", + "content": "signal_wifi_bad" + }, + { + "label": "signal_wifi_off", + "content": "signal_wifi_off" + }, + { + "label": "signal_wifi_statusbar_not_connected", + "content": "signal_wifi_statusbar_not_connected" + }, + { + "label": "signal_wifi_statusbar_null", + "content": "signal_wifi_statusbar_null" + }, + { + "label": "signature", + "content": "signature" + }, + { + "label": "signpost", + "content": "signpost" + }, + { + "label": "sim_card", + "content": "sim_card" + }, + { + "label": "sim_card_download", + "content": "sim_card_download" + }, + { + "label": "single_bed", + "content": "single_bed" + }, + { + "label": "sip", + "content": "sip" + }, + { + "label": "skateboarding", + "content": "skateboarding" + }, + { + "label": "skeleton", + "content": "skeleton" + }, + { + "label": "skillet", + "content": "skillet" + }, + { + "label": "skillet_cooktop", + "content": "skillet_cooktop" + }, + { + "label": "skip_next", + "content": "skip_next" + }, + { + "label": "skip_previous", + "content": "skip_previous" + }, + { + "label": "skull", + "content": "skull" + }, + { + "label": "slab_serif", + "content": "slab_serif" + }, + { + "label": "sledding", + "content": "sledding" + }, + { + "label": "sleep_score", + "content": "sleep_score" + }, + { + "label": "slide_library", + "content": "slide_library" + }, + { + "label": "sliders", + "content": "sliders" + }, + { + "label": "slideshow", + "content": "slideshow" + }, + { + "label": "slow_motion_video", + "content": "slow_motion_video" + }, + { + "label": "smart_card_reader", + "content": "smart_card_reader" + }, + { + "label": "smart_card_reader_off", + "content": "smart_card_reader_off" + }, + { + "label": "smart_display", + "content": "smart_display" + }, + { + "label": "smart_outlet", + "content": "smart_outlet" + }, + { + "label": "smart_screen", + "content": "smart_screen" + }, + { + "label": "smart_toy", + "content": "smart_toy" + }, + { + "label": "smartphone", + "content": "smartphone" + }, + { + "label": "smb_share", + "content": "smb_share" + }, + { + "label": "smoke_free", + "content": "smoke_free" + }, + { + "label": "smoking_rooms", + "content": "smoking_rooms" + }, + { + "label": "sms", + "content": "sms" + }, + { + "label": "snippet_folder", + "content": "snippet_folder" + }, + { + "label": "snooze", + "content": "snooze" + }, + { + "label": "snowboarding", + "content": "snowboarding" + }, + { + "label": "snowing", + "content": "snowing" + }, + { + "label": "snowing_heavy", + "content": "snowing_heavy" + }, + { + "label": "snowmobile", + "content": "snowmobile" + }, + { + "label": "snowshoeing", + "content": "snowshoeing" + }, + { + "label": "soap", + "content": "soap" + }, + { + "label": "social_distance", + "content": "social_distance" + }, + { + "label": "social_leaderboard", + "content": "social_leaderboard" + }, + { + "label": "solar_power", + "content": "solar_power" + }, + { + "label": "sort", + "content": "sort" + }, + { + "label": "sort_by_alpha", + "content": "sort_by_alpha" + }, + { + "label": "sos", + "content": "sos" + }, + { + "label": "sound_detection_dog_barking", + "content": "sound_detection_dog_barking" + }, + { + "label": "sound_detection_glass_break", + "content": "sound_detection_glass_break" + }, + { + "label": "sound_detection_loud_sound", + "content": "sound_detection_loud_sound" + }, + { + "label": "sound_sampler", + "content": "sound_sampler" + }, + { + "label": "soup_kitchen", + "content": "soup_kitchen" + }, + { + "label": "source_environment", + "content": "source_environment" + }, + { + "label": "source_notes", + "content": "source_notes" + }, + { + "label": "south", + "content": "south" + }, + { + "label": "south_america", + "content": "south_america" + }, + { + "label": "south_east", + "content": "south_east" + }, + { + "label": "south_west", + "content": "south_west" + }, + { + "label": "spa", + "content": "spa" + }, + { + "label": "space_bar", + "content": "space_bar" + }, + { + "label": "space_dashboard", + "content": "space_dashboard" + }, + { + "label": "spatial_audio", + "content": "spatial_audio" + }, + { + "label": "spatial_audio_off", + "content": "spatial_audio_off" + }, + { + "label": "spatial_speaker", + "content": "spatial_speaker" + }, + { + "label": "spatial_tracking", + "content": "spatial_tracking" + }, + { + "label": "speaker", + "content": "speaker" + }, + { + "label": "speaker_group", + "content": "speaker_group" + }, + { + "label": "speaker_notes", + "content": "speaker_notes" + }, + { + "label": "speaker_notes_off", + "content": "speaker_notes_off" + }, + { + "label": "speaker_phone", + "content": "speaker_phone" + }, + { + "label": "special_character", + "content": "special_character" + }, + { + "label": "specific_gravity", + "content": "specific_gravity" + }, + { + "label": "speech_to_text", + "content": "speech_to_text" + }, + { + "label": "speed", + "content": "speed" + }, + { + "label": "speed_0_25", + "content": "speed_0_25" + }, + { + "label": "speed_0_2x", + "content": "speed_0_2x" + }, + { + "label": "speed_0_5", + "content": "speed_0_5" + }, + { + "label": "speed_0_5x", + "content": "speed_0_5x" + }, + { + "label": "speed_0_75", + "content": "speed_0_75" + }, + { + "label": "speed_0_7x", + "content": "speed_0_7x" + }, + { + "label": "speed_1_2", + "content": "speed_1_2" + }, + { + "label": "speed_1_25", + "content": "speed_1_25" + }, + { + "label": "speed_1_2x", + "content": "speed_1_2x" + }, + { + "label": "speed_1_5", + "content": "speed_1_5" + }, + { + "label": "speed_1_5x", + "content": "speed_1_5x" + }, + { + "label": "speed_1_75", + "content": "speed_1_75" + }, + { + "label": "speed_1_7x", + "content": "speed_1_7x" + }, + { + "label": "speed_2x", + "content": "speed_2x" + }, + { + "label": "speed_camera", + "content": "speed_camera" + }, + { + "label": "spellcheck", + "content": "spellcheck" + }, + { + "label": "splitscreen", + "content": "splitscreen" + }, + { + "label": "splitscreen_add", + "content": "splitscreen_add" + }, + { + "label": "splitscreen_bottom", + "content": "splitscreen_bottom" + }, + { + "label": "splitscreen_landscape", + "content": "splitscreen_landscape" + }, + { + "label": "splitscreen_left", + "content": "splitscreen_left" + }, + { + "label": "splitscreen_portrait", + "content": "splitscreen_portrait" + }, + { + "label": "splitscreen_right", + "content": "splitscreen_right" + }, + { + "label": "splitscreen_top", + "content": "splitscreen_top" + }, + { + "label": "splitscreen_vertical_add", + "content": "splitscreen_vertical_add" + }, + { + "label": "spo2", + "content": "spo2" + }, + { + "label": "spoke", + "content": "spoke" + }, + { + "label": "sports", + "content": "sports" + }, + { + "label": "sports_and_outdoors", + "content": "sports_and_outdoors" + }, + { + "label": "sports_bar", + "content": "sports_bar" + }, + { + "label": "sports_baseball", + "content": "sports_baseball" + }, + { + "label": "sports_basketball", + "content": "sports_basketball" + }, + { + "label": "sports_cricket", + "content": "sports_cricket" + }, + { + "label": "sports_esports", + "content": "sports_esports" + }, + { + "label": "sports_football", + "content": "sports_football" + }, + { + "label": "sports_golf", + "content": "sports_golf" + }, + { + "label": "sports_gymnastics", + "content": "sports_gymnastics" + }, + { + "label": "sports_handball", + "content": "sports_handball" + }, + { + "label": "sports_hockey", + "content": "sports_hockey" + }, + { + "label": "sports_kabaddi", + "content": "sports_kabaddi" + }, + { + "label": "sports_martial_arts", + "content": "sports_martial_arts" + }, + { + "label": "sports_mma", + "content": "sports_mma" + }, + { + "label": "sports_motorsports", + "content": "sports_motorsports" + }, + { + "label": "sports_rugby", + "content": "sports_rugby" + }, + { + "label": "sports_score", + "content": "sports_score" + }, + { + "label": "sports_soccer", + "content": "sports_soccer" + }, + { + "label": "sports_tennis", + "content": "sports_tennis" + }, + { + "label": "sports_volleyball", + "content": "sports_volleyball" + }, + { + "label": "sprinkler", + "content": "sprinkler" + }, + { + "label": "sprint", + "content": "sprint" + }, + { + "label": "square", + "content": "square" + }, + { + "label": "square_foot", + "content": "square_foot" + }, + { + "label": "ssid_chart", + "content": "ssid_chart" + }, + { + "label": "stack", + "content": "stack" + }, + { + "label": "stack_off", + "content": "stack_off" + }, + { + "label": "stack_star", + "content": "stack_star" + }, + { + "label": "stacked_bar_chart", + "content": "stacked_bar_chart" + }, + { + "label": "stacked_email", + "content": "stacked_email" + }, + { + "label": "stacked_inbox", + "content": "stacked_inbox" + }, + { + "label": "stacked_line_chart", + "content": "stacked_line_chart" + }, + { + "label": "stacks", + "content": "stacks" + }, + { + "label": "stadia_controller", + "content": "stadia_controller" + }, + { + "label": "stadium", + "content": "stadium" + }, + { + "label": "stairs", + "content": "stairs" + }, + { + "label": "stairs_2", + "content": "stairs_2" + }, + { + "label": "star", + "content": "star" + }, + { + "label": "star_half", + "content": "star_half" + }, + { + "label": "star_rate", + "content": "star_rate" + }, + { + "label": "star_rate_half", + "content": "star_rate_half" + }, + { + "label": "stars", + "content": "stars" + }, + { + "label": "start", + "content": "start" + }, + { + "label": "stat_0", + "content": "stat_0" + }, + { + "label": "stat_1", + "content": "stat_1" + }, + { + "label": "stat_2", + "content": "stat_2" + }, + { + "label": "stat_3", + "content": "stat_3" + }, + { + "label": "stat_minus_1", + "content": "stat_minus_1" + }, + { + "label": "stat_minus_2", + "content": "stat_minus_2" + }, + { + "label": "stat_minus_3", + "content": "stat_minus_3" + }, + { + "label": "stay_current_landscape", + "content": "stay_current_landscape" + }, + { + "label": "stay_current_portrait", + "content": "stay_current_portrait" + }, + { + "label": "stay_primary_landscape", + "content": "stay_primary_landscape" + }, + { + "label": "stay_primary_portrait", + "content": "stay_primary_portrait" + }, + { + "label": "step", + "content": "step" + }, + { + "label": "step_into", + "content": "step_into" + }, + { + "label": "step_out", + "content": "step_out" + }, + { + "label": "step_over", + "content": "step_over" + }, + { + "label": "steppers", + "content": "steppers" + }, + { + "label": "steps", + "content": "steps" + }, + { + "label": "stethoscope", + "content": "stethoscope" + }, + { + "label": "stethoscope_arrow", + "content": "stethoscope_arrow" + }, + { + "label": "stethoscope_check", + "content": "stethoscope_check" + }, + { + "label": "sticky_note", + "content": "sticky_note" + }, + { + "label": "sticky_note_2", + "content": "sticky_note_2" + }, + { + "label": "stock_media", + "content": "stock_media" + }, + { + "label": "stockpot", + "content": "stockpot" + }, + { + "label": "stop", + "content": "stop" + }, + { + "label": "stop_circle", + "content": "stop_circle" + }, + { + "label": "stop_screen_share", + "content": "stop_screen_share" + }, + { + "label": "storage", + "content": "storage" + }, + { + "label": "store", + "content": "store" + }, + { + "label": "storefront", + "content": "storefront" + }, + { + "label": "storm", + "content": "storm" + }, + { + "label": "straight", + "content": "straight" + }, + { + "label": "straighten", + "content": "straighten" + }, + { + "label": "strategy", + "content": "strategy" + }, + { + "label": "stream", + "content": "stream" + }, + { + "label": "stream_apps", + "content": "stream_apps" + }, + { + "label": "streetview", + "content": "streetview" + }, + { + "label": "stress_management", + "content": "stress_management" + }, + { + "label": "strikethrough_s", + "content": "strikethrough_s" + }, + { + "label": "stroke_full", + "content": "stroke_full" + }, + { + "label": "stroke_partial", + "content": "stroke_partial" + }, + { + "label": "stroller", + "content": "stroller" + }, + { + "label": "style", + "content": "style" + }, + { + "label": "styler", + "content": "styler" + }, + { + "label": "stylus", + "content": "stylus" + }, + { + "label": "stylus_laser_pointer", + "content": "stylus_laser_pointer" + }, + { + "label": "stylus_note", + "content": "stylus_note" + }, + { + "label": "subdirectory_arrow_left", + "content": "subdirectory_arrow_left" + }, + { + "label": "subdirectory_arrow_right", + "content": "subdirectory_arrow_right" + }, + { + "label": "subheader", + "content": "subheader" + }, + { + "label": "subject", + "content": "subject" + }, + { + "label": "subscript", + "content": "subscript" + }, + { + "label": "subscriptions", + "content": "subscriptions" + }, + { + "label": "subtitles", + "content": "subtitles" + }, + { + "label": "subtitles_off", + "content": "subtitles_off" + }, + { + "label": "subway", + "content": "subway" + }, + { + "label": "summarize", + "content": "summarize" + }, + { + "label": "sunny", + "content": "sunny" + }, + { + "label": "sunny_snowing", + "content": "sunny_snowing" + }, + { + "label": "superscript", + "content": "superscript" + }, + { + "label": "supervised_user_circle", + "content": "supervised_user_circle" + }, + { + "label": "supervised_user_circle_off", + "content": "supervised_user_circle_off" + }, + { + "label": "supervisor_account", + "content": "supervisor_account" + }, + { + "label": "support", + "content": "support" + }, + { + "label": "support_agent", + "content": "support_agent" + }, + { + "label": "surfing", + "content": "surfing" + }, + { + "label": "surgical", + "content": "surgical" + }, + { + "label": "surround_sound", + "content": "surround_sound" + }, + { + "label": "swap_calls", + "content": "swap_calls" + }, + { + "label": "swap_driving_apps", + "content": "swap_driving_apps" + }, + { + "label": "swap_driving_apps_wheel", + "content": "swap_driving_apps_wheel" + }, + { + "label": "swap_horiz", + "content": "swap_horiz" + }, + { + "label": "swap_horizontal_circle", + "content": "swap_horizontal_circle" + }, + { + "label": "swap_vert", + "content": "swap_vert" + }, + { + "label": "swap_vertical_circle", + "content": "swap_vertical_circle" + }, + { + "label": "sweep", + "content": "sweep" + }, + { + "label": "swipe", + "content": "swipe" + }, + { + "label": "swipe_down", + "content": "swipe_down" + }, + { + "label": "swipe_down_alt", + "content": "swipe_down_alt" + }, + { + "label": "swipe_left", + "content": "swipe_left" + }, + { + "label": "swipe_left_alt", + "content": "swipe_left_alt" + }, + { + "label": "swipe_right", + "content": "swipe_right" + }, + { + "label": "swipe_right_alt", + "content": "swipe_right_alt" + }, + { + "label": "swipe_up", + "content": "swipe_up" + }, + { + "label": "swipe_up_alt", + "content": "swipe_up_alt" + }, + { + "label": "swipe_vertical", + "content": "swipe_vertical" + }, + { + "label": "switch", + "content": "switch" + }, + { + "label": "switch_access", + "content": "switch_access" + }, + { + "label": "switch_access_2", + "content": "switch_access_2" + }, + { + "label": "switch_access_shortcut", + "content": "switch_access_shortcut" + }, + { + "label": "switch_access_shortcut_add", + "content": "switch_access_shortcut_add" + }, + { + "label": "switch_account", + "content": "switch_account" + }, + { + "label": "switch_camera", + "content": "switch_camera" + }, + { + "label": "switch_left", + "content": "switch_left" + }, + { + "label": "switch_right", + "content": "switch_right" + }, + { + "label": "switch_video", + "content": "switch_video" + }, + { + "label": "switches", + "content": "switches" + }, + { + "label": "sword_rose", + "content": "sword_rose" + }, + { + "label": "swords", + "content": "swords" + }, + { + "label": "symptoms", + "content": "symptoms" + }, + { + "label": "synagogue", + "content": "synagogue" + }, + { + "label": "sync", + "content": "sync" + }, + { + "label": "sync_alt", + "content": "sync_alt" + }, + { + "label": "sync_disabled", + "content": "sync_disabled" + }, + { + "label": "sync_lock", + "content": "sync_lock" + }, + { + "label": "sync_problem", + "content": "sync_problem" + }, + { + "label": "sync_saved_locally", + "content": "sync_saved_locally" + }, + { + "label": "syringe", + "content": "syringe" + }, + { + "label": "system_update", + "content": "system_update" + }, + { + "label": "system_update_alt", + "content": "system_update_alt" + }, + { + "label": "tab", + "content": "tab" + }, + { + "label": "tab_close", + "content": "tab_close" + }, + { + "label": "tab_close_right", + "content": "tab_close_right" + }, + { + "label": "tab_duplicate", + "content": "tab_duplicate" + }, + { + "label": "tab_group", + "content": "tab_group" + }, + { + "label": "tab_move", + "content": "tab_move" + }, + { + "label": "tab_new_right", + "content": "tab_new_right" + }, + { + "label": "tab_recent", + "content": "tab_recent" + }, + { + "label": "tab_unselected", + "content": "tab_unselected" + }, + { + "label": "table", + "content": "table" + }, + { + "label": "table_bar", + "content": "table_bar" + }, + { + "label": "table_chart", + "content": "table_chart" + }, + { + "label": "table_chart_view", + "content": "table_chart_view" + }, + { + "label": "table_eye", + "content": "table_eye" + }, + { + "label": "table_lamp", + "content": "table_lamp" + }, + { + "label": "table_restaurant", + "content": "table_restaurant" + }, + { + "label": "table_rows", + "content": "table_rows" + }, + { + "label": "table_rows_narrow", + "content": "table_rows_narrow" + }, + { + "label": "table_view", + "content": "table_view" + }, + { + "label": "tablet", + "content": "tablet" + }, + { + "label": "tablet_android", + "content": "tablet_android" + }, + { + "label": "tablet_mac", + "content": "tablet_mac" + }, + { + "label": "tabs", + "content": "tabs" + }, + { + "label": "tactic", + "content": "tactic" + }, + { + "label": "tag", + "content": "tag" + }, + { + "label": "takeout_dining", + "content": "takeout_dining" + }, + { + "label": "tamper_detection_off", + "content": "tamper_detection_off" + }, + { + "label": "tamper_detection_on", + "content": "tamper_detection_on" + }, + { + "label": "tap_and_play", + "content": "tap_and_play" + }, + { + "label": "tapas", + "content": "tapas" + }, + { + "label": "target", + "content": "target" + }, + { + "label": "task", + "content": "task" + }, + { + "label": "task_alt", + "content": "task_alt" + }, + { + "label": "taunt", + "content": "taunt" + }, + { + "label": "taxi_alert", + "content": "taxi_alert" + }, + { + "label": "team_dashboard", + "content": "team_dashboard" + }, + { + "label": "temp_preferences_eco", + "content": "temp_preferences_eco" + }, + { + "label": "temple_buddhist", + "content": "temple_buddhist" + }, + { + "label": "temple_hindu", + "content": "temple_hindu" + }, + { + "label": "tenancy", + "content": "tenancy" + }, + { + "label": "terminal", + "content": "terminal" + }, + { + "label": "text_ad", + "content": "text_ad" + }, + { + "label": "text_decrease", + "content": "text_decrease" + }, + { + "label": "text_fields", + "content": "text_fields" + }, + { + "label": "text_fields_alt", + "content": "text_fields_alt" + }, + { + "label": "text_format", + "content": "text_format" + }, + { + "label": "text_increase", + "content": "text_increase" + }, + { + "label": "text_rotate_up", + "content": "text_rotate_up" + }, + { + "label": "text_rotate_vertical", + "content": "text_rotate_vertical" + }, + { + "label": "text_rotation_angledown", + "content": "text_rotation_angledown" + }, + { + "label": "text_rotation_angleup", + "content": "text_rotation_angleup" + }, + { + "label": "text_rotation_down", + "content": "text_rotation_down" + }, + { + "label": "text_rotation_none", + "content": "text_rotation_none" + }, + { + "label": "text_select_end", + "content": "text_select_end" + }, + { + "label": "text_select_jump_to_beginning", + "content": "text_select_jump_to_beginning" + }, + { + "label": "text_select_jump_to_end", + "content": "text_select_jump_to_end" + }, + { + "label": "text_select_move_back_character", + "content": "text_select_move_back_character" + }, + { + "label": "text_select_move_back_word", + "content": "text_select_move_back_word" + }, + { + "label": "text_select_move_down", + "content": "text_select_move_down" + }, + { + "label": "text_select_move_forward_character", + "content": "text_select_move_forward_character" + }, + { + "label": "text_select_move_forward_word", + "content": "text_select_move_forward_word" + }, + { + "label": "text_select_move_up", + "content": "text_select_move_up" + }, + { + "label": "text_select_start", + "content": "text_select_start" + }, + { + "label": "text_snippet", + "content": "text_snippet" + }, + { + "label": "text_to_speech", + "content": "text_to_speech" + }, + { + "label": "text_up", + "content": "text_up" + }, + { + "label": "texture", + "content": "texture" + }, + { + "label": "texture_add", + "content": "texture_add" + }, + { + "label": "texture_minus", + "content": "texture_minus" + }, + { + "label": "theater_comedy", + "content": "theater_comedy" + }, + { + "label": "theaters", + "content": "theaters" + }, + { + "label": "thermometer", + "content": "thermometer" + }, + { + "label": "thermometer_add", + "content": "thermometer_add" + }, + { + "label": "thermometer_gain", + "content": "thermometer_gain" + }, + { + "label": "thermometer_loss", + "content": "thermometer_loss" + }, + { + "label": "thermometer_minus", + "content": "thermometer_minus" + }, + { + "label": "thermostat", + "content": "thermostat" + }, + { + "label": "thermostat_auto", + "content": "thermostat_auto" + }, + { + "label": "thermostat_carbon", + "content": "thermostat_carbon" + }, + { + "label": "things_to_do", + "content": "things_to_do" + }, + { + "label": "thread_unread", + "content": "thread_unread" + }, + { + "label": "thumb_down", + "content": "thumb_down" + }, + { + "label": "thumb_up", + "content": "thumb_up" + }, + { + "label": "thumbnail_bar", + "content": "thumbnail_bar" + }, + { + "label": "thumbs_up_down", + "content": "thumbs_up_down" + }, + { + "label": "thunderstorm", + "content": "thunderstorm" + }, + { + "label": "tibia", + "content": "tibia" + }, + { + "label": "tibia_alt", + "content": "tibia_alt" + }, + { + "label": "time_auto", + "content": "time_auto" + }, + { + "label": "timelapse", + "content": "timelapse" + }, + { + "label": "timeline", + "content": "timeline" + }, + { + "label": "timer", + "content": "timer" + }, + { + "label": "timer_10", + "content": "timer_10" + }, + { + "label": "timer_10_alt_1", + "content": "timer_10_alt_1" + }, + { + "label": "timer_10_select", + "content": "timer_10_select" + }, + { + "label": "timer_3", + "content": "timer_3" + }, + { + "label": "timer_3_alt_1", + "content": "timer_3_alt_1" + }, + { + "label": "timer_3_select", + "content": "timer_3_select" + }, + { + "label": "timer_5", + "content": "timer_5" + }, + { + "label": "timer_5_shutter", + "content": "timer_5_shutter" + }, + { + "label": "timer_off", + "content": "timer_off" + }, + { + "label": "timer_pause", + "content": "timer_pause" + }, + { + "label": "timer_play", + "content": "timer_play" + }, + { + "label": "tire_repair", + "content": "tire_repair" + }, + { + "label": "title", + "content": "title" + }, + { + "label": "titlecase", + "content": "titlecase" + }, + { + "label": "toast", + "content": "toast" + }, + { + "label": "toc", + "content": "toc" + }, + { + "label": "today", + "content": "today" + }, + { + "label": "toggle_off", + "content": "toggle_off" + }, + { + "label": "toggle_on", + "content": "toggle_on" + }, + { + "label": "token", + "content": "token" + }, + { + "label": "toll", + "content": "toll" + }, + { + "label": "tonality", + "content": "tonality" + }, + { + "label": "toolbar", + "content": "toolbar" + }, + { + "label": "tools_flat_head", + "content": "tools_flat_head" + }, + { + "label": "tools_installation_kit", + "content": "tools_installation_kit" + }, + { + "label": "tools_ladder", + "content": "tools_ladder" + }, + { + "label": "tools_level", + "content": "tools_level" + }, + { + "label": "tools_phillips", + "content": "tools_phillips" + }, + { + "label": "tools_pliers_wire_stripper", + "content": "tools_pliers_wire_stripper" + }, + { + "label": "tools_power_drill", + "content": "tools_power_drill" + }, + { + "label": "tooltip", + "content": "tooltip" + }, + { + "label": "top_panel_close", + "content": "top_panel_close" + }, + { + "label": "top_panel_open", + "content": "top_panel_open" + }, + { + "label": "topic", + "content": "topic" + }, + { + "label": "tornado", + "content": "tornado" + }, + { + "label": "total_dissolved_solids", + "content": "total_dissolved_solids" + }, + { + "label": "touch_app", + "content": "touch_app" + }, + { + "label": "touchpad_mouse", + "content": "touchpad_mouse" + }, + { + "label": "touchpad_mouse_off", + "content": "touchpad_mouse_off" + }, + { + "label": "tour", + "content": "tour" + }, + { + "label": "toys", + "content": "toys" + }, + { + "label": "toys_and_games", + "content": "toys_and_games" + }, + { + "label": "toys_fan", + "content": "toys_fan" + }, + { + "label": "track_changes", + "content": "track_changes" + }, + { + "label": "trackpad_input", + "content": "trackpad_input" + }, + { + "label": "traffic", + "content": "traffic" + }, + { + "label": "traffic_jam", + "content": "traffic_jam" + }, + { + "label": "trail_length", + "content": "trail_length" + }, + { + "label": "trail_length_medium", + "content": "trail_length_medium" + }, + { + "label": "trail_length_short", + "content": "trail_length_short" + }, + { + "label": "train", + "content": "train" + }, + { + "label": "tram", + "content": "tram" + }, + { + "label": "transcribe", + "content": "transcribe" + }, + { + "label": "transfer_within_a_station", + "content": "transfer_within_a_station" + }, + { + "label": "transform", + "content": "transform" + }, + { + "label": "transgender", + "content": "transgender" + }, + { + "label": "transit_enterexit", + "content": "transit_enterexit" + }, + { + "label": "transition_chop", + "content": "transition_chop" + }, + { + "label": "transition_dissolve", + "content": "transition_dissolve" + }, + { + "label": "transition_fade", + "content": "transition_fade" + }, + { + "label": "transition_push", + "content": "transition_push" + }, + { + "label": "transition_slide", + "content": "transition_slide" + }, + { + "label": "translate", + "content": "translate" + }, + { + "label": "transportation", + "content": "transportation" + }, + { + "label": "travel", + "content": "travel" + }, + { + "label": "travel_explore", + "content": "travel_explore" + }, + { + "label": "travel_luggage_and_bags", + "content": "travel_luggage_and_bags" + }, + { + "label": "trending_down", + "content": "trending_down" + }, + { + "label": "trending_flat", + "content": "trending_flat" + }, + { + "label": "trending_up", + "content": "trending_up" + }, + { + "label": "trip", + "content": "trip" + }, + { + "label": "trip_origin", + "content": "trip_origin" + }, + { + "label": "trolley", + "content": "trolley" + }, + { + "label": "trolley_cable_car", + "content": "trolley_cable_car" + }, + { + "label": "trophy", + "content": "trophy" + }, + { + "label": "troubleshoot", + "content": "troubleshoot" + }, + { + "label": "tsunami", + "content": "tsunami" + }, + { + "label": "tsv", + "content": "tsv" + }, + { + "label": "tty", + "content": "tty" + }, + { + "label": "tune", + "content": "tune" + }, + { + "label": "turn_left", + "content": "turn_left" + }, + { + "label": "turn_right", + "content": "turn_right" + }, + { + "label": "turn_sharp_left", + "content": "turn_sharp_left" + }, + { + "label": "turn_sharp_right", + "content": "turn_sharp_right" + }, + { + "label": "turn_slight_left", + "content": "turn_slight_left" + }, + { + "label": "turn_slight_right", + "content": "turn_slight_right" + }, + { + "label": "tv", + "content": "tv" + }, + { + "label": "tv_gen", + "content": "tv_gen" + }, + { + "label": "tv_guide", + "content": "tv_guide" + }, + { + "label": "tv_off", + "content": "tv_off" + }, + { + "label": "tv_options_edit_channels", + "content": "tv_options_edit_channels" + }, + { + "label": "tv_options_input_settings", + "content": "tv_options_input_settings" + }, + { + "label": "tv_remote", + "content": "tv_remote" + }, + { + "label": "tv_signin", + "content": "tv_signin" + }, + { + "label": "tv_with_assistant", + "content": "tv_with_assistant" + }, + { + "label": "two_pager", + "content": "two_pager" + }, + { + "label": "two_wheeler", + "content": "two_wheeler" + }, + { + "label": "type_specimen", + "content": "type_specimen" + }, + { + "label": "u_turn_left", + "content": "u_turn_left" + }, + { + "label": "u_turn_right", + "content": "u_turn_right" + }, + { + "label": "ulna_radius", + "content": "ulna_radius" + }, + { + "label": "ulna_radius_alt", + "content": "ulna_radius_alt" + }, + { + "label": "umbrella", + "content": "umbrella" + }, + { + "label": "unarchive", + "content": "unarchive" + }, + { + "label": "undo", + "content": "undo" + }, + { + "label": "unfold_less", + "content": "unfold_less" + }, + { + "label": "unfold_less_double", + "content": "unfold_less_double" + }, + { + "label": "unfold_more", + "content": "unfold_more" + }, + { + "label": "unfold_more_double", + "content": "unfold_more_double" + }, + { + "label": "ungroup", + "content": "ungroup" + }, + { + "label": "universal_currency", + "content": "universal_currency" + }, + { + "label": "universal_currency_alt", + "content": "universal_currency_alt" + }, + { + "label": "universal_local", + "content": "universal_local" + }, + { + "label": "unknown_2", + "content": "unknown_2" + }, + { + "label": "unknown_5", + "content": "unknown_5" + }, + { + "label": "unknown_7", + "content": "unknown_7" + }, + { + "label": "unknown_document", + "content": "unknown_document" + }, + { + "label": "unknown_med", + "content": "unknown_med" + }, + { + "label": "unlicense", + "content": "unlicense" + }, + { + "label": "unpaved_road", + "content": "unpaved_road" + }, + { + "label": "unpublished", + "content": "unpublished" + }, + { + "label": "unsubscribe", + "content": "unsubscribe" + }, + { + "label": "upcoming", + "content": "upcoming" + }, + { + "label": "update", + "content": "update" + }, + { + "label": "update_disabled", + "content": "update_disabled" + }, + { + "label": "upgrade", + "content": "upgrade" + }, + { + "label": "upload", + "content": "upload" + }, + { + "label": "upload_2", + "content": "upload_2" + }, + { + "label": "upload_file", + "content": "upload_file" + }, + { + "label": "uppercase", + "content": "uppercase" + }, + { + "label": "urology", + "content": "urology" + }, + { + "label": "usb", + "content": "usb" + }, + { + "label": "usb_off", + "content": "usb_off" + }, + { + "label": "user_attributes", + "content": "user_attributes" + }, + { + "label": "vaccines", + "content": "vaccines" + }, + { + "label": "vacuum", + "content": "vacuum" + }, + { + "label": "valve", + "content": "valve" + }, + { + "label": "vape_free", + "content": "vape_free" + }, + { + "label": "vaping_rooms", + "content": "vaping_rooms" + }, + { + "label": "variable_add", + "content": "variable_add" + }, + { + "label": "variable_insert", + "content": "variable_insert" + }, + { + "label": "variable_remove", + "content": "variable_remove" + }, + { + "label": "variables", + "content": "variables" + }, + { + "label": "ventilator", + "content": "ventilator" + }, + { + "label": "verified", + "content": "verified" + }, + { + "label": "verified_user", + "content": "verified_user" + }, + { + "label": "vertical_align_bottom", + "content": "vertical_align_bottom" + }, + { + "label": "vertical_align_center", + "content": "vertical_align_center" + }, + { + "label": "vertical_align_top", + "content": "vertical_align_top" + }, + { + "label": "vertical_distribute", + "content": "vertical_distribute" + }, + { + "label": "vertical_shades", + "content": "vertical_shades" + }, + { + "label": "vertical_shades_closed", + "content": "vertical_shades_closed" + }, + { + "label": "vertical_split", + "content": "vertical_split" + }, + { + "label": "vibration", + "content": "vibration" + }, + { + "label": "video_call", + "content": "video_call" + }, + { + "label": "video_camera_back", + "content": "video_camera_back" + }, + { + "label": "video_camera_front", + "content": "video_camera_front" + }, + { + "label": "video_camera_front_off", + "content": "video_camera_front_off" + }, + { + "label": "video_chat", + "content": "video_chat" + }, + { + "label": "video_file", + "content": "video_file" + }, + { + "label": "video_label", + "content": "video_label" + }, + { + "label": "video_library", + "content": "video_library" + }, + { + "label": "video_search", + "content": "video_search" + }, + { + "label": "video_settings", + "content": "video_settings" + }, + { + "label": "video_stable", + "content": "video_stable" + }, + { + "label": "videocam", + "content": "videocam" + }, + { + "label": "videocam_off", + "content": "videocam_off" + }, + { + "label": "videogame_asset", + "content": "videogame_asset" + }, + { + "label": "videogame_asset_off", + "content": "videogame_asset_off" + }, + { + "label": "view_agenda", + "content": "view_agenda" + }, + { + "label": "view_array", + "content": "view_array" + }, + { + "label": "view_carousel", + "content": "view_carousel" + }, + { + "label": "view_column", + "content": "view_column" + }, + { + "label": "view_column_2", + "content": "view_column_2" + }, + { + "label": "view_comfy", + "content": "view_comfy" + }, + { + "label": "view_comfy_alt", + "content": "view_comfy_alt" + }, + { + "label": "view_compact", + "content": "view_compact" + }, + { + "label": "view_compact_alt", + "content": "view_compact_alt" + }, + { + "label": "view_cozy", + "content": "view_cozy" + }, + { + "label": "view_day", + "content": "view_day" + }, + { + "label": "view_headline", + "content": "view_headline" + }, + { + "label": "view_in_ar", + "content": "view_in_ar" + }, + { + "label": "view_in_ar_off", + "content": "view_in_ar_off" + }, + { + "label": "view_kanban", + "content": "view_kanban" + }, + { + "label": "view_list", + "content": "view_list" + }, + { + "label": "view_module", + "content": "view_module" + }, + { + "label": "view_quilt", + "content": "view_quilt" + }, + { + "label": "view_real_size", + "content": "view_real_size" + }, + { + "label": "view_sidebar", + "content": "view_sidebar" + }, + { + "label": "view_stream", + "content": "view_stream" + }, + { + "label": "view_timeline", + "content": "view_timeline" + }, + { + "label": "view_week", + "content": "view_week" + }, + { + "label": "vignette", + "content": "vignette" + }, + { + "label": "villa", + "content": "villa" + }, + { + "label": "visibility", + "content": "visibility" + }, + { + "label": "visibility_lock", + "content": "visibility_lock" + }, + { + "label": "visibility_off", + "content": "visibility_off" + }, + { + "label": "vital_signs", + "content": "vital_signs" + }, + { + "label": "vo2_max", + "content": "vo2_max" + }, + { + "label": "voice_chat", + "content": "voice_chat" + }, + { + "label": "voice_over_off", + "content": "voice_over_off" + }, + { + "label": "voice_selection", + "content": "voice_selection" + }, + { + "label": "voicemail", + "content": "voicemail" + }, + { + "label": "volcano", + "content": "volcano" + }, + { + "label": "volume_down", + "content": "volume_down" + }, + { + "label": "volume_down_alt", + "content": "volume_down_alt" + }, + { + "label": "volume_mute", + "content": "volume_mute" + }, + { + "label": "volume_off", + "content": "volume_off" + }, + { + "label": "volume_up", + "content": "volume_up" + }, + { + "label": "volunteer_activism", + "content": "volunteer_activism" + }, + { + "label": "voting_chip", + "content": "voting_chip" + }, + { + "label": "vpn_key", + "content": "vpn_key" + }, + { + "label": "vpn_key_alert", + "content": "vpn_key_alert" + }, + { + "label": "vpn_key_off", + "content": "vpn_key_off" + }, + { + "label": "vpn_lock", + "content": "vpn_lock" + }, + { + "label": "vr180_create2d", + "content": "vr180_create2d" + }, + { + "label": "vr180_create2d_off", + "content": "vr180_create2d_off" + }, + { + "label": "vrpano", + "content": "vrpano" + }, + { + "label": "wall_art", + "content": "wall_art" + }, + { + "label": "wall_lamp", + "content": "wall_lamp" + }, + { + "label": "wallet", + "content": "wallet" + }, + { + "label": "wallpaper", + "content": "wallpaper" + }, + { + "label": "wallpaper_slideshow", + "content": "wallpaper_slideshow" + }, + { + "label": "ward", + "content": "ward" + }, + { + "label": "warehouse", + "content": "warehouse" + }, + { + "label": "warning", + "content": "warning" + }, + { + "label": "warning_off", + "content": "warning_off" + }, + { + "label": "wash", + "content": "wash" + }, + { + "label": "watch", + "content": "watch" + }, + { + "label": "watch_button_press", + "content": "watch_button_press" + }, + { + "label": "watch_check", + "content": "watch_check" + }, + { + "label": "watch_off", + "content": "watch_off" + }, + { + "label": "watch_screentime", + "content": "watch_screentime" + }, + { + "label": "watch_vibration", + "content": "watch_vibration" + }, + { + "label": "watch_wake", + "content": "watch_wake" + }, + { + "label": "water", + "content": "water" + }, + { + "label": "water_bottle", + "content": "water_bottle" + }, + { + "label": "water_bottle_large", + "content": "water_bottle_large" + }, + { + "label": "water_damage", + "content": "water_damage" + }, + { + "label": "water_do", + "content": "water_do" + }, + { + "label": "water_drop", + "content": "water_drop" + }, + { + "label": "water_ec", + "content": "water_ec" + }, + { + "label": "water_full", + "content": "water_full" + }, + { + "label": "water_heater", + "content": "water_heater" + }, + { + "label": "water_lock", + "content": "water_lock" + }, + { + "label": "water_loss", + "content": "water_loss" + }, + { + "label": "water_lux", + "content": "water_lux" + }, + { + "label": "water_medium", + "content": "water_medium" + }, + { + "label": "water_orp", + "content": "water_orp" + }, + { + "label": "water_ph", + "content": "water_ph" + }, + { + "label": "water_pump", + "content": "water_pump" + }, + { + "label": "water_voc", + "content": "water_voc" + }, + { + "label": "waterfall_chart", + "content": "waterfall_chart" + }, + { + "label": "waves", + "content": "waves" + }, + { + "label": "waving_hand", + "content": "waving_hand" + }, + { + "label": "wb_auto", + "content": "wb_auto" + }, + { + "label": "wb_incandescent", + "content": "wb_incandescent" + }, + { + "label": "wb_iridescent", + "content": "wb_iridescent" + }, + { + "label": "wb_shade", + "content": "wb_shade" + }, + { + "label": "wb_sunny", + "content": "wb_sunny" + }, + { + "label": "wb_twilight", + "content": "wb_twilight" + }, + { + "label": "wc", + "content": "wc" + }, + { + "label": "weather_hail", + "content": "weather_hail" + }, + { + "label": "weather_mix", + "content": "weather_mix" + }, + { + "label": "weather_snowy", + "content": "weather_snowy" + }, + { + "label": "web", + "content": "web" + }, + { + "label": "web_asset", + "content": "web_asset" + }, + { + "label": "web_asset_off", + "content": "web_asset_off" + }, + { + "label": "web_stories", + "content": "web_stories" + }, + { + "label": "web_traffic", + "content": "web_traffic" + }, + { + "label": "webhook", + "content": "webhook" + }, + { + "label": "weekend", + "content": "weekend" + }, + { + "label": "weight", + "content": "weight" + }, + { + "label": "west", + "content": "west" + }, + { + "label": "whatshot", + "content": "whatshot" + }, + { + "label": "wheelchair_pickup", + "content": "wheelchair_pickup" + }, + { + "label": "where_to_vote", + "content": "where_to_vote" + }, + { + "label": "widgets", + "content": "widgets" + }, + { + "label": "width", + "content": "width" + }, + { + "label": "width_full", + "content": "width_full" + }, + { + "label": "width_normal", + "content": "width_normal" + }, + { + "label": "width_wide", + "content": "width_wide" + }, + { + "label": "wifi", + "content": "wifi" + }, + { + "label": "wifi_1_bar", + "content": "wifi_1_bar" + }, + { + "label": "wifi_2_bar", + "content": "wifi_2_bar" + }, + { + "label": "wifi_add", + "content": "wifi_add" + }, + { + "label": "wifi_calling", + "content": "wifi_calling" + }, + { + "label": "wifi_calling_1", + "content": "wifi_calling_1" + }, + { + "label": "wifi_calling_2", + "content": "wifi_calling_2" + }, + { + "label": "wifi_calling_3", + "content": "wifi_calling_3" + }, + { + "label": "wifi_channel", + "content": "wifi_channel" + }, + { + "label": "wifi_find", + "content": "wifi_find" + }, + { + "label": "wifi_home", + "content": "wifi_home" + }, + { + "label": "wifi_lock", + "content": "wifi_lock" + }, + { + "label": "wifi_notification", + "content": "wifi_notification" + }, + { + "label": "wifi_off", + "content": "wifi_off" + }, + { + "label": "wifi_password", + "content": "wifi_password" + }, + { + "label": "wifi_protected_setup", + "content": "wifi_protected_setup" + }, + { + "label": "wifi_proxy", + "content": "wifi_proxy" + }, + { + "label": "wifi_tethering", + "content": "wifi_tethering" + }, + { + "label": "wifi_tethering_error", + "content": "wifi_tethering_error" + }, + { + "label": "wifi_tethering_off", + "content": "wifi_tethering_off" + }, + { + "label": "wind_power", + "content": "wind_power" + }, + { + "label": "window", + "content": "window" + }, + { + "label": "window_closed", + "content": "window_closed" + }, + { + "label": "window_open", + "content": "window_open" + }, + { + "label": "window_sensor", + "content": "window_sensor" + }, + { + "label": "wine_bar", + "content": "wine_bar" + }, + { + "label": "woman", + "content": "woman" + }, + { + "label": "woman_2", + "content": "woman_2" + }, + { + "label": "work", + "content": "work" + }, + { + "label": "work_alert", + "content": "work_alert" + }, + { + "label": "work_history", + "content": "work_history" + }, + { + "label": "work_update", + "content": "work_update" + }, + { + "label": "workspace_premium", + "content": "workspace_premium" + }, + { + "label": "workspaces", + "content": "workspaces" + }, + { + "label": "wounds_injuries", + "content": "wounds_injuries" + }, + { + "label": "wrap_text", + "content": "wrap_text" + }, + { + "label": "wrist", + "content": "wrist" + }, + { + "label": "wrong_location", + "content": "wrong_location" + }, + { + "label": "wysiwyg", + "content": "wysiwyg" + }, + { + "label": "yard", + "content": "yard" + }, + { + "label": "your_trips", + "content": "your_trips" + }, + { + "label": "youtube_activity", + "content": "youtube_activity" + }, + { + "label": "youtube_searched_for", + "content": "youtube_searched_for" + }, + { + "label": "zone_person_alert", + "content": "zone_person_alert" + }, + { + "label": "zone_person_idle", + "content": "zone_person_idle" + }, + { + "label": "zone_person_urgent", + "content": "zone_person_urgent" + }, + { + "label": "zoom_in", + "content": "zoom_in" + }, + { + "label": "zoom_in_map", + "content": "zoom_in_map" + }, + { + "label": "zoom_out", + "content": "zoom_out" + }, + { + "label": "zoom_out_map", + "content": "zoom_out_map" + } + ] +} diff --git a/packages/iconography/config/material-symbols-sharp-filled.config.json b/packages/iconography/config/material-symbols-sharp-filled.config.json new file mode 100644 index 0000000..0a4a6b8 --- /dev/null +++ b/packages/iconography/config/material-symbols-sharp-filled.config.json @@ -0,0 +1,13263 @@ +{ + "$schema": "../schema.json", + "title": "Sharp (Filled)", + "name": "boxuk/material-symbols-sharp-filled", + "tagName": "span", + "className": "material-symbols-sharp-filled", + "url": "https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200", + "additionalCss": ".material-symbols-sharp-filled { font-family: 'Material Symbols Sharp', sans-serif; font-size: inherit; vertical-align: text-bottom; line-height: 1.333; text-decoration: inherit; font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }", + "icons": [ + { + "label": "123", + "content": "123" + }, + { + "label": "360", + "content": "360" + }, + { + "label": "10k", + "content": "10k" + }, + { + "label": "10mp", + "content": "10mp" + }, + { + "label": "11mp", + "content": "11mp" + }, + { + "label": "12mp", + "content": "12mp" + }, + { + "label": "13mp", + "content": "13mp" + }, + { + "label": "14mp", + "content": "14mp" + }, + { + "label": "15mp", + "content": "15mp" + }, + { + "label": "16mp", + "content": "16mp" + }, + { + "label": "17mp", + "content": "17mp" + }, + { + "label": "18_up_rating", + "content": "18_up_rating" + }, + { + "label": "18mp", + "content": "18mp" + }, + { + "label": "19mp", + "content": "19mp" + }, + { + "label": "1k", + "content": "1k" + }, + { + "label": "1k_plus", + "content": "1k_plus" + }, + { + "label": "1x_mobiledata", + "content": "1x_mobiledata" + }, + { + "label": "1x_mobiledata_badge", + "content": "1x_mobiledata_badge" + }, + { + "label": "20mp", + "content": "20mp" + }, + { + "label": "21mp", + "content": "21mp" + }, + { + "label": "22mp", + "content": "22mp" + }, + { + "label": "23mp", + "content": "23mp" + }, + { + "label": "24mp", + "content": "24mp" + }, + { + "label": "2d", + "content": "2d" + }, + { + "label": "2k", + "content": "2k" + }, + { + "label": "2k_plus", + "content": "2k_plus" + }, + { + "label": "2mp", + "content": "2mp" + }, + { + "label": "30fps", + "content": "30fps" + }, + { + "label": "30fps_select", + "content": "30fps_select" + }, + { + "label": "3d_rotation", + "content": "3d_rotation" + }, + { + "label": "3g_mobiledata", + "content": "3g_mobiledata" + }, + { + "label": "3g_mobiledata_badge", + "content": "3g_mobiledata_badge" + }, + { + "label": "3k", + "content": "3k" + }, + { + "label": "3k_plus", + "content": "3k_plus" + }, + { + "label": "3mp", + "content": "3mp" + }, + { + "label": "3p", + "content": "3p" + }, + { + "label": "4g_mobiledata", + "content": "4g_mobiledata" + }, + { + "label": "4g_mobiledata_badge", + "content": "4g_mobiledata_badge" + }, + { + "label": "4g_plus_mobiledata", + "content": "4g_plus_mobiledata" + }, + { + "label": "4k", + "content": "4k" + }, + { + "label": "4k_plus", + "content": "4k_plus" + }, + { + "label": "4mp", + "content": "4mp" + }, + { + "label": "50mp", + "content": "50mp" + }, + { + "label": "5g", + "content": "5g" + }, + { + "label": "5g_mobiledata_badge", + "content": "5g_mobiledata_badge" + }, + { + "label": "5k", + "content": "5k" + }, + { + "label": "5k_plus", + "content": "5k_plus" + }, + { + "label": "5mp", + "content": "5mp" + }, + { + "label": "60fps", + "content": "60fps" + }, + { + "label": "60fps_select", + "content": "60fps_select" + }, + { + "label": "6_ft_apart", + "content": "6_ft_apart" + }, + { + "label": "6k", + "content": "6k" + }, + { + "label": "6k_plus", + "content": "6k_plus" + }, + { + "label": "6mp", + "content": "6mp" + }, + { + "label": "7k", + "content": "7k" + }, + { + "label": "7k_plus", + "content": "7k_plus" + }, + { + "label": "7mp", + "content": "7mp" + }, + { + "label": "8k", + "content": "8k" + }, + { + "label": "8k_plus", + "content": "8k_plus" + }, + { + "label": "8mp", + "content": "8mp" + }, + { + "label": "9k", + "content": "9k" + }, + { + "label": "9k_plus", + "content": "9k_plus" + }, + { + "label": "9mp", + "content": "9mp" + }, + { + "label": "abc", + "content": "abc" + }, + { + "label": "ac_unit", + "content": "ac_unit" + }, + { + "label": "accessibility", + "content": "accessibility" + }, + { + "label": "accessibility_new", + "content": "accessibility_new" + }, + { + "label": "accessible", + "content": "accessible" + }, + { + "label": "accessible_forward", + "content": "accessible_forward" + }, + { + "label": "account_balance", + "content": "account_balance" + }, + { + "label": "account_balance_wallet", + "content": "account_balance_wallet" + }, + { + "label": "account_box", + "content": "account_box" + }, + { + "label": "account_child", + "content": "account_child" + }, + { + "label": "account_child_invert", + "content": "account_child_invert" + }, + { + "label": "account_circle", + "content": "account_circle" + }, + { + "label": "account_circle_off", + "content": "account_circle_off" + }, + { + "label": "account_tree", + "content": "account_tree" + }, + { + "label": "action_key", + "content": "action_key" + }, + { + "label": "activity_zone", + "content": "activity_zone" + }, + { + "label": "acute", + "content": "acute" + }, + { + "label": "ad", + "content": "ad" + }, + { + "label": "ad_group", + "content": "ad_group" + }, + { + "label": "ad_group_off", + "content": "ad_group_off" + }, + { + "label": "ad_off", + "content": "ad_off" + }, + { + "label": "ad_units", + "content": "ad_units" + }, + { + "label": "adaptive_audio_mic", + "content": "adaptive_audio_mic" + }, + { + "label": "adaptive_audio_mic_off", + "content": "adaptive_audio_mic_off" + }, + { + "label": "adb", + "content": "adb" + }, + { + "label": "add", + "content": "add" + }, + { + "label": "add_a_photo", + "content": "add_a_photo" + }, + { + "label": "add_ad", + "content": "add_ad" + }, + { + "label": "add_alert", + "content": "add_alert" + }, + { + "label": "add_box", + "content": "add_box" + }, + { + "label": "add_business", + "content": "add_business" + }, + { + "label": "add_call", + "content": "add_call" + }, + { + "label": "add_card", + "content": "add_card" + }, + { + "label": "add_chart", + "content": "add_chart" + }, + { + "label": "add_circle", + "content": "add_circle" + }, + { + "label": "add_comment", + "content": "add_comment" + }, + { + "label": "add_diamond", + "content": "add_diamond" + }, + { + "label": "add_home", + "content": "add_home" + }, + { + "label": "add_home_work", + "content": "add_home_work" + }, + { + "label": "add_link", + "content": "add_link" + }, + { + "label": "add_location", + "content": "add_location" + }, + { + "label": "add_location_alt", + "content": "add_location_alt" + }, + { + "label": "add_moderator", + "content": "add_moderator" + }, + { + "label": "add_notes", + "content": "add_notes" + }, + { + "label": "add_photo_alternate", + "content": "add_photo_alternate" + }, + { + "label": "add_reaction", + "content": "add_reaction" + }, + { + "label": "add_road", + "content": "add_road" + }, + { + "label": "add_shopping_cart", + "content": "add_shopping_cart" + }, + { + "label": "add_task", + "content": "add_task" + }, + { + "label": "add_to_drive", + "content": "add_to_drive" + }, + { + "label": "add_to_home_screen", + "content": "add_to_home_screen" + }, + { + "label": "add_to_photos", + "content": "add_to_photos" + }, + { + "label": "add_to_queue", + "content": "add_to_queue" + }, + { + "label": "add_triangle", + "content": "add_triangle" + }, + { + "label": "adf_scanner", + "content": "adf_scanner" + }, + { + "label": "adjust", + "content": "adjust" + }, + { + "label": "admin_meds", + "content": "admin_meds" + }, + { + "label": "admin_panel_settings", + "content": "admin_panel_settings" + }, + { + "label": "ads_click", + "content": "ads_click" + }, + { + "label": "agender", + "content": "agender" + }, + { + "label": "agriculture", + "content": "agriculture" + }, + { + "label": "air", + "content": "air" + }, + { + "label": "air_freshener", + "content": "air_freshener" + }, + { + "label": "air_purifier", + "content": "air_purifier" + }, + { + "label": "air_purifier_gen", + "content": "air_purifier_gen" + }, + { + "label": "airline_seat_flat", + "content": "airline_seat_flat" + }, + { + "label": "airline_seat_flat_angled", + "content": "airline_seat_flat_angled" + }, + { + "label": "airline_seat_individual_suite", + "content": "airline_seat_individual_suite" + }, + { + "label": "airline_seat_legroom_extra", + "content": "airline_seat_legroom_extra" + }, + { + "label": "airline_seat_legroom_normal", + "content": "airline_seat_legroom_normal" + }, + { + "label": "airline_seat_legroom_reduced", + "content": "airline_seat_legroom_reduced" + }, + { + "label": "airline_seat_recline_extra", + "content": "airline_seat_recline_extra" + }, + { + "label": "airline_seat_recline_normal", + "content": "airline_seat_recline_normal" + }, + { + "label": "airline_stops", + "content": "airline_stops" + }, + { + "label": "airlines", + "content": "airlines" + }, + { + "label": "airplane_ticket", + "content": "airplane_ticket" + }, + { + "label": "airplanemode_active", + "content": "airplanemode_active" + }, + { + "label": "airplanemode_inactive", + "content": "airplanemode_inactive" + }, + { + "label": "airplay", + "content": "airplay" + }, + { + "label": "airport_shuttle", + "content": "airport_shuttle" + }, + { + "label": "airware", + "content": "airware" + }, + { + "label": "airwave", + "content": "airwave" + }, + { + "label": "alarm", + "content": "alarm" + }, + { + "label": "alarm_add", + "content": "alarm_add" + }, + { + "label": "alarm_off", + "content": "alarm_off" + }, + { + "label": "alarm_on", + "content": "alarm_on" + }, + { + "label": "alarm_smart_wake", + "content": "alarm_smart_wake" + }, + { + "label": "album", + "content": "album" + }, + { + "label": "align_center", + "content": "align_center" + }, + { + "label": "align_end", + "content": "align_end" + }, + { + "label": "align_flex_center", + "content": "align_flex_center" + }, + { + "label": "align_flex_end", + "content": "align_flex_end" + }, + { + "label": "align_flex_start", + "content": "align_flex_start" + }, + { + "label": "align_horizontal_center", + "content": "align_horizontal_center" + }, + { + "label": "align_horizontal_left", + "content": "align_horizontal_left" + }, + { + "label": "align_horizontal_right", + "content": "align_horizontal_right" + }, + { + "label": "align_items_stretch", + "content": "align_items_stretch" + }, + { + "label": "align_justify_center", + "content": "align_justify_center" + }, + { + "label": "align_justify_flex_end", + "content": "align_justify_flex_end" + }, + { + "label": "align_justify_flex_start", + "content": "align_justify_flex_start" + }, + { + "label": "align_justify_space_around", + "content": "align_justify_space_around" + }, + { + "label": "align_justify_space_between", + "content": "align_justify_space_between" + }, + { + "label": "align_justify_space_even", + "content": "align_justify_space_even" + }, + { + "label": "align_justify_stretch", + "content": "align_justify_stretch" + }, + { + "label": "align_self_stretch", + "content": "align_self_stretch" + }, + { + "label": "align_space_around", + "content": "align_space_around" + }, + { + "label": "align_space_between", + "content": "align_space_between" + }, + { + "label": "align_space_even", + "content": "align_space_even" + }, + { + "label": "align_start", + "content": "align_start" + }, + { + "label": "align_stretch", + "content": "align_stretch" + }, + { + "label": "align_vertical_bottom", + "content": "align_vertical_bottom" + }, + { + "label": "align_vertical_center", + "content": "align_vertical_center" + }, + { + "label": "align_vertical_top", + "content": "align_vertical_top" + }, + { + "label": "all_inbox", + "content": "all_inbox" + }, + { + "label": "all_inclusive", + "content": "all_inclusive" + }, + { + "label": "all_match", + "content": "all_match" + }, + { + "label": "all_out", + "content": "all_out" + }, + { + "label": "allergies", + "content": "allergies" + }, + { + "label": "allergy", + "content": "allergy" + }, + { + "label": "alt_route", + "content": "alt_route" + }, + { + "label": "alternate_email", + "content": "alternate_email" + }, + { + "label": "altitude", + "content": "altitude" + }, + { + "label": "ambulance", + "content": "ambulance" + }, + { + "label": "amend", + "content": "amend" + }, + { + "label": "amp_stories", + "content": "amp_stories" + }, + { + "label": "analytics", + "content": "analytics" + }, + { + "label": "anchor", + "content": "anchor" + }, + { + "label": "android", + "content": "android" + }, + { + "label": "animated_images", + "content": "animated_images" + }, + { + "label": "animation", + "content": "animation" + }, + { + "label": "aod", + "content": "aod" + }, + { + "label": "aod_tablet", + "content": "aod_tablet" + }, + { + "label": "aod_watch", + "content": "aod_watch" + }, + { + "label": "apartment", + "content": "apartment" + }, + { + "label": "api", + "content": "api" + }, + { + "label": "apk_document", + "content": "apk_document" + }, + { + "label": "apk_install", + "content": "apk_install" + }, + { + "label": "app_badging", + "content": "app_badging" + }, + { + "label": "app_blocking", + "content": "app_blocking" + }, + { + "label": "app_promo", + "content": "app_promo" + }, + { + "label": "app_registration", + "content": "app_registration" + }, + { + "label": "app_shortcut", + "content": "app_shortcut" + }, + { + "label": "apparel", + "content": "apparel" + }, + { + "label": "approval", + "content": "approval" + }, + { + "label": "approval_delegation", + "content": "approval_delegation" + }, + { + "label": "apps", + "content": "apps" + }, + { + "label": "apps_outage", + "content": "apps_outage" + }, + { + "label": "aq", + "content": "aq" + }, + { + "label": "aq_indoor", + "content": "aq_indoor" + }, + { + "label": "ar_on_you", + "content": "ar_on_you" + }, + { + "label": "ar_stickers", + "content": "ar_stickers" + }, + { + "label": "architecture", + "content": "architecture" + }, + { + "label": "archive", + "content": "archive" + }, + { + "label": "area_chart", + "content": "area_chart" + }, + { + "label": "arming_countdown", + "content": "arming_countdown" + }, + { + "label": "arrow_and_edge", + "content": "arrow_and_edge" + }, + { + "label": "arrow_back", + "content": "arrow_back" + }, + { + "label": "arrow_back_ios", + "content": "arrow_back_ios" + }, + { + "label": "arrow_circle_down", + "content": "arrow_circle_down" + }, + { + "label": "arrow_circle_left", + "content": "arrow_circle_left" + }, + { + "label": "arrow_circle_right", + "content": "arrow_circle_right" + }, + { + "label": "arrow_circle_up", + "content": "arrow_circle_up" + }, + { + "label": "arrow_cool_down", + "content": "arrow_cool_down" + }, + { + "label": "arrow_downward", + "content": "arrow_downward" + }, + { + "label": "arrow_downward_alt", + "content": "arrow_downward_alt" + }, + { + "label": "arrow_drop_down", + "content": "arrow_drop_down" + }, + { + "label": "arrow_drop_down_circle", + "content": "arrow_drop_down_circle" + }, + { + "label": "arrow_drop_up", + "content": "arrow_drop_up" + }, + { + "label": "arrow_forward", + "content": "arrow_forward" + }, + { + "label": "arrow_forward_ios", + "content": "arrow_forward_ios" + }, + { + "label": "arrow_insert", + "content": "arrow_insert" + }, + { + "label": "arrow_left", + "content": "arrow_left" + }, + { + "label": "arrow_left_alt", + "content": "arrow_left_alt" + }, + { + "label": "arrow_or_edge", + "content": "arrow_or_edge" + }, + { + "label": "arrow_outward", + "content": "arrow_outward" + }, + { + "label": "arrow_range", + "content": "arrow_range" + }, + { + "label": "arrow_right", + "content": "arrow_right" + }, + { + "label": "arrow_right_alt", + "content": "arrow_right_alt" + }, + { + "label": "arrow_selector_tool", + "content": "arrow_selector_tool" + }, + { + "label": "arrow_split", + "content": "arrow_split" + }, + { + "label": "arrow_top_left", + "content": "arrow_top_left" + }, + { + "label": "arrow_top_right", + "content": "arrow_top_right" + }, + { + "label": "arrow_upward", + "content": "arrow_upward" + }, + { + "label": "arrow_upward_alt", + "content": "arrow_upward_alt" + }, + { + "label": "arrow_warm_up", + "content": "arrow_warm_up" + }, + { + "label": "arrows_more_down", + "content": "arrows_more_down" + }, + { + "label": "arrows_more_up", + "content": "arrows_more_up" + }, + { + "label": "arrows_outward", + "content": "arrows_outward" + }, + { + "label": "art_track", + "content": "art_track" + }, + { + "label": "article", + "content": "article" + }, + { + "label": "article_shortcut", + "content": "article_shortcut" + }, + { + "label": "artist", + "content": "artist" + }, + { + "label": "aspect_ratio", + "content": "aspect_ratio" + }, + { + "label": "assignment", + "content": "assignment" + }, + { + "label": "assignment_add", + "content": "assignment_add" + }, + { + "label": "assignment_ind", + "content": "assignment_ind" + }, + { + "label": "assignment_late", + "content": "assignment_late" + }, + { + "label": "assignment_return", + "content": "assignment_return" + }, + { + "label": "assignment_returned", + "content": "assignment_returned" + }, + { + "label": "assignment_turned_in", + "content": "assignment_turned_in" + }, + { + "label": "assist_walker", + "content": "assist_walker" + }, + { + "label": "assistant_device", + "content": "assistant_device" + }, + { + "label": "assistant_direction", + "content": "assistant_direction" + }, + { + "label": "assistant_navigation", + "content": "assistant_navigation" + }, + { + "label": "assistant_on_hub", + "content": "assistant_on_hub" + }, + { + "label": "assured_workload", + "content": "assured_workload" + }, + { + "label": "asterisk", + "content": "asterisk" + }, + { + "label": "atm", + "content": "atm" + }, + { + "label": "atr", + "content": "atr" + }, + { + "label": "attach_email", + "content": "attach_email" + }, + { + "label": "attach_file", + "content": "attach_file" + }, + { + "label": "attach_file_add", + "content": "attach_file_add" + }, + { + "label": "attach_file_off", + "content": "attach_file_off" + }, + { + "label": "attach_money", + "content": "attach_money" + }, + { + "label": "attachment", + "content": "attachment" + }, + { + "label": "attractions", + "content": "attractions" + }, + { + "label": "attribution", + "content": "attribution" + }, + { + "label": "audio_description", + "content": "audio_description" + }, + { + "label": "audio_file", + "content": "audio_file" + }, + { + "label": "audio_video_receiver", + "content": "audio_video_receiver" + }, + { + "label": "auto_awesome_mosaic", + "content": "auto_awesome_mosaic" + }, + { + "label": "auto_awesome_motion", + "content": "auto_awesome_motion" + }, + { + "label": "auto_delete", + "content": "auto_delete" + }, + { + "label": "auto_read_pause", + "content": "auto_read_pause" + }, + { + "label": "auto_read_play", + "content": "auto_read_play" + }, + { + "label": "auto_stories", + "content": "auto_stories" + }, + { + "label": "auto_towing", + "content": "auto_towing" + }, + { + "label": "auto_transmission", + "content": "auto_transmission" + }, + { + "label": "autofps_select", + "content": "autofps_select" + }, + { + "label": "autopause", + "content": "autopause" + }, + { + "label": "autoplay", + "content": "autoplay" + }, + { + "label": "autorenew", + "content": "autorenew" + }, + { + "label": "autostop", + "content": "autostop" + }, + { + "label": "av1", + "content": "av1" + }, + { + "label": "av_timer", + "content": "av_timer" + }, + { + "label": "avc", + "content": "avc" + }, + { + "label": "avg_pace", + "content": "avg_pace" + }, + { + "label": "avg_time", + "content": "avg_time" + }, + { + "label": "award_star", + "content": "award_star" + }, + { + "label": "azm", + "content": "azm" + }, + { + "label": "baby_changing_station", + "content": "baby_changing_station" + }, + { + "label": "back_hand", + "content": "back_hand" + }, + { + "label": "back_to_tab", + "content": "back_to_tab" + }, + { + "label": "background_dot_large", + "content": "background_dot_large" + }, + { + "label": "background_dot_small", + "content": "background_dot_small" + }, + { + "label": "background_grid_small", + "content": "background_grid_small" + }, + { + "label": "background_replace", + "content": "background_replace" + }, + { + "label": "backlight_high", + "content": "backlight_high" + }, + { + "label": "backlight_high_off", + "content": "backlight_high_off" + }, + { + "label": "backlight_low", + "content": "backlight_low" + }, + { + "label": "backpack", + "content": "backpack" + }, + { + "label": "backspace", + "content": "backspace" + }, + { + "label": "backup", + "content": "backup" + }, + { + "label": "backup_table", + "content": "backup_table" + }, + { + "label": "badge", + "content": "badge" + }, + { + "label": "badge_critical_battery", + "content": "badge_critical_battery" + }, + { + "label": "bakery_dining", + "content": "bakery_dining" + }, + { + "label": "balance", + "content": "balance" + }, + { + "label": "balcony", + "content": "balcony" + }, + { + "label": "ballot", + "content": "ballot" + }, + { + "label": "bar_chart", + "content": "bar_chart" + }, + { + "label": "bar_chart_4_bars", + "content": "bar_chart_4_bars" + }, + { + "label": "barcode", + "content": "barcode" + }, + { + "label": "barcode_reader", + "content": "barcode_reader" + }, + { + "label": "barcode_scanner", + "content": "barcode_scanner" + }, + { + "label": "barefoot", + "content": "barefoot" + }, + { + "label": "batch_prediction", + "content": "batch_prediction" + }, + { + "label": "bath_outdoor", + "content": "bath_outdoor" + }, + { + "label": "bath_private", + "content": "bath_private" + }, + { + "label": "bath_public_large", + "content": "bath_public_large" + }, + { + "label": "bathroom", + "content": "bathroom" + }, + { + "label": "bathtub", + "content": "bathtub" + }, + { + "label": "battery_0_bar", + "content": "battery_0_bar" + }, + { + "label": "battery_1_bar", + "content": "battery_1_bar" + }, + { + "label": "battery_2_bar", + "content": "battery_2_bar" + }, + { + "label": "battery_3_bar", + "content": "battery_3_bar" + }, + { + "label": "battery_4_bar", + "content": "battery_4_bar" + }, + { + "label": "battery_5_bar", + "content": "battery_5_bar" + }, + { + "label": "battery_6_bar", + "content": "battery_6_bar" + }, + { + "label": "battery_alert", + "content": "battery_alert" + }, + { + "label": "battery_change", + "content": "battery_change" + }, + { + "label": "battery_charging_20", + "content": "battery_charging_20" + }, + { + "label": "battery_charging_30", + "content": "battery_charging_30" + }, + { + "label": "battery_charging_50", + "content": "battery_charging_50" + }, + { + "label": "battery_charging_60", + "content": "battery_charging_60" + }, + { + "label": "battery_charging_80", + "content": "battery_charging_80" + }, + { + "label": "battery_charging_90", + "content": "battery_charging_90" + }, + { + "label": "battery_charging_full", + "content": "battery_charging_full" + }, + { + "label": "battery_error", + "content": "battery_error" + }, + { + "label": "battery_full", + "content": "battery_full" + }, + { + "label": "battery_full_alt", + "content": "battery_full_alt" + }, + { + "label": "battery_horiz_000", + "content": "battery_horiz_000" + }, + { + "label": "battery_horiz_050", + "content": "battery_horiz_050" + }, + { + "label": "battery_horiz_075", + "content": "battery_horiz_075" + }, + { + "label": "battery_low", + "content": "battery_low" + }, + { + "label": "battery_plus", + "content": "battery_plus" + }, + { + "label": "battery_profile", + "content": "battery_profile" + }, + { + "label": "battery_saver", + "content": "battery_saver" + }, + { + "label": "battery_share", + "content": "battery_share" + }, + { + "label": "battery_status_good", + "content": "battery_status_good" + }, + { + "label": "battery_unknown", + "content": "battery_unknown" + }, + { + "label": "battery_very_low", + "content": "battery_very_low" + }, + { + "label": "beach_access", + "content": "beach_access" + }, + { + "label": "bed", + "content": "bed" + }, + { + "label": "bedroom_baby", + "content": "bedroom_baby" + }, + { + "label": "bedroom_child", + "content": "bedroom_child" + }, + { + "label": "bedroom_parent", + "content": "bedroom_parent" + }, + { + "label": "bedtime", + "content": "bedtime" + }, + { + "label": "bedtime_off", + "content": "bedtime_off" + }, + { + "label": "beenhere", + "content": "beenhere" + }, + { + "label": "bento", + "content": "bento" + }, + { + "label": "bia", + "content": "bia" + }, + { + "label": "bid_landscape", + "content": "bid_landscape" + }, + { + "label": "bid_landscape_disabled", + "content": "bid_landscape_disabled" + }, + { + "label": "bigtop_updates", + "content": "bigtop_updates" + }, + { + "label": "bike_dock", + "content": "bike_dock" + }, + { + "label": "bike_lane", + "content": "bike_lane" + }, + { + "label": "bike_scooter", + "content": "bike_scooter" + }, + { + "label": "biotech", + "content": "biotech" + }, + { + "label": "blanket", + "content": "blanket" + }, + { + "label": "blender", + "content": "blender" + }, + { + "label": "blind", + "content": "blind" + }, + { + "label": "blinds", + "content": "blinds" + }, + { + "label": "blinds_closed", + "content": "blinds_closed" + }, + { + "label": "block", + "content": "block" + }, + { + "label": "blood_pressure", + "content": "blood_pressure" + }, + { + "label": "bloodtype", + "content": "bloodtype" + }, + { + "label": "bluetooth", + "content": "bluetooth" + }, + { + "label": "bluetooth_connected", + "content": "bluetooth_connected" + }, + { + "label": "bluetooth_disabled", + "content": "bluetooth_disabled" + }, + { + "label": "bluetooth_drive", + "content": "bluetooth_drive" + }, + { + "label": "bluetooth_searching", + "content": "bluetooth_searching" + }, + { + "label": "blur_circular", + "content": "blur_circular" + }, + { + "label": "blur_linear", + "content": "blur_linear" + }, + { + "label": "blur_medium", + "content": "blur_medium" + }, + { + "label": "blur_off", + "content": "blur_off" + }, + { + "label": "blur_on", + "content": "blur_on" + }, + { + "label": "blur_short", + "content": "blur_short" + }, + { + "label": "body_fat", + "content": "body_fat" + }, + { + "label": "body_system", + "content": "body_system" + }, + { + "label": "bolt", + "content": "bolt" + }, + { + "label": "bomb", + "content": "bomb" + }, + { + "label": "book", + "content": "book" + }, + { + "label": "book_2", + "content": "book_2" + }, + { + "label": "book_3", + "content": "book_3" + }, + { + "label": "book_4", + "content": "book_4" + }, + { + "label": "book_5", + "content": "book_5" + }, + { + "label": "book_online", + "content": "book_online" + }, + { + "label": "bookmark", + "content": "bookmark" + }, + { + "label": "bookmark_add", + "content": "bookmark_add" + }, + { + "label": "bookmark_added", + "content": "bookmark_added" + }, + { + "label": "bookmark_check", + "content": "bookmark_check" + }, + { + "label": "bookmark_flag", + "content": "bookmark_flag" + }, + { + "label": "bookmark_heart", + "content": "bookmark_heart" + }, + { + "label": "bookmark_manager", + "content": "bookmark_manager" + }, + { + "label": "bookmark_remove", + "content": "bookmark_remove" + }, + { + "label": "bookmark_star", + "content": "bookmark_star" + }, + { + "label": "bookmarks", + "content": "bookmarks" + }, + { + "label": "border_all", + "content": "border_all" + }, + { + "label": "border_bottom", + "content": "border_bottom" + }, + { + "label": "border_clear", + "content": "border_clear" + }, + { + "label": "border_color", + "content": "border_color" + }, + { + "label": "border_horizontal", + "content": "border_horizontal" + }, + { + "label": "border_inner", + "content": "border_inner" + }, + { + "label": "border_left", + "content": "border_left" + }, + { + "label": "border_outer", + "content": "border_outer" + }, + { + "label": "border_right", + "content": "border_right" + }, + { + "label": "border_style", + "content": "border_style" + }, + { + "label": "border_top", + "content": "border_top" + }, + { + "label": "border_vertical", + "content": "border_vertical" + }, + { + "label": "bottom_app_bar", + "content": "bottom_app_bar" + }, + { + "label": "bottom_drawer", + "content": "bottom_drawer" + }, + { + "label": "bottom_navigation", + "content": "bottom_navigation" + }, + { + "label": "bottom_panel_close", + "content": "bottom_panel_close" + }, + { + "label": "bottom_panel_open", + "content": "bottom_panel_open" + }, + { + "label": "bottom_right_click", + "content": "bottom_right_click" + }, + { + "label": "bottom_sheets", + "content": "bottom_sheets" + }, + { + "label": "box", + "content": "box" + }, + { + "label": "box_add", + "content": "box_add" + }, + { + "label": "box_edit", + "content": "box_edit" + }, + { + "label": "boy", + "content": "boy" + }, + { + "label": "brand_awareness", + "content": "brand_awareness" + }, + { + "label": "brand_family", + "content": "brand_family" + }, + { + "label": "branding_watermark", + "content": "branding_watermark" + }, + { + "label": "breakfast_dining", + "content": "breakfast_dining" + }, + { + "label": "breaking_news", + "content": "breaking_news" + }, + { + "label": "breaking_news_alt_1", + "content": "breaking_news_alt_1" + }, + { + "label": "breastfeeding", + "content": "breastfeeding" + }, + { + "label": "brightness_1", + "content": "brightness_1" + }, + { + "label": "brightness_2", + "content": "brightness_2" + }, + { + "label": "brightness_3", + "content": "brightness_3" + }, + { + "label": "brightness_4", + "content": "brightness_4" + }, + { + "label": "brightness_5", + "content": "brightness_5" + }, + { + "label": "brightness_6", + "content": "brightness_6" + }, + { + "label": "brightness_7", + "content": "brightness_7" + }, + { + "label": "brightness_alert", + "content": "brightness_alert" + }, + { + "label": "brightness_auto", + "content": "brightness_auto" + }, + { + "label": "brightness_empty", + "content": "brightness_empty" + }, + { + "label": "brightness_high", + "content": "brightness_high" + }, + { + "label": "brightness_low", + "content": "brightness_low" + }, + { + "label": "brightness_medium", + "content": "brightness_medium" + }, + { + "label": "bring_your_own_ip", + "content": "bring_your_own_ip" + }, + { + "label": "broadcast_on_home", + "content": "broadcast_on_home" + }, + { + "label": "broadcast_on_personal", + "content": "broadcast_on_personal" + }, + { + "label": "broken_image", + "content": "broken_image" + }, + { + "label": "browse", + "content": "browse" + }, + { + "label": "browse_activity", + "content": "browse_activity" + }, + { + "label": "browse_gallery", + "content": "browse_gallery" + }, + { + "label": "browser_updated", + "content": "browser_updated" + }, + { + "label": "brunch_dining", + "content": "brunch_dining" + }, + { + "label": "brush", + "content": "brush" + }, + { + "label": "bubble", + "content": "bubble" + }, + { + "label": "bubble_chart", + "content": "bubble_chart" + }, + { + "label": "bubbles", + "content": "bubbles" + }, + { + "label": "bug_report", + "content": "bug_report" + }, + { + "label": "build", + "content": "build" + }, + { + "label": "build_circle", + "content": "build_circle" + }, + { + "label": "bungalow", + "content": "bungalow" + }, + { + "label": "burst_mode", + "content": "burst_mode" + }, + { + "label": "bus_alert", + "content": "bus_alert" + }, + { + "label": "business_center", + "content": "business_center" + }, + { + "label": "business_chip", + "content": "business_chip" + }, + { + "label": "business_messages", + "content": "business_messages" + }, + { + "label": "buttons_alt", + "content": "buttons_alt" + }, + { + "label": "cabin", + "content": "cabin" + }, + { + "label": "cable", + "content": "cable" + }, + { + "label": "cable_car", + "content": "cable_car" + }, + { + "label": "cached", + "content": "cached" + }, + { + "label": "cadence", + "content": "cadence" + }, + { + "label": "cake", + "content": "cake" + }, + { + "label": "cake_add", + "content": "cake_add" + }, + { + "label": "calculate", + "content": "calculate" + }, + { + "label": "calendar_add_on", + "content": "calendar_add_on" + }, + { + "label": "calendar_apps_script", + "content": "calendar_apps_script" + }, + { + "label": "calendar_clock", + "content": "calendar_clock" + }, + { + "label": "calendar_month", + "content": "calendar_month" + }, + { + "label": "calendar_today", + "content": "calendar_today" + }, + { + "label": "calendar_view_day", + "content": "calendar_view_day" + }, + { + "label": "calendar_view_month", + "content": "calendar_view_month" + }, + { + "label": "calendar_view_week", + "content": "calendar_view_week" + }, + { + "label": "call", + "content": "call" + }, + { + "label": "call_end", + "content": "call_end" + }, + { + "label": "call_log", + "content": "call_log" + }, + { + "label": "call_made", + "content": "call_made" + }, + { + "label": "call_merge", + "content": "call_merge" + }, + { + "label": "call_missed", + "content": "call_missed" + }, + { + "label": "call_missed_outgoing", + "content": "call_missed_outgoing" + }, + { + "label": "call_quality", + "content": "call_quality" + }, + { + "label": "call_received", + "content": "call_received" + }, + { + "label": "call_split", + "content": "call_split" + }, + { + "label": "call_to_action", + "content": "call_to_action" + }, + { + "label": "camera", + "content": "camera" + }, + { + "label": "camera_front", + "content": "camera_front" + }, + { + "label": "camera_indoor", + "content": "camera_indoor" + }, + { + "label": "camera_outdoor", + "content": "camera_outdoor" + }, + { + "label": "camera_rear", + "content": "camera_rear" + }, + { + "label": "camera_roll", + "content": "camera_roll" + }, + { + "label": "camera_video", + "content": "camera_video" + }, + { + "label": "cameraswitch", + "content": "cameraswitch" + }, + { + "label": "campaign", + "content": "campaign" + }, + { + "label": "camping", + "content": "camping" + }, + { + "label": "cancel", + "content": "cancel" + }, + { + "label": "cancel_presentation", + "content": "cancel_presentation" + }, + { + "label": "cancel_schedule_send", + "content": "cancel_schedule_send" + }, + { + "label": "candle", + "content": "candle" + }, + { + "label": "candlestick_chart", + "content": "candlestick_chart" + }, + { + "label": "captive_portal", + "content": "captive_portal" + }, + { + "label": "capture", + "content": "capture" + }, + { + "label": "car_crash", + "content": "car_crash" + }, + { + "label": "car_rental", + "content": "car_rental" + }, + { + "label": "car_repair", + "content": "car_repair" + }, + { + "label": "car_tag", + "content": "car_tag" + }, + { + "label": "card_membership", + "content": "card_membership" + }, + { + "label": "card_travel", + "content": "card_travel" + }, + { + "label": "cardio_load", + "content": "cardio_load" + }, + { + "label": "cardiology", + "content": "cardiology" + }, + { + "label": "cards", + "content": "cards" + }, + { + "label": "carpenter", + "content": "carpenter" + }, + { + "label": "carry_on_bag", + "content": "carry_on_bag" + }, + { + "label": "carry_on_bag_checked", + "content": "carry_on_bag_checked" + }, + { + "label": "carry_on_bag_inactive", + "content": "carry_on_bag_inactive" + }, + { + "label": "carry_on_bag_question", + "content": "carry_on_bag_question" + }, + { + "label": "cases", + "content": "cases" + }, + { + "label": "casino", + "content": "casino" + }, + { + "label": "cast", + "content": "cast" + }, + { + "label": "cast_connected", + "content": "cast_connected" + }, + { + "label": "cast_for_education", + "content": "cast_for_education" + }, + { + "label": "cast_pause", + "content": "cast_pause" + }, + { + "label": "cast_warning", + "content": "cast_warning" + }, + { + "label": "castle", + "content": "castle" + }, + { + "label": "category", + "content": "category" + }, + { + "label": "celebration", + "content": "celebration" + }, + { + "label": "cell_merge", + "content": "cell_merge" + }, + { + "label": "cell_tower", + "content": "cell_tower" + }, + { + "label": "cell_wifi", + "content": "cell_wifi" + }, + { + "label": "center_focus_strong", + "content": "center_focus_strong" + }, + { + "label": "center_focus_weak", + "content": "center_focus_weak" + }, + { + "label": "chair", + "content": "chair" + }, + { + "label": "chair_alt", + "content": "chair_alt" + }, + { + "label": "chalet", + "content": "chalet" + }, + { + "label": "change_circle", + "content": "change_circle" + }, + { + "label": "change_history", + "content": "change_history" + }, + { + "label": "charger", + "content": "charger" + }, + { + "label": "charging_station", + "content": "charging_station" + }, + { + "label": "chart_data", + "content": "chart_data" + }, + { + "label": "chat", + "content": "chat" + }, + { + "label": "chat_add_on", + "content": "chat_add_on" + }, + { + "label": "chat_apps_script", + "content": "chat_apps_script" + }, + { + "label": "chat_bubble", + "content": "chat_bubble" + }, + { + "label": "chat_error", + "content": "chat_error" + }, + { + "label": "chat_info", + "content": "chat_info" + }, + { + "label": "chat_paste_go", + "content": "chat_paste_go" + }, + { + "label": "check", + "content": "check" + }, + { + "label": "check_box", + "content": "check_box" + }, + { + "label": "check_box_outline_blank", + "content": "check_box_outline_blank" + }, + { + "label": "check_circle", + "content": "check_circle" + }, + { + "label": "check_in_out", + "content": "check_in_out" + }, + { + "label": "check_indeterminate_small", + "content": "check_indeterminate_small" + }, + { + "label": "check_small", + "content": "check_small" + }, + { + "label": "checkbook", + "content": "checkbook" + }, + { + "label": "checked_bag", + "content": "checked_bag" + }, + { + "label": "checked_bag_question", + "content": "checked_bag_question" + }, + { + "label": "checklist", + "content": "checklist" + }, + { + "label": "checklist_rtl", + "content": "checklist_rtl" + }, + { + "label": "checkroom", + "content": "checkroom" + }, + { + "label": "cheer", + "content": "cheer" + }, + { + "label": "chess", + "content": "chess" + }, + { + "label": "chevron_backward", + "content": "chevron_backward" + }, + { + "label": "chevron_forward", + "content": "chevron_forward" + }, + { + "label": "chevron_left", + "content": "chevron_left" + }, + { + "label": "chevron_right", + "content": "chevron_right" + }, + { + "label": "child_care", + "content": "child_care" + }, + { + "label": "child_friendly", + "content": "child_friendly" + }, + { + "label": "chip_extraction", + "content": "chip_extraction" + }, + { + "label": "chips", + "content": "chips" + }, + { + "label": "chrome_reader_mode", + "content": "chrome_reader_mode" + }, + { + "label": "chromecast_2", + "content": "chromecast_2" + }, + { + "label": "chromecast_device", + "content": "chromecast_device" + }, + { + "label": "chronic", + "content": "chronic" + }, + { + "label": "church", + "content": "church" + }, + { + "label": "cinematic_blur", + "content": "cinematic_blur" + }, + { + "label": "circle", + "content": "circle" + }, + { + "label": "circle_notifications", + "content": "circle_notifications" + }, + { + "label": "circles", + "content": "circles" + }, + { + "label": "circles_ext", + "content": "circles_ext" + }, + { + "label": "clarify", + "content": "clarify" + }, + { + "label": "clean_hands", + "content": "clean_hands" + }, + { + "label": "cleaning", + "content": "cleaning" + }, + { + "label": "cleaning_bucket", + "content": "cleaning_bucket" + }, + { + "label": "cleaning_services", + "content": "cleaning_services" + }, + { + "label": "clear_all", + "content": "clear_all" + }, + { + "label": "clear_day", + "content": "clear_day" + }, + { + "label": "clear_night", + "content": "clear_night" + }, + { + "label": "climate_mini_split", + "content": "climate_mini_split" + }, + { + "label": "clinical_notes", + "content": "clinical_notes" + }, + { + "label": "clock_loader_10", + "content": "clock_loader_10" + }, + { + "label": "clock_loader_20", + "content": "clock_loader_20" + }, + { + "label": "clock_loader_40", + "content": "clock_loader_40" + }, + { + "label": "clock_loader_60", + "content": "clock_loader_60" + }, + { + "label": "clock_loader_80", + "content": "clock_loader_80" + }, + { + "label": "clock_loader_90", + "content": "clock_loader_90" + }, + { + "label": "close", + "content": "close" + }, + { + "label": "close_fullscreen", + "content": "close_fullscreen" + }, + { + "label": "close_small", + "content": "close_small" + }, + { + "label": "closed_caption", + "content": "closed_caption" + }, + { + "label": "closed_caption_add", + "content": "closed_caption_add" + }, + { + "label": "closed_caption_disabled", + "content": "closed_caption_disabled" + }, + { + "label": "cloud", + "content": "cloud" + }, + { + "label": "cloud_circle", + "content": "cloud_circle" + }, + { + "label": "cloud_done", + "content": "cloud_done" + }, + { + "label": "cloud_download", + "content": "cloud_download" + }, + { + "label": "cloud_off", + "content": "cloud_off" + }, + { + "label": "cloud_sync", + "content": "cloud_sync" + }, + { + "label": "cloud_upload", + "content": "cloud_upload" + }, + { + "label": "cloudy_snowing", + "content": "cloudy_snowing" + }, + { + "label": "co2", + "content": "co2" + }, + { + "label": "co_present", + "content": "co_present" + }, + { + "label": "code", + "content": "code" + }, + { + "label": "code_blocks", + "content": "code_blocks" + }, + { + "label": "code_off", + "content": "code_off" + }, + { + "label": "coffee", + "content": "coffee" + }, + { + "label": "coffee_maker", + "content": "coffee_maker" + }, + { + "label": "cognition", + "content": "cognition" + }, + { + "label": "collapse_all", + "content": "collapse_all" + }, + { + "label": "collapse_content", + "content": "collapse_content" + }, + { + "label": "collections_bookmark", + "content": "collections_bookmark" + }, + { + "label": "colorize", + "content": "colorize" + }, + { + "label": "colors", + "content": "colors" + }, + { + "label": "comedy_mask", + "content": "comedy_mask" + }, + { + "label": "comic_bubble", + "content": "comic_bubble" + }, + { + "label": "comment", + "content": "comment" + }, + { + "label": "comment_bank", + "content": "comment_bank" + }, + { + "label": "comments_disabled", + "content": "comments_disabled" + }, + { + "label": "commit", + "content": "commit" + }, + { + "label": "communication", + "content": "communication" + }, + { + "label": "communities", + "content": "communities" + }, + { + "label": "commute", + "content": "commute" + }, + { + "label": "compare", + "content": "compare" + }, + { + "label": "compare_arrows", + "content": "compare_arrows" + }, + { + "label": "compass_calibration", + "content": "compass_calibration" + }, + { + "label": "component_exchange", + "content": "component_exchange" + }, + { + "label": "compost", + "content": "compost" + }, + { + "label": "compress", + "content": "compress" + }, + { + "label": "computer", + "content": "computer" + }, + { + "label": "concierge", + "content": "concierge" + }, + { + "label": "conditions", + "content": "conditions" + }, + { + "label": "confirmation_number", + "content": "confirmation_number" + }, + { + "label": "congenital", + "content": "congenital" + }, + { + "label": "connect_without_contact", + "content": "connect_without_contact" + }, + { + "label": "connected_tv", + "content": "connected_tv" + }, + { + "label": "connecting_airports", + "content": "connecting_airports" + }, + { + "label": "construction", + "content": "construction" + }, + { + "label": "contact_emergency", + "content": "contact_emergency" + }, + { + "label": "contact_mail", + "content": "contact_mail" + }, + { + "label": "contact_page", + "content": "contact_page" + }, + { + "label": "contact_phone", + "content": "contact_phone" + }, + { + "label": "contact_support", + "content": "contact_support" + }, + { + "label": "contactless", + "content": "contactless" + }, + { + "label": "contactless_off", + "content": "contactless_off" + }, + { + "label": "contacts", + "content": "contacts" + }, + { + "label": "contacts_product", + "content": "contacts_product" + }, + { + "label": "content_copy", + "content": "content_copy" + }, + { + "label": "content_cut", + "content": "content_cut" + }, + { + "label": "content_paste", + "content": "content_paste" + }, + { + "label": "content_paste_go", + "content": "content_paste_go" + }, + { + "label": "content_paste_off", + "content": "content_paste_off" + }, + { + "label": "content_paste_search", + "content": "content_paste_search" + }, + { + "label": "contextual_token", + "content": "contextual_token" + }, + { + "label": "contextual_token_add", + "content": "contextual_token_add" + }, + { + "label": "contract", + "content": "contract" + }, + { + "label": "contract_delete", + "content": "contract_delete" + }, + { + "label": "contract_edit", + "content": "contract_edit" + }, + { + "label": "contrast", + "content": "contrast" + }, + { + "label": "contrast_circle", + "content": "contrast_circle" + }, + { + "label": "contrast_rtl_off", + "content": "contrast_rtl_off" + }, + { + "label": "contrast_square", + "content": "contrast_square" + }, + { + "label": "control_camera", + "content": "control_camera" + }, + { + "label": "control_point_duplicate", + "content": "control_point_duplicate" + }, + { + "label": "controller_gen", + "content": "controller_gen" + }, + { + "label": "conversion_path", + "content": "conversion_path" + }, + { + "label": "conversion_path_off", + "content": "conversion_path_off" + }, + { + "label": "conveyor_belt", + "content": "conveyor_belt" + }, + { + "label": "cookie", + "content": "cookie" + }, + { + "label": "cookie_off", + "content": "cookie_off" + }, + { + "label": "cooking", + "content": "cooking" + }, + { + "label": "cool_to_dry", + "content": "cool_to_dry" + }, + { + "label": "copy_all", + "content": "copy_all" + }, + { + "label": "copyright", + "content": "copyright" + }, + { + "label": "coronavirus", + "content": "coronavirus" + }, + { + "label": "corporate_fare", + "content": "corporate_fare" + }, + { + "label": "cottage", + "content": "cottage" + }, + { + "label": "counter_0", + "content": "counter_0" + }, + { + "label": "counter_1", + "content": "counter_1" + }, + { + "label": "counter_2", + "content": "counter_2" + }, + { + "label": "counter_3", + "content": "counter_3" + }, + { + "label": "counter_4", + "content": "counter_4" + }, + { + "label": "counter_5", + "content": "counter_5" + }, + { + "label": "counter_6", + "content": "counter_6" + }, + { + "label": "counter_7", + "content": "counter_7" + }, + { + "label": "counter_8", + "content": "counter_8" + }, + { + "label": "counter_9", + "content": "counter_9" + }, + { + "label": "countertops", + "content": "countertops" + }, + { + "label": "create_new_folder", + "content": "create_new_folder" + }, + { + "label": "credit_card", + "content": "credit_card" + }, + { + "label": "credit_card_gear", + "content": "credit_card_gear" + }, + { + "label": "credit_card_heart", + "content": "credit_card_heart" + }, + { + "label": "credit_card_off", + "content": "credit_card_off" + }, + { + "label": "credit_score", + "content": "credit_score" + }, + { + "label": "crib", + "content": "crib" + }, + { + "label": "crisis_alert", + "content": "crisis_alert" + }, + { + "label": "crop", + "content": "crop" + }, + { + "label": "crop_16_9", + "content": "crop_16_9" + }, + { + "label": "crop_3_2", + "content": "crop_3_2" + }, + { + "label": "crop_5_4", + "content": "crop_5_4" + }, + { + "label": "crop_7_5", + "content": "crop_7_5" + }, + { + "label": "crop_9_16", + "content": "crop_9_16" + }, + { + "label": "crop_free", + "content": "crop_free" + }, + { + "label": "crop_landscape", + "content": "crop_landscape" + }, + { + "label": "crop_portrait", + "content": "crop_portrait" + }, + { + "label": "crop_rotate", + "content": "crop_rotate" + }, + { + "label": "crop_square", + "content": "crop_square" + }, + { + "label": "crossword", + "content": "crossword" + }, + { + "label": "crowdsource", + "content": "crowdsource" + }, + { + "label": "cruelty_free", + "content": "cruelty_free" + }, + { + "label": "css", + "content": "css" + }, + { + "label": "csv", + "content": "csv" + }, + { + "label": "currency_bitcoin", + "content": "currency_bitcoin" + }, + { + "label": "currency_exchange", + "content": "currency_exchange" + }, + { + "label": "currency_franc", + "content": "currency_franc" + }, + { + "label": "currency_lira", + "content": "currency_lira" + }, + { + "label": "currency_pound", + "content": "currency_pound" + }, + { + "label": "currency_ruble", + "content": "currency_ruble" + }, + { + "label": "currency_rupee", + "content": "currency_rupee" + }, + { + "label": "currency_rupee_circle", + "content": "currency_rupee_circle" + }, + { + "label": "currency_yen", + "content": "currency_yen" + }, + { + "label": "currency_yuan", + "content": "currency_yuan" + }, + { + "label": "curtains", + "content": "curtains" + }, + { + "label": "curtains_closed", + "content": "curtains_closed" + }, + { + "label": "custom_typography", + "content": "custom_typography" + }, + { + "label": "cycle", + "content": "cycle" + }, + { + "label": "cyclone", + "content": "cyclone" + }, + { + "label": "dangerous", + "content": "dangerous" + }, + { + "label": "dark_mode", + "content": "dark_mode" + }, + { + "label": "dashboard", + "content": "dashboard" + }, + { + "label": "dashboard_customize", + "content": "dashboard_customize" + }, + { + "label": "data_alert", + "content": "data_alert" + }, + { + "label": "data_array", + "content": "data_array" + }, + { + "label": "data_check", + "content": "data_check" + }, + { + "label": "data_exploration", + "content": "data_exploration" + }, + { + "label": "data_info_alert", + "content": "data_info_alert" + }, + { + "label": "data_loss_prevention", + "content": "data_loss_prevention" + }, + { + "label": "data_object", + "content": "data_object" + }, + { + "label": "data_saver_on", + "content": "data_saver_on" + }, + { + "label": "data_table", + "content": "data_table" + }, + { + "label": "data_thresholding", + "content": "data_thresholding" + }, + { + "label": "data_usage", + "content": "data_usage" + }, + { + "label": "database", + "content": "database" + }, + { + "label": "dataset", + "content": "dataset" + }, + { + "label": "dataset_linked", + "content": "dataset_linked" + }, + { + "label": "date_range", + "content": "date_range" + }, + { + "label": "deblur", + "content": "deblur" + }, + { + "label": "deceased", + "content": "deceased" + }, + { + "label": "decimal_decrease", + "content": "decimal_decrease" + }, + { + "label": "decimal_increase", + "content": "decimal_increase" + }, + { + "label": "deck", + "content": "deck" + }, + { + "label": "dehaze", + "content": "dehaze" + }, + { + "label": "delete", + "content": "delete" + }, + { + "label": "delete_forever", + "content": "delete_forever" + }, + { + "label": "delete_history", + "content": "delete_history" + }, + { + "label": "delete_sweep", + "content": "delete_sweep" + }, + { + "label": "demography", + "content": "demography" + }, + { + "label": "density_large", + "content": "density_large" + }, + { + "label": "density_medium", + "content": "density_medium" + }, + { + "label": "density_small", + "content": "density_small" + }, + { + "label": "dentistry", + "content": "dentistry" + }, + { + "label": "departure_board", + "content": "departure_board" + }, + { + "label": "deployed_code", + "content": "deployed_code" + }, + { + "label": "deployed_code_account", + "content": "deployed_code_account" + }, + { + "label": "deployed_code_alert", + "content": "deployed_code_alert" + }, + { + "label": "deployed_code_history", + "content": "deployed_code_history" + }, + { + "label": "deployed_code_update", + "content": "deployed_code_update" + }, + { + "label": "dermatology", + "content": "dermatology" + }, + { + "label": "description", + "content": "description" + }, + { + "label": "deselect", + "content": "deselect" + }, + { + "label": "design_services", + "content": "design_services" + }, + { + "label": "desk", + "content": "desk" + }, + { + "label": "deskphone", + "content": "deskphone" + }, + { + "label": "desktop_access_disabled", + "content": "desktop_access_disabled" + }, + { + "label": "desktop_landscape", + "content": "desktop_landscape" + }, + { + "label": "desktop_mac", + "content": "desktop_mac" + }, + { + "label": "desktop_portrait", + "content": "desktop_portrait" + }, + { + "label": "desktop_windows", + "content": "desktop_windows" + }, + { + "label": "destruction", + "content": "destruction" + }, + { + "label": "details", + "content": "details" + }, + { + "label": "detection_and_zone", + "content": "detection_and_zone" + }, + { + "label": "detector", + "content": "detector" + }, + { + "label": "detector_alarm", + "content": "detector_alarm" + }, + { + "label": "detector_battery", + "content": "detector_battery" + }, + { + "label": "detector_co", + "content": "detector_co" + }, + { + "label": "detector_offline", + "content": "detector_offline" + }, + { + "label": "detector_smoke", + "content": "detector_smoke" + }, + { + "label": "detector_status", + "content": "detector_status" + }, + { + "label": "developer_board", + "content": "developer_board" + }, + { + "label": "developer_board_off", + "content": "developer_board_off" + }, + { + "label": "developer_guide", + "content": "developer_guide" + }, + { + "label": "developer_mode", + "content": "developer_mode" + }, + { + "label": "developer_mode_tv", + "content": "developer_mode_tv" + }, + { + "label": "device_hub", + "content": "device_hub" + }, + { + "label": "device_reset", + "content": "device_reset" + }, + { + "label": "device_thermostat", + "content": "device_thermostat" + }, + { + "label": "device_unknown", + "content": "device_unknown" + }, + { + "label": "devices", + "content": "devices" + }, + { + "label": "devices_fold", + "content": "devices_fold" + }, + { + "label": "devices_off", + "content": "devices_off" + }, + { + "label": "devices_other", + "content": "devices_other" + }, + { + "label": "devices_wearables", + "content": "devices_wearables" + }, + { + "label": "dew_point", + "content": "dew_point" + }, + { + "label": "diagnosis", + "content": "diagnosis" + }, + { + "label": "dialer_sip", + "content": "dialer_sip" + }, + { + "label": "dialogs", + "content": "dialogs" + }, + { + "label": "dialpad", + "content": "dialpad" + }, + { + "label": "diamond", + "content": "diamond" + }, + { + "label": "dictionary", + "content": "dictionary" + }, + { + "label": "difference", + "content": "difference" + }, + { + "label": "digital_out_of_home", + "content": "digital_out_of_home" + }, + { + "label": "digital_wellbeing", + "content": "digital_wellbeing" + }, + { + "label": "dining", + "content": "dining" + }, + { + "label": "dinner_dining", + "content": "dinner_dining" + }, + { + "label": "directions", + "content": "directions" + }, + { + "label": "directions_alt", + "content": "directions_alt" + }, + { + "label": "directions_alt_off", + "content": "directions_alt_off" + }, + { + "label": "directions_bike", + "content": "directions_bike" + }, + { + "label": "directions_boat", + "content": "directions_boat" + }, + { + "label": "directions_bus", + "content": "directions_bus" + }, + { + "label": "directions_car", + "content": "directions_car" + }, + { + "label": "directions_off", + "content": "directions_off" + }, + { + "label": "directions_railway", + "content": "directions_railway" + }, + { + "label": "directions_railway_2", + "content": "directions_railway_2" + }, + { + "label": "directions_run", + "content": "directions_run" + }, + { + "label": "directions_subway", + "content": "directions_subway" + }, + { + "label": "directions_walk", + "content": "directions_walk" + }, + { + "label": "directory_sync", + "content": "directory_sync" + }, + { + "label": "dirty_lens", + "content": "dirty_lens" + }, + { + "label": "disabled_by_default", + "content": "disabled_by_default" + }, + { + "label": "disabled_visible", + "content": "disabled_visible" + }, + { + "label": "disc_full", + "content": "disc_full" + }, + { + "label": "discover_tune", + "content": "discover_tune" + }, + { + "label": "dishwasher", + "content": "dishwasher" + }, + { + "label": "dishwasher_gen", + "content": "dishwasher_gen" + }, + { + "label": "display_external_input", + "content": "display_external_input" + }, + { + "label": "display_settings", + "content": "display_settings" + }, + { + "label": "distance", + "content": "distance" + }, + { + "label": "diversity_1", + "content": "diversity_1" + }, + { + "label": "diversity_2", + "content": "diversity_2" + }, + { + "label": "diversity_3", + "content": "diversity_3" + }, + { + "label": "diversity_4", + "content": "diversity_4" + }, + { + "label": "dns", + "content": "dns" + }, + { + "label": "do_not_disturb_off", + "content": "do_not_disturb_off" + }, + { + "label": "do_not_disturb_on", + "content": "do_not_disturb_on" + }, + { + "label": "do_not_disturb_on_total_silence", + "content": "do_not_disturb_on_total_silence" + }, + { + "label": "do_not_step", + "content": "do_not_step" + }, + { + "label": "do_not_touch", + "content": "do_not_touch" + }, + { + "label": "dock", + "content": "dock" + }, + { + "label": "dock_to_bottom", + "content": "dock_to_bottom" + }, + { + "label": "dock_to_left", + "content": "dock_to_left" + }, + { + "label": "dock_to_right", + "content": "dock_to_right" + }, + { + "label": "docs_add_on", + "content": "docs_add_on" + }, + { + "label": "docs_apps_script", + "content": "docs_apps_script" + }, + { + "label": "document_scanner", + "content": "document_scanner" + }, + { + "label": "domain", + "content": "domain" + }, + { + "label": "domain_add", + "content": "domain_add" + }, + { + "label": "domain_disabled", + "content": "domain_disabled" + }, + { + "label": "domain_verification", + "content": "domain_verification" + }, + { + "label": "domain_verification_off", + "content": "domain_verification_off" + }, + { + "label": "domino_mask", + "content": "domino_mask" + }, + { + "label": "done_all", + "content": "done_all" + }, + { + "label": "done_outline", + "content": "done_outline" + }, + { + "label": "donut_large", + "content": "donut_large" + }, + { + "label": "donut_small", + "content": "donut_small" + }, + { + "label": "door_back", + "content": "door_back" + }, + { + "label": "door_front", + "content": "door_front" + }, + { + "label": "door_open", + "content": "door_open" + }, + { + "label": "door_sensor", + "content": "door_sensor" + }, + { + "label": "door_sliding", + "content": "door_sliding" + }, + { + "label": "doorbell", + "content": "doorbell" + }, + { + "label": "doorbell_3p", + "content": "doorbell_3p" + }, + { + "label": "doorbell_chime", + "content": "doorbell_chime" + }, + { + "label": "double_arrow", + "content": "double_arrow" + }, + { + "label": "downhill_skiing", + "content": "downhill_skiing" + }, + { + "label": "download", + "content": "download" + }, + { + "label": "download_2", + "content": "download_2" + }, + { + "label": "download_done", + "content": "download_done" + }, + { + "label": "download_for_offline", + "content": "download_for_offline" + }, + { + "label": "downloading", + "content": "downloading" + }, + { + "label": "draft", + "content": "draft" + }, + { + "label": "draft_orders", + "content": "draft_orders" + }, + { + "label": "drafts", + "content": "drafts" + }, + { + "label": "drag_click", + "content": "drag_click" + }, + { + "label": "drag_handle", + "content": "drag_handle" + }, + { + "label": "drag_indicator", + "content": "drag_indicator" + }, + { + "label": "drag_pan", + "content": "drag_pan" + }, + { + "label": "draw", + "content": "draw" + }, + { + "label": "draw_abstract", + "content": "draw_abstract" + }, + { + "label": "draw_collage", + "content": "draw_collage" + }, + { + "label": "dresser", + "content": "dresser" + }, + { + "label": "drive_file_move", + "content": "drive_file_move" + }, + { + "label": "drive_folder_upload", + "content": "drive_folder_upload" + }, + { + "label": "dropdown", + "content": "dropdown" + }, + { + "label": "dry", + "content": "dry" + }, + { + "label": "dry_cleaning", + "content": "dry_cleaning" + }, + { + "label": "dual_screen", + "content": "dual_screen" + }, + { + "label": "duo", + "content": "duo" + }, + { + "label": "dvr", + "content": "dvr" + }, + { + "label": "dynamic_feed", + "content": "dynamic_feed" + }, + { + "label": "dynamic_form", + "content": "dynamic_form" + }, + { + "label": "e911_avatar", + "content": "e911_avatar" + }, + { + "label": "e911_emergency", + "content": "e911_emergency" + }, + { + "label": "e_mobiledata", + "content": "e_mobiledata" + }, + { + "label": "e_mobiledata_badge", + "content": "e_mobiledata_badge" + }, + { + "label": "earbuds", + "content": "earbuds" + }, + { + "label": "earbuds_battery", + "content": "earbuds_battery" + }, + { + "label": "early_on", + "content": "early_on" + }, + { + "label": "earthquake", + "content": "earthquake" + }, + { + "label": "east", + "content": "east" + }, + { + "label": "ecg", + "content": "ecg" + }, + { + "label": "ecg_heart", + "content": "ecg_heart" + }, + { + "label": "eco", + "content": "eco" + }, + { + "label": "eda", + "content": "eda" + }, + { + "label": "edgesensor_high", + "content": "edgesensor_high" + }, + { + "label": "edgesensor_low", + "content": "edgesensor_low" + }, + { + "label": "edit", + "content": "edit" + }, + { + "label": "edit_attributes", + "content": "edit_attributes" + }, + { + "label": "edit_calendar", + "content": "edit_calendar" + }, + { + "label": "edit_document", + "content": "edit_document" + }, + { + "label": "edit_location", + "content": "edit_location" + }, + { + "label": "edit_location_alt", + "content": "edit_location_alt" + }, + { + "label": "edit_note", + "content": "edit_note" + }, + { + "label": "edit_notifications", + "content": "edit_notifications" + }, + { + "label": "edit_off", + "content": "edit_off" + }, + { + "label": "edit_road", + "content": "edit_road" + }, + { + "label": "edit_square", + "content": "edit_square" + }, + { + "label": "editor_choice", + "content": "editor_choice" + }, + { + "label": "egg", + "content": "egg" + }, + { + "label": "egg_alt", + "content": "egg_alt" + }, + { + "label": "eject", + "content": "eject" + }, + { + "label": "elderly", + "content": "elderly" + }, + { + "label": "elderly_woman", + "content": "elderly_woman" + }, + { + "label": "electric_bike", + "content": "electric_bike" + }, + { + "label": "electric_bolt", + "content": "electric_bolt" + }, + { + "label": "electric_car", + "content": "electric_car" + }, + { + "label": "electric_meter", + "content": "electric_meter" + }, + { + "label": "electric_moped", + "content": "electric_moped" + }, + { + "label": "electric_rickshaw", + "content": "electric_rickshaw" + }, + { + "label": "electric_scooter", + "content": "electric_scooter" + }, + { + "label": "electrical_services", + "content": "electrical_services" + }, + { + "label": "elevation", + "content": "elevation" + }, + { + "label": "elevator", + "content": "elevator" + }, + { + "label": "emergency", + "content": "emergency" + }, + { + "label": "emergency_heat", + "content": "emergency_heat" + }, + { + "label": "emergency_heat_2", + "content": "emergency_heat_2" + }, + { + "label": "emergency_home", + "content": "emergency_home" + }, + { + "label": "emergency_recording", + "content": "emergency_recording" + }, + { + "label": "emergency_share", + "content": "emergency_share" + }, + { + "label": "emergency_share_off", + "content": "emergency_share_off" + }, + { + "label": "emoji_events", + "content": "emoji_events" + }, + { + "label": "emoji_food_beverage", + "content": "emoji_food_beverage" + }, + { + "label": "emoji_language", + "content": "emoji_language" + }, + { + "label": "emoji_nature", + "content": "emoji_nature" + }, + { + "label": "emoji_objects", + "content": "emoji_objects" + }, + { + "label": "emoji_people", + "content": "emoji_people" + }, + { + "label": "emoji_symbols", + "content": "emoji_symbols" + }, + { + "label": "emoji_transportation", + "content": "emoji_transportation" + }, + { + "label": "emoticon", + "content": "emoticon" + }, + { + "label": "empty_dashboard", + "content": "empty_dashboard" + }, + { + "label": "enable", + "content": "enable" + }, + { + "label": "encrypted", + "content": "encrypted" + }, + { + "label": "endocrinology", + "content": "endocrinology" + }, + { + "label": "energy", + "content": "energy" + }, + { + "label": "energy_program_saving", + "content": "energy_program_saving" + }, + { + "label": "energy_program_time_used", + "content": "energy_program_time_used" + }, + { + "label": "energy_savings_leaf", + "content": "energy_savings_leaf" + }, + { + "label": "engineering", + "content": "engineering" + }, + { + "label": "enhanced_encryption", + "content": "enhanced_encryption" + }, + { + "label": "ent", + "content": "ent" + }, + { + "label": "enterprise", + "content": "enterprise" + }, + { + "label": "enterprise_off", + "content": "enterprise_off" + }, + { + "label": "equal", + "content": "equal" + }, + { + "label": "equalizer", + "content": "equalizer" + }, + { + "label": "error", + "content": "error" + }, + { + "label": "error_med", + "content": "error_med" + }, + { + "label": "escalator", + "content": "escalator" + }, + { + "label": "escalator_warning", + "content": "escalator_warning" + }, + { + "label": "euro", + "content": "euro" + }, + { + "label": "euro_symbol", + "content": "euro_symbol" + }, + { + "label": "ev_charger", + "content": "ev_charger" + }, + { + "label": "ev_mobiledata_badge", + "content": "ev_mobiledata_badge" + }, + { + "label": "ev_shadow", + "content": "ev_shadow" + }, + { + "label": "ev_shadow_add", + "content": "ev_shadow_add" + }, + { + "label": "ev_shadow_minus", + "content": "ev_shadow_minus" + }, + { + "label": "ev_station", + "content": "ev_station" + }, + { + "label": "event", + "content": "event" + }, + { + "label": "event_available", + "content": "event_available" + }, + { + "label": "event_busy", + "content": "event_busy" + }, + { + "label": "event_list", + "content": "event_list" + }, + { + "label": "event_note", + "content": "event_note" + }, + { + "label": "event_repeat", + "content": "event_repeat" + }, + { + "label": "event_seat", + "content": "event_seat" + }, + { + "label": "event_upcoming", + "content": "event_upcoming" + }, + { + "label": "exclamation", + "content": "exclamation" + }, + { + "label": "exercise", + "content": "exercise" + }, + { + "label": "exit_to_app", + "content": "exit_to_app" + }, + { + "label": "expand", + "content": "expand" + }, + { + "label": "expand_all", + "content": "expand_all" + }, + { + "label": "expand_circle_down", + "content": "expand_circle_down" + }, + { + "label": "expand_circle_right", + "content": "expand_circle_right" + }, + { + "label": "expand_circle_up", + "content": "expand_circle_up" + }, + { + "label": "expand_content", + "content": "expand_content" + }, + { + "label": "experiment", + "content": "experiment" + }, + { + "label": "explicit", + "content": "explicit" + }, + { + "label": "explore", + "content": "explore" + }, + { + "label": "explore_nearby", + "content": "explore_nearby" + }, + { + "label": "explore_off", + "content": "explore_off" + }, + { + "label": "explosion", + "content": "explosion" + }, + { + "label": "export_notes", + "content": "export_notes" + }, + { + "label": "exposure", + "content": "exposure" + }, + { + "label": "exposure_neg_1", + "content": "exposure_neg_1" + }, + { + "label": "exposure_neg_2", + "content": "exposure_neg_2" + }, + { + "label": "exposure_plus_1", + "content": "exposure_plus_1" + }, + { + "label": "exposure_plus_2", + "content": "exposure_plus_2" + }, + { + "label": "exposure_zero", + "content": "exposure_zero" + }, + { + "label": "extension", + "content": "extension" + }, + { + "label": "extension_off", + "content": "extension_off" + }, + { + "label": "eye_tracking", + "content": "eye_tracking" + }, + { + "label": "eyeglasses", + "content": "eyeglasses" + }, + { + "label": "face", + "content": "face" + }, + { + "label": "face_2", + "content": "face_2" + }, + { + "label": "face_3", + "content": "face_3" + }, + { + "label": "face_4", + "content": "face_4" + }, + { + "label": "face_5", + "content": "face_5" + }, + { + "label": "face_6", + "content": "face_6" + }, + { + "label": "face_retouching_off", + "content": "face_retouching_off" + }, + { + "label": "fact_check", + "content": "fact_check" + }, + { + "label": "factory", + "content": "factory" + }, + { + "label": "falling", + "content": "falling" + }, + { + "label": "familiar_face_and_zone", + "content": "familiar_face_and_zone" + }, + { + "label": "family_history", + "content": "family_history" + }, + { + "label": "family_home", + "content": "family_home" + }, + { + "label": "family_link", + "content": "family_link" + }, + { + "label": "family_restroom", + "content": "family_restroom" + }, + { + "label": "family_star", + "content": "family_star" + }, + { + "label": "farsight_digital", + "content": "farsight_digital" + }, + { + "label": "fast_forward", + "content": "fast_forward" + }, + { + "label": "fast_rewind", + "content": "fast_rewind" + }, + { + "label": "fastfood", + "content": "fastfood" + }, + { + "label": "faucet", + "content": "faucet" + }, + { + "label": "favorite", + "content": "favorite" + }, + { + "label": "fax", + "content": "fax" + }, + { + "label": "feature_search", + "content": "feature_search" + }, + { + "label": "featured_play_list", + "content": "featured_play_list" + }, + { + "label": "featured_seasonal_and_gifts", + "content": "featured_seasonal_and_gifts" + }, + { + "label": "featured_video", + "content": "featured_video" + }, + { + "label": "feedback", + "content": "feedback" + }, + { + "label": "female", + "content": "female" + }, + { + "label": "femur", + "content": "femur" + }, + { + "label": "femur_alt", + "content": "femur_alt" + }, + { + "label": "fence", + "content": "fence" + }, + { + "label": "fertile", + "content": "fertile" + }, + { + "label": "festival", + "content": "festival" + }, + { + "label": "fiber_dvr", + "content": "fiber_dvr" + }, + { + "label": "fiber_manual_record", + "content": "fiber_manual_record" + }, + { + "label": "fiber_new", + "content": "fiber_new" + }, + { + "label": "fiber_pin", + "content": "fiber_pin" + }, + { + "label": "fiber_smart_record", + "content": "fiber_smart_record" + }, + { + "label": "file_copy", + "content": "file_copy" + }, + { + "label": "file_copy_off", + "content": "file_copy_off" + }, + { + "label": "file_download_off", + "content": "file_download_off" + }, + { + "label": "file_map", + "content": "file_map" + }, + { + "label": "file_open", + "content": "file_open" + }, + { + "label": "file_present", + "content": "file_present" + }, + { + "label": "file_save", + "content": "file_save" + }, + { + "label": "file_save_off", + "content": "file_save_off" + }, + { + "label": "file_upload_off", + "content": "file_upload_off" + }, + { + "label": "filter", + "content": "filter" + }, + { + "label": "filter_1", + "content": "filter_1" + }, + { + "label": "filter_2", + "content": "filter_2" + }, + { + "label": "filter_3", + "content": "filter_3" + }, + { + "label": "filter_4", + "content": "filter_4" + }, + { + "label": "filter_5", + "content": "filter_5" + }, + { + "label": "filter_6", + "content": "filter_6" + }, + { + "label": "filter_7", + "content": "filter_7" + }, + { + "label": "filter_8", + "content": "filter_8" + }, + { + "label": "filter_9", + "content": "filter_9" + }, + { + "label": "filter_9_plus", + "content": "filter_9_plus" + }, + { + "label": "filter_alt", + "content": "filter_alt" + }, + { + "label": "filter_alt_off", + "content": "filter_alt_off" + }, + { + "label": "filter_b_and_w", + "content": "filter_b_and_w" + }, + { + "label": "filter_center_focus", + "content": "filter_center_focus" + }, + { + "label": "filter_drama", + "content": "filter_drama" + }, + { + "label": "filter_frames", + "content": "filter_frames" + }, + { + "label": "filter_hdr", + "content": "filter_hdr" + }, + { + "label": "filter_list", + "content": "filter_list" + }, + { + "label": "filter_list_off", + "content": "filter_list_off" + }, + { + "label": "filter_none", + "content": "filter_none" + }, + { + "label": "filter_retrolux", + "content": "filter_retrolux" + }, + { + "label": "filter_tilt_shift", + "content": "filter_tilt_shift" + }, + { + "label": "filter_vintage", + "content": "filter_vintage" + }, + { + "label": "finance", + "content": "finance" + }, + { + "label": "finance_chip", + "content": "finance_chip" + }, + { + "label": "finance_mode", + "content": "finance_mode" + }, + { + "label": "find_in_page", + "content": "find_in_page" + }, + { + "label": "find_replace", + "content": "find_replace" + }, + { + "label": "fingerprint", + "content": "fingerprint" + }, + { + "label": "fingerprint_off", + "content": "fingerprint_off" + }, + { + "label": "fire_extinguisher", + "content": "fire_extinguisher" + }, + { + "label": "fire_hydrant", + "content": "fire_hydrant" + }, + { + "label": "fire_truck", + "content": "fire_truck" + }, + { + "label": "fireplace", + "content": "fireplace" + }, + { + "label": "first_page", + "content": "first_page" + }, + { + "label": "fit_page", + "content": "fit_page" + }, + { + "label": "fit_screen", + "content": "fit_screen" + }, + { + "label": "fit_width", + "content": "fit_width" + }, + { + "label": "fitness_center", + "content": "fitness_center" + }, + { + "label": "fitness_tracker", + "content": "fitness_tracker" + }, + { + "label": "flag", + "content": "flag" + }, + { + "label": "flag_circle", + "content": "flag_circle" + }, + { + "label": "flaky", + "content": "flaky" + }, + { + "label": "flare", + "content": "flare" + }, + { + "label": "flash_auto", + "content": "flash_auto" + }, + { + "label": "flash_off", + "content": "flash_off" + }, + { + "label": "flash_on", + "content": "flash_on" + }, + { + "label": "flashlight_off", + "content": "flashlight_off" + }, + { + "label": "flashlight_on", + "content": "flashlight_on" + }, + { + "label": "flatware", + "content": "flatware" + }, + { + "label": "flex_direction", + "content": "flex_direction" + }, + { + "label": "flex_no_wrap", + "content": "flex_no_wrap" + }, + { + "label": "flex_wrap", + "content": "flex_wrap" + }, + { + "label": "flight", + "content": "flight" + }, + { + "label": "flight_class", + "content": "flight_class" + }, + { + "label": "flight_land", + "content": "flight_land" + }, + { + "label": "flight_takeoff", + "content": "flight_takeoff" + }, + { + "label": "flights_and_hotels", + "content": "flights_and_hotels" + }, + { + "label": "flightsmode", + "content": "flightsmode" + }, + { + "label": "flip", + "content": "flip" + }, + { + "label": "flip_camera_android", + "content": "flip_camera_android" + }, + { + "label": "flip_camera_ios", + "content": "flip_camera_ios" + }, + { + "label": "flip_to_back", + "content": "flip_to_back" + }, + { + "label": "flip_to_front", + "content": "flip_to_front" + }, + { + "label": "float_landscape_2", + "content": "float_landscape_2" + }, + { + "label": "float_portrait_2", + "content": "float_portrait_2" + }, + { + "label": "flood", + "content": "flood" + }, + { + "label": "floor", + "content": "floor" + }, + { + "label": "floor_lamp", + "content": "floor_lamp" + }, + { + "label": "flowsheet", + "content": "flowsheet" + }, + { + "label": "fluid", + "content": "fluid" + }, + { + "label": "fluid_balance", + "content": "fluid_balance" + }, + { + "label": "fluid_med", + "content": "fluid_med" + }, + { + "label": "fluorescent", + "content": "fluorescent" + }, + { + "label": "flutter", + "content": "flutter" + }, + { + "label": "flutter_dash", + "content": "flutter_dash" + }, + { + "label": "flyover", + "content": "flyover" + }, + { + "label": "fmd_bad", + "content": "fmd_bad" + }, + { + "label": "foggy", + "content": "foggy" + }, + { + "label": "folded_hands", + "content": "folded_hands" + }, + { + "label": "folder", + "content": "folder" + }, + { + "label": "folder_copy", + "content": "folder_copy" + }, + { + "label": "folder_data", + "content": "folder_data" + }, + { + "label": "folder_delete", + "content": "folder_delete" + }, + { + "label": "folder_limited", + "content": "folder_limited" + }, + { + "label": "folder_managed", + "content": "folder_managed" + }, + { + "label": "folder_off", + "content": "folder_off" + }, + { + "label": "folder_open", + "content": "folder_open" + }, + { + "label": "folder_shared", + "content": "folder_shared" + }, + { + "label": "folder_special", + "content": "folder_special" + }, + { + "label": "folder_supervised", + "content": "folder_supervised" + }, + { + "label": "folder_zip", + "content": "folder_zip" + }, + { + "label": "follow_the_signs", + "content": "follow_the_signs" + }, + { + "label": "font_download", + "content": "font_download" + }, + { + "label": "font_download_off", + "content": "font_download_off" + }, + { + "label": "food_bank", + "content": "food_bank" + }, + { + "label": "foot_bones", + "content": "foot_bones" + }, + { + "label": "footprint", + "content": "footprint" + }, + { + "label": "for_you", + "content": "for_you" + }, + { + "label": "forest", + "content": "forest" + }, + { + "label": "fork_left", + "content": "fork_left" + }, + { + "label": "fork_right", + "content": "fork_right" + }, + { + "label": "forklift", + "content": "forklift" + }, + { + "label": "format_align_center", + "content": "format_align_center" + }, + { + "label": "format_align_justify", + "content": "format_align_justify" + }, + { + "label": "format_align_left", + "content": "format_align_left" + }, + { + "label": "format_align_right", + "content": "format_align_right" + }, + { + "label": "format_bold", + "content": "format_bold" + }, + { + "label": "format_clear", + "content": "format_clear" + }, + { + "label": "format_color_fill", + "content": "format_color_fill" + }, + { + "label": "format_color_reset", + "content": "format_color_reset" + }, + { + "label": "format_color_text", + "content": "format_color_text" + }, + { + "label": "format_h1", + "content": "format_h1" + }, + { + "label": "format_h2", + "content": "format_h2" + }, + { + "label": "format_h3", + "content": "format_h3" + }, + { + "label": "format_h4", + "content": "format_h4" + }, + { + "label": "format_h5", + "content": "format_h5" + }, + { + "label": "format_h6", + "content": "format_h6" + }, + { + "label": "format_image_left", + "content": "format_image_left" + }, + { + "label": "format_image_right", + "content": "format_image_right" + }, + { + "label": "format_indent_decrease", + "content": "format_indent_decrease" + }, + { + "label": "format_indent_increase", + "content": "format_indent_increase" + }, + { + "label": "format_ink_highlighter", + "content": "format_ink_highlighter" + }, + { + "label": "format_italic", + "content": "format_italic" + }, + { + "label": "format_letter_spacing", + "content": "format_letter_spacing" + }, + { + "label": "format_letter_spacing_2", + "content": "format_letter_spacing_2" + }, + { + "label": "format_letter_spacing_standard", + "content": "format_letter_spacing_standard" + }, + { + "label": "format_letter_spacing_wide", + "content": "format_letter_spacing_wide" + }, + { + "label": "format_letter_spacing_wider", + "content": "format_letter_spacing_wider" + }, + { + "label": "format_line_spacing", + "content": "format_line_spacing" + }, + { + "label": "format_list_bulleted", + "content": "format_list_bulleted" + }, + { + "label": "format_list_bulleted_add", + "content": "format_list_bulleted_add" + }, + { + "label": "format_list_numbered", + "content": "format_list_numbered" + }, + { + "label": "format_list_numbered_rtl", + "content": "format_list_numbered_rtl" + }, + { + "label": "format_overline", + "content": "format_overline" + }, + { + "label": "format_paint", + "content": "format_paint" + }, + { + "label": "format_paragraph", + "content": "format_paragraph" + }, + { + "label": "format_quote", + "content": "format_quote" + }, + { + "label": "format_shapes", + "content": "format_shapes" + }, + { + "label": "format_size", + "content": "format_size" + }, + { + "label": "format_strikethrough", + "content": "format_strikethrough" + }, + { + "label": "format_text_clip", + "content": "format_text_clip" + }, + { + "label": "format_text_overflow", + "content": "format_text_overflow" + }, + { + "label": "format_text_wrap", + "content": "format_text_wrap" + }, + { + "label": "format_textdirection_l_to_r", + "content": "format_textdirection_l_to_r" + }, + { + "label": "format_textdirection_r_to_l", + "content": "format_textdirection_r_to_l" + }, + { + "label": "format_textdirection_vertical", + "content": "format_textdirection_vertical" + }, + { + "label": "format_underlined", + "content": "format_underlined" + }, + { + "label": "format_underlined_squiggle", + "content": "format_underlined_squiggle" + }, + { + "label": "forms_add_on", + "content": "forms_add_on" + }, + { + "label": "forms_apps_script", + "content": "forms_apps_script" + }, + { + "label": "fort", + "content": "fort" + }, + { + "label": "forum", + "content": "forum" + }, + { + "label": "forward", + "content": "forward" + }, + { + "label": "forward_10", + "content": "forward_10" + }, + { + "label": "forward_30", + "content": "forward_30" + }, + { + "label": "forward_5", + "content": "forward_5" + }, + { + "label": "forward_circle", + "content": "forward_circle" + }, + { + "label": "forward_media", + "content": "forward_media" + }, + { + "label": "forward_to_inbox", + "content": "forward_to_inbox" + }, + { + "label": "foundation", + "content": "foundation" + }, + { + "label": "frame_inspect", + "content": "frame_inspect" + }, + { + "label": "frame_person", + "content": "frame_person" + }, + { + "label": "frame_person_mic", + "content": "frame_person_mic" + }, + { + "label": "frame_person_off", + "content": "frame_person_off" + }, + { + "label": "frame_reload", + "content": "frame_reload" + }, + { + "label": "frame_source", + "content": "frame_source" + }, + { + "label": "free_cancellation", + "content": "free_cancellation" + }, + { + "label": "front_hand", + "content": "front_hand" + }, + { + "label": "front_loader", + "content": "front_loader" + }, + { + "label": "full_coverage", + "content": "full_coverage" + }, + { + "label": "full_hd", + "content": "full_hd" + }, + { + "label": "full_stacked_bar_chart", + "content": "full_stacked_bar_chart" + }, + { + "label": "fullscreen", + "content": "fullscreen" + }, + { + "label": "fullscreen_exit", + "content": "fullscreen_exit" + }, + { + "label": "fullscreen_portrait", + "content": "fullscreen_portrait" + }, + { + "label": "function", + "content": "function" + }, + { + "label": "functions", + "content": "functions" + }, + { + "label": "funicular", + "content": "funicular" + }, + { + "label": "g_mobiledata", + "content": "g_mobiledata" + }, + { + "label": "g_mobiledata_badge", + "content": "g_mobiledata_badge" + }, + { + "label": "g_translate", + "content": "g_translate" + }, + { + "label": "gallery_thumbnail", + "content": "gallery_thumbnail" + }, + { + "label": "gamepad", + "content": "gamepad" + }, + { + "label": "garage", + "content": "garage" + }, + { + "label": "garage_door", + "content": "garage_door" + }, + { + "label": "garage_home", + "content": "garage_home" + }, + { + "label": "garden_cart", + "content": "garden_cart" + }, + { + "label": "gas_meter", + "content": "gas_meter" + }, + { + "label": "gastroenterology", + "content": "gastroenterology" + }, + { + "label": "gate", + "content": "gate" + }, + { + "label": "gavel", + "content": "gavel" + }, + { + "label": "general_device", + "content": "general_device" + }, + { + "label": "genetics", + "content": "genetics" + }, + { + "label": "genres", + "content": "genres" + }, + { + "label": "gesture", + "content": "gesture" + }, + { + "label": "gesture_select", + "content": "gesture_select" + }, + { + "label": "gif", + "content": "gif" + }, + { + "label": "gif_box", + "content": "gif_box" + }, + { + "label": "girl", + "content": "girl" + }, + { + "label": "gite", + "content": "gite" + }, + { + "label": "glass_cup", + "content": "glass_cup" + }, + { + "label": "globe", + "content": "globe" + }, + { + "label": "globe_asia", + "content": "globe_asia" + }, + { + "label": "globe_uk", + "content": "globe_uk" + }, + { + "label": "glucose", + "content": "glucose" + }, + { + "label": "glyphs", + "content": "glyphs" + }, + { + "label": "go_to_line", + "content": "go_to_line" + }, + { + "label": "golf_course", + "content": "golf_course" + }, + { + "label": "gondola_lift", + "content": "gondola_lift" + }, + { + "label": "google_home_devices", + "content": "google_home_devices" + }, + { + "label": "google_tv_remote", + "content": "google_tv_remote" + }, + { + "label": "google_wifi", + "content": "google_wifi" + }, + { + "label": "gpp_bad", + "content": "gpp_bad" + }, + { + "label": "gpp_maybe", + "content": "gpp_maybe" + }, + { + "label": "grade", + "content": "grade" + }, + { + "label": "gradient", + "content": "gradient" + }, + { + "label": "grading", + "content": "grading" + }, + { + "label": "grain", + "content": "grain" + }, + { + "label": "graphic_eq", + "content": "graphic_eq" + }, + { + "label": "grass", + "content": "grass" + }, + { + "label": "grid_3x3", + "content": "grid_3x3" + }, + { + "label": "grid_3x3_off", + "content": "grid_3x3_off" + }, + { + "label": "grid_4x4", + "content": "grid_4x4" + }, + { + "label": "grid_goldenratio", + "content": "grid_goldenratio" + }, + { + "label": "grid_guides", + "content": "grid_guides" + }, + { + "label": "grid_off", + "content": "grid_off" + }, + { + "label": "grid_on", + "content": "grid_on" + }, + { + "label": "grid_view", + "content": "grid_view" + }, + { + "label": "grocery", + "content": "grocery" + }, + { + "label": "group", + "content": "group" + }, + { + "label": "group_add", + "content": "group_add" + }, + { + "label": "group_off", + "content": "group_off" + }, + { + "label": "group_remove", + "content": "group_remove" + }, + { + "label": "group_work", + "content": "group_work" + }, + { + "label": "grouped_bar_chart", + "content": "grouped_bar_chart" + }, + { + "label": "groups", + "content": "groups" + }, + { + "label": "groups_2", + "content": "groups_2" + }, + { + "label": "groups_3", + "content": "groups_3" + }, + { + "label": "guardian", + "content": "guardian" + }, + { + "label": "gynecology", + "content": "gynecology" + }, + { + "label": "h_mobiledata", + "content": "h_mobiledata" + }, + { + "label": "h_mobiledata_badge", + "content": "h_mobiledata_badge" + }, + { + "label": "h_plus_mobiledata", + "content": "h_plus_mobiledata" + }, + { + "label": "h_plus_mobiledata_badge", + "content": "h_plus_mobiledata_badge" + }, + { + "label": "hail", + "content": "hail" + }, + { + "label": "hallway", + "content": "hallway" + }, + { + "label": "hand_bones", + "content": "hand_bones" + }, + { + "label": "hand_gesture", + "content": "hand_gesture" + }, + { + "label": "handheld_controller", + "content": "handheld_controller" + }, + { + "label": "handshake", + "content": "handshake" + }, + { + "label": "handyman", + "content": "handyman" + }, + { + "label": "hangout_video", + "content": "hangout_video" + }, + { + "label": "hangout_video_off", + "content": "hangout_video_off" + }, + { + "label": "hard_drive", + "content": "hard_drive" + }, + { + "label": "hard_drive_2", + "content": "hard_drive_2" + }, + { + "label": "hardware", + "content": "hardware" + }, + { + "label": "hd", + "content": "hd" + }, + { + "label": "hdr_auto", + "content": "hdr_auto" + }, + { + "label": "hdr_auto_select", + "content": "hdr_auto_select" + }, + { + "label": "hdr_enhanced_select", + "content": "hdr_enhanced_select" + }, + { + "label": "hdr_off", + "content": "hdr_off" + }, + { + "label": "hdr_off_select", + "content": "hdr_off_select" + }, + { + "label": "hdr_on", + "content": "hdr_on" + }, + { + "label": "hdr_on_select", + "content": "hdr_on_select" + }, + { + "label": "hdr_plus", + "content": "hdr_plus" + }, + { + "label": "hdr_plus_off", + "content": "hdr_plus_off" + }, + { + "label": "hdr_strong", + "content": "hdr_strong" + }, + { + "label": "hdr_weak", + "content": "hdr_weak" + }, + { + "label": "head_mounted_device", + "content": "head_mounted_device" + }, + { + "label": "headphones", + "content": "headphones" + }, + { + "label": "headphones_battery", + "content": "headphones_battery" + }, + { + "label": "headset_mic", + "content": "headset_mic" + }, + { + "label": "headset_off", + "content": "headset_off" + }, + { + "label": "healing", + "content": "healing" + }, + { + "label": "health_and_beauty", + "content": "health_and_beauty" + }, + { + "label": "health_and_safety", + "content": "health_and_safety" + }, + { + "label": "health_metrics", + "content": "health_metrics" + }, + { + "label": "heap_snapshot_large", + "content": "heap_snapshot_large" + }, + { + "label": "heap_snapshot_multiple", + "content": "heap_snapshot_multiple" + }, + { + "label": "heap_snapshot_thumbnail", + "content": "heap_snapshot_thumbnail" + }, + { + "label": "hearing", + "content": "hearing" + }, + { + "label": "hearing_aid", + "content": "hearing_aid" + }, + { + "label": "hearing_disabled", + "content": "hearing_disabled" + }, + { + "label": "heart_broken", + "content": "heart_broken" + }, + { + "label": "heart_check", + "content": "heart_check" + }, + { + "label": "heart_minus", + "content": "heart_minus" + }, + { + "label": "heart_plus", + "content": "heart_plus" + }, + { + "label": "heat", + "content": "heat" + }, + { + "label": "heat_pump", + "content": "heat_pump" + }, + { + "label": "heat_pump_balance", + "content": "heat_pump_balance" + }, + { + "label": "height", + "content": "height" + }, + { + "label": "helicopter", + "content": "helicopter" + }, + { + "label": "help", + "content": "help" + }, + { + "label": "help_center", + "content": "help_center" + }, + { + "label": "help_clinic", + "content": "help_clinic" + }, + { + "label": "hematology", + "content": "hematology" + }, + { + "label": "hevc", + "content": "hevc" + }, + { + "label": "hexagon", + "content": "hexagon" + }, + { + "label": "hide", + "content": "hide" + }, + { + "label": "hide_image", + "content": "hide_image" + }, + { + "label": "hide_source", + "content": "hide_source" + }, + { + "label": "high_density", + "content": "high_density" + }, + { + "label": "high_quality", + "content": "high_quality" + }, + { + "label": "high_res", + "content": "high_res" + }, + { + "label": "highlight", + "content": "highlight" + }, + { + "label": "highlight_keyboard_focus", + "content": "highlight_keyboard_focus" + }, + { + "label": "highlight_mouse_cursor", + "content": "highlight_mouse_cursor" + }, + { + "label": "highlight_text_cursor", + "content": "highlight_text_cursor" + }, + { + "label": "highlighter_size_1", + "content": "highlighter_size_1" + }, + { + "label": "highlighter_size_2", + "content": "highlighter_size_2" + }, + { + "label": "highlighter_size_3", + "content": "highlighter_size_3" + }, + { + "label": "highlighter_size_4", + "content": "highlighter_size_4" + }, + { + "label": "highlighter_size_5", + "content": "highlighter_size_5" + }, + { + "label": "hiking", + "content": "hiking" + }, + { + "label": "history", + "content": "history" + }, + { + "label": "history_edu", + "content": "history_edu" + }, + { + "label": "history_off", + "content": "history_off" + }, + { + "label": "history_toggle_off", + "content": "history_toggle_off" + }, + { + "label": "hive", + "content": "hive" + }, + { + "label": "hls", + "content": "hls" + }, + { + "label": "hls_off", + "content": "hls_off" + }, + { + "label": "holiday_village", + "content": "holiday_village" + }, + { + "label": "home", + "content": "home" + }, + { + "label": "home_and_garden", + "content": "home_and_garden" + }, + { + "label": "home_app_logo", + "content": "home_app_logo" + }, + { + "label": "home_health", + "content": "home_health" + }, + { + "label": "home_improvement_and_tools", + "content": "home_improvement_and_tools" + }, + { + "label": "home_iot_device", + "content": "home_iot_device" + }, + { + "label": "home_max", + "content": "home_max" + }, + { + "label": "home_max_dots", + "content": "home_max_dots" + }, + { + "label": "home_mini", + "content": "home_mini" + }, + { + "label": "home_pin", + "content": "home_pin" + }, + { + "label": "home_repair_service", + "content": "home_repair_service" + }, + { + "label": "home_speaker", + "content": "home_speaker" + }, + { + "label": "home_storage", + "content": "home_storage" + }, + { + "label": "home_work", + "content": "home_work" + }, + { + "label": "horizontal_distribute", + "content": "horizontal_distribute" + }, + { + "label": "horizontal_rule", + "content": "horizontal_rule" + }, + { + "label": "horizontal_split", + "content": "horizontal_split" + }, + { + "label": "hot_tub", + "content": "hot_tub" + }, + { + "label": "hotel", + "content": "hotel" + }, + { + "label": "hotel_class", + "content": "hotel_class" + }, + { + "label": "hourglass", + "content": "hourglass" + }, + { + "label": "hourglass_bottom", + "content": "hourglass_bottom" + }, + { + "label": "hourglass_disabled", + "content": "hourglass_disabled" + }, + { + "label": "hourglass_empty", + "content": "hourglass_empty" + }, + { + "label": "hourglass_top", + "content": "hourglass_top" + }, + { + "label": "house", + "content": "house" + }, + { + "label": "house_siding", + "content": "house_siding" + }, + { + "label": "house_with_shield", + "content": "house_with_shield" + }, + { + "label": "houseboat", + "content": "houseboat" + }, + { + "label": "household_supplies", + "content": "household_supplies" + }, + { + "label": "hov", + "content": "hov" + }, + { + "label": "how_to_reg", + "content": "how_to_reg" + }, + { + "label": "how_to_vote", + "content": "how_to_vote" + }, + { + "label": "hr_resting", + "content": "hr_resting" + }, + { + "label": "html", + "content": "html" + }, + { + "label": "http", + "content": "http" + }, + { + "label": "hub", + "content": "hub" + }, + { + "label": "humerus", + "content": "humerus" + }, + { + "label": "humerus_alt", + "content": "humerus_alt" + }, + { + "label": "humidity_high", + "content": "humidity_high" + }, + { + "label": "humidity_indoor", + "content": "humidity_indoor" + }, + { + "label": "humidity_low", + "content": "humidity_low" + }, + { + "label": "humidity_mid", + "content": "humidity_mid" + }, + { + "label": "humidity_percentage", + "content": "humidity_percentage" + }, + { + "label": "hvac", + "content": "hvac" + }, + { + "label": "ice_skating", + "content": "ice_skating" + }, + { + "label": "icecream", + "content": "icecream" + }, + { + "label": "id_card", + "content": "id_card" + }, + { + "label": "ifl", + "content": "ifl" + }, + { + "label": "iframe", + "content": "iframe" + }, + { + "label": "iframe_off", + "content": "iframe_off" + }, + { + "label": "image", + "content": "image" + }, + { + "label": "image_aspect_ratio", + "content": "image_aspect_ratio" + }, + { + "label": "image_search", + "content": "image_search" + }, + { + "label": "imagesearch_roller", + "content": "imagesearch_roller" + }, + { + "label": "imagesmode", + "content": "imagesmode" + }, + { + "label": "immunology", + "content": "immunology" + }, + { + "label": "import_contacts", + "content": "import_contacts" + }, + { + "label": "important_devices", + "content": "important_devices" + }, + { + "label": "in_home_mode", + "content": "in_home_mode" + }, + { + "label": "inactive_order", + "content": "inactive_order" + }, + { + "label": "inbox", + "content": "inbox" + }, + { + "label": "inbox_customize", + "content": "inbox_customize" + }, + { + "label": "incomplete_circle", + "content": "incomplete_circle" + }, + { + "label": "indeterminate_check_box", + "content": "indeterminate_check_box" + }, + { + "label": "indeterminate_question_box", + "content": "indeterminate_question_box" + }, + { + "label": "info", + "content": "info" + }, + { + "label": "info_i", + "content": "info_i" + }, + { + "label": "infrared", + "content": "infrared" + }, + { + "label": "ink_eraser", + "content": "ink_eraser" + }, + { + "label": "ink_eraser_off", + "content": "ink_eraser_off" + }, + { + "label": "ink_highlighter", + "content": "ink_highlighter" + }, + { + "label": "ink_highlighter_move", + "content": "ink_highlighter_move" + }, + { + "label": "ink_marker", + "content": "ink_marker" + }, + { + "label": "ink_pen", + "content": "ink_pen" + }, + { + "label": "inpatient", + "content": "inpatient" + }, + { + "label": "input", + "content": "input" + }, + { + "label": "input_circle", + "content": "input_circle" + }, + { + "label": "insert_chart", + "content": "insert_chart" + }, + { + "label": "insert_page_break", + "content": "insert_page_break" + }, + { + "label": "insert_text", + "content": "insert_text" + }, + { + "label": "install_desktop", + "content": "install_desktop" + }, + { + "label": "install_mobile", + "content": "install_mobile" + }, + { + "label": "instant_mix", + "content": "instant_mix" + }, + { + "label": "integration_instructions", + "content": "integration_instructions" + }, + { + "label": "interactive_space", + "content": "interactive_space" + }, + { + "label": "interests", + "content": "interests" + }, + { + "label": "interpreter_mode", + "content": "interpreter_mode" + }, + { + "label": "inventory", + "content": "inventory" + }, + { + "label": "inventory_2", + "content": "inventory_2" + }, + { + "label": "invert_colors", + "content": "invert_colors" + }, + { + "label": "invert_colors_off", + "content": "invert_colors_off" + }, + { + "label": "ios", + "content": "ios" + }, + { + "label": "ios_share", + "content": "ios_share" + }, + { + "label": "iron", + "content": "iron" + }, + { + "label": "jamboard_kiosk", + "content": "jamboard_kiosk" + }, + { + "label": "javascript", + "content": "javascript" + }, + { + "label": "join", + "content": "join" + }, + { + "label": "join_inner", + "content": "join_inner" + }, + { + "label": "join_left", + "content": "join_left" + }, + { + "label": "join_right", + "content": "join_right" + }, + { + "label": "joystick", + "content": "joystick" + }, + { + "label": "jump_to_element", + "content": "jump_to_element" + }, + { + "label": "kayaking", + "content": "kayaking" + }, + { + "label": "kebab_dining", + "content": "kebab_dining" + }, + { + "label": "keep", + "content": "keep" + }, + { + "label": "keep_off", + "content": "keep_off" + }, + { + "label": "keep_public", + "content": "keep_public" + }, + { + "label": "kettle", + "content": "kettle" + }, + { + "label": "key", + "content": "key" + }, + { + "label": "key_off", + "content": "key_off" + }, + { + "label": "key_vertical", + "content": "key_vertical" + }, + { + "label": "key_visualizer", + "content": "key_visualizer" + }, + { + "label": "keyboard", + "content": "keyboard" + }, + { + "label": "keyboard_alt", + "content": "keyboard_alt" + }, + { + "label": "keyboard_arrow_down", + "content": "keyboard_arrow_down" + }, + { + "label": "keyboard_arrow_left", + "content": "keyboard_arrow_left" + }, + { + "label": "keyboard_arrow_right", + "content": "keyboard_arrow_right" + }, + { + "label": "keyboard_arrow_up", + "content": "keyboard_arrow_up" + }, + { + "label": "keyboard_backspace", + "content": "keyboard_backspace" + }, + { + "label": "keyboard_capslock", + "content": "keyboard_capslock" + }, + { + "label": "keyboard_capslock_badge", + "content": "keyboard_capslock_badge" + }, + { + "label": "keyboard_command_key", + "content": "keyboard_command_key" + }, + { + "label": "keyboard_control_key", + "content": "keyboard_control_key" + }, + { + "label": "keyboard_double_arrow_down", + "content": "keyboard_double_arrow_down" + }, + { + "label": "keyboard_double_arrow_left", + "content": "keyboard_double_arrow_left" + }, + { + "label": "keyboard_double_arrow_right", + "content": "keyboard_double_arrow_right" + }, + { + "label": "keyboard_double_arrow_up", + "content": "keyboard_double_arrow_up" + }, + { + "label": "keyboard_external_input", + "content": "keyboard_external_input" + }, + { + "label": "keyboard_full", + "content": "keyboard_full" + }, + { + "label": "keyboard_hide", + "content": "keyboard_hide" + }, + { + "label": "keyboard_keys", + "content": "keyboard_keys" + }, + { + "label": "keyboard_lock", + "content": "keyboard_lock" + }, + { + "label": "keyboard_lock_off", + "content": "keyboard_lock_off" + }, + { + "label": "keyboard_off", + "content": "keyboard_off" + }, + { + "label": "keyboard_onscreen", + "content": "keyboard_onscreen" + }, + { + "label": "keyboard_option_key", + "content": "keyboard_option_key" + }, + { + "label": "keyboard_previous_language", + "content": "keyboard_previous_language" + }, + { + "label": "keyboard_return", + "content": "keyboard_return" + }, + { + "label": "keyboard_tab", + "content": "keyboard_tab" + }, + { + "label": "keyboard_tab_rtl", + "content": "keyboard_tab_rtl" + }, + { + "label": "kid_star", + "content": "kid_star" + }, + { + "label": "king_bed", + "content": "king_bed" + }, + { + "label": "kitchen", + "content": "kitchen" + }, + { + "label": "kitesurfing", + "content": "kitesurfing" + }, + { + "label": "lab_panel", + "content": "lab_panel" + }, + { + "label": "lab_profile", + "content": "lab_profile" + }, + { + "label": "lab_research", + "content": "lab_research" + }, + { + "label": "label", + "content": "label" + }, + { + "label": "label_important", + "content": "label_important" + }, + { + "label": "label_off", + "content": "label_off" + }, + { + "label": "labs", + "content": "labs" + }, + { + "label": "lan", + "content": "lan" + }, + { + "label": "landscape", + "content": "landscape" + }, + { + "label": "landscape_2", + "content": "landscape_2" + }, + { + "label": "landscape_2_off", + "content": "landscape_2_off" + }, + { + "label": "landslide", + "content": "landslide" + }, + { + "label": "language", + "content": "language" + }, + { + "label": "language_chinese_array", + "content": "language_chinese_array" + }, + { + "label": "language_chinese_cangjie", + "content": "language_chinese_cangjie" + }, + { + "label": "language_chinese_dayi", + "content": "language_chinese_dayi" + }, + { + "label": "language_chinese_pinyin", + "content": "language_chinese_pinyin" + }, + { + "label": "language_chinese_quick", + "content": "language_chinese_quick" + }, + { + "label": "language_chinese_wubi", + "content": "language_chinese_wubi" + }, + { + "label": "language_french", + "content": "language_french" + }, + { + "label": "language_gb_english", + "content": "language_gb_english" + }, + { + "label": "language_international", + "content": "language_international" + }, + { + "label": "language_japanese_kana", + "content": "language_japanese_kana" + }, + { + "label": "language_korean_latin", + "content": "language_korean_latin" + }, + { + "label": "language_pinyin", + "content": "language_pinyin" + }, + { + "label": "language_spanish", + "content": "language_spanish" + }, + { + "label": "language_us", + "content": "language_us" + }, + { + "label": "language_us_colemak", + "content": "language_us_colemak" + }, + { + "label": "language_us_dvorak", + "content": "language_us_dvorak" + }, + { + "label": "laps", + "content": "laps" + }, + { + "label": "laptop_chromebook", + "content": "laptop_chromebook" + }, + { + "label": "laptop_mac", + "content": "laptop_mac" + }, + { + "label": "laptop_windows", + "content": "laptop_windows" + }, + { + "label": "lasso_select", + "content": "lasso_select" + }, + { + "label": "last_page", + "content": "last_page" + }, + { + "label": "laundry", + "content": "laundry" + }, + { + "label": "layers", + "content": "layers" + }, + { + "label": "layers_clear", + "content": "layers_clear" + }, + { + "label": "lda", + "content": "lda" + }, + { + "label": "leaderboard", + "content": "leaderboard" + }, + { + "label": "leak_add", + "content": "leak_add" + }, + { + "label": "leak_remove", + "content": "leak_remove" + }, + { + "label": "left_click", + "content": "left_click" + }, + { + "label": "left_panel_close", + "content": "left_panel_close" + }, + { + "label": "left_panel_open", + "content": "left_panel_open" + }, + { + "label": "legend_toggle", + "content": "legend_toggle" + }, + { + "label": "lens", + "content": "lens" + }, + { + "label": "lens_blur", + "content": "lens_blur" + }, + { + "label": "letter_switch", + "content": "letter_switch" + }, + { + "label": "library_add", + "content": "library_add" + }, + { + "label": "library_add_check", + "content": "library_add_check" + }, + { + "label": "library_books", + "content": "library_books" + }, + { + "label": "library_music", + "content": "library_music" + }, + { + "label": "license", + "content": "license" + }, + { + "label": "lift_to_talk", + "content": "lift_to_talk" + }, + { + "label": "light", + "content": "light" + }, + { + "label": "light_group", + "content": "light_group" + }, + { + "label": "light_mode", + "content": "light_mode" + }, + { + "label": "light_off", + "content": "light_off" + }, + { + "label": "lightbulb", + "content": "lightbulb" + }, + { + "label": "lightbulb_circle", + "content": "lightbulb_circle" + }, + { + "label": "lightning_stand", + "content": "lightning_stand" + }, + { + "label": "line_axis", + "content": "line_axis" + }, + { + "label": "line_curve", + "content": "line_curve" + }, + { + "label": "line_end", + "content": "line_end" + }, + { + "label": "line_end_arrow", + "content": "line_end_arrow" + }, + { + "label": "line_end_arrow_notch", + "content": "line_end_arrow_notch" + }, + { + "label": "line_end_circle", + "content": "line_end_circle" + }, + { + "label": "line_end_diamond", + "content": "line_end_diamond" + }, + { + "label": "line_end_square", + "content": "line_end_square" + }, + { + "label": "line_start", + "content": "line_start" + }, + { + "label": "line_start_arrow", + "content": "line_start_arrow" + }, + { + "label": "line_start_arrow_notch", + "content": "line_start_arrow_notch" + }, + { + "label": "line_start_circle", + "content": "line_start_circle" + }, + { + "label": "line_start_diamond", + "content": "line_start_diamond" + }, + { + "label": "line_start_square", + "content": "line_start_square" + }, + { + "label": "line_style", + "content": "line_style" + }, + { + "label": "line_weight", + "content": "line_weight" + }, + { + "label": "linear_scale", + "content": "linear_scale" + }, + { + "label": "link", + "content": "link" + }, + { + "label": "link_off", + "content": "link_off" + }, + { + "label": "linked_camera", + "content": "linked_camera" + }, + { + "label": "linked_services", + "content": "linked_services" + }, + { + "label": "liquor", + "content": "liquor" + }, + { + "label": "list", + "content": "list" + }, + { + "label": "list_alt", + "content": "list_alt" + }, + { + "label": "list_alt_add", + "content": "list_alt_add" + }, + { + "label": "lists", + "content": "lists" + }, + { + "label": "live_help", + "content": "live_help" + }, + { + "label": "live_tv", + "content": "live_tv" + }, + { + "label": "living", + "content": "living" + }, + { + "label": "local_activity", + "content": "local_activity" + }, + { + "label": "local_atm", + "content": "local_atm" + }, + { + "label": "local_bar", + "content": "local_bar" + }, + { + "label": "local_cafe", + "content": "local_cafe" + }, + { + "label": "local_car_wash", + "content": "local_car_wash" + }, + { + "label": "local_convenience_store", + "content": "local_convenience_store" + }, + { + "label": "local_dining", + "content": "local_dining" + }, + { + "label": "local_drink", + "content": "local_drink" + }, + { + "label": "local_fire_department", + "content": "local_fire_department" + }, + { + "label": "local_florist", + "content": "local_florist" + }, + { + "label": "local_gas_station", + "content": "local_gas_station" + }, + { + "label": "local_hospital", + "content": "local_hospital" + }, + { + "label": "local_laundry_service", + "content": "local_laundry_service" + }, + { + "label": "local_library", + "content": "local_library" + }, + { + "label": "local_mall", + "content": "local_mall" + }, + { + "label": "local_parking", + "content": "local_parking" + }, + { + "label": "local_pharmacy", + "content": "local_pharmacy" + }, + { + "label": "local_pizza", + "content": "local_pizza" + }, + { + "label": "local_police", + "content": "local_police" + }, + { + "label": "local_post_office", + "content": "local_post_office" + }, + { + "label": "local_see", + "content": "local_see" + }, + { + "label": "local_shipping", + "content": "local_shipping" + }, + { + "label": "local_taxi", + "content": "local_taxi" + }, + { + "label": "location_away", + "content": "location_away" + }, + { + "label": "location_chip", + "content": "location_chip" + }, + { + "label": "location_city", + "content": "location_city" + }, + { + "label": "location_disabled", + "content": "location_disabled" + }, + { + "label": "location_home", + "content": "location_home" + }, + { + "label": "location_off", + "content": "location_off" + }, + { + "label": "location_on", + "content": "location_on" + }, + { + "label": "location_searching", + "content": "location_searching" + }, + { + "label": "lock", + "content": "lock" + }, + { + "label": "lock_clock", + "content": "lock_clock" + }, + { + "label": "lock_open", + "content": "lock_open" + }, + { + "label": "lock_open_right", + "content": "lock_open_right" + }, + { + "label": "lock_person", + "content": "lock_person" + }, + { + "label": "lock_reset", + "content": "lock_reset" + }, + { + "label": "login", + "content": "login" + }, + { + "label": "logo_dev", + "content": "logo_dev" + }, + { + "label": "logout", + "content": "logout" + }, + { + "label": "looks", + "content": "looks" + }, + { + "label": "looks_3", + "content": "looks_3" + }, + { + "label": "looks_4", + "content": "looks_4" + }, + { + "label": "looks_5", + "content": "looks_5" + }, + { + "label": "looks_6", + "content": "looks_6" + }, + { + "label": "looks_one", + "content": "looks_one" + }, + { + "label": "looks_two", + "content": "looks_two" + }, + { + "label": "loupe", + "content": "loupe" + }, + { + "label": "low_density", + "content": "low_density" + }, + { + "label": "low_priority", + "content": "low_priority" + }, + { + "label": "lowercase", + "content": "lowercase" + }, + { + "label": "loyalty", + "content": "loyalty" + }, + { + "label": "lte_mobiledata", + "content": "lte_mobiledata" + }, + { + "label": "lte_mobiledata_badge", + "content": "lte_mobiledata_badge" + }, + { + "label": "lte_plus_mobiledata", + "content": "lte_plus_mobiledata" + }, + { + "label": "lte_plus_mobiledata_badge", + "content": "lte_plus_mobiledata_badge" + }, + { + "label": "luggage", + "content": "luggage" + }, + { + "label": "lunch_dining", + "content": "lunch_dining" + }, + { + "label": "lyrics", + "content": "lyrics" + }, + { + "label": "macro_auto", + "content": "macro_auto" + }, + { + "label": "macro_off", + "content": "macro_off" + }, + { + "label": "magnification_large", + "content": "magnification_large" + }, + { + "label": "magnification_small", + "content": "magnification_small" + }, + { + "label": "magnify_docked", + "content": "magnify_docked" + }, + { + "label": "magnify_fullscreen", + "content": "magnify_fullscreen" + }, + { + "label": "mail", + "content": "mail" + }, + { + "label": "mail_lock", + "content": "mail_lock" + }, + { + "label": "mail_off", + "content": "mail_off" + }, + { + "label": "male", + "content": "male" + }, + { + "label": "man", + "content": "man" + }, + { + "label": "man_2", + "content": "man_2" + }, + { + "label": "man_3", + "content": "man_3" + }, + { + "label": "man_4", + "content": "man_4" + }, + { + "label": "manage_accounts", + "content": "manage_accounts" + }, + { + "label": "manage_history", + "content": "manage_history" + }, + { + "label": "manage_search", + "content": "manage_search" + }, + { + "label": "manga", + "content": "manga" + }, + { + "label": "manufacturing", + "content": "manufacturing" + }, + { + "label": "map", + "content": "map" + }, + { + "label": "maps_ugc", + "content": "maps_ugc" + }, + { + "label": "margin", + "content": "margin" + }, + { + "label": "mark_as_unread", + "content": "mark_as_unread" + }, + { + "label": "mark_chat_read", + "content": "mark_chat_read" + }, + { + "label": "mark_chat_unread", + "content": "mark_chat_unread" + }, + { + "label": "mark_email_read", + "content": "mark_email_read" + }, + { + "label": "mark_email_unread", + "content": "mark_email_unread" + }, + { + "label": "mark_unread_chat_alt", + "content": "mark_unread_chat_alt" + }, + { + "label": "markdown", + "content": "markdown" + }, + { + "label": "markdown_copy", + "content": "markdown_copy" + }, + { + "label": "markdown_paste", + "content": "markdown_paste" + }, + { + "label": "markunread_mailbox", + "content": "markunread_mailbox" + }, + { + "label": "masked_transitions", + "content": "masked_transitions" + }, + { + "label": "masks", + "content": "masks" + }, + { + "label": "match_case", + "content": "match_case" + }, + { + "label": "match_word", + "content": "match_word" + }, + { + "label": "matter", + "content": "matter" + }, + { + "label": "maximize", + "content": "maximize" + }, + { + "label": "measuring_tape", + "content": "measuring_tape" + }, + { + "label": "media_bluetooth_off", + "content": "media_bluetooth_off" + }, + { + "label": "media_bluetooth_on", + "content": "media_bluetooth_on" + }, + { + "label": "media_link", + "content": "media_link" + }, + { + "label": "media_output", + "content": "media_output" + }, + { + "label": "media_output_off", + "content": "media_output_off" + }, + { + "label": "mediation", + "content": "mediation" + }, + { + "label": "medical_information", + "content": "medical_information" + }, + { + "label": "medical_mask", + "content": "medical_mask" + }, + { + "label": "medical_services", + "content": "medical_services" + }, + { + "label": "medication", + "content": "medication" + }, + { + "label": "medication_liquid", + "content": "medication_liquid" + }, + { + "label": "meeting_room", + "content": "meeting_room" + }, + { + "label": "memory", + "content": "memory" + }, + { + "label": "memory_alt", + "content": "memory_alt" + }, + { + "label": "menstrual_health", + "content": "menstrual_health" + }, + { + "label": "menu", + "content": "menu" + }, + { + "label": "menu_book", + "content": "menu_book" + }, + { + "label": "menu_open", + "content": "menu_open" + }, + { + "label": "merge", + "content": "merge" + }, + { + "label": "merge_type", + "content": "merge_type" + }, + { + "label": "metabolism", + "content": "metabolism" + }, + { + "label": "metro", + "content": "metro" + }, + { + "label": "mfg_nest_yale_lock", + "content": "mfg_nest_yale_lock" + }, + { + "label": "mic", + "content": "mic" + }, + { + "label": "mic_double", + "content": "mic_double" + }, + { + "label": "mic_external_off", + "content": "mic_external_off" + }, + { + "label": "mic_external_on", + "content": "mic_external_on" + }, + { + "label": "mic_off", + "content": "mic_off" + }, + { + "label": "microbiology", + "content": "microbiology" + }, + { + "label": "microwave", + "content": "microwave" + }, + { + "label": "microwave_gen", + "content": "microwave_gen" + }, + { + "label": "military_tech", + "content": "military_tech" + }, + { + "label": "mimo", + "content": "mimo" + }, + { + "label": "mimo_disconnect", + "content": "mimo_disconnect" + }, + { + "label": "mindfulness", + "content": "mindfulness" + }, + { + "label": "minimize", + "content": "minimize" + }, + { + "label": "minor_crash", + "content": "minor_crash" + }, + { + "label": "mintmark", + "content": "mintmark" + }, + { + "label": "missed_video_call", + "content": "missed_video_call" + }, + { + "label": "missing_controller", + "content": "missing_controller" + }, + { + "label": "mist", + "content": "mist" + }, + { + "label": "mitre", + "content": "mitre" + }, + { + "label": "mixture_med", + "content": "mixture_med" + }, + { + "label": "mms", + "content": "mms" + }, + { + "label": "mobile_friendly", + "content": "mobile_friendly" + }, + { + "label": "mobile_off", + "content": "mobile_off" + }, + { + "label": "mobile_screen_share", + "content": "mobile_screen_share" + }, + { + "label": "mobiledata_off", + "content": "mobiledata_off" + }, + { + "label": "mode_comment", + "content": "mode_comment" + }, + { + "label": "mode_cool", + "content": "mode_cool" + }, + { + "label": "mode_cool_off", + "content": "mode_cool_off" + }, + { + "label": "mode_dual", + "content": "mode_dual" + }, + { + "label": "mode_fan", + "content": "mode_fan" + }, + { + "label": "mode_fan_off", + "content": "mode_fan_off" + }, + { + "label": "mode_heat", + "content": "mode_heat" + }, + { + "label": "mode_heat_cool", + "content": "mode_heat_cool" + }, + { + "label": "mode_heat_off", + "content": "mode_heat_off" + }, + { + "label": "mode_night", + "content": "mode_night" + }, + { + "label": "mode_of_travel", + "content": "mode_of_travel" + }, + { + "label": "mode_off_on", + "content": "mode_off_on" + }, + { + "label": "mode_standby", + "content": "mode_standby" + }, + { + "label": "model_training", + "content": "model_training" + }, + { + "label": "money", + "content": "money" + }, + { + "label": "money_off", + "content": "money_off" + }, + { + "label": "monitor", + "content": "monitor" + }, + { + "label": "monitor_heart", + "content": "monitor_heart" + }, + { + "label": "monitor_weight", + "content": "monitor_weight" + }, + { + "label": "monitor_weight_gain", + "content": "monitor_weight_gain" + }, + { + "label": "monitor_weight_loss", + "content": "monitor_weight_loss" + }, + { + "label": "monitoring", + "content": "monitoring" + }, + { + "label": "monochrome_photos", + "content": "monochrome_photos" + }, + { + "label": "monorail", + "content": "monorail" + }, + { + "label": "mood", + "content": "mood" + }, + { + "label": "mood_bad", + "content": "mood_bad" + }, + { + "label": "mop", + "content": "mop" + }, + { + "label": "more", + "content": "more" + }, + { + "label": "more_down", + "content": "more_down" + }, + { + "label": "more_horiz", + "content": "more_horiz" + }, + { + "label": "more_time", + "content": "more_time" + }, + { + "label": "more_up", + "content": "more_up" + }, + { + "label": "more_vert", + "content": "more_vert" + }, + { + "label": "mosque", + "content": "mosque" + }, + { + "label": "motion_blur", + "content": "motion_blur" + }, + { + "label": "motion_mode", + "content": "motion_mode" + }, + { + "label": "motion_photos_auto", + "content": "motion_photos_auto" + }, + { + "label": "motion_photos_off", + "content": "motion_photos_off" + }, + { + "label": "motion_photos_on", + "content": "motion_photos_on" + }, + { + "label": "motion_photos_paused", + "content": "motion_photos_paused" + }, + { + "label": "motion_sensor_active", + "content": "motion_sensor_active" + }, + { + "label": "motion_sensor_alert", + "content": "motion_sensor_alert" + }, + { + "label": "motion_sensor_idle", + "content": "motion_sensor_idle" + }, + { + "label": "motion_sensor_urgent", + "content": "motion_sensor_urgent" + }, + { + "label": "motorcycle", + "content": "motorcycle" + }, + { + "label": "mountain_flag", + "content": "mountain_flag" + }, + { + "label": "mouse", + "content": "mouse" + }, + { + "label": "mouse_lock", + "content": "mouse_lock" + }, + { + "label": "mouse_lock_off", + "content": "mouse_lock_off" + }, + { + "label": "move", + "content": "move" + }, + { + "label": "move_down", + "content": "move_down" + }, + { + "label": "move_group", + "content": "move_group" + }, + { + "label": "move_item", + "content": "move_item" + }, + { + "label": "move_location", + "content": "move_location" + }, + { + "label": "move_selection_down", + "content": "move_selection_down" + }, + { + "label": "move_selection_left", + "content": "move_selection_left" + }, + { + "label": "move_selection_right", + "content": "move_selection_right" + }, + { + "label": "move_selection_up", + "content": "move_selection_up" + }, + { + "label": "move_to_inbox", + "content": "move_to_inbox" + }, + { + "label": "move_up", + "content": "move_up" + }, + { + "label": "moved_location", + "content": "moved_location" + }, + { + "label": "movie", + "content": "movie" + }, + { + "label": "movie_edit", + "content": "movie_edit" + }, + { + "label": "movie_info", + "content": "movie_info" + }, + { + "label": "movie_off", + "content": "movie_off" + }, + { + "label": "moving", + "content": "moving" + }, + { + "label": "moving_beds", + "content": "moving_beds" + }, + { + "label": "moving_ministry", + "content": "moving_ministry" + }, + { + "label": "mp", + "content": "mp" + }, + { + "label": "multicooker", + "content": "multicooker" + }, + { + "label": "multiline_chart", + "content": "multiline_chart" + }, + { + "label": "multiple_stop", + "content": "multiple_stop" + }, + { + "label": "museum", + "content": "museum" + }, + { + "label": "music_cast", + "content": "music_cast" + }, + { + "label": "music_note", + "content": "music_note" + }, + { + "label": "music_off", + "content": "music_off" + }, + { + "label": "music_video", + "content": "music_video" + }, + { + "label": "my_location", + "content": "my_location" + }, + { + "label": "mystery", + "content": "mystery" + }, + { + "label": "nat", + "content": "nat" + }, + { + "label": "nature", + "content": "nature" + }, + { + "label": "nature_people", + "content": "nature_people" + }, + { + "label": "navigation", + "content": "navigation" + }, + { + "label": "near_me", + "content": "near_me" + }, + { + "label": "near_me_disabled", + "content": "near_me_disabled" + }, + { + "label": "nearby", + "content": "nearby" + }, + { + "label": "nearby_error", + "content": "nearby_error" + }, + { + "label": "nearby_off", + "content": "nearby_off" + }, + { + "label": "nephrology", + "content": "nephrology" + }, + { + "label": "nest_audio", + "content": "nest_audio" + }, + { + "label": "nest_cam_floodlight", + "content": "nest_cam_floodlight" + }, + { + "label": "nest_cam_indoor", + "content": "nest_cam_indoor" + }, + { + "label": "nest_cam_iq", + "content": "nest_cam_iq" + }, + { + "label": "nest_cam_iq_outdoor", + "content": "nest_cam_iq_outdoor" + }, + { + "label": "nest_cam_magnet_mount", + "content": "nest_cam_magnet_mount" + }, + { + "label": "nest_cam_outdoor", + "content": "nest_cam_outdoor" + }, + { + "label": "nest_cam_stand", + "content": "nest_cam_stand" + }, + { + "label": "nest_cam_wall_mount", + "content": "nest_cam_wall_mount" + }, + { + "label": "nest_cam_wired_stand", + "content": "nest_cam_wired_stand" + }, + { + "label": "nest_clock_farsight_analog", + "content": "nest_clock_farsight_analog" + }, + { + "label": "nest_clock_farsight_digital", + "content": "nest_clock_farsight_digital" + }, + { + "label": "nest_connect", + "content": "nest_connect" + }, + { + "label": "nest_detect", + "content": "nest_detect" + }, + { + "label": "nest_display", + "content": "nest_display" + }, + { + "label": "nest_display_max", + "content": "nest_display_max" + }, + { + "label": "nest_doorbell_visitor", + "content": "nest_doorbell_visitor" + }, + { + "label": "nest_eco_leaf", + "content": "nest_eco_leaf" + }, + { + "label": "nest_farsight_weather", + "content": "nest_farsight_weather" + }, + { + "label": "nest_found_savings", + "content": "nest_found_savings" + }, + { + "label": "nest_gale_wifi", + "content": "nest_gale_wifi" + }, + { + "label": "nest_heat_link_e", + "content": "nest_heat_link_e" + }, + { + "label": "nest_heat_link_gen_3", + "content": "nest_heat_link_gen_3" + }, + { + "label": "nest_hello_doorbell", + "content": "nest_hello_doorbell" + }, + { + "label": "nest_mini", + "content": "nest_mini" + }, + { + "label": "nest_multi_room", + "content": "nest_multi_room" + }, + { + "label": "nest_protect", + "content": "nest_protect" + }, + { + "label": "nest_remote", + "content": "nest_remote" + }, + { + "label": "nest_remote_comfort_sensor", + "content": "nest_remote_comfort_sensor" + }, + { + "label": "nest_secure_alarm", + "content": "nest_secure_alarm" + }, + { + "label": "nest_sunblock", + "content": "nest_sunblock" + }, + { + "label": "nest_tag", + "content": "nest_tag" + }, + { + "label": "nest_thermostat", + "content": "nest_thermostat" + }, + { + "label": "nest_thermostat_e_eu", + "content": "nest_thermostat_e_eu" + }, + { + "label": "nest_thermostat_gen_3", + "content": "nest_thermostat_gen_3" + }, + { + "label": "nest_thermostat_sensor", + "content": "nest_thermostat_sensor" + }, + { + "label": "nest_thermostat_sensor_eu", + "content": "nest_thermostat_sensor_eu" + }, + { + "label": "nest_thermostat_zirconium_eu", + "content": "nest_thermostat_zirconium_eu" + }, + { + "label": "nest_true_radiant", + "content": "nest_true_radiant" + }, + { + "label": "nest_wake_on_approach", + "content": "nest_wake_on_approach" + }, + { + "label": "nest_wake_on_press", + "content": "nest_wake_on_press" + }, + { + "label": "nest_wifi_point", + "content": "nest_wifi_point" + }, + { + "label": "nest_wifi_pro", + "content": "nest_wifi_pro" + }, + { + "label": "nest_wifi_pro_2", + "content": "nest_wifi_pro_2" + }, + { + "label": "nest_wifi_router", + "content": "nest_wifi_router" + }, + { + "label": "network_cell", + "content": "network_cell" + }, + { + "label": "network_check", + "content": "network_check" + }, + { + "label": "network_intelligence_history", + "content": "network_intelligence_history" + }, + { + "label": "network_intelligence_update", + "content": "network_intelligence_update" + }, + { + "label": "network_locked", + "content": "network_locked" + }, + { + "label": "network_manage", + "content": "network_manage" + }, + { + "label": "network_node", + "content": "network_node" + }, + { + "label": "network_ping", + "content": "network_ping" + }, + { + "label": "network_wifi", + "content": "network_wifi" + }, + { + "label": "network_wifi_1_bar", + "content": "network_wifi_1_bar" + }, + { + "label": "network_wifi_1_bar_locked", + "content": "network_wifi_1_bar_locked" + }, + { + "label": "network_wifi_2_bar", + "content": "network_wifi_2_bar" + }, + { + "label": "network_wifi_2_bar_locked", + "content": "network_wifi_2_bar_locked" + }, + { + "label": "network_wifi_3_bar", + "content": "network_wifi_3_bar" + }, + { + "label": "network_wifi_3_bar_locked", + "content": "network_wifi_3_bar_locked" + }, + { + "label": "network_wifi_locked", + "content": "network_wifi_locked" + }, + { + "label": "neurology", + "content": "neurology" + }, + { + "label": "new_label", + "content": "new_label" + }, + { + "label": "new_releases", + "content": "new_releases" + }, + { + "label": "new_window", + "content": "new_window" + }, + { + "label": "news", + "content": "news" + }, + { + "label": "newsmode", + "content": "newsmode" + }, + { + "label": "newspaper", + "content": "newspaper" + }, + { + "label": "newsstand", + "content": "newsstand" + }, + { + "label": "next_plan", + "content": "next_plan" + }, + { + "label": "next_week", + "content": "next_week" + }, + { + "label": "nfc", + "content": "nfc" + }, + { + "label": "night_shelter", + "content": "night_shelter" + }, + { + "label": "night_sight_auto", + "content": "night_sight_auto" + }, + { + "label": "night_sight_auto_off", + "content": "night_sight_auto_off" + }, + { + "label": "night_sight_max", + "content": "night_sight_max" + }, + { + "label": "nightlife", + "content": "nightlife" + }, + { + "label": "nightlight", + "content": "nightlight" + }, + { + "label": "nights_stay", + "content": "nights_stay" + }, + { + "label": "no_accounts", + "content": "no_accounts" + }, + { + "label": "no_adult_content", + "content": "no_adult_content" + }, + { + "label": "no_backpack", + "content": "no_backpack" + }, + { + "label": "no_crash", + "content": "no_crash" + }, + { + "label": "no_drinks", + "content": "no_drinks" + }, + { + "label": "no_encryption", + "content": "no_encryption" + }, + { + "label": "no_flash", + "content": "no_flash" + }, + { + "label": "no_food", + "content": "no_food" + }, + { + "label": "no_luggage", + "content": "no_luggage" + }, + { + "label": "no_meals", + "content": "no_meals" + }, + { + "label": "no_meeting_room", + "content": "no_meeting_room" + }, + { + "label": "no_photography", + "content": "no_photography" + }, + { + "label": "no_sim", + "content": "no_sim" + }, + { + "label": "no_sound", + "content": "no_sound" + }, + { + "label": "no_stroller", + "content": "no_stroller" + }, + { + "label": "no_transfer", + "content": "no_transfer" + }, + { + "label": "noise_aware", + "content": "noise_aware" + }, + { + "label": "noise_control_off", + "content": "noise_control_off" + }, + { + "label": "noise_control_on", + "content": "noise_control_on" + }, + { + "label": "nordic_walking", + "content": "nordic_walking" + }, + { + "label": "north", + "content": "north" + }, + { + "label": "north_east", + "content": "north_east" + }, + { + "label": "north_west", + "content": "north_west" + }, + { + "label": "not_accessible", + "content": "not_accessible" + }, + { + "label": "not_accessible_forward", + "content": "not_accessible_forward" + }, + { + "label": "not_listed_location", + "content": "not_listed_location" + }, + { + "label": "not_started", + "content": "not_started" + }, + { + "label": "note_add", + "content": "note_add" + }, + { + "label": "note_alt", + "content": "note_alt" + }, + { + "label": "note_stack", + "content": "note_stack" + }, + { + "label": "note_stack_add", + "content": "note_stack_add" + }, + { + "label": "notes", + "content": "notes" + }, + { + "label": "notification_add", + "content": "notification_add" + }, + { + "label": "notification_important", + "content": "notification_important" + }, + { + "label": "notification_multiple", + "content": "notification_multiple" + }, + { + "label": "notifications", + "content": "notifications" + }, + { + "label": "notifications_active", + "content": "notifications_active" + }, + { + "label": "notifications_off", + "content": "notifications_off" + }, + { + "label": "notifications_paused", + "content": "notifications_paused" + }, + { + "label": "notifications_unread", + "content": "notifications_unread" + }, + { + "label": "numbers", + "content": "numbers" + }, + { + "label": "nutrition", + "content": "nutrition" + }, + { + "label": "ods", + "content": "ods" + }, + { + "label": "odt", + "content": "odt" + }, + { + "label": "offline_bolt", + "content": "offline_bolt" + }, + { + "label": "offline_pin", + "content": "offline_pin" + }, + { + "label": "offline_pin_off", + "content": "offline_pin_off" + }, + { + "label": "offline_share", + "content": "offline_share" + }, + { + "label": "oil_barrel", + "content": "oil_barrel" + }, + { + "label": "on_device_training", + "content": "on_device_training" + }, + { + "label": "on_hub_device", + "content": "on_hub_device" + }, + { + "label": "oncology", + "content": "oncology" + }, + { + "label": "online_prediction", + "content": "online_prediction" + }, + { + "label": "onsen", + "content": "onsen" + }, + { + "label": "opacity", + "content": "opacity" + }, + { + "label": "open_in_browser", + "content": "open_in_browser" + }, + { + "label": "open_in_full", + "content": "open_in_full" + }, + { + "label": "open_in_new", + "content": "open_in_new" + }, + { + "label": "open_in_new_down", + "content": "open_in_new_down" + }, + { + "label": "open_in_new_off", + "content": "open_in_new_off" + }, + { + "label": "open_in_phone", + "content": "open_in_phone" + }, + { + "label": "open_jam", + "content": "open_jam" + }, + { + "label": "open_run", + "content": "open_run" + }, + { + "label": "open_with", + "content": "open_with" + }, + { + "label": "ophthalmology", + "content": "ophthalmology" + }, + { + "label": "oral_disease", + "content": "oral_disease" + }, + { + "label": "order_approve", + "content": "order_approve" + }, + { + "label": "order_play", + "content": "order_play" + }, + { + "label": "orders", + "content": "orders" + }, + { + "label": "orthopedics", + "content": "orthopedics" + }, + { + "label": "other_admission", + "content": "other_admission" + }, + { + "label": "other_houses", + "content": "other_houses" + }, + { + "label": "outbound", + "content": "outbound" + }, + { + "label": "outbox", + "content": "outbox" + }, + { + "label": "outbox_alt", + "content": "outbox_alt" + }, + { + "label": "outdoor_garden", + "content": "outdoor_garden" + }, + { + "label": "outdoor_grill", + "content": "outdoor_grill" + }, + { + "label": "outgoing_mail", + "content": "outgoing_mail" + }, + { + "label": "outlet", + "content": "outlet" + }, + { + "label": "outpatient", + "content": "outpatient" + }, + { + "label": "outpatient_med", + "content": "outpatient_med" + }, + { + "label": "output", + "content": "output" + }, + { + "label": "output_circle", + "content": "output_circle" + }, + { + "label": "oven", + "content": "oven" + }, + { + "label": "oven_gen", + "content": "oven_gen" + }, + { + "label": "overview", + "content": "overview" + }, + { + "label": "overview_key", + "content": "overview_key" + }, + { + "label": "oxygen_saturation", + "content": "oxygen_saturation" + }, + { + "label": "p2p", + "content": "p2p" + }, + { + "label": "pace", + "content": "pace" + }, + { + "label": "pacemaker", + "content": "pacemaker" + }, + { + "label": "package", + "content": "package" + }, + { + "label": "package_2", + "content": "package_2" + }, + { + "label": "padding", + "content": "padding" + }, + { + "label": "page_control", + "content": "page_control" + }, + { + "label": "page_info", + "content": "page_info" + }, + { + "label": "pageless", + "content": "pageless" + }, + { + "label": "pages", + "content": "pages" + }, + { + "label": "pageview", + "content": "pageview" + }, + { + "label": "paid", + "content": "paid" + }, + { + "label": "palette", + "content": "palette" + }, + { + "label": "pallet", + "content": "pallet" + }, + { + "label": "pan_tool", + "content": "pan_tool" + }, + { + "label": "pan_tool_alt", + "content": "pan_tool_alt" + }, + { + "label": "pan_zoom", + "content": "pan_zoom" + }, + { + "label": "panorama", + "content": "panorama" + }, + { + "label": "panorama_fish_eye", + "content": "panorama_fish_eye" + }, + { + "label": "panorama_horizontal", + "content": "panorama_horizontal" + }, + { + "label": "panorama_photosphere", + "content": "panorama_photosphere" + }, + { + "label": "panorama_vertical", + "content": "panorama_vertical" + }, + { + "label": "panorama_wide_angle", + "content": "panorama_wide_angle" + }, + { + "label": "paragliding", + "content": "paragliding" + }, + { + "label": "park", + "content": "park" + }, + { + "label": "partly_cloudy_day", + "content": "partly_cloudy_day" + }, + { + "label": "partly_cloudy_night", + "content": "partly_cloudy_night" + }, + { + "label": "partner_exchange", + "content": "partner_exchange" + }, + { + "label": "partner_reports", + "content": "partner_reports" + }, + { + "label": "party_mode", + "content": "party_mode" + }, + { + "label": "passkey", + "content": "passkey" + }, + { + "label": "password", + "content": "password" + }, + { + "label": "password_2", + "content": "password_2" + }, + { + "label": "password_2_off", + "content": "password_2_off" + }, + { + "label": "patient_list", + "content": "patient_list" + }, + { + "label": "pattern", + "content": "pattern" + }, + { + "label": "pause", + "content": "pause" + }, + { + "label": "pause_circle", + "content": "pause_circle" + }, + { + "label": "pause_presentation", + "content": "pause_presentation" + }, + { + "label": "payments", + "content": "payments" + }, + { + "label": "pedal_bike", + "content": "pedal_bike" + }, + { + "label": "pediatrics", + "content": "pediatrics" + }, + { + "label": "pen_size_1", + "content": "pen_size_1" + }, + { + "label": "pen_size_2", + "content": "pen_size_2" + }, + { + "label": "pen_size_3", + "content": "pen_size_3" + }, + { + "label": "pen_size_4", + "content": "pen_size_4" + }, + { + "label": "pen_size_5", + "content": "pen_size_5" + }, + { + "label": "pending", + "content": "pending" + }, + { + "label": "pending_actions", + "content": "pending_actions" + }, + { + "label": "pentagon", + "content": "pentagon" + }, + { + "label": "percent", + "content": "percent" + }, + { + "label": "pergola", + "content": "pergola" + }, + { + "label": "perm_camera_mic", + "content": "perm_camera_mic" + }, + { + "label": "perm_contact_calendar", + "content": "perm_contact_calendar" + }, + { + "label": "perm_data_setting", + "content": "perm_data_setting" + }, + { + "label": "perm_device_information", + "content": "perm_device_information" + }, + { + "label": "perm_media", + "content": "perm_media" + }, + { + "label": "perm_phone_msg", + "content": "perm_phone_msg" + }, + { + "label": "perm_scan_wifi", + "content": "perm_scan_wifi" + }, + { + "label": "person", + "content": "person" + }, + { + "label": "person_2", + "content": "person_2" + }, + { + "label": "person_3", + "content": "person_3" + }, + { + "label": "person_4", + "content": "person_4" + }, + { + "label": "person_add", + "content": "person_add" + }, + { + "label": "person_add_disabled", + "content": "person_add_disabled" + }, + { + "label": "person_alert", + "content": "person_alert" + }, + { + "label": "person_apron", + "content": "person_apron" + }, + { + "label": "person_book", + "content": "person_book" + }, + { + "label": "person_cancel", + "content": "person_cancel" + }, + { + "label": "person_celebrate", + "content": "person_celebrate" + }, + { + "label": "person_check", + "content": "person_check" + }, + { + "label": "person_edit", + "content": "person_edit" + }, + { + "label": "person_off", + "content": "person_off" + }, + { + "label": "person_pin", + "content": "person_pin" + }, + { + "label": "person_pin_circle", + "content": "person_pin_circle" + }, + { + "label": "person_play", + "content": "person_play" + }, + { + "label": "person_raised_hand", + "content": "person_raised_hand" + }, + { + "label": "person_remove", + "content": "person_remove" + }, + { + "label": "person_search", + "content": "person_search" + }, + { + "label": "personal_bag", + "content": "personal_bag" + }, + { + "label": "personal_bag_off", + "content": "personal_bag_off" + }, + { + "label": "personal_bag_question", + "content": "personal_bag_question" + }, + { + "label": "personal_injury", + "content": "personal_injury" + }, + { + "label": "personal_places", + "content": "personal_places" + }, + { + "label": "pest_control", + "content": "pest_control" + }, + { + "label": "pest_control_rodent", + "content": "pest_control_rodent" + }, + { + "label": "pet_supplies", + "content": "pet_supplies" + }, + { + "label": "pets", + "content": "pets" + }, + { + "label": "phishing", + "content": "phishing" + }, + { + "label": "phone_android", + "content": "phone_android" + }, + { + "label": "phone_bluetooth_speaker", + "content": "phone_bluetooth_speaker" + }, + { + "label": "phone_callback", + "content": "phone_callback" + }, + { + "label": "phone_disabled", + "content": "phone_disabled" + }, + { + "label": "phone_enabled", + "content": "phone_enabled" + }, + { + "label": "phone_forwarded", + "content": "phone_forwarded" + }, + { + "label": "phone_in_talk", + "content": "phone_in_talk" + }, + { + "label": "phone_iphone", + "content": "phone_iphone" + }, + { + "label": "phone_locked", + "content": "phone_locked" + }, + { + "label": "phone_missed", + "content": "phone_missed" + }, + { + "label": "phone_paused", + "content": "phone_paused" + }, + { + "label": "phonelink_erase", + "content": "phonelink_erase" + }, + { + "label": "phonelink_lock", + "content": "phonelink_lock" + }, + { + "label": "phonelink_off", + "content": "phonelink_off" + }, + { + "label": "phonelink_ring", + "content": "phonelink_ring" + }, + { + "label": "phonelink_ring_off", + "content": "phonelink_ring_off" + }, + { + "label": "phonelink_setup", + "content": "phonelink_setup" + }, + { + "label": "photo", + "content": "photo" + }, + { + "label": "photo_album", + "content": "photo_album" + }, + { + "label": "photo_auto_merge", + "content": "photo_auto_merge" + }, + { + "label": "photo_camera", + "content": "photo_camera" + }, + { + "label": "photo_camera_back", + "content": "photo_camera_back" + }, + { + "label": "photo_camera_front", + "content": "photo_camera_front" + }, + { + "label": "photo_frame", + "content": "photo_frame" + }, + { + "label": "photo_library", + "content": "photo_library" + }, + { + "label": "photo_prints", + "content": "photo_prints" + }, + { + "label": "photo_size_select_large", + "content": "photo_size_select_large" + }, + { + "label": "photo_size_select_small", + "content": "photo_size_select_small" + }, + { + "label": "php", + "content": "php" + }, + { + "label": "physical_therapy", + "content": "physical_therapy" + }, + { + "label": "piano", + "content": "piano" + }, + { + "label": "piano_off", + "content": "piano_off" + }, + { + "label": "picture_as_pdf", + "content": "picture_as_pdf" + }, + { + "label": "picture_in_picture", + "content": "picture_in_picture" + }, + { + "label": "picture_in_picture_alt", + "content": "picture_in_picture_alt" + }, + { + "label": "picture_in_picture_center", + "content": "picture_in_picture_center" + }, + { + "label": "picture_in_picture_large", + "content": "picture_in_picture_large" + }, + { + "label": "picture_in_picture_medium", + "content": "picture_in_picture_medium" + }, + { + "label": "picture_in_picture_mobile", + "content": "picture_in_picture_mobile" + }, + { + "label": "picture_in_picture_off", + "content": "picture_in_picture_off" + }, + { + "label": "picture_in_picture_small", + "content": "picture_in_picture_small" + }, + { + "label": "pie_chart", + "content": "pie_chart" + }, + { + "label": "pill", + "content": "pill" + }, + { + "label": "pill_off", + "content": "pill_off" + }, + { + "label": "pin", + "content": "pin" + }, + { + "label": "pin_drop", + "content": "pin_drop" + }, + { + "label": "pin_end", + "content": "pin_end" + }, + { + "label": "pin_invoke", + "content": "pin_invoke" + }, + { + "label": "pinch", + "content": "pinch" + }, + { + "label": "pinch_zoom_in", + "content": "pinch_zoom_in" + }, + { + "label": "pinch_zoom_out", + "content": "pinch_zoom_out" + }, + { + "label": "pip", + "content": "pip" + }, + { + "label": "pip_exit", + "content": "pip_exit" + }, + { + "label": "pivot_table_chart", + "content": "pivot_table_chart" + }, + { + "label": "place_item", + "content": "place_item" + }, + { + "label": "plagiarism", + "content": "plagiarism" + }, + { + "label": "planner_banner_ad_pt", + "content": "planner_banner_ad_pt" + }, + { + "label": "planner_review", + "content": "planner_review" + }, + { + "label": "play_arrow", + "content": "play_arrow" + }, + { + "label": "play_circle", + "content": "play_circle" + }, + { + "label": "play_disabled", + "content": "play_disabled" + }, + { + "label": "play_for_work", + "content": "play_for_work" + }, + { + "label": "play_lesson", + "content": "play_lesson" + }, + { + "label": "play_pause", + "content": "play_pause" + }, + { + "label": "playing_cards", + "content": "playing_cards" + }, + { + "label": "playlist_add", + "content": "playlist_add" + }, + { + "label": "playlist_add_check", + "content": "playlist_add_check" + }, + { + "label": "playlist_add_check_circle", + "content": "playlist_add_check_circle" + }, + { + "label": "playlist_add_circle", + "content": "playlist_add_circle" + }, + { + "label": "playlist_play", + "content": "playlist_play" + }, + { + "label": "playlist_remove", + "content": "playlist_remove" + }, + { + "label": "plumbing", + "content": "plumbing" + }, + { + "label": "podcasts", + "content": "podcasts" + }, + { + "label": "podiatry", + "content": "podiatry" + }, + { + "label": "podium", + "content": "podium" + }, + { + "label": "point_of_sale", + "content": "point_of_sale" + }, + { + "label": "point_scan", + "content": "point_scan" + }, + { + "label": "poker_chip", + "content": "poker_chip" + }, + { + "label": "policy", + "content": "policy" + }, + { + "label": "polyline", + "content": "polyline" + }, + { + "label": "polymer", + "content": "polymer" + }, + { + "label": "pool", + "content": "pool" + }, + { + "label": "portable_wifi_off", + "content": "portable_wifi_off" + }, + { + "label": "position_bottom_left", + "content": "position_bottom_left" + }, + { + "label": "position_bottom_right", + "content": "position_bottom_right" + }, + { + "label": "position_top_right", + "content": "position_top_right" + }, + { + "label": "post", + "content": "post" + }, + { + "label": "post_add", + "content": "post_add" + }, + { + "label": "potted_plant", + "content": "potted_plant" + }, + { + "label": "power", + "content": "power" + }, + { + "label": "power_input", + "content": "power_input" + }, + { + "label": "power_off", + "content": "power_off" + }, + { + "label": "power_settings_new", + "content": "power_settings_new" + }, + { + "label": "prayer_times", + "content": "prayer_times" + }, + { + "label": "precision_manufacturing", + "content": "precision_manufacturing" + }, + { + "label": "pregnancy", + "content": "pregnancy" + }, + { + "label": "pregnant_woman", + "content": "pregnant_woman" + }, + { + "label": "preliminary", + "content": "preliminary" + }, + { + "label": "prescriptions", + "content": "prescriptions" + }, + { + "label": "present_to_all", + "content": "present_to_all" + }, + { + "label": "preview", + "content": "preview" + }, + { + "label": "preview_off", + "content": "preview_off" + }, + { + "label": "price_change", + "content": "price_change" + }, + { + "label": "price_check", + "content": "price_check" + }, + { + "label": "print", + "content": "print" + }, + { + "label": "print_add", + "content": "print_add" + }, + { + "label": "print_connect", + "content": "print_connect" + }, + { + "label": "print_disabled", + "content": "print_disabled" + }, + { + "label": "print_error", + "content": "print_error" + }, + { + "label": "print_lock", + "content": "print_lock" + }, + { + "label": "priority", + "content": "priority" + }, + { + "label": "priority_high", + "content": "priority_high" + }, + { + "label": "privacy", + "content": "privacy" + }, + { + "label": "privacy_tip", + "content": "privacy_tip" + }, + { + "label": "private_connectivity", + "content": "private_connectivity" + }, + { + "label": "problem", + "content": "problem" + }, + { + "label": "procedure", + "content": "procedure" + }, + { + "label": "process_chart", + "content": "process_chart" + }, + { + "label": "production_quantity_limits", + "content": "production_quantity_limits" + }, + { + "label": "productivity", + "content": "productivity" + }, + { + "label": "progress_activity", + "content": "progress_activity" + }, + { + "label": "prompt_suggestion", + "content": "prompt_suggestion" + }, + { + "label": "propane", + "content": "propane" + }, + { + "label": "propane_tank", + "content": "propane_tank" + }, + { + "label": "psychiatry", + "content": "psychiatry" + }, + { + "label": "psychology", + "content": "psychology" + }, + { + "label": "psychology_alt", + "content": "psychology_alt" + }, + { + "label": "public", + "content": "public" + }, + { + "label": "public_off", + "content": "public_off" + }, + { + "label": "publish", + "content": "publish" + }, + { + "label": "published_with_changes", + "content": "published_with_changes" + }, + { + "label": "pulmonology", + "content": "pulmonology" + }, + { + "label": "pulse_alert", + "content": "pulse_alert" + }, + { + "label": "punch_clock", + "content": "punch_clock" + }, + { + "label": "qr_code", + "content": "qr_code" + }, + { + "label": "qr_code_2", + "content": "qr_code_2" + }, + { + "label": "qr_code_2_add", + "content": "qr_code_2_add" + }, + { + "label": "qr_code_scanner", + "content": "qr_code_scanner" + }, + { + "label": "query_stats", + "content": "query_stats" + }, + { + "label": "question_exchange", + "content": "question_exchange" + }, + { + "label": "question_mark", + "content": "question_mark" + }, + { + "label": "queue_music", + "content": "queue_music" + }, + { + "label": "queue_play_next", + "content": "queue_play_next" + }, + { + "label": "quick_phrases", + "content": "quick_phrases" + }, + { + "label": "quick_reference", + "content": "quick_reference" + }, + { + "label": "quick_reference_all", + "content": "quick_reference_all" + }, + { + "label": "quick_reorder", + "content": "quick_reorder" + }, + { + "label": "quickreply", + "content": "quickreply" + }, + { + "label": "quiet_time", + "content": "quiet_time" + }, + { + "label": "quiet_time_active", + "content": "quiet_time_active" + }, + { + "label": "quiz", + "content": "quiz" + }, + { + "label": "r_mobiledata", + "content": "r_mobiledata" + }, + { + "label": "radar", + "content": "radar" + }, + { + "label": "radio", + "content": "radio" + }, + { + "label": "radio_button_checked", + "content": "radio_button_checked" + }, + { + "label": "radio_button_partial", + "content": "radio_button_partial" + }, + { + "label": "radio_button_unchecked", + "content": "radio_button_unchecked" + }, + { + "label": "radiology", + "content": "radiology" + }, + { + "label": "railway_alert", + "content": "railway_alert" + }, + { + "label": "railway_alert_2", + "content": "railway_alert_2" + }, + { + "label": "rainy", + "content": "rainy" + }, + { + "label": "rainy_heavy", + "content": "rainy_heavy" + }, + { + "label": "rainy_light", + "content": "rainy_light" + }, + { + "label": "rainy_snow", + "content": "rainy_snow" + }, + { + "label": "ramen_dining", + "content": "ramen_dining" + }, + { + "label": "ramp_left", + "content": "ramp_left" + }, + { + "label": "ramp_right", + "content": "ramp_right" + }, + { + "label": "range_hood", + "content": "range_hood" + }, + { + "label": "rate_review", + "content": "rate_review" + }, + { + "label": "raven", + "content": "raven" + }, + { + "label": "raw_off", + "content": "raw_off" + }, + { + "label": "raw_on", + "content": "raw_on" + }, + { + "label": "read_more", + "content": "read_more" + }, + { + "label": "readiness_score", + "content": "readiness_score" + }, + { + "label": "real_estate_agent", + "content": "real_estate_agent" + }, + { + "label": "rear_camera", + "content": "rear_camera" + }, + { + "label": "rebase", + "content": "rebase" + }, + { + "label": "rebase_edit", + "content": "rebase_edit" + }, + { + "label": "receipt", + "content": "receipt" + }, + { + "label": "receipt_long", + "content": "receipt_long" + }, + { + "label": "recent_actors", + "content": "recent_actors" + }, + { + "label": "recent_patient", + "content": "recent_patient" + }, + { + "label": "recenter", + "content": "recenter" + }, + { + "label": "recommend", + "content": "recommend" + }, + { + "label": "record_voice_over", + "content": "record_voice_over" + }, + { + "label": "rectangle", + "content": "rectangle" + }, + { + "label": "recycling", + "content": "recycling" + }, + { + "label": "redeem", + "content": "redeem" + }, + { + "label": "redo", + "content": "redo" + }, + { + "label": "reduce_capacity", + "content": "reduce_capacity" + }, + { + "label": "refresh", + "content": "refresh" + }, + { + "label": "regular_expression", + "content": "regular_expression" + }, + { + "label": "relax", + "content": "relax" + }, + { + "label": "release_alert", + "content": "release_alert" + }, + { + "label": "remember_me", + "content": "remember_me" + }, + { + "label": "reminder", + "content": "reminder" + }, + { + "label": "remote_gen", + "content": "remote_gen" + }, + { + "label": "remove", + "content": "remove" + }, + { + "label": "remove_done", + "content": "remove_done" + }, + { + "label": "remove_from_queue", + "content": "remove_from_queue" + }, + { + "label": "remove_moderator", + "content": "remove_moderator" + }, + { + "label": "remove_road", + "content": "remove_road" + }, + { + "label": "remove_selection", + "content": "remove_selection" + }, + { + "label": "remove_shopping_cart", + "content": "remove_shopping_cart" + }, + { + "label": "reopen_window", + "content": "reopen_window" + }, + { + "label": "reorder", + "content": "reorder" + }, + { + "label": "repartition", + "content": "repartition" + }, + { + "label": "repeat", + "content": "repeat" + }, + { + "label": "repeat_on", + "content": "repeat_on" + }, + { + "label": "repeat_one", + "content": "repeat_one" + }, + { + "label": "repeat_one_on", + "content": "repeat_one_on" + }, + { + "label": "replay", + "content": "replay" + }, + { + "label": "replay_10", + "content": "replay_10" + }, + { + "label": "replay_30", + "content": "replay_30" + }, + { + "label": "replay_5", + "content": "replay_5" + }, + { + "label": "reply", + "content": "reply" + }, + { + "label": "reply_all", + "content": "reply_all" + }, + { + "label": "report", + "content": "report" + }, + { + "label": "report_off", + "content": "report_off" + }, + { + "label": "request_page", + "content": "request_page" + }, + { + "label": "request_quote", + "content": "request_quote" + }, + { + "label": "reset_brightness", + "content": "reset_brightness" + }, + { + "label": "reset_focus", + "content": "reset_focus" + }, + { + "label": "reset_image", + "content": "reset_image" + }, + { + "label": "reset_iso", + "content": "reset_iso" + }, + { + "label": "reset_settings", + "content": "reset_settings" + }, + { + "label": "reset_shadow", + "content": "reset_shadow" + }, + { + "label": "reset_shutter_speed", + "content": "reset_shutter_speed" + }, + { + "label": "reset_tv", + "content": "reset_tv" + }, + { + "label": "reset_white_balance", + "content": "reset_white_balance" + }, + { + "label": "reset_wrench", + "content": "reset_wrench" + }, + { + "label": "resize", + "content": "resize" + }, + { + "label": "respiratory_rate", + "content": "respiratory_rate" + }, + { + "label": "responsive_layout", + "content": "responsive_layout" + }, + { + "label": "restart_alt", + "content": "restart_alt" + }, + { + "label": "restaurant", + "content": "restaurant" + }, + { + "label": "restaurant_menu", + "content": "restaurant_menu" + }, + { + "label": "restore_from_trash", + "content": "restore_from_trash" + }, + { + "label": "restore_page", + "content": "restore_page" + }, + { + "label": "resume", + "content": "resume" + }, + { + "label": "reviews", + "content": "reviews" + }, + { + "label": "rewarded_ads", + "content": "rewarded_ads" + }, + { + "label": "rheumatology", + "content": "rheumatology" + }, + { + "label": "rib_cage", + "content": "rib_cage" + }, + { + "label": "rice_bowl", + "content": "rice_bowl" + }, + { + "label": "right_click", + "content": "right_click" + }, + { + "label": "right_panel_close", + "content": "right_panel_close" + }, + { + "label": "right_panel_open", + "content": "right_panel_open" + }, + { + "label": "ring_volume", + "content": "ring_volume" + }, + { + "label": "ripples", + "content": "ripples" + }, + { + "label": "road", + "content": "road" + }, + { + "label": "robot", + "content": "robot" + }, + { + "label": "robot_2", + "content": "robot_2" + }, + { + "label": "rocket", + "content": "rocket" + }, + { + "label": "rocket_launch", + "content": "rocket_launch" + }, + { + "label": "roller_shades", + "content": "roller_shades" + }, + { + "label": "roller_shades_closed", + "content": "roller_shades_closed" + }, + { + "label": "roller_skating", + "content": "roller_skating" + }, + { + "label": "roofing", + "content": "roofing" + }, + { + "label": "room_preferences", + "content": "room_preferences" + }, + { + "label": "room_service", + "content": "room_service" + }, + { + "label": "rotate_90_degrees_ccw", + "content": "rotate_90_degrees_ccw" + }, + { + "label": "rotate_90_degrees_cw", + "content": "rotate_90_degrees_cw" + }, + { + "label": "rotate_left", + "content": "rotate_left" + }, + { + "label": "rotate_right", + "content": "rotate_right" + }, + { + "label": "roundabout_left", + "content": "roundabout_left" + }, + { + "label": "roundabout_right", + "content": "roundabout_right" + }, + { + "label": "rounded_corner", + "content": "rounded_corner" + }, + { + "label": "route", + "content": "route" + }, + { + "label": "router", + "content": "router" + }, + { + "label": "routine", + "content": "routine" + }, + { + "label": "rowing", + "content": "rowing" + }, + { + "label": "rss_feed", + "content": "rss_feed" + }, + { + "label": "rsvp", + "content": "rsvp" + }, + { + "label": "rtt", + "content": "rtt" + }, + { + "label": "rubric", + "content": "rubric" + }, + { + "label": "rule", + "content": "rule" + }, + { + "label": "rule_folder", + "content": "rule_folder" + }, + { + "label": "rule_settings", + "content": "rule_settings" + }, + { + "label": "run_circle", + "content": "run_circle" + }, + { + "label": "running_with_errors", + "content": "running_with_errors" + }, + { + "label": "rv_hookup", + "content": "rv_hookup" + }, + { + "label": "safety_check", + "content": "safety_check" + }, + { + "label": "safety_check_off", + "content": "safety_check_off" + }, + { + "label": "safety_divider", + "content": "safety_divider" + }, + { + "label": "sailing", + "content": "sailing" + }, + { + "label": "salinity", + "content": "salinity" + }, + { + "label": "sanitizer", + "content": "sanitizer" + }, + { + "label": "satellite", + "content": "satellite" + }, + { + "label": "satellite_alt", + "content": "satellite_alt" + }, + { + "label": "sauna", + "content": "sauna" + }, + { + "label": "save", + "content": "save" + }, + { + "label": "save_as", + "content": "save_as" + }, + { + "label": "saved_search", + "content": "saved_search" + }, + { + "label": "savings", + "content": "savings" + }, + { + "label": "scale", + "content": "scale" + }, + { + "label": "scan", + "content": "scan" + }, + { + "label": "scan_delete", + "content": "scan_delete" + }, + { + "label": "scanner", + "content": "scanner" + }, + { + "label": "scatter_plot", + "content": "scatter_plot" + }, + { + "label": "scene", + "content": "scene" + }, + { + "label": "schedule", + "content": "schedule" + }, + { + "label": "schedule_send", + "content": "schedule_send" + }, + { + "label": "schema", + "content": "schema" + }, + { + "label": "school", + "content": "school" + }, + { + "label": "science", + "content": "science" + }, + { + "label": "science_off", + "content": "science_off" + }, + { + "label": "scooter", + "content": "scooter" + }, + { + "label": "score", + "content": "score" + }, + { + "label": "scoreboard", + "content": "scoreboard" + }, + { + "label": "screen_lock_landscape", + "content": "screen_lock_landscape" + }, + { + "label": "screen_lock_portrait", + "content": "screen_lock_portrait" + }, + { + "label": "screen_lock_rotation", + "content": "screen_lock_rotation" + }, + { + "label": "screen_record", + "content": "screen_record" + }, + { + "label": "screen_rotation", + "content": "screen_rotation" + }, + { + "label": "screen_rotation_alt", + "content": "screen_rotation_alt" + }, + { + "label": "screen_rotation_up", + "content": "screen_rotation_up" + }, + { + "label": "screen_search_desktop", + "content": "screen_search_desktop" + }, + { + "label": "screen_share", + "content": "screen_share" + }, + { + "label": "screenshot", + "content": "screenshot" + }, + { + "label": "screenshot_frame", + "content": "screenshot_frame" + }, + { + "label": "screenshot_keyboard", + "content": "screenshot_keyboard" + }, + { + "label": "screenshot_monitor", + "content": "screenshot_monitor" + }, + { + "label": "screenshot_region", + "content": "screenshot_region" + }, + { + "label": "screenshot_tablet", + "content": "screenshot_tablet" + }, + { + "label": "script", + "content": "script" + }, + { + "label": "scrollable_header", + "content": "scrollable_header" + }, + { + "label": "scuba_diving", + "content": "scuba_diving" + }, + { + "label": "sd", + "content": "sd" + }, + { + "label": "sd_card", + "content": "sd_card" + }, + { + "label": "sd_card_alert", + "content": "sd_card_alert" + }, + { + "label": "sdk", + "content": "sdk" + }, + { + "label": "search", + "content": "search" + }, + { + "label": "search_check", + "content": "search_check" + }, + { + "label": "search_check_2", + "content": "search_check_2" + }, + { + "label": "search_hands_free", + "content": "search_hands_free" + }, + { + "label": "search_insights", + "content": "search_insights" + }, + { + "label": "search_off", + "content": "search_off" + }, + { + "label": "security", + "content": "security" + }, + { + "label": "security_key", + "content": "security_key" + }, + { + "label": "security_update_good", + "content": "security_update_good" + }, + { + "label": "security_update_warning", + "content": "security_update_warning" + }, + { + "label": "segment", + "content": "segment" + }, + { + "label": "select", + "content": "select" + }, + { + "label": "select_all", + "content": "select_all" + }, + { + "label": "select_check_box", + "content": "select_check_box" + }, + { + "label": "select_to_speak", + "content": "select_to_speak" + }, + { + "label": "select_window", + "content": "select_window" + }, + { + "label": "select_window_2", + "content": "select_window_2" + }, + { + "label": "select_window_off", + "content": "select_window_off" + }, + { + "label": "self_care", + "content": "self_care" + }, + { + "label": "self_improvement", + "content": "self_improvement" + }, + { + "label": "sell", + "content": "sell" + }, + { + "label": "send", + "content": "send" + }, + { + "label": "send_and_archive", + "content": "send_and_archive" + }, + { + "label": "send_money", + "content": "send_money" + }, + { + "label": "send_time_extension", + "content": "send_time_extension" + }, + { + "label": "send_to_mobile", + "content": "send_to_mobile" + }, + { + "label": "sensor_door", + "content": "sensor_door" + }, + { + "label": "sensor_occupied", + "content": "sensor_occupied" + }, + { + "label": "sensor_window", + "content": "sensor_window" + }, + { + "label": "sensors", + "content": "sensors" + }, + { + "label": "sensors_krx", + "content": "sensors_krx" + }, + { + "label": "sensors_krx_off", + "content": "sensors_krx_off" + }, + { + "label": "sensors_off", + "content": "sensors_off" + }, + { + "label": "sentiment_calm", + "content": "sentiment_calm" + }, + { + "label": "sentiment_content", + "content": "sentiment_content" + }, + { + "label": "sentiment_dissatisfied", + "content": "sentiment_dissatisfied" + }, + { + "label": "sentiment_excited", + "content": "sentiment_excited" + }, + { + "label": "sentiment_extremely_dissatisfied", + "content": "sentiment_extremely_dissatisfied" + }, + { + "label": "sentiment_frustrated", + "content": "sentiment_frustrated" + }, + { + "label": "sentiment_neutral", + "content": "sentiment_neutral" + }, + { + "label": "sentiment_sad", + "content": "sentiment_sad" + }, + { + "label": "sentiment_satisfied", + "content": "sentiment_satisfied" + }, + { + "label": "sentiment_stressed", + "content": "sentiment_stressed" + }, + { + "label": "sentiment_very_dissatisfied", + "content": "sentiment_very_dissatisfied" + }, + { + "label": "sentiment_very_satisfied", + "content": "sentiment_very_satisfied" + }, + { + "label": "sentiment_worried", + "content": "sentiment_worried" + }, + { + "label": "serif", + "content": "serif" + }, + { + "label": "service_toolbox", + "content": "service_toolbox" + }, + { + "label": "set_meal", + "content": "set_meal" + }, + { + "label": "settings", + "content": "settings" + }, + { + "label": "settings_accessibility", + "content": "settings_accessibility" + }, + { + "label": "settings_account_box", + "content": "settings_account_box" + }, + { + "label": "settings_alert", + "content": "settings_alert" + }, + { + "label": "settings_applications", + "content": "settings_applications" + }, + { + "label": "settings_b_roll", + "content": "settings_b_roll" + }, + { + "label": "settings_backup_restore", + "content": "settings_backup_restore" + }, + { + "label": "settings_bluetooth", + "content": "settings_bluetooth" + }, + { + "label": "settings_brightness", + "content": "settings_brightness" + }, + { + "label": "settings_cell", + "content": "settings_cell" + }, + { + "label": "settings_cinematic_blur", + "content": "settings_cinematic_blur" + }, + { + "label": "settings_ethernet", + "content": "settings_ethernet" + }, + { + "label": "settings_heart", + "content": "settings_heart" + }, + { + "label": "settings_input_antenna", + "content": "settings_input_antenna" + }, + { + "label": "settings_input_component", + "content": "settings_input_component" + }, + { + "label": "settings_input_hdmi", + "content": "settings_input_hdmi" + }, + { + "label": "settings_input_svideo", + "content": "settings_input_svideo" + }, + { + "label": "settings_motion_mode", + "content": "settings_motion_mode" + }, + { + "label": "settings_night_sight", + "content": "settings_night_sight" + }, + { + "label": "settings_overscan", + "content": "settings_overscan" + }, + { + "label": "settings_panorama", + "content": "settings_panorama" + }, + { + "label": "settings_phone", + "content": "settings_phone" + }, + { + "label": "settings_photo_camera", + "content": "settings_photo_camera" + }, + { + "label": "settings_power", + "content": "settings_power" + }, + { + "label": "settings_remote", + "content": "settings_remote" + }, + { + "label": "settings_slow_motion", + "content": "settings_slow_motion" + }, + { + "label": "settings_system_daydream", + "content": "settings_system_daydream" + }, + { + "label": "settings_timelapse", + "content": "settings_timelapse" + }, + { + "label": "settings_video_camera", + "content": "settings_video_camera" + }, + { + "label": "settings_voice", + "content": "settings_voice" + }, + { + "label": "settop_component", + "content": "settop_component" + }, + { + "label": "severe_cold", + "content": "severe_cold" + }, + { + "label": "shadow", + "content": "shadow" + }, + { + "label": "shadow_add", + "content": "shadow_add" + }, + { + "label": "shadow_minus", + "content": "shadow_minus" + }, + { + "label": "shape_line", + "content": "shape_line" + }, + { + "label": "shapes", + "content": "shapes" + }, + { + "label": "share", + "content": "share" + }, + { + "label": "share_location", + "content": "share_location" + }, + { + "label": "share_off", + "content": "share_off" + }, + { + "label": "share_reviews", + "content": "share_reviews" + }, + { + "label": "share_windows", + "content": "share_windows" + }, + { + "label": "sheets_rtl", + "content": "sheets_rtl" + }, + { + "label": "shelf_auto_hide", + "content": "shelf_auto_hide" + }, + { + "label": "shelf_position", + "content": "shelf_position" + }, + { + "label": "shelves", + "content": "shelves" + }, + { + "label": "shield", + "content": "shield" + }, + { + "label": "shield_lock", + "content": "shield_lock" + }, + { + "label": "shield_locked", + "content": "shield_locked" + }, + { + "label": "shield_moon", + "content": "shield_moon" + }, + { + "label": "shield_person", + "content": "shield_person" + }, + { + "label": "shield_question", + "content": "shield_question" + }, + { + "label": "shield_with_heart", + "content": "shield_with_heart" + }, + { + "label": "shield_with_house", + "content": "shield_with_house" + }, + { + "label": "shift", + "content": "shift" + }, + { + "label": "shift_lock", + "content": "shift_lock" + }, + { + "label": "shift_lock_off", + "content": "shift_lock_off" + }, + { + "label": "shop", + "content": "shop" + }, + { + "label": "shop_two", + "content": "shop_two" + }, + { + "label": "shopping_bag", + "content": "shopping_bag" + }, + { + "label": "shopping_basket", + "content": "shopping_basket" + }, + { + "label": "shopping_cart", + "content": "shopping_cart" + }, + { + "label": "shopping_cart_checkout", + "content": "shopping_cart_checkout" + }, + { + "label": "shopping_cart_off", + "content": "shopping_cart_off" + }, + { + "label": "shoppingmode", + "content": "shoppingmode" + }, + { + "label": "short_stay", + "content": "short_stay" + }, + { + "label": "short_text", + "content": "short_text" + }, + { + "label": "show_chart", + "content": "show_chart" + }, + { + "label": "shower", + "content": "shower" + }, + { + "label": "shuffle", + "content": "shuffle" + }, + { + "label": "shuffle_on", + "content": "shuffle_on" + }, + { + "label": "shutter_speed", + "content": "shutter_speed" + }, + { + "label": "shutter_speed_add", + "content": "shutter_speed_add" + }, + { + "label": "shutter_speed_minus", + "content": "shutter_speed_minus" + }, + { + "label": "sick", + "content": "sick" + }, + { + "label": "side_navigation", + "content": "side_navigation" + }, + { + "label": "sign_language", + "content": "sign_language" + }, + { + "label": "signal_cellular_0_bar", + "content": "signal_cellular_0_bar" + }, + { + "label": "signal_cellular_1_bar", + "content": "signal_cellular_1_bar" + }, + { + "label": "signal_cellular_2_bar", + "content": "signal_cellular_2_bar" + }, + { + "label": "signal_cellular_3_bar", + "content": "signal_cellular_3_bar" + }, + { + "label": "signal_cellular_4_bar", + "content": "signal_cellular_4_bar" + }, + { + "label": "signal_cellular_add", + "content": "signal_cellular_add" + }, + { + "label": "signal_cellular_alt", + "content": "signal_cellular_alt" + }, + { + "label": "signal_cellular_alt_1_bar", + "content": "signal_cellular_alt_1_bar" + }, + { + "label": "signal_cellular_alt_2_bar", + "content": "signal_cellular_alt_2_bar" + }, + { + "label": "signal_cellular_connected_no_internet_0_bar", + "content": "signal_cellular_connected_no_internet_0_bar" + }, + { + "label": "signal_cellular_connected_no_internet_4_bar", + "content": "signal_cellular_connected_no_internet_4_bar" + }, + { + "label": "signal_cellular_nodata", + "content": "signal_cellular_nodata" + }, + { + "label": "signal_cellular_null", + "content": "signal_cellular_null" + }, + { + "label": "signal_cellular_off", + "content": "signal_cellular_off" + }, + { + "label": "signal_cellular_pause", + "content": "signal_cellular_pause" + }, + { + "label": "signal_disconnected", + "content": "signal_disconnected" + }, + { + "label": "signal_wifi_0_bar", + "content": "signal_wifi_0_bar" + }, + { + "label": "signal_wifi_4_bar", + "content": "signal_wifi_4_bar" + }, + { + "label": "signal_wifi_bad", + "content": "signal_wifi_bad" + }, + { + "label": "signal_wifi_off", + "content": "signal_wifi_off" + }, + { + "label": "signal_wifi_statusbar_not_connected", + "content": "signal_wifi_statusbar_not_connected" + }, + { + "label": "signal_wifi_statusbar_null", + "content": "signal_wifi_statusbar_null" + }, + { + "label": "signature", + "content": "signature" + }, + { + "label": "signpost", + "content": "signpost" + }, + { + "label": "sim_card", + "content": "sim_card" + }, + { + "label": "sim_card_download", + "content": "sim_card_download" + }, + { + "label": "single_bed", + "content": "single_bed" + }, + { + "label": "sip", + "content": "sip" + }, + { + "label": "skateboarding", + "content": "skateboarding" + }, + { + "label": "skeleton", + "content": "skeleton" + }, + { + "label": "skillet", + "content": "skillet" + }, + { + "label": "skillet_cooktop", + "content": "skillet_cooktop" + }, + { + "label": "skip_next", + "content": "skip_next" + }, + { + "label": "skip_previous", + "content": "skip_previous" + }, + { + "label": "skull", + "content": "skull" + }, + { + "label": "slab_serif", + "content": "slab_serif" + }, + { + "label": "sledding", + "content": "sledding" + }, + { + "label": "sleep_score", + "content": "sleep_score" + }, + { + "label": "slide_library", + "content": "slide_library" + }, + { + "label": "sliders", + "content": "sliders" + }, + { + "label": "slideshow", + "content": "slideshow" + }, + { + "label": "slow_motion_video", + "content": "slow_motion_video" + }, + { + "label": "smart_card_reader", + "content": "smart_card_reader" + }, + { + "label": "smart_card_reader_off", + "content": "smart_card_reader_off" + }, + { + "label": "smart_display", + "content": "smart_display" + }, + { + "label": "smart_outlet", + "content": "smart_outlet" + }, + { + "label": "smart_screen", + "content": "smart_screen" + }, + { + "label": "smart_toy", + "content": "smart_toy" + }, + { + "label": "smartphone", + "content": "smartphone" + }, + { + "label": "smb_share", + "content": "smb_share" + }, + { + "label": "smoke_free", + "content": "smoke_free" + }, + { + "label": "smoking_rooms", + "content": "smoking_rooms" + }, + { + "label": "sms", + "content": "sms" + }, + { + "label": "snippet_folder", + "content": "snippet_folder" + }, + { + "label": "snooze", + "content": "snooze" + }, + { + "label": "snowboarding", + "content": "snowboarding" + }, + { + "label": "snowing", + "content": "snowing" + }, + { + "label": "snowing_heavy", + "content": "snowing_heavy" + }, + { + "label": "snowmobile", + "content": "snowmobile" + }, + { + "label": "snowshoeing", + "content": "snowshoeing" + }, + { + "label": "soap", + "content": "soap" + }, + { + "label": "social_distance", + "content": "social_distance" + }, + { + "label": "social_leaderboard", + "content": "social_leaderboard" + }, + { + "label": "solar_power", + "content": "solar_power" + }, + { + "label": "sort", + "content": "sort" + }, + { + "label": "sort_by_alpha", + "content": "sort_by_alpha" + }, + { + "label": "sos", + "content": "sos" + }, + { + "label": "sound_detection_dog_barking", + "content": "sound_detection_dog_barking" + }, + { + "label": "sound_detection_glass_break", + "content": "sound_detection_glass_break" + }, + { + "label": "sound_detection_loud_sound", + "content": "sound_detection_loud_sound" + }, + { + "label": "sound_sampler", + "content": "sound_sampler" + }, + { + "label": "soup_kitchen", + "content": "soup_kitchen" + }, + { + "label": "source_environment", + "content": "source_environment" + }, + { + "label": "source_notes", + "content": "source_notes" + }, + { + "label": "south", + "content": "south" + }, + { + "label": "south_america", + "content": "south_america" + }, + { + "label": "south_east", + "content": "south_east" + }, + { + "label": "south_west", + "content": "south_west" + }, + { + "label": "spa", + "content": "spa" + }, + { + "label": "space_bar", + "content": "space_bar" + }, + { + "label": "space_dashboard", + "content": "space_dashboard" + }, + { + "label": "spatial_audio", + "content": "spatial_audio" + }, + { + "label": "spatial_audio_off", + "content": "spatial_audio_off" + }, + { + "label": "spatial_speaker", + "content": "spatial_speaker" + }, + { + "label": "spatial_tracking", + "content": "spatial_tracking" + }, + { + "label": "speaker", + "content": "speaker" + }, + { + "label": "speaker_group", + "content": "speaker_group" + }, + { + "label": "speaker_notes", + "content": "speaker_notes" + }, + { + "label": "speaker_notes_off", + "content": "speaker_notes_off" + }, + { + "label": "speaker_phone", + "content": "speaker_phone" + }, + { + "label": "special_character", + "content": "special_character" + }, + { + "label": "specific_gravity", + "content": "specific_gravity" + }, + { + "label": "speech_to_text", + "content": "speech_to_text" + }, + { + "label": "speed", + "content": "speed" + }, + { + "label": "speed_0_25", + "content": "speed_0_25" + }, + { + "label": "speed_0_2x", + "content": "speed_0_2x" + }, + { + "label": "speed_0_5", + "content": "speed_0_5" + }, + { + "label": "speed_0_5x", + "content": "speed_0_5x" + }, + { + "label": "speed_0_75", + "content": "speed_0_75" + }, + { + "label": "speed_0_7x", + "content": "speed_0_7x" + }, + { + "label": "speed_1_2", + "content": "speed_1_2" + }, + { + "label": "speed_1_25", + "content": "speed_1_25" + }, + { + "label": "speed_1_2x", + "content": "speed_1_2x" + }, + { + "label": "speed_1_5", + "content": "speed_1_5" + }, + { + "label": "speed_1_5x", + "content": "speed_1_5x" + }, + { + "label": "speed_1_75", + "content": "speed_1_75" + }, + { + "label": "speed_1_7x", + "content": "speed_1_7x" + }, + { + "label": "speed_2x", + "content": "speed_2x" + }, + { + "label": "speed_camera", + "content": "speed_camera" + }, + { + "label": "spellcheck", + "content": "spellcheck" + }, + { + "label": "splitscreen", + "content": "splitscreen" + }, + { + "label": "splitscreen_add", + "content": "splitscreen_add" + }, + { + "label": "splitscreen_bottom", + "content": "splitscreen_bottom" + }, + { + "label": "splitscreen_landscape", + "content": "splitscreen_landscape" + }, + { + "label": "splitscreen_left", + "content": "splitscreen_left" + }, + { + "label": "splitscreen_portrait", + "content": "splitscreen_portrait" + }, + { + "label": "splitscreen_right", + "content": "splitscreen_right" + }, + { + "label": "splitscreen_top", + "content": "splitscreen_top" + }, + { + "label": "splitscreen_vertical_add", + "content": "splitscreen_vertical_add" + }, + { + "label": "spo2", + "content": "spo2" + }, + { + "label": "spoke", + "content": "spoke" + }, + { + "label": "sports", + "content": "sports" + }, + { + "label": "sports_and_outdoors", + "content": "sports_and_outdoors" + }, + { + "label": "sports_bar", + "content": "sports_bar" + }, + { + "label": "sports_baseball", + "content": "sports_baseball" + }, + { + "label": "sports_basketball", + "content": "sports_basketball" + }, + { + "label": "sports_cricket", + "content": "sports_cricket" + }, + { + "label": "sports_esports", + "content": "sports_esports" + }, + { + "label": "sports_football", + "content": "sports_football" + }, + { + "label": "sports_golf", + "content": "sports_golf" + }, + { + "label": "sports_gymnastics", + "content": "sports_gymnastics" + }, + { + "label": "sports_handball", + "content": "sports_handball" + }, + { + "label": "sports_hockey", + "content": "sports_hockey" + }, + { + "label": "sports_kabaddi", + "content": "sports_kabaddi" + }, + { + "label": "sports_martial_arts", + "content": "sports_martial_arts" + }, + { + "label": "sports_mma", + "content": "sports_mma" + }, + { + "label": "sports_motorsports", + "content": "sports_motorsports" + }, + { + "label": "sports_rugby", + "content": "sports_rugby" + }, + { + "label": "sports_score", + "content": "sports_score" + }, + { + "label": "sports_soccer", + "content": "sports_soccer" + }, + { + "label": "sports_tennis", + "content": "sports_tennis" + }, + { + "label": "sports_volleyball", + "content": "sports_volleyball" + }, + { + "label": "sprinkler", + "content": "sprinkler" + }, + { + "label": "sprint", + "content": "sprint" + }, + { + "label": "square", + "content": "square" + }, + { + "label": "square_foot", + "content": "square_foot" + }, + { + "label": "ssid_chart", + "content": "ssid_chart" + }, + { + "label": "stack", + "content": "stack" + }, + { + "label": "stack_off", + "content": "stack_off" + }, + { + "label": "stack_star", + "content": "stack_star" + }, + { + "label": "stacked_bar_chart", + "content": "stacked_bar_chart" + }, + { + "label": "stacked_email", + "content": "stacked_email" + }, + { + "label": "stacked_inbox", + "content": "stacked_inbox" + }, + { + "label": "stacked_line_chart", + "content": "stacked_line_chart" + }, + { + "label": "stacks", + "content": "stacks" + }, + { + "label": "stadia_controller", + "content": "stadia_controller" + }, + { + "label": "stadium", + "content": "stadium" + }, + { + "label": "stairs", + "content": "stairs" + }, + { + "label": "stairs_2", + "content": "stairs_2" + }, + { + "label": "star", + "content": "star" + }, + { + "label": "star_half", + "content": "star_half" + }, + { + "label": "star_rate", + "content": "star_rate" + }, + { + "label": "star_rate_half", + "content": "star_rate_half" + }, + { + "label": "stars", + "content": "stars" + }, + { + "label": "start", + "content": "start" + }, + { + "label": "stat_0", + "content": "stat_0" + }, + { + "label": "stat_1", + "content": "stat_1" + }, + { + "label": "stat_2", + "content": "stat_2" + }, + { + "label": "stat_3", + "content": "stat_3" + }, + { + "label": "stat_minus_1", + "content": "stat_minus_1" + }, + { + "label": "stat_minus_2", + "content": "stat_minus_2" + }, + { + "label": "stat_minus_3", + "content": "stat_minus_3" + }, + { + "label": "stay_current_landscape", + "content": "stay_current_landscape" + }, + { + "label": "stay_current_portrait", + "content": "stay_current_portrait" + }, + { + "label": "stay_primary_landscape", + "content": "stay_primary_landscape" + }, + { + "label": "stay_primary_portrait", + "content": "stay_primary_portrait" + }, + { + "label": "step", + "content": "step" + }, + { + "label": "step_into", + "content": "step_into" + }, + { + "label": "step_out", + "content": "step_out" + }, + { + "label": "step_over", + "content": "step_over" + }, + { + "label": "steppers", + "content": "steppers" + }, + { + "label": "steps", + "content": "steps" + }, + { + "label": "stethoscope", + "content": "stethoscope" + }, + { + "label": "stethoscope_arrow", + "content": "stethoscope_arrow" + }, + { + "label": "stethoscope_check", + "content": "stethoscope_check" + }, + { + "label": "sticky_note", + "content": "sticky_note" + }, + { + "label": "sticky_note_2", + "content": "sticky_note_2" + }, + { + "label": "stock_media", + "content": "stock_media" + }, + { + "label": "stockpot", + "content": "stockpot" + }, + { + "label": "stop", + "content": "stop" + }, + { + "label": "stop_circle", + "content": "stop_circle" + }, + { + "label": "stop_screen_share", + "content": "stop_screen_share" + }, + { + "label": "storage", + "content": "storage" + }, + { + "label": "store", + "content": "store" + }, + { + "label": "storefront", + "content": "storefront" + }, + { + "label": "storm", + "content": "storm" + }, + { + "label": "straight", + "content": "straight" + }, + { + "label": "straighten", + "content": "straighten" + }, + { + "label": "strategy", + "content": "strategy" + }, + { + "label": "stream", + "content": "stream" + }, + { + "label": "stream_apps", + "content": "stream_apps" + }, + { + "label": "streetview", + "content": "streetview" + }, + { + "label": "stress_management", + "content": "stress_management" + }, + { + "label": "strikethrough_s", + "content": "strikethrough_s" + }, + { + "label": "stroke_full", + "content": "stroke_full" + }, + { + "label": "stroke_partial", + "content": "stroke_partial" + }, + { + "label": "stroller", + "content": "stroller" + }, + { + "label": "style", + "content": "style" + }, + { + "label": "styler", + "content": "styler" + }, + { + "label": "stylus", + "content": "stylus" + }, + { + "label": "stylus_laser_pointer", + "content": "stylus_laser_pointer" + }, + { + "label": "stylus_note", + "content": "stylus_note" + }, + { + "label": "subdirectory_arrow_left", + "content": "subdirectory_arrow_left" + }, + { + "label": "subdirectory_arrow_right", + "content": "subdirectory_arrow_right" + }, + { + "label": "subheader", + "content": "subheader" + }, + { + "label": "subject", + "content": "subject" + }, + { + "label": "subscript", + "content": "subscript" + }, + { + "label": "subscriptions", + "content": "subscriptions" + }, + { + "label": "subtitles", + "content": "subtitles" + }, + { + "label": "subtitles_off", + "content": "subtitles_off" + }, + { + "label": "subway", + "content": "subway" + }, + { + "label": "summarize", + "content": "summarize" + }, + { + "label": "sunny", + "content": "sunny" + }, + { + "label": "sunny_snowing", + "content": "sunny_snowing" + }, + { + "label": "superscript", + "content": "superscript" + }, + { + "label": "supervised_user_circle", + "content": "supervised_user_circle" + }, + { + "label": "supervised_user_circle_off", + "content": "supervised_user_circle_off" + }, + { + "label": "supervisor_account", + "content": "supervisor_account" + }, + { + "label": "support", + "content": "support" + }, + { + "label": "support_agent", + "content": "support_agent" + }, + { + "label": "surfing", + "content": "surfing" + }, + { + "label": "surgical", + "content": "surgical" + }, + { + "label": "surround_sound", + "content": "surround_sound" + }, + { + "label": "swap_calls", + "content": "swap_calls" + }, + { + "label": "swap_driving_apps", + "content": "swap_driving_apps" + }, + { + "label": "swap_driving_apps_wheel", + "content": "swap_driving_apps_wheel" + }, + { + "label": "swap_horiz", + "content": "swap_horiz" + }, + { + "label": "swap_horizontal_circle", + "content": "swap_horizontal_circle" + }, + { + "label": "swap_vert", + "content": "swap_vert" + }, + { + "label": "swap_vertical_circle", + "content": "swap_vertical_circle" + }, + { + "label": "sweep", + "content": "sweep" + }, + { + "label": "swipe", + "content": "swipe" + }, + { + "label": "swipe_down", + "content": "swipe_down" + }, + { + "label": "swipe_down_alt", + "content": "swipe_down_alt" + }, + { + "label": "swipe_left", + "content": "swipe_left" + }, + { + "label": "swipe_left_alt", + "content": "swipe_left_alt" + }, + { + "label": "swipe_right", + "content": "swipe_right" + }, + { + "label": "swipe_right_alt", + "content": "swipe_right_alt" + }, + { + "label": "swipe_up", + "content": "swipe_up" + }, + { + "label": "swipe_up_alt", + "content": "swipe_up_alt" + }, + { + "label": "swipe_vertical", + "content": "swipe_vertical" + }, + { + "label": "switch", + "content": "switch" + }, + { + "label": "switch_access", + "content": "switch_access" + }, + { + "label": "switch_access_2", + "content": "switch_access_2" + }, + { + "label": "switch_access_shortcut", + "content": "switch_access_shortcut" + }, + { + "label": "switch_access_shortcut_add", + "content": "switch_access_shortcut_add" + }, + { + "label": "switch_account", + "content": "switch_account" + }, + { + "label": "switch_camera", + "content": "switch_camera" + }, + { + "label": "switch_left", + "content": "switch_left" + }, + { + "label": "switch_right", + "content": "switch_right" + }, + { + "label": "switch_video", + "content": "switch_video" + }, + { + "label": "switches", + "content": "switches" + }, + { + "label": "sword_rose", + "content": "sword_rose" + }, + { + "label": "swords", + "content": "swords" + }, + { + "label": "symptoms", + "content": "symptoms" + }, + { + "label": "synagogue", + "content": "synagogue" + }, + { + "label": "sync", + "content": "sync" + }, + { + "label": "sync_alt", + "content": "sync_alt" + }, + { + "label": "sync_disabled", + "content": "sync_disabled" + }, + { + "label": "sync_lock", + "content": "sync_lock" + }, + { + "label": "sync_problem", + "content": "sync_problem" + }, + { + "label": "sync_saved_locally", + "content": "sync_saved_locally" + }, + { + "label": "syringe", + "content": "syringe" + }, + { + "label": "system_update", + "content": "system_update" + }, + { + "label": "system_update_alt", + "content": "system_update_alt" + }, + { + "label": "tab", + "content": "tab" + }, + { + "label": "tab_close", + "content": "tab_close" + }, + { + "label": "tab_close_right", + "content": "tab_close_right" + }, + { + "label": "tab_duplicate", + "content": "tab_duplicate" + }, + { + "label": "tab_group", + "content": "tab_group" + }, + { + "label": "tab_move", + "content": "tab_move" + }, + { + "label": "tab_new_right", + "content": "tab_new_right" + }, + { + "label": "tab_recent", + "content": "tab_recent" + }, + { + "label": "tab_unselected", + "content": "tab_unselected" + }, + { + "label": "table", + "content": "table" + }, + { + "label": "table_bar", + "content": "table_bar" + }, + { + "label": "table_chart", + "content": "table_chart" + }, + { + "label": "table_chart_view", + "content": "table_chart_view" + }, + { + "label": "table_eye", + "content": "table_eye" + }, + { + "label": "table_lamp", + "content": "table_lamp" + }, + { + "label": "table_restaurant", + "content": "table_restaurant" + }, + { + "label": "table_rows", + "content": "table_rows" + }, + { + "label": "table_rows_narrow", + "content": "table_rows_narrow" + }, + { + "label": "table_view", + "content": "table_view" + }, + { + "label": "tablet", + "content": "tablet" + }, + { + "label": "tablet_android", + "content": "tablet_android" + }, + { + "label": "tablet_mac", + "content": "tablet_mac" + }, + { + "label": "tabs", + "content": "tabs" + }, + { + "label": "tactic", + "content": "tactic" + }, + { + "label": "tag", + "content": "tag" + }, + { + "label": "takeout_dining", + "content": "takeout_dining" + }, + { + "label": "tamper_detection_off", + "content": "tamper_detection_off" + }, + { + "label": "tamper_detection_on", + "content": "tamper_detection_on" + }, + { + "label": "tap_and_play", + "content": "tap_and_play" + }, + { + "label": "tapas", + "content": "tapas" + }, + { + "label": "target", + "content": "target" + }, + { + "label": "task", + "content": "task" + }, + { + "label": "task_alt", + "content": "task_alt" + }, + { + "label": "taunt", + "content": "taunt" + }, + { + "label": "taxi_alert", + "content": "taxi_alert" + }, + { + "label": "team_dashboard", + "content": "team_dashboard" + }, + { + "label": "temp_preferences_eco", + "content": "temp_preferences_eco" + }, + { + "label": "temple_buddhist", + "content": "temple_buddhist" + }, + { + "label": "temple_hindu", + "content": "temple_hindu" + }, + { + "label": "tenancy", + "content": "tenancy" + }, + { + "label": "terminal", + "content": "terminal" + }, + { + "label": "text_ad", + "content": "text_ad" + }, + { + "label": "text_decrease", + "content": "text_decrease" + }, + { + "label": "text_fields", + "content": "text_fields" + }, + { + "label": "text_fields_alt", + "content": "text_fields_alt" + }, + { + "label": "text_format", + "content": "text_format" + }, + { + "label": "text_increase", + "content": "text_increase" + }, + { + "label": "text_rotate_up", + "content": "text_rotate_up" + }, + { + "label": "text_rotate_vertical", + "content": "text_rotate_vertical" + }, + { + "label": "text_rotation_angledown", + "content": "text_rotation_angledown" + }, + { + "label": "text_rotation_angleup", + "content": "text_rotation_angleup" + }, + { + "label": "text_rotation_down", + "content": "text_rotation_down" + }, + { + "label": "text_rotation_none", + "content": "text_rotation_none" + }, + { + "label": "text_select_end", + "content": "text_select_end" + }, + { + "label": "text_select_jump_to_beginning", + "content": "text_select_jump_to_beginning" + }, + { + "label": "text_select_jump_to_end", + "content": "text_select_jump_to_end" + }, + { + "label": "text_select_move_back_character", + "content": "text_select_move_back_character" + }, + { + "label": "text_select_move_back_word", + "content": "text_select_move_back_word" + }, + { + "label": "text_select_move_down", + "content": "text_select_move_down" + }, + { + "label": "text_select_move_forward_character", + "content": "text_select_move_forward_character" + }, + { + "label": "text_select_move_forward_word", + "content": "text_select_move_forward_word" + }, + { + "label": "text_select_move_up", + "content": "text_select_move_up" + }, + { + "label": "text_select_start", + "content": "text_select_start" + }, + { + "label": "text_snippet", + "content": "text_snippet" + }, + { + "label": "text_to_speech", + "content": "text_to_speech" + }, + { + "label": "text_up", + "content": "text_up" + }, + { + "label": "texture", + "content": "texture" + }, + { + "label": "texture_add", + "content": "texture_add" + }, + { + "label": "texture_minus", + "content": "texture_minus" + }, + { + "label": "theater_comedy", + "content": "theater_comedy" + }, + { + "label": "theaters", + "content": "theaters" + }, + { + "label": "thermometer", + "content": "thermometer" + }, + { + "label": "thermometer_add", + "content": "thermometer_add" + }, + { + "label": "thermometer_gain", + "content": "thermometer_gain" + }, + { + "label": "thermometer_loss", + "content": "thermometer_loss" + }, + { + "label": "thermometer_minus", + "content": "thermometer_minus" + }, + { + "label": "thermostat", + "content": "thermostat" + }, + { + "label": "thermostat_auto", + "content": "thermostat_auto" + }, + { + "label": "thermostat_carbon", + "content": "thermostat_carbon" + }, + { + "label": "things_to_do", + "content": "things_to_do" + }, + { + "label": "thread_unread", + "content": "thread_unread" + }, + { + "label": "thumb_down", + "content": "thumb_down" + }, + { + "label": "thumb_up", + "content": "thumb_up" + }, + { + "label": "thumbnail_bar", + "content": "thumbnail_bar" + }, + { + "label": "thumbs_up_down", + "content": "thumbs_up_down" + }, + { + "label": "thunderstorm", + "content": "thunderstorm" + }, + { + "label": "tibia", + "content": "tibia" + }, + { + "label": "tibia_alt", + "content": "tibia_alt" + }, + { + "label": "time_auto", + "content": "time_auto" + }, + { + "label": "timelapse", + "content": "timelapse" + }, + { + "label": "timeline", + "content": "timeline" + }, + { + "label": "timer", + "content": "timer" + }, + { + "label": "timer_10", + "content": "timer_10" + }, + { + "label": "timer_10_alt_1", + "content": "timer_10_alt_1" + }, + { + "label": "timer_10_select", + "content": "timer_10_select" + }, + { + "label": "timer_3", + "content": "timer_3" + }, + { + "label": "timer_3_alt_1", + "content": "timer_3_alt_1" + }, + { + "label": "timer_3_select", + "content": "timer_3_select" + }, + { + "label": "timer_5", + "content": "timer_5" + }, + { + "label": "timer_5_shutter", + "content": "timer_5_shutter" + }, + { + "label": "timer_off", + "content": "timer_off" + }, + { + "label": "timer_pause", + "content": "timer_pause" + }, + { + "label": "timer_play", + "content": "timer_play" + }, + { + "label": "tire_repair", + "content": "tire_repair" + }, + { + "label": "title", + "content": "title" + }, + { + "label": "titlecase", + "content": "titlecase" + }, + { + "label": "toast", + "content": "toast" + }, + { + "label": "toc", + "content": "toc" + }, + { + "label": "today", + "content": "today" + }, + { + "label": "toggle_off", + "content": "toggle_off" + }, + { + "label": "toggle_on", + "content": "toggle_on" + }, + { + "label": "token", + "content": "token" + }, + { + "label": "toll", + "content": "toll" + }, + { + "label": "tonality", + "content": "tonality" + }, + { + "label": "toolbar", + "content": "toolbar" + }, + { + "label": "tools_flat_head", + "content": "tools_flat_head" + }, + { + "label": "tools_installation_kit", + "content": "tools_installation_kit" + }, + { + "label": "tools_ladder", + "content": "tools_ladder" + }, + { + "label": "tools_level", + "content": "tools_level" + }, + { + "label": "tools_phillips", + "content": "tools_phillips" + }, + { + "label": "tools_pliers_wire_stripper", + "content": "tools_pliers_wire_stripper" + }, + { + "label": "tools_power_drill", + "content": "tools_power_drill" + }, + { + "label": "tooltip", + "content": "tooltip" + }, + { + "label": "top_panel_close", + "content": "top_panel_close" + }, + { + "label": "top_panel_open", + "content": "top_panel_open" + }, + { + "label": "topic", + "content": "topic" + }, + { + "label": "tornado", + "content": "tornado" + }, + { + "label": "total_dissolved_solids", + "content": "total_dissolved_solids" + }, + { + "label": "touch_app", + "content": "touch_app" + }, + { + "label": "touchpad_mouse", + "content": "touchpad_mouse" + }, + { + "label": "touchpad_mouse_off", + "content": "touchpad_mouse_off" + }, + { + "label": "tour", + "content": "tour" + }, + { + "label": "toys", + "content": "toys" + }, + { + "label": "toys_and_games", + "content": "toys_and_games" + }, + { + "label": "toys_fan", + "content": "toys_fan" + }, + { + "label": "track_changes", + "content": "track_changes" + }, + { + "label": "trackpad_input", + "content": "trackpad_input" + }, + { + "label": "traffic", + "content": "traffic" + }, + { + "label": "traffic_jam", + "content": "traffic_jam" + }, + { + "label": "trail_length", + "content": "trail_length" + }, + { + "label": "trail_length_medium", + "content": "trail_length_medium" + }, + { + "label": "trail_length_short", + "content": "trail_length_short" + }, + { + "label": "train", + "content": "train" + }, + { + "label": "tram", + "content": "tram" + }, + { + "label": "transcribe", + "content": "transcribe" + }, + { + "label": "transfer_within_a_station", + "content": "transfer_within_a_station" + }, + { + "label": "transform", + "content": "transform" + }, + { + "label": "transgender", + "content": "transgender" + }, + { + "label": "transit_enterexit", + "content": "transit_enterexit" + }, + { + "label": "transition_chop", + "content": "transition_chop" + }, + { + "label": "transition_dissolve", + "content": "transition_dissolve" + }, + { + "label": "transition_fade", + "content": "transition_fade" + }, + { + "label": "transition_push", + "content": "transition_push" + }, + { + "label": "transition_slide", + "content": "transition_slide" + }, + { + "label": "translate", + "content": "translate" + }, + { + "label": "transportation", + "content": "transportation" + }, + { + "label": "travel", + "content": "travel" + }, + { + "label": "travel_explore", + "content": "travel_explore" + }, + { + "label": "travel_luggage_and_bags", + "content": "travel_luggage_and_bags" + }, + { + "label": "trending_down", + "content": "trending_down" + }, + { + "label": "trending_flat", + "content": "trending_flat" + }, + { + "label": "trending_up", + "content": "trending_up" + }, + { + "label": "trip", + "content": "trip" + }, + { + "label": "trip_origin", + "content": "trip_origin" + }, + { + "label": "trolley", + "content": "trolley" + }, + { + "label": "trolley_cable_car", + "content": "trolley_cable_car" + }, + { + "label": "trophy", + "content": "trophy" + }, + { + "label": "troubleshoot", + "content": "troubleshoot" + }, + { + "label": "tsunami", + "content": "tsunami" + }, + { + "label": "tsv", + "content": "tsv" + }, + { + "label": "tty", + "content": "tty" + }, + { + "label": "tune", + "content": "tune" + }, + { + "label": "turn_left", + "content": "turn_left" + }, + { + "label": "turn_right", + "content": "turn_right" + }, + { + "label": "turn_sharp_left", + "content": "turn_sharp_left" + }, + { + "label": "turn_sharp_right", + "content": "turn_sharp_right" + }, + { + "label": "turn_slight_left", + "content": "turn_slight_left" + }, + { + "label": "turn_slight_right", + "content": "turn_slight_right" + }, + { + "label": "tv", + "content": "tv" + }, + { + "label": "tv_gen", + "content": "tv_gen" + }, + { + "label": "tv_guide", + "content": "tv_guide" + }, + { + "label": "tv_off", + "content": "tv_off" + }, + { + "label": "tv_options_edit_channels", + "content": "tv_options_edit_channels" + }, + { + "label": "tv_options_input_settings", + "content": "tv_options_input_settings" + }, + { + "label": "tv_remote", + "content": "tv_remote" + }, + { + "label": "tv_signin", + "content": "tv_signin" + }, + { + "label": "tv_with_assistant", + "content": "tv_with_assistant" + }, + { + "label": "two_pager", + "content": "two_pager" + }, + { + "label": "two_wheeler", + "content": "two_wheeler" + }, + { + "label": "type_specimen", + "content": "type_specimen" + }, + { + "label": "u_turn_left", + "content": "u_turn_left" + }, + { + "label": "u_turn_right", + "content": "u_turn_right" + }, + { + "label": "ulna_radius", + "content": "ulna_radius" + }, + { + "label": "ulna_radius_alt", + "content": "ulna_radius_alt" + }, + { + "label": "umbrella", + "content": "umbrella" + }, + { + "label": "unarchive", + "content": "unarchive" + }, + { + "label": "undo", + "content": "undo" + }, + { + "label": "unfold_less", + "content": "unfold_less" + }, + { + "label": "unfold_less_double", + "content": "unfold_less_double" + }, + { + "label": "unfold_more", + "content": "unfold_more" + }, + { + "label": "unfold_more_double", + "content": "unfold_more_double" + }, + { + "label": "ungroup", + "content": "ungroup" + }, + { + "label": "universal_currency", + "content": "universal_currency" + }, + { + "label": "universal_currency_alt", + "content": "universal_currency_alt" + }, + { + "label": "universal_local", + "content": "universal_local" + }, + { + "label": "unknown_2", + "content": "unknown_2" + }, + { + "label": "unknown_5", + "content": "unknown_5" + }, + { + "label": "unknown_7", + "content": "unknown_7" + }, + { + "label": "unknown_document", + "content": "unknown_document" + }, + { + "label": "unknown_med", + "content": "unknown_med" + }, + { + "label": "unlicense", + "content": "unlicense" + }, + { + "label": "unpaved_road", + "content": "unpaved_road" + }, + { + "label": "unpublished", + "content": "unpublished" + }, + { + "label": "unsubscribe", + "content": "unsubscribe" + }, + { + "label": "upcoming", + "content": "upcoming" + }, + { + "label": "update", + "content": "update" + }, + { + "label": "update_disabled", + "content": "update_disabled" + }, + { + "label": "upgrade", + "content": "upgrade" + }, + { + "label": "upload", + "content": "upload" + }, + { + "label": "upload_2", + "content": "upload_2" + }, + { + "label": "upload_file", + "content": "upload_file" + }, + { + "label": "uppercase", + "content": "uppercase" + }, + { + "label": "urology", + "content": "urology" + }, + { + "label": "usb", + "content": "usb" + }, + { + "label": "usb_off", + "content": "usb_off" + }, + { + "label": "user_attributes", + "content": "user_attributes" + }, + { + "label": "vaccines", + "content": "vaccines" + }, + { + "label": "vacuum", + "content": "vacuum" + }, + { + "label": "valve", + "content": "valve" + }, + { + "label": "vape_free", + "content": "vape_free" + }, + { + "label": "vaping_rooms", + "content": "vaping_rooms" + }, + { + "label": "variable_add", + "content": "variable_add" + }, + { + "label": "variable_insert", + "content": "variable_insert" + }, + { + "label": "variable_remove", + "content": "variable_remove" + }, + { + "label": "variables", + "content": "variables" + }, + { + "label": "ventilator", + "content": "ventilator" + }, + { + "label": "verified", + "content": "verified" + }, + { + "label": "verified_user", + "content": "verified_user" + }, + { + "label": "vertical_align_bottom", + "content": "vertical_align_bottom" + }, + { + "label": "vertical_align_center", + "content": "vertical_align_center" + }, + { + "label": "vertical_align_top", + "content": "vertical_align_top" + }, + { + "label": "vertical_distribute", + "content": "vertical_distribute" + }, + { + "label": "vertical_shades", + "content": "vertical_shades" + }, + { + "label": "vertical_shades_closed", + "content": "vertical_shades_closed" + }, + { + "label": "vertical_split", + "content": "vertical_split" + }, + { + "label": "vibration", + "content": "vibration" + }, + { + "label": "video_call", + "content": "video_call" + }, + { + "label": "video_camera_back", + "content": "video_camera_back" + }, + { + "label": "video_camera_front", + "content": "video_camera_front" + }, + { + "label": "video_camera_front_off", + "content": "video_camera_front_off" + }, + { + "label": "video_chat", + "content": "video_chat" + }, + { + "label": "video_file", + "content": "video_file" + }, + { + "label": "video_label", + "content": "video_label" + }, + { + "label": "video_library", + "content": "video_library" + }, + { + "label": "video_search", + "content": "video_search" + }, + { + "label": "video_settings", + "content": "video_settings" + }, + { + "label": "video_stable", + "content": "video_stable" + }, + { + "label": "videocam", + "content": "videocam" + }, + { + "label": "videocam_off", + "content": "videocam_off" + }, + { + "label": "videogame_asset", + "content": "videogame_asset" + }, + { + "label": "videogame_asset_off", + "content": "videogame_asset_off" + }, + { + "label": "view_agenda", + "content": "view_agenda" + }, + { + "label": "view_array", + "content": "view_array" + }, + { + "label": "view_carousel", + "content": "view_carousel" + }, + { + "label": "view_column", + "content": "view_column" + }, + { + "label": "view_column_2", + "content": "view_column_2" + }, + { + "label": "view_comfy", + "content": "view_comfy" + }, + { + "label": "view_comfy_alt", + "content": "view_comfy_alt" + }, + { + "label": "view_compact", + "content": "view_compact" + }, + { + "label": "view_compact_alt", + "content": "view_compact_alt" + }, + { + "label": "view_cozy", + "content": "view_cozy" + }, + { + "label": "view_day", + "content": "view_day" + }, + { + "label": "view_headline", + "content": "view_headline" + }, + { + "label": "view_in_ar", + "content": "view_in_ar" + }, + { + "label": "view_in_ar_off", + "content": "view_in_ar_off" + }, + { + "label": "view_kanban", + "content": "view_kanban" + }, + { + "label": "view_list", + "content": "view_list" + }, + { + "label": "view_module", + "content": "view_module" + }, + { + "label": "view_quilt", + "content": "view_quilt" + }, + { + "label": "view_real_size", + "content": "view_real_size" + }, + { + "label": "view_sidebar", + "content": "view_sidebar" + }, + { + "label": "view_stream", + "content": "view_stream" + }, + { + "label": "view_timeline", + "content": "view_timeline" + }, + { + "label": "view_week", + "content": "view_week" + }, + { + "label": "vignette", + "content": "vignette" + }, + { + "label": "villa", + "content": "villa" + }, + { + "label": "visibility", + "content": "visibility" + }, + { + "label": "visibility_lock", + "content": "visibility_lock" + }, + { + "label": "visibility_off", + "content": "visibility_off" + }, + { + "label": "vital_signs", + "content": "vital_signs" + }, + { + "label": "vo2_max", + "content": "vo2_max" + }, + { + "label": "voice_chat", + "content": "voice_chat" + }, + { + "label": "voice_over_off", + "content": "voice_over_off" + }, + { + "label": "voice_selection", + "content": "voice_selection" + }, + { + "label": "voicemail", + "content": "voicemail" + }, + { + "label": "volcano", + "content": "volcano" + }, + { + "label": "volume_down", + "content": "volume_down" + }, + { + "label": "volume_down_alt", + "content": "volume_down_alt" + }, + { + "label": "volume_mute", + "content": "volume_mute" + }, + { + "label": "volume_off", + "content": "volume_off" + }, + { + "label": "volume_up", + "content": "volume_up" + }, + { + "label": "volunteer_activism", + "content": "volunteer_activism" + }, + { + "label": "voting_chip", + "content": "voting_chip" + }, + { + "label": "vpn_key", + "content": "vpn_key" + }, + { + "label": "vpn_key_alert", + "content": "vpn_key_alert" + }, + { + "label": "vpn_key_off", + "content": "vpn_key_off" + }, + { + "label": "vpn_lock", + "content": "vpn_lock" + }, + { + "label": "vr180_create2d", + "content": "vr180_create2d" + }, + { + "label": "vr180_create2d_off", + "content": "vr180_create2d_off" + }, + { + "label": "vrpano", + "content": "vrpano" + }, + { + "label": "wall_art", + "content": "wall_art" + }, + { + "label": "wall_lamp", + "content": "wall_lamp" + }, + { + "label": "wallet", + "content": "wallet" + }, + { + "label": "wallpaper", + "content": "wallpaper" + }, + { + "label": "wallpaper_slideshow", + "content": "wallpaper_slideshow" + }, + { + "label": "ward", + "content": "ward" + }, + { + "label": "warehouse", + "content": "warehouse" + }, + { + "label": "warning", + "content": "warning" + }, + { + "label": "warning_off", + "content": "warning_off" + }, + { + "label": "wash", + "content": "wash" + }, + { + "label": "watch", + "content": "watch" + }, + { + "label": "watch_button_press", + "content": "watch_button_press" + }, + { + "label": "watch_check", + "content": "watch_check" + }, + { + "label": "watch_off", + "content": "watch_off" + }, + { + "label": "watch_screentime", + "content": "watch_screentime" + }, + { + "label": "watch_vibration", + "content": "watch_vibration" + }, + { + "label": "watch_wake", + "content": "watch_wake" + }, + { + "label": "water", + "content": "water" + }, + { + "label": "water_bottle", + "content": "water_bottle" + }, + { + "label": "water_bottle_large", + "content": "water_bottle_large" + }, + { + "label": "water_damage", + "content": "water_damage" + }, + { + "label": "water_do", + "content": "water_do" + }, + { + "label": "water_drop", + "content": "water_drop" + }, + { + "label": "water_ec", + "content": "water_ec" + }, + { + "label": "water_full", + "content": "water_full" + }, + { + "label": "water_heater", + "content": "water_heater" + }, + { + "label": "water_lock", + "content": "water_lock" + }, + { + "label": "water_loss", + "content": "water_loss" + }, + { + "label": "water_lux", + "content": "water_lux" + }, + { + "label": "water_medium", + "content": "water_medium" + }, + { + "label": "water_orp", + "content": "water_orp" + }, + { + "label": "water_ph", + "content": "water_ph" + }, + { + "label": "water_pump", + "content": "water_pump" + }, + { + "label": "water_voc", + "content": "water_voc" + }, + { + "label": "waterfall_chart", + "content": "waterfall_chart" + }, + { + "label": "waves", + "content": "waves" + }, + { + "label": "waving_hand", + "content": "waving_hand" + }, + { + "label": "wb_auto", + "content": "wb_auto" + }, + { + "label": "wb_incandescent", + "content": "wb_incandescent" + }, + { + "label": "wb_iridescent", + "content": "wb_iridescent" + }, + { + "label": "wb_shade", + "content": "wb_shade" + }, + { + "label": "wb_sunny", + "content": "wb_sunny" + }, + { + "label": "wb_twilight", + "content": "wb_twilight" + }, + { + "label": "wc", + "content": "wc" + }, + { + "label": "weather_hail", + "content": "weather_hail" + }, + { + "label": "weather_mix", + "content": "weather_mix" + }, + { + "label": "weather_snowy", + "content": "weather_snowy" + }, + { + "label": "web", + "content": "web" + }, + { + "label": "web_asset", + "content": "web_asset" + }, + { + "label": "web_asset_off", + "content": "web_asset_off" + }, + { + "label": "web_stories", + "content": "web_stories" + }, + { + "label": "web_traffic", + "content": "web_traffic" + }, + { + "label": "webhook", + "content": "webhook" + }, + { + "label": "weekend", + "content": "weekend" + }, + { + "label": "weight", + "content": "weight" + }, + { + "label": "west", + "content": "west" + }, + { + "label": "whatshot", + "content": "whatshot" + }, + { + "label": "wheelchair_pickup", + "content": "wheelchair_pickup" + }, + { + "label": "where_to_vote", + "content": "where_to_vote" + }, + { + "label": "widgets", + "content": "widgets" + }, + { + "label": "width", + "content": "width" + }, + { + "label": "width_full", + "content": "width_full" + }, + { + "label": "width_normal", + "content": "width_normal" + }, + { + "label": "width_wide", + "content": "width_wide" + }, + { + "label": "wifi", + "content": "wifi" + }, + { + "label": "wifi_1_bar", + "content": "wifi_1_bar" + }, + { + "label": "wifi_2_bar", + "content": "wifi_2_bar" + }, + { + "label": "wifi_add", + "content": "wifi_add" + }, + { + "label": "wifi_calling", + "content": "wifi_calling" + }, + { + "label": "wifi_calling_1", + "content": "wifi_calling_1" + }, + { + "label": "wifi_calling_2", + "content": "wifi_calling_2" + }, + { + "label": "wifi_calling_3", + "content": "wifi_calling_3" + }, + { + "label": "wifi_channel", + "content": "wifi_channel" + }, + { + "label": "wifi_find", + "content": "wifi_find" + }, + { + "label": "wifi_home", + "content": "wifi_home" + }, + { + "label": "wifi_lock", + "content": "wifi_lock" + }, + { + "label": "wifi_notification", + "content": "wifi_notification" + }, + { + "label": "wifi_off", + "content": "wifi_off" + }, + { + "label": "wifi_password", + "content": "wifi_password" + }, + { + "label": "wifi_protected_setup", + "content": "wifi_protected_setup" + }, + { + "label": "wifi_proxy", + "content": "wifi_proxy" + }, + { + "label": "wifi_tethering", + "content": "wifi_tethering" + }, + { + "label": "wifi_tethering_error", + "content": "wifi_tethering_error" + }, + { + "label": "wifi_tethering_off", + "content": "wifi_tethering_off" + }, + { + "label": "wind_power", + "content": "wind_power" + }, + { + "label": "window", + "content": "window" + }, + { + "label": "window_closed", + "content": "window_closed" + }, + { + "label": "window_open", + "content": "window_open" + }, + { + "label": "window_sensor", + "content": "window_sensor" + }, + { + "label": "wine_bar", + "content": "wine_bar" + }, + { + "label": "woman", + "content": "woman" + }, + { + "label": "woman_2", + "content": "woman_2" + }, + { + "label": "work", + "content": "work" + }, + { + "label": "work_alert", + "content": "work_alert" + }, + { + "label": "work_history", + "content": "work_history" + }, + { + "label": "work_update", + "content": "work_update" + }, + { + "label": "workspace_premium", + "content": "workspace_premium" + }, + { + "label": "workspaces", + "content": "workspaces" + }, + { + "label": "wounds_injuries", + "content": "wounds_injuries" + }, + { + "label": "wrap_text", + "content": "wrap_text" + }, + { + "label": "wrist", + "content": "wrist" + }, + { + "label": "wrong_location", + "content": "wrong_location" + }, + { + "label": "wysiwyg", + "content": "wysiwyg" + }, + { + "label": "yard", + "content": "yard" + }, + { + "label": "your_trips", + "content": "your_trips" + }, + { + "label": "youtube_activity", + "content": "youtube_activity" + }, + { + "label": "youtube_searched_for", + "content": "youtube_searched_for" + }, + { + "label": "zone_person_alert", + "content": "zone_person_alert" + }, + { + "label": "zone_person_idle", + "content": "zone_person_idle" + }, + { + "label": "zone_person_urgent", + "content": "zone_person_urgent" + }, + { + "label": "zoom_in", + "content": "zoom_in" + }, + { + "label": "zoom_in_map", + "content": "zoom_in_map" + }, + { + "label": "zoom_out", + "content": "zoom_out" + }, + { + "label": "zoom_out_map", + "content": "zoom_out_map" + } + ] +} diff --git a/packages/iconography/config/material-symbols-sharp.config.json b/packages/iconography/config/material-symbols-sharp.config.json new file mode 100644 index 0000000..2aed728 --- /dev/null +++ b/packages/iconography/config/material-symbols-sharp.config.json @@ -0,0 +1,13263 @@ +{ + "$schema": "../schema.json", + "title": "Sharp", + "name": "boxuk/material-symbols-sharp", + "tagName": "span", + "className": "material-symbols-sharp", + "url": "https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200", + "additionalCss": ".material-symbols-sharp { font-size: inherit !important; vertical-align: text-bottom; line-height: 1.333; text-decoration: inherit; font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }", + "icons": [ + { + "label": "123", + "content": "123" + }, + { + "label": "360", + "content": "360" + }, + { + "label": "10k", + "content": "10k" + }, + { + "label": "10mp", + "content": "10mp" + }, + { + "label": "11mp", + "content": "11mp" + }, + { + "label": "12mp", + "content": "12mp" + }, + { + "label": "13mp", + "content": "13mp" + }, + { + "label": "14mp", + "content": "14mp" + }, + { + "label": "15mp", + "content": "15mp" + }, + { + "label": "16mp", + "content": "16mp" + }, + { + "label": "17mp", + "content": "17mp" + }, + { + "label": "18_up_rating", + "content": "18_up_rating" + }, + { + "label": "18mp", + "content": "18mp" + }, + { + "label": "19mp", + "content": "19mp" + }, + { + "label": "1k", + "content": "1k" + }, + { + "label": "1k_plus", + "content": "1k_plus" + }, + { + "label": "1x_mobiledata", + "content": "1x_mobiledata" + }, + { + "label": "1x_mobiledata_badge", + "content": "1x_mobiledata_badge" + }, + { + "label": "20mp", + "content": "20mp" + }, + { + "label": "21mp", + "content": "21mp" + }, + { + "label": "22mp", + "content": "22mp" + }, + { + "label": "23mp", + "content": "23mp" + }, + { + "label": "24mp", + "content": "24mp" + }, + { + "label": "2d", + "content": "2d" + }, + { + "label": "2k", + "content": "2k" + }, + { + "label": "2k_plus", + "content": "2k_plus" + }, + { + "label": "2mp", + "content": "2mp" + }, + { + "label": "30fps", + "content": "30fps" + }, + { + "label": "30fps_select", + "content": "30fps_select" + }, + { + "label": "3d_rotation", + "content": "3d_rotation" + }, + { + "label": "3g_mobiledata", + "content": "3g_mobiledata" + }, + { + "label": "3g_mobiledata_badge", + "content": "3g_mobiledata_badge" + }, + { + "label": "3k", + "content": "3k" + }, + { + "label": "3k_plus", + "content": "3k_plus" + }, + { + "label": "3mp", + "content": "3mp" + }, + { + "label": "3p", + "content": "3p" + }, + { + "label": "4g_mobiledata", + "content": "4g_mobiledata" + }, + { + "label": "4g_mobiledata_badge", + "content": "4g_mobiledata_badge" + }, + { + "label": "4g_plus_mobiledata", + "content": "4g_plus_mobiledata" + }, + { + "label": "4k", + "content": "4k" + }, + { + "label": "4k_plus", + "content": "4k_plus" + }, + { + "label": "4mp", + "content": "4mp" + }, + { + "label": "50mp", + "content": "50mp" + }, + { + "label": "5g", + "content": "5g" + }, + { + "label": "5g_mobiledata_badge", + "content": "5g_mobiledata_badge" + }, + { + "label": "5k", + "content": "5k" + }, + { + "label": "5k_plus", + "content": "5k_plus" + }, + { + "label": "5mp", + "content": "5mp" + }, + { + "label": "60fps", + "content": "60fps" + }, + { + "label": "60fps_select", + "content": "60fps_select" + }, + { + "label": "6_ft_apart", + "content": "6_ft_apart" + }, + { + "label": "6k", + "content": "6k" + }, + { + "label": "6k_plus", + "content": "6k_plus" + }, + { + "label": "6mp", + "content": "6mp" + }, + { + "label": "7k", + "content": "7k" + }, + { + "label": "7k_plus", + "content": "7k_plus" + }, + { + "label": "7mp", + "content": "7mp" + }, + { + "label": "8k", + "content": "8k" + }, + { + "label": "8k_plus", + "content": "8k_plus" + }, + { + "label": "8mp", + "content": "8mp" + }, + { + "label": "9k", + "content": "9k" + }, + { + "label": "9k_plus", + "content": "9k_plus" + }, + { + "label": "9mp", + "content": "9mp" + }, + { + "label": "abc", + "content": "abc" + }, + { + "label": "ac_unit", + "content": "ac_unit" + }, + { + "label": "accessibility", + "content": "accessibility" + }, + { + "label": "accessibility_new", + "content": "accessibility_new" + }, + { + "label": "accessible", + "content": "accessible" + }, + { + "label": "accessible_forward", + "content": "accessible_forward" + }, + { + "label": "account_balance", + "content": "account_balance" + }, + { + "label": "account_balance_wallet", + "content": "account_balance_wallet" + }, + { + "label": "account_box", + "content": "account_box" + }, + { + "label": "account_child", + "content": "account_child" + }, + { + "label": "account_child_invert", + "content": "account_child_invert" + }, + { + "label": "account_circle", + "content": "account_circle" + }, + { + "label": "account_circle_off", + "content": "account_circle_off" + }, + { + "label": "account_tree", + "content": "account_tree" + }, + { + "label": "action_key", + "content": "action_key" + }, + { + "label": "activity_zone", + "content": "activity_zone" + }, + { + "label": "acute", + "content": "acute" + }, + { + "label": "ad", + "content": "ad" + }, + { + "label": "ad_group", + "content": "ad_group" + }, + { + "label": "ad_group_off", + "content": "ad_group_off" + }, + { + "label": "ad_off", + "content": "ad_off" + }, + { + "label": "ad_units", + "content": "ad_units" + }, + { + "label": "adaptive_audio_mic", + "content": "adaptive_audio_mic" + }, + { + "label": "adaptive_audio_mic_off", + "content": "adaptive_audio_mic_off" + }, + { + "label": "adb", + "content": "adb" + }, + { + "label": "add", + "content": "add" + }, + { + "label": "add_a_photo", + "content": "add_a_photo" + }, + { + "label": "add_ad", + "content": "add_ad" + }, + { + "label": "add_alert", + "content": "add_alert" + }, + { + "label": "add_box", + "content": "add_box" + }, + { + "label": "add_business", + "content": "add_business" + }, + { + "label": "add_call", + "content": "add_call" + }, + { + "label": "add_card", + "content": "add_card" + }, + { + "label": "add_chart", + "content": "add_chart" + }, + { + "label": "add_circle", + "content": "add_circle" + }, + { + "label": "add_comment", + "content": "add_comment" + }, + { + "label": "add_diamond", + "content": "add_diamond" + }, + { + "label": "add_home", + "content": "add_home" + }, + { + "label": "add_home_work", + "content": "add_home_work" + }, + { + "label": "add_link", + "content": "add_link" + }, + { + "label": "add_location", + "content": "add_location" + }, + { + "label": "add_location_alt", + "content": "add_location_alt" + }, + { + "label": "add_moderator", + "content": "add_moderator" + }, + { + "label": "add_notes", + "content": "add_notes" + }, + { + "label": "add_photo_alternate", + "content": "add_photo_alternate" + }, + { + "label": "add_reaction", + "content": "add_reaction" + }, + { + "label": "add_road", + "content": "add_road" + }, + { + "label": "add_shopping_cart", + "content": "add_shopping_cart" + }, + { + "label": "add_task", + "content": "add_task" + }, + { + "label": "add_to_drive", + "content": "add_to_drive" + }, + { + "label": "add_to_home_screen", + "content": "add_to_home_screen" + }, + { + "label": "add_to_photos", + "content": "add_to_photos" + }, + { + "label": "add_to_queue", + "content": "add_to_queue" + }, + { + "label": "add_triangle", + "content": "add_triangle" + }, + { + "label": "adf_scanner", + "content": "adf_scanner" + }, + { + "label": "adjust", + "content": "adjust" + }, + { + "label": "admin_meds", + "content": "admin_meds" + }, + { + "label": "admin_panel_settings", + "content": "admin_panel_settings" + }, + { + "label": "ads_click", + "content": "ads_click" + }, + { + "label": "agender", + "content": "agender" + }, + { + "label": "agriculture", + "content": "agriculture" + }, + { + "label": "air", + "content": "air" + }, + { + "label": "air_freshener", + "content": "air_freshener" + }, + { + "label": "air_purifier", + "content": "air_purifier" + }, + { + "label": "air_purifier_gen", + "content": "air_purifier_gen" + }, + { + "label": "airline_seat_flat", + "content": "airline_seat_flat" + }, + { + "label": "airline_seat_flat_angled", + "content": "airline_seat_flat_angled" + }, + { + "label": "airline_seat_individual_suite", + "content": "airline_seat_individual_suite" + }, + { + "label": "airline_seat_legroom_extra", + "content": "airline_seat_legroom_extra" + }, + { + "label": "airline_seat_legroom_normal", + "content": "airline_seat_legroom_normal" + }, + { + "label": "airline_seat_legroom_reduced", + "content": "airline_seat_legroom_reduced" + }, + { + "label": "airline_seat_recline_extra", + "content": "airline_seat_recline_extra" + }, + { + "label": "airline_seat_recline_normal", + "content": "airline_seat_recline_normal" + }, + { + "label": "airline_stops", + "content": "airline_stops" + }, + { + "label": "airlines", + "content": "airlines" + }, + { + "label": "airplane_ticket", + "content": "airplane_ticket" + }, + { + "label": "airplanemode_active", + "content": "airplanemode_active" + }, + { + "label": "airplanemode_inactive", + "content": "airplanemode_inactive" + }, + { + "label": "airplay", + "content": "airplay" + }, + { + "label": "airport_shuttle", + "content": "airport_shuttle" + }, + { + "label": "airware", + "content": "airware" + }, + { + "label": "airwave", + "content": "airwave" + }, + { + "label": "alarm", + "content": "alarm" + }, + { + "label": "alarm_add", + "content": "alarm_add" + }, + { + "label": "alarm_off", + "content": "alarm_off" + }, + { + "label": "alarm_on", + "content": "alarm_on" + }, + { + "label": "alarm_smart_wake", + "content": "alarm_smart_wake" + }, + { + "label": "album", + "content": "album" + }, + { + "label": "align_center", + "content": "align_center" + }, + { + "label": "align_end", + "content": "align_end" + }, + { + "label": "align_flex_center", + "content": "align_flex_center" + }, + { + "label": "align_flex_end", + "content": "align_flex_end" + }, + { + "label": "align_flex_start", + "content": "align_flex_start" + }, + { + "label": "align_horizontal_center", + "content": "align_horizontal_center" + }, + { + "label": "align_horizontal_left", + "content": "align_horizontal_left" + }, + { + "label": "align_horizontal_right", + "content": "align_horizontal_right" + }, + { + "label": "align_items_stretch", + "content": "align_items_stretch" + }, + { + "label": "align_justify_center", + "content": "align_justify_center" + }, + { + "label": "align_justify_flex_end", + "content": "align_justify_flex_end" + }, + { + "label": "align_justify_flex_start", + "content": "align_justify_flex_start" + }, + { + "label": "align_justify_space_around", + "content": "align_justify_space_around" + }, + { + "label": "align_justify_space_between", + "content": "align_justify_space_between" + }, + { + "label": "align_justify_space_even", + "content": "align_justify_space_even" + }, + { + "label": "align_justify_stretch", + "content": "align_justify_stretch" + }, + { + "label": "align_self_stretch", + "content": "align_self_stretch" + }, + { + "label": "align_space_around", + "content": "align_space_around" + }, + { + "label": "align_space_between", + "content": "align_space_between" + }, + { + "label": "align_space_even", + "content": "align_space_even" + }, + { + "label": "align_start", + "content": "align_start" + }, + { + "label": "align_stretch", + "content": "align_stretch" + }, + { + "label": "align_vertical_bottom", + "content": "align_vertical_bottom" + }, + { + "label": "align_vertical_center", + "content": "align_vertical_center" + }, + { + "label": "align_vertical_top", + "content": "align_vertical_top" + }, + { + "label": "all_inbox", + "content": "all_inbox" + }, + { + "label": "all_inclusive", + "content": "all_inclusive" + }, + { + "label": "all_match", + "content": "all_match" + }, + { + "label": "all_out", + "content": "all_out" + }, + { + "label": "allergies", + "content": "allergies" + }, + { + "label": "allergy", + "content": "allergy" + }, + { + "label": "alt_route", + "content": "alt_route" + }, + { + "label": "alternate_email", + "content": "alternate_email" + }, + { + "label": "altitude", + "content": "altitude" + }, + { + "label": "ambulance", + "content": "ambulance" + }, + { + "label": "amend", + "content": "amend" + }, + { + "label": "amp_stories", + "content": "amp_stories" + }, + { + "label": "analytics", + "content": "analytics" + }, + { + "label": "anchor", + "content": "anchor" + }, + { + "label": "android", + "content": "android" + }, + { + "label": "animated_images", + "content": "animated_images" + }, + { + "label": "animation", + "content": "animation" + }, + { + "label": "aod", + "content": "aod" + }, + { + "label": "aod_tablet", + "content": "aod_tablet" + }, + { + "label": "aod_watch", + "content": "aod_watch" + }, + { + "label": "apartment", + "content": "apartment" + }, + { + "label": "api", + "content": "api" + }, + { + "label": "apk_document", + "content": "apk_document" + }, + { + "label": "apk_install", + "content": "apk_install" + }, + { + "label": "app_badging", + "content": "app_badging" + }, + { + "label": "app_blocking", + "content": "app_blocking" + }, + { + "label": "app_promo", + "content": "app_promo" + }, + { + "label": "app_registration", + "content": "app_registration" + }, + { + "label": "app_shortcut", + "content": "app_shortcut" + }, + { + "label": "apparel", + "content": "apparel" + }, + { + "label": "approval", + "content": "approval" + }, + { + "label": "approval_delegation", + "content": "approval_delegation" + }, + { + "label": "apps", + "content": "apps" + }, + { + "label": "apps_outage", + "content": "apps_outage" + }, + { + "label": "aq", + "content": "aq" + }, + { + "label": "aq_indoor", + "content": "aq_indoor" + }, + { + "label": "ar_on_you", + "content": "ar_on_you" + }, + { + "label": "ar_stickers", + "content": "ar_stickers" + }, + { + "label": "architecture", + "content": "architecture" + }, + { + "label": "archive", + "content": "archive" + }, + { + "label": "area_chart", + "content": "area_chart" + }, + { + "label": "arming_countdown", + "content": "arming_countdown" + }, + { + "label": "arrow_and_edge", + "content": "arrow_and_edge" + }, + { + "label": "arrow_back", + "content": "arrow_back" + }, + { + "label": "arrow_back_ios", + "content": "arrow_back_ios" + }, + { + "label": "arrow_circle_down", + "content": "arrow_circle_down" + }, + { + "label": "arrow_circle_left", + "content": "arrow_circle_left" + }, + { + "label": "arrow_circle_right", + "content": "arrow_circle_right" + }, + { + "label": "arrow_circle_up", + "content": "arrow_circle_up" + }, + { + "label": "arrow_cool_down", + "content": "arrow_cool_down" + }, + { + "label": "arrow_downward", + "content": "arrow_downward" + }, + { + "label": "arrow_downward_alt", + "content": "arrow_downward_alt" + }, + { + "label": "arrow_drop_down", + "content": "arrow_drop_down" + }, + { + "label": "arrow_drop_down_circle", + "content": "arrow_drop_down_circle" + }, + { + "label": "arrow_drop_up", + "content": "arrow_drop_up" + }, + { + "label": "arrow_forward", + "content": "arrow_forward" + }, + { + "label": "arrow_forward_ios", + "content": "arrow_forward_ios" + }, + { + "label": "arrow_insert", + "content": "arrow_insert" + }, + { + "label": "arrow_left", + "content": "arrow_left" + }, + { + "label": "arrow_left_alt", + "content": "arrow_left_alt" + }, + { + "label": "arrow_or_edge", + "content": "arrow_or_edge" + }, + { + "label": "arrow_outward", + "content": "arrow_outward" + }, + { + "label": "arrow_range", + "content": "arrow_range" + }, + { + "label": "arrow_right", + "content": "arrow_right" + }, + { + "label": "arrow_right_alt", + "content": "arrow_right_alt" + }, + { + "label": "arrow_selector_tool", + "content": "arrow_selector_tool" + }, + { + "label": "arrow_split", + "content": "arrow_split" + }, + { + "label": "arrow_top_left", + "content": "arrow_top_left" + }, + { + "label": "arrow_top_right", + "content": "arrow_top_right" + }, + { + "label": "arrow_upward", + "content": "arrow_upward" + }, + { + "label": "arrow_upward_alt", + "content": "arrow_upward_alt" + }, + { + "label": "arrow_warm_up", + "content": "arrow_warm_up" + }, + { + "label": "arrows_more_down", + "content": "arrows_more_down" + }, + { + "label": "arrows_more_up", + "content": "arrows_more_up" + }, + { + "label": "arrows_outward", + "content": "arrows_outward" + }, + { + "label": "art_track", + "content": "art_track" + }, + { + "label": "article", + "content": "article" + }, + { + "label": "article_shortcut", + "content": "article_shortcut" + }, + { + "label": "artist", + "content": "artist" + }, + { + "label": "aspect_ratio", + "content": "aspect_ratio" + }, + { + "label": "assignment", + "content": "assignment" + }, + { + "label": "assignment_add", + "content": "assignment_add" + }, + { + "label": "assignment_ind", + "content": "assignment_ind" + }, + { + "label": "assignment_late", + "content": "assignment_late" + }, + { + "label": "assignment_return", + "content": "assignment_return" + }, + { + "label": "assignment_returned", + "content": "assignment_returned" + }, + { + "label": "assignment_turned_in", + "content": "assignment_turned_in" + }, + { + "label": "assist_walker", + "content": "assist_walker" + }, + { + "label": "assistant_device", + "content": "assistant_device" + }, + { + "label": "assistant_direction", + "content": "assistant_direction" + }, + { + "label": "assistant_navigation", + "content": "assistant_navigation" + }, + { + "label": "assistant_on_hub", + "content": "assistant_on_hub" + }, + { + "label": "assured_workload", + "content": "assured_workload" + }, + { + "label": "asterisk", + "content": "asterisk" + }, + { + "label": "atm", + "content": "atm" + }, + { + "label": "atr", + "content": "atr" + }, + { + "label": "attach_email", + "content": "attach_email" + }, + { + "label": "attach_file", + "content": "attach_file" + }, + { + "label": "attach_file_add", + "content": "attach_file_add" + }, + { + "label": "attach_file_off", + "content": "attach_file_off" + }, + { + "label": "attach_money", + "content": "attach_money" + }, + { + "label": "attachment", + "content": "attachment" + }, + { + "label": "attractions", + "content": "attractions" + }, + { + "label": "attribution", + "content": "attribution" + }, + { + "label": "audio_description", + "content": "audio_description" + }, + { + "label": "audio_file", + "content": "audio_file" + }, + { + "label": "audio_video_receiver", + "content": "audio_video_receiver" + }, + { + "label": "auto_awesome_mosaic", + "content": "auto_awesome_mosaic" + }, + { + "label": "auto_awesome_motion", + "content": "auto_awesome_motion" + }, + { + "label": "auto_delete", + "content": "auto_delete" + }, + { + "label": "auto_read_pause", + "content": "auto_read_pause" + }, + { + "label": "auto_read_play", + "content": "auto_read_play" + }, + { + "label": "auto_stories", + "content": "auto_stories" + }, + { + "label": "auto_towing", + "content": "auto_towing" + }, + { + "label": "auto_transmission", + "content": "auto_transmission" + }, + { + "label": "autofps_select", + "content": "autofps_select" + }, + { + "label": "autopause", + "content": "autopause" + }, + { + "label": "autoplay", + "content": "autoplay" + }, + { + "label": "autorenew", + "content": "autorenew" + }, + { + "label": "autostop", + "content": "autostop" + }, + { + "label": "av1", + "content": "av1" + }, + { + "label": "av_timer", + "content": "av_timer" + }, + { + "label": "avc", + "content": "avc" + }, + { + "label": "avg_pace", + "content": "avg_pace" + }, + { + "label": "avg_time", + "content": "avg_time" + }, + { + "label": "award_star", + "content": "award_star" + }, + { + "label": "azm", + "content": "azm" + }, + { + "label": "baby_changing_station", + "content": "baby_changing_station" + }, + { + "label": "back_hand", + "content": "back_hand" + }, + { + "label": "back_to_tab", + "content": "back_to_tab" + }, + { + "label": "background_dot_large", + "content": "background_dot_large" + }, + { + "label": "background_dot_small", + "content": "background_dot_small" + }, + { + "label": "background_grid_small", + "content": "background_grid_small" + }, + { + "label": "background_replace", + "content": "background_replace" + }, + { + "label": "backlight_high", + "content": "backlight_high" + }, + { + "label": "backlight_high_off", + "content": "backlight_high_off" + }, + { + "label": "backlight_low", + "content": "backlight_low" + }, + { + "label": "backpack", + "content": "backpack" + }, + { + "label": "backspace", + "content": "backspace" + }, + { + "label": "backup", + "content": "backup" + }, + { + "label": "backup_table", + "content": "backup_table" + }, + { + "label": "badge", + "content": "badge" + }, + { + "label": "badge_critical_battery", + "content": "badge_critical_battery" + }, + { + "label": "bakery_dining", + "content": "bakery_dining" + }, + { + "label": "balance", + "content": "balance" + }, + { + "label": "balcony", + "content": "balcony" + }, + { + "label": "ballot", + "content": "ballot" + }, + { + "label": "bar_chart", + "content": "bar_chart" + }, + { + "label": "bar_chart_4_bars", + "content": "bar_chart_4_bars" + }, + { + "label": "barcode", + "content": "barcode" + }, + { + "label": "barcode_reader", + "content": "barcode_reader" + }, + { + "label": "barcode_scanner", + "content": "barcode_scanner" + }, + { + "label": "barefoot", + "content": "barefoot" + }, + { + "label": "batch_prediction", + "content": "batch_prediction" + }, + { + "label": "bath_outdoor", + "content": "bath_outdoor" + }, + { + "label": "bath_private", + "content": "bath_private" + }, + { + "label": "bath_public_large", + "content": "bath_public_large" + }, + { + "label": "bathroom", + "content": "bathroom" + }, + { + "label": "bathtub", + "content": "bathtub" + }, + { + "label": "battery_0_bar", + "content": "battery_0_bar" + }, + { + "label": "battery_1_bar", + "content": "battery_1_bar" + }, + { + "label": "battery_2_bar", + "content": "battery_2_bar" + }, + { + "label": "battery_3_bar", + "content": "battery_3_bar" + }, + { + "label": "battery_4_bar", + "content": "battery_4_bar" + }, + { + "label": "battery_5_bar", + "content": "battery_5_bar" + }, + { + "label": "battery_6_bar", + "content": "battery_6_bar" + }, + { + "label": "battery_alert", + "content": "battery_alert" + }, + { + "label": "battery_change", + "content": "battery_change" + }, + { + "label": "battery_charging_20", + "content": "battery_charging_20" + }, + { + "label": "battery_charging_30", + "content": "battery_charging_30" + }, + { + "label": "battery_charging_50", + "content": "battery_charging_50" + }, + { + "label": "battery_charging_60", + "content": "battery_charging_60" + }, + { + "label": "battery_charging_80", + "content": "battery_charging_80" + }, + { + "label": "battery_charging_90", + "content": "battery_charging_90" + }, + { + "label": "battery_charging_full", + "content": "battery_charging_full" + }, + { + "label": "battery_error", + "content": "battery_error" + }, + { + "label": "battery_full", + "content": "battery_full" + }, + { + "label": "battery_full_alt", + "content": "battery_full_alt" + }, + { + "label": "battery_horiz_000", + "content": "battery_horiz_000" + }, + { + "label": "battery_horiz_050", + "content": "battery_horiz_050" + }, + { + "label": "battery_horiz_075", + "content": "battery_horiz_075" + }, + { + "label": "battery_low", + "content": "battery_low" + }, + { + "label": "battery_plus", + "content": "battery_plus" + }, + { + "label": "battery_profile", + "content": "battery_profile" + }, + { + "label": "battery_saver", + "content": "battery_saver" + }, + { + "label": "battery_share", + "content": "battery_share" + }, + { + "label": "battery_status_good", + "content": "battery_status_good" + }, + { + "label": "battery_unknown", + "content": "battery_unknown" + }, + { + "label": "battery_very_low", + "content": "battery_very_low" + }, + { + "label": "beach_access", + "content": "beach_access" + }, + { + "label": "bed", + "content": "bed" + }, + { + "label": "bedroom_baby", + "content": "bedroom_baby" + }, + { + "label": "bedroom_child", + "content": "bedroom_child" + }, + { + "label": "bedroom_parent", + "content": "bedroom_parent" + }, + { + "label": "bedtime", + "content": "bedtime" + }, + { + "label": "bedtime_off", + "content": "bedtime_off" + }, + { + "label": "beenhere", + "content": "beenhere" + }, + { + "label": "bento", + "content": "bento" + }, + { + "label": "bia", + "content": "bia" + }, + { + "label": "bid_landscape", + "content": "bid_landscape" + }, + { + "label": "bid_landscape_disabled", + "content": "bid_landscape_disabled" + }, + { + "label": "bigtop_updates", + "content": "bigtop_updates" + }, + { + "label": "bike_dock", + "content": "bike_dock" + }, + { + "label": "bike_lane", + "content": "bike_lane" + }, + { + "label": "bike_scooter", + "content": "bike_scooter" + }, + { + "label": "biotech", + "content": "biotech" + }, + { + "label": "blanket", + "content": "blanket" + }, + { + "label": "blender", + "content": "blender" + }, + { + "label": "blind", + "content": "blind" + }, + { + "label": "blinds", + "content": "blinds" + }, + { + "label": "blinds_closed", + "content": "blinds_closed" + }, + { + "label": "block", + "content": "block" + }, + { + "label": "blood_pressure", + "content": "blood_pressure" + }, + { + "label": "bloodtype", + "content": "bloodtype" + }, + { + "label": "bluetooth", + "content": "bluetooth" + }, + { + "label": "bluetooth_connected", + "content": "bluetooth_connected" + }, + { + "label": "bluetooth_disabled", + "content": "bluetooth_disabled" + }, + { + "label": "bluetooth_drive", + "content": "bluetooth_drive" + }, + { + "label": "bluetooth_searching", + "content": "bluetooth_searching" + }, + { + "label": "blur_circular", + "content": "blur_circular" + }, + { + "label": "blur_linear", + "content": "blur_linear" + }, + { + "label": "blur_medium", + "content": "blur_medium" + }, + { + "label": "blur_off", + "content": "blur_off" + }, + { + "label": "blur_on", + "content": "blur_on" + }, + { + "label": "blur_short", + "content": "blur_short" + }, + { + "label": "body_fat", + "content": "body_fat" + }, + { + "label": "body_system", + "content": "body_system" + }, + { + "label": "bolt", + "content": "bolt" + }, + { + "label": "bomb", + "content": "bomb" + }, + { + "label": "book", + "content": "book" + }, + { + "label": "book_2", + "content": "book_2" + }, + { + "label": "book_3", + "content": "book_3" + }, + { + "label": "book_4", + "content": "book_4" + }, + { + "label": "book_5", + "content": "book_5" + }, + { + "label": "book_online", + "content": "book_online" + }, + { + "label": "bookmark", + "content": "bookmark" + }, + { + "label": "bookmark_add", + "content": "bookmark_add" + }, + { + "label": "bookmark_added", + "content": "bookmark_added" + }, + { + "label": "bookmark_check", + "content": "bookmark_check" + }, + { + "label": "bookmark_flag", + "content": "bookmark_flag" + }, + { + "label": "bookmark_heart", + "content": "bookmark_heart" + }, + { + "label": "bookmark_manager", + "content": "bookmark_manager" + }, + { + "label": "bookmark_remove", + "content": "bookmark_remove" + }, + { + "label": "bookmark_star", + "content": "bookmark_star" + }, + { + "label": "bookmarks", + "content": "bookmarks" + }, + { + "label": "border_all", + "content": "border_all" + }, + { + "label": "border_bottom", + "content": "border_bottom" + }, + { + "label": "border_clear", + "content": "border_clear" + }, + { + "label": "border_color", + "content": "border_color" + }, + { + "label": "border_horizontal", + "content": "border_horizontal" + }, + { + "label": "border_inner", + "content": "border_inner" + }, + { + "label": "border_left", + "content": "border_left" + }, + { + "label": "border_outer", + "content": "border_outer" + }, + { + "label": "border_right", + "content": "border_right" + }, + { + "label": "border_style", + "content": "border_style" + }, + { + "label": "border_top", + "content": "border_top" + }, + { + "label": "border_vertical", + "content": "border_vertical" + }, + { + "label": "bottom_app_bar", + "content": "bottom_app_bar" + }, + { + "label": "bottom_drawer", + "content": "bottom_drawer" + }, + { + "label": "bottom_navigation", + "content": "bottom_navigation" + }, + { + "label": "bottom_panel_close", + "content": "bottom_panel_close" + }, + { + "label": "bottom_panel_open", + "content": "bottom_panel_open" + }, + { + "label": "bottom_right_click", + "content": "bottom_right_click" + }, + { + "label": "bottom_sheets", + "content": "bottom_sheets" + }, + { + "label": "box", + "content": "box" + }, + { + "label": "box_add", + "content": "box_add" + }, + { + "label": "box_edit", + "content": "box_edit" + }, + { + "label": "boy", + "content": "boy" + }, + { + "label": "brand_awareness", + "content": "brand_awareness" + }, + { + "label": "brand_family", + "content": "brand_family" + }, + { + "label": "branding_watermark", + "content": "branding_watermark" + }, + { + "label": "breakfast_dining", + "content": "breakfast_dining" + }, + { + "label": "breaking_news", + "content": "breaking_news" + }, + { + "label": "breaking_news_alt_1", + "content": "breaking_news_alt_1" + }, + { + "label": "breastfeeding", + "content": "breastfeeding" + }, + { + "label": "brightness_1", + "content": "brightness_1" + }, + { + "label": "brightness_2", + "content": "brightness_2" + }, + { + "label": "brightness_3", + "content": "brightness_3" + }, + { + "label": "brightness_4", + "content": "brightness_4" + }, + { + "label": "brightness_5", + "content": "brightness_5" + }, + { + "label": "brightness_6", + "content": "brightness_6" + }, + { + "label": "brightness_7", + "content": "brightness_7" + }, + { + "label": "brightness_alert", + "content": "brightness_alert" + }, + { + "label": "brightness_auto", + "content": "brightness_auto" + }, + { + "label": "brightness_empty", + "content": "brightness_empty" + }, + { + "label": "brightness_high", + "content": "brightness_high" + }, + { + "label": "brightness_low", + "content": "brightness_low" + }, + { + "label": "brightness_medium", + "content": "brightness_medium" + }, + { + "label": "bring_your_own_ip", + "content": "bring_your_own_ip" + }, + { + "label": "broadcast_on_home", + "content": "broadcast_on_home" + }, + { + "label": "broadcast_on_personal", + "content": "broadcast_on_personal" + }, + { + "label": "broken_image", + "content": "broken_image" + }, + { + "label": "browse", + "content": "browse" + }, + { + "label": "browse_activity", + "content": "browse_activity" + }, + { + "label": "browse_gallery", + "content": "browse_gallery" + }, + { + "label": "browser_updated", + "content": "browser_updated" + }, + { + "label": "brunch_dining", + "content": "brunch_dining" + }, + { + "label": "brush", + "content": "brush" + }, + { + "label": "bubble", + "content": "bubble" + }, + { + "label": "bubble_chart", + "content": "bubble_chart" + }, + { + "label": "bubbles", + "content": "bubbles" + }, + { + "label": "bug_report", + "content": "bug_report" + }, + { + "label": "build", + "content": "build" + }, + { + "label": "build_circle", + "content": "build_circle" + }, + { + "label": "bungalow", + "content": "bungalow" + }, + { + "label": "burst_mode", + "content": "burst_mode" + }, + { + "label": "bus_alert", + "content": "bus_alert" + }, + { + "label": "business_center", + "content": "business_center" + }, + { + "label": "business_chip", + "content": "business_chip" + }, + { + "label": "business_messages", + "content": "business_messages" + }, + { + "label": "buttons_alt", + "content": "buttons_alt" + }, + { + "label": "cabin", + "content": "cabin" + }, + { + "label": "cable", + "content": "cable" + }, + { + "label": "cable_car", + "content": "cable_car" + }, + { + "label": "cached", + "content": "cached" + }, + { + "label": "cadence", + "content": "cadence" + }, + { + "label": "cake", + "content": "cake" + }, + { + "label": "cake_add", + "content": "cake_add" + }, + { + "label": "calculate", + "content": "calculate" + }, + { + "label": "calendar_add_on", + "content": "calendar_add_on" + }, + { + "label": "calendar_apps_script", + "content": "calendar_apps_script" + }, + { + "label": "calendar_clock", + "content": "calendar_clock" + }, + { + "label": "calendar_month", + "content": "calendar_month" + }, + { + "label": "calendar_today", + "content": "calendar_today" + }, + { + "label": "calendar_view_day", + "content": "calendar_view_day" + }, + { + "label": "calendar_view_month", + "content": "calendar_view_month" + }, + { + "label": "calendar_view_week", + "content": "calendar_view_week" + }, + { + "label": "call", + "content": "call" + }, + { + "label": "call_end", + "content": "call_end" + }, + { + "label": "call_log", + "content": "call_log" + }, + { + "label": "call_made", + "content": "call_made" + }, + { + "label": "call_merge", + "content": "call_merge" + }, + { + "label": "call_missed", + "content": "call_missed" + }, + { + "label": "call_missed_outgoing", + "content": "call_missed_outgoing" + }, + { + "label": "call_quality", + "content": "call_quality" + }, + { + "label": "call_received", + "content": "call_received" + }, + { + "label": "call_split", + "content": "call_split" + }, + { + "label": "call_to_action", + "content": "call_to_action" + }, + { + "label": "camera", + "content": "camera" + }, + { + "label": "camera_front", + "content": "camera_front" + }, + { + "label": "camera_indoor", + "content": "camera_indoor" + }, + { + "label": "camera_outdoor", + "content": "camera_outdoor" + }, + { + "label": "camera_rear", + "content": "camera_rear" + }, + { + "label": "camera_roll", + "content": "camera_roll" + }, + { + "label": "camera_video", + "content": "camera_video" + }, + { + "label": "cameraswitch", + "content": "cameraswitch" + }, + { + "label": "campaign", + "content": "campaign" + }, + { + "label": "camping", + "content": "camping" + }, + { + "label": "cancel", + "content": "cancel" + }, + { + "label": "cancel_presentation", + "content": "cancel_presentation" + }, + { + "label": "cancel_schedule_send", + "content": "cancel_schedule_send" + }, + { + "label": "candle", + "content": "candle" + }, + { + "label": "candlestick_chart", + "content": "candlestick_chart" + }, + { + "label": "captive_portal", + "content": "captive_portal" + }, + { + "label": "capture", + "content": "capture" + }, + { + "label": "car_crash", + "content": "car_crash" + }, + { + "label": "car_rental", + "content": "car_rental" + }, + { + "label": "car_repair", + "content": "car_repair" + }, + { + "label": "car_tag", + "content": "car_tag" + }, + { + "label": "card_membership", + "content": "card_membership" + }, + { + "label": "card_travel", + "content": "card_travel" + }, + { + "label": "cardio_load", + "content": "cardio_load" + }, + { + "label": "cardiology", + "content": "cardiology" + }, + { + "label": "cards", + "content": "cards" + }, + { + "label": "carpenter", + "content": "carpenter" + }, + { + "label": "carry_on_bag", + "content": "carry_on_bag" + }, + { + "label": "carry_on_bag_checked", + "content": "carry_on_bag_checked" + }, + { + "label": "carry_on_bag_inactive", + "content": "carry_on_bag_inactive" + }, + { + "label": "carry_on_bag_question", + "content": "carry_on_bag_question" + }, + { + "label": "cases", + "content": "cases" + }, + { + "label": "casino", + "content": "casino" + }, + { + "label": "cast", + "content": "cast" + }, + { + "label": "cast_connected", + "content": "cast_connected" + }, + { + "label": "cast_for_education", + "content": "cast_for_education" + }, + { + "label": "cast_pause", + "content": "cast_pause" + }, + { + "label": "cast_warning", + "content": "cast_warning" + }, + { + "label": "castle", + "content": "castle" + }, + { + "label": "category", + "content": "category" + }, + { + "label": "celebration", + "content": "celebration" + }, + { + "label": "cell_merge", + "content": "cell_merge" + }, + { + "label": "cell_tower", + "content": "cell_tower" + }, + { + "label": "cell_wifi", + "content": "cell_wifi" + }, + { + "label": "center_focus_strong", + "content": "center_focus_strong" + }, + { + "label": "center_focus_weak", + "content": "center_focus_weak" + }, + { + "label": "chair", + "content": "chair" + }, + { + "label": "chair_alt", + "content": "chair_alt" + }, + { + "label": "chalet", + "content": "chalet" + }, + { + "label": "change_circle", + "content": "change_circle" + }, + { + "label": "change_history", + "content": "change_history" + }, + { + "label": "charger", + "content": "charger" + }, + { + "label": "charging_station", + "content": "charging_station" + }, + { + "label": "chart_data", + "content": "chart_data" + }, + { + "label": "chat", + "content": "chat" + }, + { + "label": "chat_add_on", + "content": "chat_add_on" + }, + { + "label": "chat_apps_script", + "content": "chat_apps_script" + }, + { + "label": "chat_bubble", + "content": "chat_bubble" + }, + { + "label": "chat_error", + "content": "chat_error" + }, + { + "label": "chat_info", + "content": "chat_info" + }, + { + "label": "chat_paste_go", + "content": "chat_paste_go" + }, + { + "label": "check", + "content": "check" + }, + { + "label": "check_box", + "content": "check_box" + }, + { + "label": "check_box_outline_blank", + "content": "check_box_outline_blank" + }, + { + "label": "check_circle", + "content": "check_circle" + }, + { + "label": "check_in_out", + "content": "check_in_out" + }, + { + "label": "check_indeterminate_small", + "content": "check_indeterminate_small" + }, + { + "label": "check_small", + "content": "check_small" + }, + { + "label": "checkbook", + "content": "checkbook" + }, + { + "label": "checked_bag", + "content": "checked_bag" + }, + { + "label": "checked_bag_question", + "content": "checked_bag_question" + }, + { + "label": "checklist", + "content": "checklist" + }, + { + "label": "checklist_rtl", + "content": "checklist_rtl" + }, + { + "label": "checkroom", + "content": "checkroom" + }, + { + "label": "cheer", + "content": "cheer" + }, + { + "label": "chess", + "content": "chess" + }, + { + "label": "chevron_backward", + "content": "chevron_backward" + }, + { + "label": "chevron_forward", + "content": "chevron_forward" + }, + { + "label": "chevron_left", + "content": "chevron_left" + }, + { + "label": "chevron_right", + "content": "chevron_right" + }, + { + "label": "child_care", + "content": "child_care" + }, + { + "label": "child_friendly", + "content": "child_friendly" + }, + { + "label": "chip_extraction", + "content": "chip_extraction" + }, + { + "label": "chips", + "content": "chips" + }, + { + "label": "chrome_reader_mode", + "content": "chrome_reader_mode" + }, + { + "label": "chromecast_2", + "content": "chromecast_2" + }, + { + "label": "chromecast_device", + "content": "chromecast_device" + }, + { + "label": "chronic", + "content": "chronic" + }, + { + "label": "church", + "content": "church" + }, + { + "label": "cinematic_blur", + "content": "cinematic_blur" + }, + { + "label": "circle", + "content": "circle" + }, + { + "label": "circle_notifications", + "content": "circle_notifications" + }, + { + "label": "circles", + "content": "circles" + }, + { + "label": "circles_ext", + "content": "circles_ext" + }, + { + "label": "clarify", + "content": "clarify" + }, + { + "label": "clean_hands", + "content": "clean_hands" + }, + { + "label": "cleaning", + "content": "cleaning" + }, + { + "label": "cleaning_bucket", + "content": "cleaning_bucket" + }, + { + "label": "cleaning_services", + "content": "cleaning_services" + }, + { + "label": "clear_all", + "content": "clear_all" + }, + { + "label": "clear_day", + "content": "clear_day" + }, + { + "label": "clear_night", + "content": "clear_night" + }, + { + "label": "climate_mini_split", + "content": "climate_mini_split" + }, + { + "label": "clinical_notes", + "content": "clinical_notes" + }, + { + "label": "clock_loader_10", + "content": "clock_loader_10" + }, + { + "label": "clock_loader_20", + "content": "clock_loader_20" + }, + { + "label": "clock_loader_40", + "content": "clock_loader_40" + }, + { + "label": "clock_loader_60", + "content": "clock_loader_60" + }, + { + "label": "clock_loader_80", + "content": "clock_loader_80" + }, + { + "label": "clock_loader_90", + "content": "clock_loader_90" + }, + { + "label": "close", + "content": "close" + }, + { + "label": "close_fullscreen", + "content": "close_fullscreen" + }, + { + "label": "close_small", + "content": "close_small" + }, + { + "label": "closed_caption", + "content": "closed_caption" + }, + { + "label": "closed_caption_add", + "content": "closed_caption_add" + }, + { + "label": "closed_caption_disabled", + "content": "closed_caption_disabled" + }, + { + "label": "cloud", + "content": "cloud" + }, + { + "label": "cloud_circle", + "content": "cloud_circle" + }, + { + "label": "cloud_done", + "content": "cloud_done" + }, + { + "label": "cloud_download", + "content": "cloud_download" + }, + { + "label": "cloud_off", + "content": "cloud_off" + }, + { + "label": "cloud_sync", + "content": "cloud_sync" + }, + { + "label": "cloud_upload", + "content": "cloud_upload" + }, + { + "label": "cloudy_snowing", + "content": "cloudy_snowing" + }, + { + "label": "co2", + "content": "co2" + }, + { + "label": "co_present", + "content": "co_present" + }, + { + "label": "code", + "content": "code" + }, + { + "label": "code_blocks", + "content": "code_blocks" + }, + { + "label": "code_off", + "content": "code_off" + }, + { + "label": "coffee", + "content": "coffee" + }, + { + "label": "coffee_maker", + "content": "coffee_maker" + }, + { + "label": "cognition", + "content": "cognition" + }, + { + "label": "collapse_all", + "content": "collapse_all" + }, + { + "label": "collapse_content", + "content": "collapse_content" + }, + { + "label": "collections_bookmark", + "content": "collections_bookmark" + }, + { + "label": "colorize", + "content": "colorize" + }, + { + "label": "colors", + "content": "colors" + }, + { + "label": "comedy_mask", + "content": "comedy_mask" + }, + { + "label": "comic_bubble", + "content": "comic_bubble" + }, + { + "label": "comment", + "content": "comment" + }, + { + "label": "comment_bank", + "content": "comment_bank" + }, + { + "label": "comments_disabled", + "content": "comments_disabled" + }, + { + "label": "commit", + "content": "commit" + }, + { + "label": "communication", + "content": "communication" + }, + { + "label": "communities", + "content": "communities" + }, + { + "label": "commute", + "content": "commute" + }, + { + "label": "compare", + "content": "compare" + }, + { + "label": "compare_arrows", + "content": "compare_arrows" + }, + { + "label": "compass_calibration", + "content": "compass_calibration" + }, + { + "label": "component_exchange", + "content": "component_exchange" + }, + { + "label": "compost", + "content": "compost" + }, + { + "label": "compress", + "content": "compress" + }, + { + "label": "computer", + "content": "computer" + }, + { + "label": "concierge", + "content": "concierge" + }, + { + "label": "conditions", + "content": "conditions" + }, + { + "label": "confirmation_number", + "content": "confirmation_number" + }, + { + "label": "congenital", + "content": "congenital" + }, + { + "label": "connect_without_contact", + "content": "connect_without_contact" + }, + { + "label": "connected_tv", + "content": "connected_tv" + }, + { + "label": "connecting_airports", + "content": "connecting_airports" + }, + { + "label": "construction", + "content": "construction" + }, + { + "label": "contact_emergency", + "content": "contact_emergency" + }, + { + "label": "contact_mail", + "content": "contact_mail" + }, + { + "label": "contact_page", + "content": "contact_page" + }, + { + "label": "contact_phone", + "content": "contact_phone" + }, + { + "label": "contact_support", + "content": "contact_support" + }, + { + "label": "contactless", + "content": "contactless" + }, + { + "label": "contactless_off", + "content": "contactless_off" + }, + { + "label": "contacts", + "content": "contacts" + }, + { + "label": "contacts_product", + "content": "contacts_product" + }, + { + "label": "content_copy", + "content": "content_copy" + }, + { + "label": "content_cut", + "content": "content_cut" + }, + { + "label": "content_paste", + "content": "content_paste" + }, + { + "label": "content_paste_go", + "content": "content_paste_go" + }, + { + "label": "content_paste_off", + "content": "content_paste_off" + }, + { + "label": "content_paste_search", + "content": "content_paste_search" + }, + { + "label": "contextual_token", + "content": "contextual_token" + }, + { + "label": "contextual_token_add", + "content": "contextual_token_add" + }, + { + "label": "contract", + "content": "contract" + }, + { + "label": "contract_delete", + "content": "contract_delete" + }, + { + "label": "contract_edit", + "content": "contract_edit" + }, + { + "label": "contrast", + "content": "contrast" + }, + { + "label": "contrast_circle", + "content": "contrast_circle" + }, + { + "label": "contrast_rtl_off", + "content": "contrast_rtl_off" + }, + { + "label": "contrast_square", + "content": "contrast_square" + }, + { + "label": "control_camera", + "content": "control_camera" + }, + { + "label": "control_point_duplicate", + "content": "control_point_duplicate" + }, + { + "label": "controller_gen", + "content": "controller_gen" + }, + { + "label": "conversion_path", + "content": "conversion_path" + }, + { + "label": "conversion_path_off", + "content": "conversion_path_off" + }, + { + "label": "conveyor_belt", + "content": "conveyor_belt" + }, + { + "label": "cookie", + "content": "cookie" + }, + { + "label": "cookie_off", + "content": "cookie_off" + }, + { + "label": "cooking", + "content": "cooking" + }, + { + "label": "cool_to_dry", + "content": "cool_to_dry" + }, + { + "label": "copy_all", + "content": "copy_all" + }, + { + "label": "copyright", + "content": "copyright" + }, + { + "label": "coronavirus", + "content": "coronavirus" + }, + { + "label": "corporate_fare", + "content": "corporate_fare" + }, + { + "label": "cottage", + "content": "cottage" + }, + { + "label": "counter_0", + "content": "counter_0" + }, + { + "label": "counter_1", + "content": "counter_1" + }, + { + "label": "counter_2", + "content": "counter_2" + }, + { + "label": "counter_3", + "content": "counter_3" + }, + { + "label": "counter_4", + "content": "counter_4" + }, + { + "label": "counter_5", + "content": "counter_5" + }, + { + "label": "counter_6", + "content": "counter_6" + }, + { + "label": "counter_7", + "content": "counter_7" + }, + { + "label": "counter_8", + "content": "counter_8" + }, + { + "label": "counter_9", + "content": "counter_9" + }, + { + "label": "countertops", + "content": "countertops" + }, + { + "label": "create_new_folder", + "content": "create_new_folder" + }, + { + "label": "credit_card", + "content": "credit_card" + }, + { + "label": "credit_card_gear", + "content": "credit_card_gear" + }, + { + "label": "credit_card_heart", + "content": "credit_card_heart" + }, + { + "label": "credit_card_off", + "content": "credit_card_off" + }, + { + "label": "credit_score", + "content": "credit_score" + }, + { + "label": "crib", + "content": "crib" + }, + { + "label": "crisis_alert", + "content": "crisis_alert" + }, + { + "label": "crop", + "content": "crop" + }, + { + "label": "crop_16_9", + "content": "crop_16_9" + }, + { + "label": "crop_3_2", + "content": "crop_3_2" + }, + { + "label": "crop_5_4", + "content": "crop_5_4" + }, + { + "label": "crop_7_5", + "content": "crop_7_5" + }, + { + "label": "crop_9_16", + "content": "crop_9_16" + }, + { + "label": "crop_free", + "content": "crop_free" + }, + { + "label": "crop_landscape", + "content": "crop_landscape" + }, + { + "label": "crop_portrait", + "content": "crop_portrait" + }, + { + "label": "crop_rotate", + "content": "crop_rotate" + }, + { + "label": "crop_square", + "content": "crop_square" + }, + { + "label": "crossword", + "content": "crossword" + }, + { + "label": "crowdsource", + "content": "crowdsource" + }, + { + "label": "cruelty_free", + "content": "cruelty_free" + }, + { + "label": "css", + "content": "css" + }, + { + "label": "csv", + "content": "csv" + }, + { + "label": "currency_bitcoin", + "content": "currency_bitcoin" + }, + { + "label": "currency_exchange", + "content": "currency_exchange" + }, + { + "label": "currency_franc", + "content": "currency_franc" + }, + { + "label": "currency_lira", + "content": "currency_lira" + }, + { + "label": "currency_pound", + "content": "currency_pound" + }, + { + "label": "currency_ruble", + "content": "currency_ruble" + }, + { + "label": "currency_rupee", + "content": "currency_rupee" + }, + { + "label": "currency_rupee_circle", + "content": "currency_rupee_circle" + }, + { + "label": "currency_yen", + "content": "currency_yen" + }, + { + "label": "currency_yuan", + "content": "currency_yuan" + }, + { + "label": "curtains", + "content": "curtains" + }, + { + "label": "curtains_closed", + "content": "curtains_closed" + }, + { + "label": "custom_typography", + "content": "custom_typography" + }, + { + "label": "cycle", + "content": "cycle" + }, + { + "label": "cyclone", + "content": "cyclone" + }, + { + "label": "dangerous", + "content": "dangerous" + }, + { + "label": "dark_mode", + "content": "dark_mode" + }, + { + "label": "dashboard", + "content": "dashboard" + }, + { + "label": "dashboard_customize", + "content": "dashboard_customize" + }, + { + "label": "data_alert", + "content": "data_alert" + }, + { + "label": "data_array", + "content": "data_array" + }, + { + "label": "data_check", + "content": "data_check" + }, + { + "label": "data_exploration", + "content": "data_exploration" + }, + { + "label": "data_info_alert", + "content": "data_info_alert" + }, + { + "label": "data_loss_prevention", + "content": "data_loss_prevention" + }, + { + "label": "data_object", + "content": "data_object" + }, + { + "label": "data_saver_on", + "content": "data_saver_on" + }, + { + "label": "data_table", + "content": "data_table" + }, + { + "label": "data_thresholding", + "content": "data_thresholding" + }, + { + "label": "data_usage", + "content": "data_usage" + }, + { + "label": "database", + "content": "database" + }, + { + "label": "dataset", + "content": "dataset" + }, + { + "label": "dataset_linked", + "content": "dataset_linked" + }, + { + "label": "date_range", + "content": "date_range" + }, + { + "label": "deblur", + "content": "deblur" + }, + { + "label": "deceased", + "content": "deceased" + }, + { + "label": "decimal_decrease", + "content": "decimal_decrease" + }, + { + "label": "decimal_increase", + "content": "decimal_increase" + }, + { + "label": "deck", + "content": "deck" + }, + { + "label": "dehaze", + "content": "dehaze" + }, + { + "label": "delete", + "content": "delete" + }, + { + "label": "delete_forever", + "content": "delete_forever" + }, + { + "label": "delete_history", + "content": "delete_history" + }, + { + "label": "delete_sweep", + "content": "delete_sweep" + }, + { + "label": "demography", + "content": "demography" + }, + { + "label": "density_large", + "content": "density_large" + }, + { + "label": "density_medium", + "content": "density_medium" + }, + { + "label": "density_small", + "content": "density_small" + }, + { + "label": "dentistry", + "content": "dentistry" + }, + { + "label": "departure_board", + "content": "departure_board" + }, + { + "label": "deployed_code", + "content": "deployed_code" + }, + { + "label": "deployed_code_account", + "content": "deployed_code_account" + }, + { + "label": "deployed_code_alert", + "content": "deployed_code_alert" + }, + { + "label": "deployed_code_history", + "content": "deployed_code_history" + }, + { + "label": "deployed_code_update", + "content": "deployed_code_update" + }, + { + "label": "dermatology", + "content": "dermatology" + }, + { + "label": "description", + "content": "description" + }, + { + "label": "deselect", + "content": "deselect" + }, + { + "label": "design_services", + "content": "design_services" + }, + { + "label": "desk", + "content": "desk" + }, + { + "label": "deskphone", + "content": "deskphone" + }, + { + "label": "desktop_access_disabled", + "content": "desktop_access_disabled" + }, + { + "label": "desktop_landscape", + "content": "desktop_landscape" + }, + { + "label": "desktop_mac", + "content": "desktop_mac" + }, + { + "label": "desktop_portrait", + "content": "desktop_portrait" + }, + { + "label": "desktop_windows", + "content": "desktop_windows" + }, + { + "label": "destruction", + "content": "destruction" + }, + { + "label": "details", + "content": "details" + }, + { + "label": "detection_and_zone", + "content": "detection_and_zone" + }, + { + "label": "detector", + "content": "detector" + }, + { + "label": "detector_alarm", + "content": "detector_alarm" + }, + { + "label": "detector_battery", + "content": "detector_battery" + }, + { + "label": "detector_co", + "content": "detector_co" + }, + { + "label": "detector_offline", + "content": "detector_offline" + }, + { + "label": "detector_smoke", + "content": "detector_smoke" + }, + { + "label": "detector_status", + "content": "detector_status" + }, + { + "label": "developer_board", + "content": "developer_board" + }, + { + "label": "developer_board_off", + "content": "developer_board_off" + }, + { + "label": "developer_guide", + "content": "developer_guide" + }, + { + "label": "developer_mode", + "content": "developer_mode" + }, + { + "label": "developer_mode_tv", + "content": "developer_mode_tv" + }, + { + "label": "device_hub", + "content": "device_hub" + }, + { + "label": "device_reset", + "content": "device_reset" + }, + { + "label": "device_thermostat", + "content": "device_thermostat" + }, + { + "label": "device_unknown", + "content": "device_unknown" + }, + { + "label": "devices", + "content": "devices" + }, + { + "label": "devices_fold", + "content": "devices_fold" + }, + { + "label": "devices_off", + "content": "devices_off" + }, + { + "label": "devices_other", + "content": "devices_other" + }, + { + "label": "devices_wearables", + "content": "devices_wearables" + }, + { + "label": "dew_point", + "content": "dew_point" + }, + { + "label": "diagnosis", + "content": "diagnosis" + }, + { + "label": "dialer_sip", + "content": "dialer_sip" + }, + { + "label": "dialogs", + "content": "dialogs" + }, + { + "label": "dialpad", + "content": "dialpad" + }, + { + "label": "diamond", + "content": "diamond" + }, + { + "label": "dictionary", + "content": "dictionary" + }, + { + "label": "difference", + "content": "difference" + }, + { + "label": "digital_out_of_home", + "content": "digital_out_of_home" + }, + { + "label": "digital_wellbeing", + "content": "digital_wellbeing" + }, + { + "label": "dining", + "content": "dining" + }, + { + "label": "dinner_dining", + "content": "dinner_dining" + }, + { + "label": "directions", + "content": "directions" + }, + { + "label": "directions_alt", + "content": "directions_alt" + }, + { + "label": "directions_alt_off", + "content": "directions_alt_off" + }, + { + "label": "directions_bike", + "content": "directions_bike" + }, + { + "label": "directions_boat", + "content": "directions_boat" + }, + { + "label": "directions_bus", + "content": "directions_bus" + }, + { + "label": "directions_car", + "content": "directions_car" + }, + { + "label": "directions_off", + "content": "directions_off" + }, + { + "label": "directions_railway", + "content": "directions_railway" + }, + { + "label": "directions_railway_2", + "content": "directions_railway_2" + }, + { + "label": "directions_run", + "content": "directions_run" + }, + { + "label": "directions_subway", + "content": "directions_subway" + }, + { + "label": "directions_walk", + "content": "directions_walk" + }, + { + "label": "directory_sync", + "content": "directory_sync" + }, + { + "label": "dirty_lens", + "content": "dirty_lens" + }, + { + "label": "disabled_by_default", + "content": "disabled_by_default" + }, + { + "label": "disabled_visible", + "content": "disabled_visible" + }, + { + "label": "disc_full", + "content": "disc_full" + }, + { + "label": "discover_tune", + "content": "discover_tune" + }, + { + "label": "dishwasher", + "content": "dishwasher" + }, + { + "label": "dishwasher_gen", + "content": "dishwasher_gen" + }, + { + "label": "display_external_input", + "content": "display_external_input" + }, + { + "label": "display_settings", + "content": "display_settings" + }, + { + "label": "distance", + "content": "distance" + }, + { + "label": "diversity_1", + "content": "diversity_1" + }, + { + "label": "diversity_2", + "content": "diversity_2" + }, + { + "label": "diversity_3", + "content": "diversity_3" + }, + { + "label": "diversity_4", + "content": "diversity_4" + }, + { + "label": "dns", + "content": "dns" + }, + { + "label": "do_not_disturb_off", + "content": "do_not_disturb_off" + }, + { + "label": "do_not_disturb_on", + "content": "do_not_disturb_on" + }, + { + "label": "do_not_disturb_on_total_silence", + "content": "do_not_disturb_on_total_silence" + }, + { + "label": "do_not_step", + "content": "do_not_step" + }, + { + "label": "do_not_touch", + "content": "do_not_touch" + }, + { + "label": "dock", + "content": "dock" + }, + { + "label": "dock_to_bottom", + "content": "dock_to_bottom" + }, + { + "label": "dock_to_left", + "content": "dock_to_left" + }, + { + "label": "dock_to_right", + "content": "dock_to_right" + }, + { + "label": "docs_add_on", + "content": "docs_add_on" + }, + { + "label": "docs_apps_script", + "content": "docs_apps_script" + }, + { + "label": "document_scanner", + "content": "document_scanner" + }, + { + "label": "domain", + "content": "domain" + }, + { + "label": "domain_add", + "content": "domain_add" + }, + { + "label": "domain_disabled", + "content": "domain_disabled" + }, + { + "label": "domain_verification", + "content": "domain_verification" + }, + { + "label": "domain_verification_off", + "content": "domain_verification_off" + }, + { + "label": "domino_mask", + "content": "domino_mask" + }, + { + "label": "done_all", + "content": "done_all" + }, + { + "label": "done_outline", + "content": "done_outline" + }, + { + "label": "donut_large", + "content": "donut_large" + }, + { + "label": "donut_small", + "content": "donut_small" + }, + { + "label": "door_back", + "content": "door_back" + }, + { + "label": "door_front", + "content": "door_front" + }, + { + "label": "door_open", + "content": "door_open" + }, + { + "label": "door_sensor", + "content": "door_sensor" + }, + { + "label": "door_sliding", + "content": "door_sliding" + }, + { + "label": "doorbell", + "content": "doorbell" + }, + { + "label": "doorbell_3p", + "content": "doorbell_3p" + }, + { + "label": "doorbell_chime", + "content": "doorbell_chime" + }, + { + "label": "double_arrow", + "content": "double_arrow" + }, + { + "label": "downhill_skiing", + "content": "downhill_skiing" + }, + { + "label": "download", + "content": "download" + }, + { + "label": "download_2", + "content": "download_2" + }, + { + "label": "download_done", + "content": "download_done" + }, + { + "label": "download_for_offline", + "content": "download_for_offline" + }, + { + "label": "downloading", + "content": "downloading" + }, + { + "label": "draft", + "content": "draft" + }, + { + "label": "draft_orders", + "content": "draft_orders" + }, + { + "label": "drafts", + "content": "drafts" + }, + { + "label": "drag_click", + "content": "drag_click" + }, + { + "label": "drag_handle", + "content": "drag_handle" + }, + { + "label": "drag_indicator", + "content": "drag_indicator" + }, + { + "label": "drag_pan", + "content": "drag_pan" + }, + { + "label": "draw", + "content": "draw" + }, + { + "label": "draw_abstract", + "content": "draw_abstract" + }, + { + "label": "draw_collage", + "content": "draw_collage" + }, + { + "label": "dresser", + "content": "dresser" + }, + { + "label": "drive_file_move", + "content": "drive_file_move" + }, + { + "label": "drive_folder_upload", + "content": "drive_folder_upload" + }, + { + "label": "dropdown", + "content": "dropdown" + }, + { + "label": "dry", + "content": "dry" + }, + { + "label": "dry_cleaning", + "content": "dry_cleaning" + }, + { + "label": "dual_screen", + "content": "dual_screen" + }, + { + "label": "duo", + "content": "duo" + }, + { + "label": "dvr", + "content": "dvr" + }, + { + "label": "dynamic_feed", + "content": "dynamic_feed" + }, + { + "label": "dynamic_form", + "content": "dynamic_form" + }, + { + "label": "e911_avatar", + "content": "e911_avatar" + }, + { + "label": "e911_emergency", + "content": "e911_emergency" + }, + { + "label": "e_mobiledata", + "content": "e_mobiledata" + }, + { + "label": "e_mobiledata_badge", + "content": "e_mobiledata_badge" + }, + { + "label": "earbuds", + "content": "earbuds" + }, + { + "label": "earbuds_battery", + "content": "earbuds_battery" + }, + { + "label": "early_on", + "content": "early_on" + }, + { + "label": "earthquake", + "content": "earthquake" + }, + { + "label": "east", + "content": "east" + }, + { + "label": "ecg", + "content": "ecg" + }, + { + "label": "ecg_heart", + "content": "ecg_heart" + }, + { + "label": "eco", + "content": "eco" + }, + { + "label": "eda", + "content": "eda" + }, + { + "label": "edgesensor_high", + "content": "edgesensor_high" + }, + { + "label": "edgesensor_low", + "content": "edgesensor_low" + }, + { + "label": "edit", + "content": "edit" + }, + { + "label": "edit_attributes", + "content": "edit_attributes" + }, + { + "label": "edit_calendar", + "content": "edit_calendar" + }, + { + "label": "edit_document", + "content": "edit_document" + }, + { + "label": "edit_location", + "content": "edit_location" + }, + { + "label": "edit_location_alt", + "content": "edit_location_alt" + }, + { + "label": "edit_note", + "content": "edit_note" + }, + { + "label": "edit_notifications", + "content": "edit_notifications" + }, + { + "label": "edit_off", + "content": "edit_off" + }, + { + "label": "edit_road", + "content": "edit_road" + }, + { + "label": "edit_square", + "content": "edit_square" + }, + { + "label": "editor_choice", + "content": "editor_choice" + }, + { + "label": "egg", + "content": "egg" + }, + { + "label": "egg_alt", + "content": "egg_alt" + }, + { + "label": "eject", + "content": "eject" + }, + { + "label": "elderly", + "content": "elderly" + }, + { + "label": "elderly_woman", + "content": "elderly_woman" + }, + { + "label": "electric_bike", + "content": "electric_bike" + }, + { + "label": "electric_bolt", + "content": "electric_bolt" + }, + { + "label": "electric_car", + "content": "electric_car" + }, + { + "label": "electric_meter", + "content": "electric_meter" + }, + { + "label": "electric_moped", + "content": "electric_moped" + }, + { + "label": "electric_rickshaw", + "content": "electric_rickshaw" + }, + { + "label": "electric_scooter", + "content": "electric_scooter" + }, + { + "label": "electrical_services", + "content": "electrical_services" + }, + { + "label": "elevation", + "content": "elevation" + }, + { + "label": "elevator", + "content": "elevator" + }, + { + "label": "emergency", + "content": "emergency" + }, + { + "label": "emergency_heat", + "content": "emergency_heat" + }, + { + "label": "emergency_heat_2", + "content": "emergency_heat_2" + }, + { + "label": "emergency_home", + "content": "emergency_home" + }, + { + "label": "emergency_recording", + "content": "emergency_recording" + }, + { + "label": "emergency_share", + "content": "emergency_share" + }, + { + "label": "emergency_share_off", + "content": "emergency_share_off" + }, + { + "label": "emoji_events", + "content": "emoji_events" + }, + { + "label": "emoji_food_beverage", + "content": "emoji_food_beverage" + }, + { + "label": "emoji_language", + "content": "emoji_language" + }, + { + "label": "emoji_nature", + "content": "emoji_nature" + }, + { + "label": "emoji_objects", + "content": "emoji_objects" + }, + { + "label": "emoji_people", + "content": "emoji_people" + }, + { + "label": "emoji_symbols", + "content": "emoji_symbols" + }, + { + "label": "emoji_transportation", + "content": "emoji_transportation" + }, + { + "label": "emoticon", + "content": "emoticon" + }, + { + "label": "empty_dashboard", + "content": "empty_dashboard" + }, + { + "label": "enable", + "content": "enable" + }, + { + "label": "encrypted", + "content": "encrypted" + }, + { + "label": "endocrinology", + "content": "endocrinology" + }, + { + "label": "energy", + "content": "energy" + }, + { + "label": "energy_program_saving", + "content": "energy_program_saving" + }, + { + "label": "energy_program_time_used", + "content": "energy_program_time_used" + }, + { + "label": "energy_savings_leaf", + "content": "energy_savings_leaf" + }, + { + "label": "engineering", + "content": "engineering" + }, + { + "label": "enhanced_encryption", + "content": "enhanced_encryption" + }, + { + "label": "ent", + "content": "ent" + }, + { + "label": "enterprise", + "content": "enterprise" + }, + { + "label": "enterprise_off", + "content": "enterprise_off" + }, + { + "label": "equal", + "content": "equal" + }, + { + "label": "equalizer", + "content": "equalizer" + }, + { + "label": "error", + "content": "error" + }, + { + "label": "error_med", + "content": "error_med" + }, + { + "label": "escalator", + "content": "escalator" + }, + { + "label": "escalator_warning", + "content": "escalator_warning" + }, + { + "label": "euro", + "content": "euro" + }, + { + "label": "euro_symbol", + "content": "euro_symbol" + }, + { + "label": "ev_charger", + "content": "ev_charger" + }, + { + "label": "ev_mobiledata_badge", + "content": "ev_mobiledata_badge" + }, + { + "label": "ev_shadow", + "content": "ev_shadow" + }, + { + "label": "ev_shadow_add", + "content": "ev_shadow_add" + }, + { + "label": "ev_shadow_minus", + "content": "ev_shadow_minus" + }, + { + "label": "ev_station", + "content": "ev_station" + }, + { + "label": "event", + "content": "event" + }, + { + "label": "event_available", + "content": "event_available" + }, + { + "label": "event_busy", + "content": "event_busy" + }, + { + "label": "event_list", + "content": "event_list" + }, + { + "label": "event_note", + "content": "event_note" + }, + { + "label": "event_repeat", + "content": "event_repeat" + }, + { + "label": "event_seat", + "content": "event_seat" + }, + { + "label": "event_upcoming", + "content": "event_upcoming" + }, + { + "label": "exclamation", + "content": "exclamation" + }, + { + "label": "exercise", + "content": "exercise" + }, + { + "label": "exit_to_app", + "content": "exit_to_app" + }, + { + "label": "expand", + "content": "expand" + }, + { + "label": "expand_all", + "content": "expand_all" + }, + { + "label": "expand_circle_down", + "content": "expand_circle_down" + }, + { + "label": "expand_circle_right", + "content": "expand_circle_right" + }, + { + "label": "expand_circle_up", + "content": "expand_circle_up" + }, + { + "label": "expand_content", + "content": "expand_content" + }, + { + "label": "experiment", + "content": "experiment" + }, + { + "label": "explicit", + "content": "explicit" + }, + { + "label": "explore", + "content": "explore" + }, + { + "label": "explore_nearby", + "content": "explore_nearby" + }, + { + "label": "explore_off", + "content": "explore_off" + }, + { + "label": "explosion", + "content": "explosion" + }, + { + "label": "export_notes", + "content": "export_notes" + }, + { + "label": "exposure", + "content": "exposure" + }, + { + "label": "exposure_neg_1", + "content": "exposure_neg_1" + }, + { + "label": "exposure_neg_2", + "content": "exposure_neg_2" + }, + { + "label": "exposure_plus_1", + "content": "exposure_plus_1" + }, + { + "label": "exposure_plus_2", + "content": "exposure_plus_2" + }, + { + "label": "exposure_zero", + "content": "exposure_zero" + }, + { + "label": "extension", + "content": "extension" + }, + { + "label": "extension_off", + "content": "extension_off" + }, + { + "label": "eye_tracking", + "content": "eye_tracking" + }, + { + "label": "eyeglasses", + "content": "eyeglasses" + }, + { + "label": "face", + "content": "face" + }, + { + "label": "face_2", + "content": "face_2" + }, + { + "label": "face_3", + "content": "face_3" + }, + { + "label": "face_4", + "content": "face_4" + }, + { + "label": "face_5", + "content": "face_5" + }, + { + "label": "face_6", + "content": "face_6" + }, + { + "label": "face_retouching_off", + "content": "face_retouching_off" + }, + { + "label": "fact_check", + "content": "fact_check" + }, + { + "label": "factory", + "content": "factory" + }, + { + "label": "falling", + "content": "falling" + }, + { + "label": "familiar_face_and_zone", + "content": "familiar_face_and_zone" + }, + { + "label": "family_history", + "content": "family_history" + }, + { + "label": "family_home", + "content": "family_home" + }, + { + "label": "family_link", + "content": "family_link" + }, + { + "label": "family_restroom", + "content": "family_restroom" + }, + { + "label": "family_star", + "content": "family_star" + }, + { + "label": "farsight_digital", + "content": "farsight_digital" + }, + { + "label": "fast_forward", + "content": "fast_forward" + }, + { + "label": "fast_rewind", + "content": "fast_rewind" + }, + { + "label": "fastfood", + "content": "fastfood" + }, + { + "label": "faucet", + "content": "faucet" + }, + { + "label": "favorite", + "content": "favorite" + }, + { + "label": "fax", + "content": "fax" + }, + { + "label": "feature_search", + "content": "feature_search" + }, + { + "label": "featured_play_list", + "content": "featured_play_list" + }, + { + "label": "featured_seasonal_and_gifts", + "content": "featured_seasonal_and_gifts" + }, + { + "label": "featured_video", + "content": "featured_video" + }, + { + "label": "feedback", + "content": "feedback" + }, + { + "label": "female", + "content": "female" + }, + { + "label": "femur", + "content": "femur" + }, + { + "label": "femur_alt", + "content": "femur_alt" + }, + { + "label": "fence", + "content": "fence" + }, + { + "label": "fertile", + "content": "fertile" + }, + { + "label": "festival", + "content": "festival" + }, + { + "label": "fiber_dvr", + "content": "fiber_dvr" + }, + { + "label": "fiber_manual_record", + "content": "fiber_manual_record" + }, + { + "label": "fiber_new", + "content": "fiber_new" + }, + { + "label": "fiber_pin", + "content": "fiber_pin" + }, + { + "label": "fiber_smart_record", + "content": "fiber_smart_record" + }, + { + "label": "file_copy", + "content": "file_copy" + }, + { + "label": "file_copy_off", + "content": "file_copy_off" + }, + { + "label": "file_download_off", + "content": "file_download_off" + }, + { + "label": "file_map", + "content": "file_map" + }, + { + "label": "file_open", + "content": "file_open" + }, + { + "label": "file_present", + "content": "file_present" + }, + { + "label": "file_save", + "content": "file_save" + }, + { + "label": "file_save_off", + "content": "file_save_off" + }, + { + "label": "file_upload_off", + "content": "file_upload_off" + }, + { + "label": "filter", + "content": "filter" + }, + { + "label": "filter_1", + "content": "filter_1" + }, + { + "label": "filter_2", + "content": "filter_2" + }, + { + "label": "filter_3", + "content": "filter_3" + }, + { + "label": "filter_4", + "content": "filter_4" + }, + { + "label": "filter_5", + "content": "filter_5" + }, + { + "label": "filter_6", + "content": "filter_6" + }, + { + "label": "filter_7", + "content": "filter_7" + }, + { + "label": "filter_8", + "content": "filter_8" + }, + { + "label": "filter_9", + "content": "filter_9" + }, + { + "label": "filter_9_plus", + "content": "filter_9_plus" + }, + { + "label": "filter_alt", + "content": "filter_alt" + }, + { + "label": "filter_alt_off", + "content": "filter_alt_off" + }, + { + "label": "filter_b_and_w", + "content": "filter_b_and_w" + }, + { + "label": "filter_center_focus", + "content": "filter_center_focus" + }, + { + "label": "filter_drama", + "content": "filter_drama" + }, + { + "label": "filter_frames", + "content": "filter_frames" + }, + { + "label": "filter_hdr", + "content": "filter_hdr" + }, + { + "label": "filter_list", + "content": "filter_list" + }, + { + "label": "filter_list_off", + "content": "filter_list_off" + }, + { + "label": "filter_none", + "content": "filter_none" + }, + { + "label": "filter_retrolux", + "content": "filter_retrolux" + }, + { + "label": "filter_tilt_shift", + "content": "filter_tilt_shift" + }, + { + "label": "filter_vintage", + "content": "filter_vintage" + }, + { + "label": "finance", + "content": "finance" + }, + { + "label": "finance_chip", + "content": "finance_chip" + }, + { + "label": "finance_mode", + "content": "finance_mode" + }, + { + "label": "find_in_page", + "content": "find_in_page" + }, + { + "label": "find_replace", + "content": "find_replace" + }, + { + "label": "fingerprint", + "content": "fingerprint" + }, + { + "label": "fingerprint_off", + "content": "fingerprint_off" + }, + { + "label": "fire_extinguisher", + "content": "fire_extinguisher" + }, + { + "label": "fire_hydrant", + "content": "fire_hydrant" + }, + { + "label": "fire_truck", + "content": "fire_truck" + }, + { + "label": "fireplace", + "content": "fireplace" + }, + { + "label": "first_page", + "content": "first_page" + }, + { + "label": "fit_page", + "content": "fit_page" + }, + { + "label": "fit_screen", + "content": "fit_screen" + }, + { + "label": "fit_width", + "content": "fit_width" + }, + { + "label": "fitness_center", + "content": "fitness_center" + }, + { + "label": "fitness_tracker", + "content": "fitness_tracker" + }, + { + "label": "flag", + "content": "flag" + }, + { + "label": "flag_circle", + "content": "flag_circle" + }, + { + "label": "flaky", + "content": "flaky" + }, + { + "label": "flare", + "content": "flare" + }, + { + "label": "flash_auto", + "content": "flash_auto" + }, + { + "label": "flash_off", + "content": "flash_off" + }, + { + "label": "flash_on", + "content": "flash_on" + }, + { + "label": "flashlight_off", + "content": "flashlight_off" + }, + { + "label": "flashlight_on", + "content": "flashlight_on" + }, + { + "label": "flatware", + "content": "flatware" + }, + { + "label": "flex_direction", + "content": "flex_direction" + }, + { + "label": "flex_no_wrap", + "content": "flex_no_wrap" + }, + { + "label": "flex_wrap", + "content": "flex_wrap" + }, + { + "label": "flight", + "content": "flight" + }, + { + "label": "flight_class", + "content": "flight_class" + }, + { + "label": "flight_land", + "content": "flight_land" + }, + { + "label": "flight_takeoff", + "content": "flight_takeoff" + }, + { + "label": "flights_and_hotels", + "content": "flights_and_hotels" + }, + { + "label": "flightsmode", + "content": "flightsmode" + }, + { + "label": "flip", + "content": "flip" + }, + { + "label": "flip_camera_android", + "content": "flip_camera_android" + }, + { + "label": "flip_camera_ios", + "content": "flip_camera_ios" + }, + { + "label": "flip_to_back", + "content": "flip_to_back" + }, + { + "label": "flip_to_front", + "content": "flip_to_front" + }, + { + "label": "float_landscape_2", + "content": "float_landscape_2" + }, + { + "label": "float_portrait_2", + "content": "float_portrait_2" + }, + { + "label": "flood", + "content": "flood" + }, + { + "label": "floor", + "content": "floor" + }, + { + "label": "floor_lamp", + "content": "floor_lamp" + }, + { + "label": "flowsheet", + "content": "flowsheet" + }, + { + "label": "fluid", + "content": "fluid" + }, + { + "label": "fluid_balance", + "content": "fluid_balance" + }, + { + "label": "fluid_med", + "content": "fluid_med" + }, + { + "label": "fluorescent", + "content": "fluorescent" + }, + { + "label": "flutter", + "content": "flutter" + }, + { + "label": "flutter_dash", + "content": "flutter_dash" + }, + { + "label": "flyover", + "content": "flyover" + }, + { + "label": "fmd_bad", + "content": "fmd_bad" + }, + { + "label": "foggy", + "content": "foggy" + }, + { + "label": "folded_hands", + "content": "folded_hands" + }, + { + "label": "folder", + "content": "folder" + }, + { + "label": "folder_copy", + "content": "folder_copy" + }, + { + "label": "folder_data", + "content": "folder_data" + }, + { + "label": "folder_delete", + "content": "folder_delete" + }, + { + "label": "folder_limited", + "content": "folder_limited" + }, + { + "label": "folder_managed", + "content": "folder_managed" + }, + { + "label": "folder_off", + "content": "folder_off" + }, + { + "label": "folder_open", + "content": "folder_open" + }, + { + "label": "folder_shared", + "content": "folder_shared" + }, + { + "label": "folder_special", + "content": "folder_special" + }, + { + "label": "folder_supervised", + "content": "folder_supervised" + }, + { + "label": "folder_zip", + "content": "folder_zip" + }, + { + "label": "follow_the_signs", + "content": "follow_the_signs" + }, + { + "label": "font_download", + "content": "font_download" + }, + { + "label": "font_download_off", + "content": "font_download_off" + }, + { + "label": "food_bank", + "content": "food_bank" + }, + { + "label": "foot_bones", + "content": "foot_bones" + }, + { + "label": "footprint", + "content": "footprint" + }, + { + "label": "for_you", + "content": "for_you" + }, + { + "label": "forest", + "content": "forest" + }, + { + "label": "fork_left", + "content": "fork_left" + }, + { + "label": "fork_right", + "content": "fork_right" + }, + { + "label": "forklift", + "content": "forklift" + }, + { + "label": "format_align_center", + "content": "format_align_center" + }, + { + "label": "format_align_justify", + "content": "format_align_justify" + }, + { + "label": "format_align_left", + "content": "format_align_left" + }, + { + "label": "format_align_right", + "content": "format_align_right" + }, + { + "label": "format_bold", + "content": "format_bold" + }, + { + "label": "format_clear", + "content": "format_clear" + }, + { + "label": "format_color_fill", + "content": "format_color_fill" + }, + { + "label": "format_color_reset", + "content": "format_color_reset" + }, + { + "label": "format_color_text", + "content": "format_color_text" + }, + { + "label": "format_h1", + "content": "format_h1" + }, + { + "label": "format_h2", + "content": "format_h2" + }, + { + "label": "format_h3", + "content": "format_h3" + }, + { + "label": "format_h4", + "content": "format_h4" + }, + { + "label": "format_h5", + "content": "format_h5" + }, + { + "label": "format_h6", + "content": "format_h6" + }, + { + "label": "format_image_left", + "content": "format_image_left" + }, + { + "label": "format_image_right", + "content": "format_image_right" + }, + { + "label": "format_indent_decrease", + "content": "format_indent_decrease" + }, + { + "label": "format_indent_increase", + "content": "format_indent_increase" + }, + { + "label": "format_ink_highlighter", + "content": "format_ink_highlighter" + }, + { + "label": "format_italic", + "content": "format_italic" + }, + { + "label": "format_letter_spacing", + "content": "format_letter_spacing" + }, + { + "label": "format_letter_spacing_2", + "content": "format_letter_spacing_2" + }, + { + "label": "format_letter_spacing_standard", + "content": "format_letter_spacing_standard" + }, + { + "label": "format_letter_spacing_wide", + "content": "format_letter_spacing_wide" + }, + { + "label": "format_letter_spacing_wider", + "content": "format_letter_spacing_wider" + }, + { + "label": "format_line_spacing", + "content": "format_line_spacing" + }, + { + "label": "format_list_bulleted", + "content": "format_list_bulleted" + }, + { + "label": "format_list_bulleted_add", + "content": "format_list_bulleted_add" + }, + { + "label": "format_list_numbered", + "content": "format_list_numbered" + }, + { + "label": "format_list_numbered_rtl", + "content": "format_list_numbered_rtl" + }, + { + "label": "format_overline", + "content": "format_overline" + }, + { + "label": "format_paint", + "content": "format_paint" + }, + { + "label": "format_paragraph", + "content": "format_paragraph" + }, + { + "label": "format_quote", + "content": "format_quote" + }, + { + "label": "format_shapes", + "content": "format_shapes" + }, + { + "label": "format_size", + "content": "format_size" + }, + { + "label": "format_strikethrough", + "content": "format_strikethrough" + }, + { + "label": "format_text_clip", + "content": "format_text_clip" + }, + { + "label": "format_text_overflow", + "content": "format_text_overflow" + }, + { + "label": "format_text_wrap", + "content": "format_text_wrap" + }, + { + "label": "format_textdirection_l_to_r", + "content": "format_textdirection_l_to_r" + }, + { + "label": "format_textdirection_r_to_l", + "content": "format_textdirection_r_to_l" + }, + { + "label": "format_textdirection_vertical", + "content": "format_textdirection_vertical" + }, + { + "label": "format_underlined", + "content": "format_underlined" + }, + { + "label": "format_underlined_squiggle", + "content": "format_underlined_squiggle" + }, + { + "label": "forms_add_on", + "content": "forms_add_on" + }, + { + "label": "forms_apps_script", + "content": "forms_apps_script" + }, + { + "label": "fort", + "content": "fort" + }, + { + "label": "forum", + "content": "forum" + }, + { + "label": "forward", + "content": "forward" + }, + { + "label": "forward_10", + "content": "forward_10" + }, + { + "label": "forward_30", + "content": "forward_30" + }, + { + "label": "forward_5", + "content": "forward_5" + }, + { + "label": "forward_circle", + "content": "forward_circle" + }, + { + "label": "forward_media", + "content": "forward_media" + }, + { + "label": "forward_to_inbox", + "content": "forward_to_inbox" + }, + { + "label": "foundation", + "content": "foundation" + }, + { + "label": "frame_inspect", + "content": "frame_inspect" + }, + { + "label": "frame_person", + "content": "frame_person" + }, + { + "label": "frame_person_mic", + "content": "frame_person_mic" + }, + { + "label": "frame_person_off", + "content": "frame_person_off" + }, + { + "label": "frame_reload", + "content": "frame_reload" + }, + { + "label": "frame_source", + "content": "frame_source" + }, + { + "label": "free_cancellation", + "content": "free_cancellation" + }, + { + "label": "front_hand", + "content": "front_hand" + }, + { + "label": "front_loader", + "content": "front_loader" + }, + { + "label": "full_coverage", + "content": "full_coverage" + }, + { + "label": "full_hd", + "content": "full_hd" + }, + { + "label": "full_stacked_bar_chart", + "content": "full_stacked_bar_chart" + }, + { + "label": "fullscreen", + "content": "fullscreen" + }, + { + "label": "fullscreen_exit", + "content": "fullscreen_exit" + }, + { + "label": "fullscreen_portrait", + "content": "fullscreen_portrait" + }, + { + "label": "function", + "content": "function" + }, + { + "label": "functions", + "content": "functions" + }, + { + "label": "funicular", + "content": "funicular" + }, + { + "label": "g_mobiledata", + "content": "g_mobiledata" + }, + { + "label": "g_mobiledata_badge", + "content": "g_mobiledata_badge" + }, + { + "label": "g_translate", + "content": "g_translate" + }, + { + "label": "gallery_thumbnail", + "content": "gallery_thumbnail" + }, + { + "label": "gamepad", + "content": "gamepad" + }, + { + "label": "garage", + "content": "garage" + }, + { + "label": "garage_door", + "content": "garage_door" + }, + { + "label": "garage_home", + "content": "garage_home" + }, + { + "label": "garden_cart", + "content": "garden_cart" + }, + { + "label": "gas_meter", + "content": "gas_meter" + }, + { + "label": "gastroenterology", + "content": "gastroenterology" + }, + { + "label": "gate", + "content": "gate" + }, + { + "label": "gavel", + "content": "gavel" + }, + { + "label": "general_device", + "content": "general_device" + }, + { + "label": "genetics", + "content": "genetics" + }, + { + "label": "genres", + "content": "genres" + }, + { + "label": "gesture", + "content": "gesture" + }, + { + "label": "gesture_select", + "content": "gesture_select" + }, + { + "label": "gif", + "content": "gif" + }, + { + "label": "gif_box", + "content": "gif_box" + }, + { + "label": "girl", + "content": "girl" + }, + { + "label": "gite", + "content": "gite" + }, + { + "label": "glass_cup", + "content": "glass_cup" + }, + { + "label": "globe", + "content": "globe" + }, + { + "label": "globe_asia", + "content": "globe_asia" + }, + { + "label": "globe_uk", + "content": "globe_uk" + }, + { + "label": "glucose", + "content": "glucose" + }, + { + "label": "glyphs", + "content": "glyphs" + }, + { + "label": "go_to_line", + "content": "go_to_line" + }, + { + "label": "golf_course", + "content": "golf_course" + }, + { + "label": "gondola_lift", + "content": "gondola_lift" + }, + { + "label": "google_home_devices", + "content": "google_home_devices" + }, + { + "label": "google_tv_remote", + "content": "google_tv_remote" + }, + { + "label": "google_wifi", + "content": "google_wifi" + }, + { + "label": "gpp_bad", + "content": "gpp_bad" + }, + { + "label": "gpp_maybe", + "content": "gpp_maybe" + }, + { + "label": "grade", + "content": "grade" + }, + { + "label": "gradient", + "content": "gradient" + }, + { + "label": "grading", + "content": "grading" + }, + { + "label": "grain", + "content": "grain" + }, + { + "label": "graphic_eq", + "content": "graphic_eq" + }, + { + "label": "grass", + "content": "grass" + }, + { + "label": "grid_3x3", + "content": "grid_3x3" + }, + { + "label": "grid_3x3_off", + "content": "grid_3x3_off" + }, + { + "label": "grid_4x4", + "content": "grid_4x4" + }, + { + "label": "grid_goldenratio", + "content": "grid_goldenratio" + }, + { + "label": "grid_guides", + "content": "grid_guides" + }, + { + "label": "grid_off", + "content": "grid_off" + }, + { + "label": "grid_on", + "content": "grid_on" + }, + { + "label": "grid_view", + "content": "grid_view" + }, + { + "label": "grocery", + "content": "grocery" + }, + { + "label": "group", + "content": "group" + }, + { + "label": "group_add", + "content": "group_add" + }, + { + "label": "group_off", + "content": "group_off" + }, + { + "label": "group_remove", + "content": "group_remove" + }, + { + "label": "group_work", + "content": "group_work" + }, + { + "label": "grouped_bar_chart", + "content": "grouped_bar_chart" + }, + { + "label": "groups", + "content": "groups" + }, + { + "label": "groups_2", + "content": "groups_2" + }, + { + "label": "groups_3", + "content": "groups_3" + }, + { + "label": "guardian", + "content": "guardian" + }, + { + "label": "gynecology", + "content": "gynecology" + }, + { + "label": "h_mobiledata", + "content": "h_mobiledata" + }, + { + "label": "h_mobiledata_badge", + "content": "h_mobiledata_badge" + }, + { + "label": "h_plus_mobiledata", + "content": "h_plus_mobiledata" + }, + { + "label": "h_plus_mobiledata_badge", + "content": "h_plus_mobiledata_badge" + }, + { + "label": "hail", + "content": "hail" + }, + { + "label": "hallway", + "content": "hallway" + }, + { + "label": "hand_bones", + "content": "hand_bones" + }, + { + "label": "hand_gesture", + "content": "hand_gesture" + }, + { + "label": "handheld_controller", + "content": "handheld_controller" + }, + { + "label": "handshake", + "content": "handshake" + }, + { + "label": "handyman", + "content": "handyman" + }, + { + "label": "hangout_video", + "content": "hangout_video" + }, + { + "label": "hangout_video_off", + "content": "hangout_video_off" + }, + { + "label": "hard_drive", + "content": "hard_drive" + }, + { + "label": "hard_drive_2", + "content": "hard_drive_2" + }, + { + "label": "hardware", + "content": "hardware" + }, + { + "label": "hd", + "content": "hd" + }, + { + "label": "hdr_auto", + "content": "hdr_auto" + }, + { + "label": "hdr_auto_select", + "content": "hdr_auto_select" + }, + { + "label": "hdr_enhanced_select", + "content": "hdr_enhanced_select" + }, + { + "label": "hdr_off", + "content": "hdr_off" + }, + { + "label": "hdr_off_select", + "content": "hdr_off_select" + }, + { + "label": "hdr_on", + "content": "hdr_on" + }, + { + "label": "hdr_on_select", + "content": "hdr_on_select" + }, + { + "label": "hdr_plus", + "content": "hdr_plus" + }, + { + "label": "hdr_plus_off", + "content": "hdr_plus_off" + }, + { + "label": "hdr_strong", + "content": "hdr_strong" + }, + { + "label": "hdr_weak", + "content": "hdr_weak" + }, + { + "label": "head_mounted_device", + "content": "head_mounted_device" + }, + { + "label": "headphones", + "content": "headphones" + }, + { + "label": "headphones_battery", + "content": "headphones_battery" + }, + { + "label": "headset_mic", + "content": "headset_mic" + }, + { + "label": "headset_off", + "content": "headset_off" + }, + { + "label": "healing", + "content": "healing" + }, + { + "label": "health_and_beauty", + "content": "health_and_beauty" + }, + { + "label": "health_and_safety", + "content": "health_and_safety" + }, + { + "label": "health_metrics", + "content": "health_metrics" + }, + { + "label": "heap_snapshot_large", + "content": "heap_snapshot_large" + }, + { + "label": "heap_snapshot_multiple", + "content": "heap_snapshot_multiple" + }, + { + "label": "heap_snapshot_thumbnail", + "content": "heap_snapshot_thumbnail" + }, + { + "label": "hearing", + "content": "hearing" + }, + { + "label": "hearing_aid", + "content": "hearing_aid" + }, + { + "label": "hearing_disabled", + "content": "hearing_disabled" + }, + { + "label": "heart_broken", + "content": "heart_broken" + }, + { + "label": "heart_check", + "content": "heart_check" + }, + { + "label": "heart_minus", + "content": "heart_minus" + }, + { + "label": "heart_plus", + "content": "heart_plus" + }, + { + "label": "heat", + "content": "heat" + }, + { + "label": "heat_pump", + "content": "heat_pump" + }, + { + "label": "heat_pump_balance", + "content": "heat_pump_balance" + }, + { + "label": "height", + "content": "height" + }, + { + "label": "helicopter", + "content": "helicopter" + }, + { + "label": "help", + "content": "help" + }, + { + "label": "help_center", + "content": "help_center" + }, + { + "label": "help_clinic", + "content": "help_clinic" + }, + { + "label": "hematology", + "content": "hematology" + }, + { + "label": "hevc", + "content": "hevc" + }, + { + "label": "hexagon", + "content": "hexagon" + }, + { + "label": "hide", + "content": "hide" + }, + { + "label": "hide_image", + "content": "hide_image" + }, + { + "label": "hide_source", + "content": "hide_source" + }, + { + "label": "high_density", + "content": "high_density" + }, + { + "label": "high_quality", + "content": "high_quality" + }, + { + "label": "high_res", + "content": "high_res" + }, + { + "label": "highlight", + "content": "highlight" + }, + { + "label": "highlight_keyboard_focus", + "content": "highlight_keyboard_focus" + }, + { + "label": "highlight_mouse_cursor", + "content": "highlight_mouse_cursor" + }, + { + "label": "highlight_text_cursor", + "content": "highlight_text_cursor" + }, + { + "label": "highlighter_size_1", + "content": "highlighter_size_1" + }, + { + "label": "highlighter_size_2", + "content": "highlighter_size_2" + }, + { + "label": "highlighter_size_3", + "content": "highlighter_size_3" + }, + { + "label": "highlighter_size_4", + "content": "highlighter_size_4" + }, + { + "label": "highlighter_size_5", + "content": "highlighter_size_5" + }, + { + "label": "hiking", + "content": "hiking" + }, + { + "label": "history", + "content": "history" + }, + { + "label": "history_edu", + "content": "history_edu" + }, + { + "label": "history_off", + "content": "history_off" + }, + { + "label": "history_toggle_off", + "content": "history_toggle_off" + }, + { + "label": "hive", + "content": "hive" + }, + { + "label": "hls", + "content": "hls" + }, + { + "label": "hls_off", + "content": "hls_off" + }, + { + "label": "holiday_village", + "content": "holiday_village" + }, + { + "label": "home", + "content": "home" + }, + { + "label": "home_and_garden", + "content": "home_and_garden" + }, + { + "label": "home_app_logo", + "content": "home_app_logo" + }, + { + "label": "home_health", + "content": "home_health" + }, + { + "label": "home_improvement_and_tools", + "content": "home_improvement_and_tools" + }, + { + "label": "home_iot_device", + "content": "home_iot_device" + }, + { + "label": "home_max", + "content": "home_max" + }, + { + "label": "home_max_dots", + "content": "home_max_dots" + }, + { + "label": "home_mini", + "content": "home_mini" + }, + { + "label": "home_pin", + "content": "home_pin" + }, + { + "label": "home_repair_service", + "content": "home_repair_service" + }, + { + "label": "home_speaker", + "content": "home_speaker" + }, + { + "label": "home_storage", + "content": "home_storage" + }, + { + "label": "home_work", + "content": "home_work" + }, + { + "label": "horizontal_distribute", + "content": "horizontal_distribute" + }, + { + "label": "horizontal_rule", + "content": "horizontal_rule" + }, + { + "label": "horizontal_split", + "content": "horizontal_split" + }, + { + "label": "hot_tub", + "content": "hot_tub" + }, + { + "label": "hotel", + "content": "hotel" + }, + { + "label": "hotel_class", + "content": "hotel_class" + }, + { + "label": "hourglass", + "content": "hourglass" + }, + { + "label": "hourglass_bottom", + "content": "hourglass_bottom" + }, + { + "label": "hourglass_disabled", + "content": "hourglass_disabled" + }, + { + "label": "hourglass_empty", + "content": "hourglass_empty" + }, + { + "label": "hourglass_top", + "content": "hourglass_top" + }, + { + "label": "house", + "content": "house" + }, + { + "label": "house_siding", + "content": "house_siding" + }, + { + "label": "house_with_shield", + "content": "house_with_shield" + }, + { + "label": "houseboat", + "content": "houseboat" + }, + { + "label": "household_supplies", + "content": "household_supplies" + }, + { + "label": "hov", + "content": "hov" + }, + { + "label": "how_to_reg", + "content": "how_to_reg" + }, + { + "label": "how_to_vote", + "content": "how_to_vote" + }, + { + "label": "hr_resting", + "content": "hr_resting" + }, + { + "label": "html", + "content": "html" + }, + { + "label": "http", + "content": "http" + }, + { + "label": "hub", + "content": "hub" + }, + { + "label": "humerus", + "content": "humerus" + }, + { + "label": "humerus_alt", + "content": "humerus_alt" + }, + { + "label": "humidity_high", + "content": "humidity_high" + }, + { + "label": "humidity_indoor", + "content": "humidity_indoor" + }, + { + "label": "humidity_low", + "content": "humidity_low" + }, + { + "label": "humidity_mid", + "content": "humidity_mid" + }, + { + "label": "humidity_percentage", + "content": "humidity_percentage" + }, + { + "label": "hvac", + "content": "hvac" + }, + { + "label": "ice_skating", + "content": "ice_skating" + }, + { + "label": "icecream", + "content": "icecream" + }, + { + "label": "id_card", + "content": "id_card" + }, + { + "label": "ifl", + "content": "ifl" + }, + { + "label": "iframe", + "content": "iframe" + }, + { + "label": "iframe_off", + "content": "iframe_off" + }, + { + "label": "image", + "content": "image" + }, + { + "label": "image_aspect_ratio", + "content": "image_aspect_ratio" + }, + { + "label": "image_search", + "content": "image_search" + }, + { + "label": "imagesearch_roller", + "content": "imagesearch_roller" + }, + { + "label": "imagesmode", + "content": "imagesmode" + }, + { + "label": "immunology", + "content": "immunology" + }, + { + "label": "import_contacts", + "content": "import_contacts" + }, + { + "label": "important_devices", + "content": "important_devices" + }, + { + "label": "in_home_mode", + "content": "in_home_mode" + }, + { + "label": "inactive_order", + "content": "inactive_order" + }, + { + "label": "inbox", + "content": "inbox" + }, + { + "label": "inbox_customize", + "content": "inbox_customize" + }, + { + "label": "incomplete_circle", + "content": "incomplete_circle" + }, + { + "label": "indeterminate_check_box", + "content": "indeterminate_check_box" + }, + { + "label": "indeterminate_question_box", + "content": "indeterminate_question_box" + }, + { + "label": "info", + "content": "info" + }, + { + "label": "info_i", + "content": "info_i" + }, + { + "label": "infrared", + "content": "infrared" + }, + { + "label": "ink_eraser", + "content": "ink_eraser" + }, + { + "label": "ink_eraser_off", + "content": "ink_eraser_off" + }, + { + "label": "ink_highlighter", + "content": "ink_highlighter" + }, + { + "label": "ink_highlighter_move", + "content": "ink_highlighter_move" + }, + { + "label": "ink_marker", + "content": "ink_marker" + }, + { + "label": "ink_pen", + "content": "ink_pen" + }, + { + "label": "inpatient", + "content": "inpatient" + }, + { + "label": "input", + "content": "input" + }, + { + "label": "input_circle", + "content": "input_circle" + }, + { + "label": "insert_chart", + "content": "insert_chart" + }, + { + "label": "insert_page_break", + "content": "insert_page_break" + }, + { + "label": "insert_text", + "content": "insert_text" + }, + { + "label": "install_desktop", + "content": "install_desktop" + }, + { + "label": "install_mobile", + "content": "install_mobile" + }, + { + "label": "instant_mix", + "content": "instant_mix" + }, + { + "label": "integration_instructions", + "content": "integration_instructions" + }, + { + "label": "interactive_space", + "content": "interactive_space" + }, + { + "label": "interests", + "content": "interests" + }, + { + "label": "interpreter_mode", + "content": "interpreter_mode" + }, + { + "label": "inventory", + "content": "inventory" + }, + { + "label": "inventory_2", + "content": "inventory_2" + }, + { + "label": "invert_colors", + "content": "invert_colors" + }, + { + "label": "invert_colors_off", + "content": "invert_colors_off" + }, + { + "label": "ios", + "content": "ios" + }, + { + "label": "ios_share", + "content": "ios_share" + }, + { + "label": "iron", + "content": "iron" + }, + { + "label": "jamboard_kiosk", + "content": "jamboard_kiosk" + }, + { + "label": "javascript", + "content": "javascript" + }, + { + "label": "join", + "content": "join" + }, + { + "label": "join_inner", + "content": "join_inner" + }, + { + "label": "join_left", + "content": "join_left" + }, + { + "label": "join_right", + "content": "join_right" + }, + { + "label": "joystick", + "content": "joystick" + }, + { + "label": "jump_to_element", + "content": "jump_to_element" + }, + { + "label": "kayaking", + "content": "kayaking" + }, + { + "label": "kebab_dining", + "content": "kebab_dining" + }, + { + "label": "keep", + "content": "keep" + }, + { + "label": "keep_off", + "content": "keep_off" + }, + { + "label": "keep_public", + "content": "keep_public" + }, + { + "label": "kettle", + "content": "kettle" + }, + { + "label": "key", + "content": "key" + }, + { + "label": "key_off", + "content": "key_off" + }, + { + "label": "key_vertical", + "content": "key_vertical" + }, + { + "label": "key_visualizer", + "content": "key_visualizer" + }, + { + "label": "keyboard", + "content": "keyboard" + }, + { + "label": "keyboard_alt", + "content": "keyboard_alt" + }, + { + "label": "keyboard_arrow_down", + "content": "keyboard_arrow_down" + }, + { + "label": "keyboard_arrow_left", + "content": "keyboard_arrow_left" + }, + { + "label": "keyboard_arrow_right", + "content": "keyboard_arrow_right" + }, + { + "label": "keyboard_arrow_up", + "content": "keyboard_arrow_up" + }, + { + "label": "keyboard_backspace", + "content": "keyboard_backspace" + }, + { + "label": "keyboard_capslock", + "content": "keyboard_capslock" + }, + { + "label": "keyboard_capslock_badge", + "content": "keyboard_capslock_badge" + }, + { + "label": "keyboard_command_key", + "content": "keyboard_command_key" + }, + { + "label": "keyboard_control_key", + "content": "keyboard_control_key" + }, + { + "label": "keyboard_double_arrow_down", + "content": "keyboard_double_arrow_down" + }, + { + "label": "keyboard_double_arrow_left", + "content": "keyboard_double_arrow_left" + }, + { + "label": "keyboard_double_arrow_right", + "content": "keyboard_double_arrow_right" + }, + { + "label": "keyboard_double_arrow_up", + "content": "keyboard_double_arrow_up" + }, + { + "label": "keyboard_external_input", + "content": "keyboard_external_input" + }, + { + "label": "keyboard_full", + "content": "keyboard_full" + }, + { + "label": "keyboard_hide", + "content": "keyboard_hide" + }, + { + "label": "keyboard_keys", + "content": "keyboard_keys" + }, + { + "label": "keyboard_lock", + "content": "keyboard_lock" + }, + { + "label": "keyboard_lock_off", + "content": "keyboard_lock_off" + }, + { + "label": "keyboard_off", + "content": "keyboard_off" + }, + { + "label": "keyboard_onscreen", + "content": "keyboard_onscreen" + }, + { + "label": "keyboard_option_key", + "content": "keyboard_option_key" + }, + { + "label": "keyboard_previous_language", + "content": "keyboard_previous_language" + }, + { + "label": "keyboard_return", + "content": "keyboard_return" + }, + { + "label": "keyboard_tab", + "content": "keyboard_tab" + }, + { + "label": "keyboard_tab_rtl", + "content": "keyboard_tab_rtl" + }, + { + "label": "kid_star", + "content": "kid_star" + }, + { + "label": "king_bed", + "content": "king_bed" + }, + { + "label": "kitchen", + "content": "kitchen" + }, + { + "label": "kitesurfing", + "content": "kitesurfing" + }, + { + "label": "lab_panel", + "content": "lab_panel" + }, + { + "label": "lab_profile", + "content": "lab_profile" + }, + { + "label": "lab_research", + "content": "lab_research" + }, + { + "label": "label", + "content": "label" + }, + { + "label": "label_important", + "content": "label_important" + }, + { + "label": "label_off", + "content": "label_off" + }, + { + "label": "labs", + "content": "labs" + }, + { + "label": "lan", + "content": "lan" + }, + { + "label": "landscape", + "content": "landscape" + }, + { + "label": "landscape_2", + "content": "landscape_2" + }, + { + "label": "landscape_2_off", + "content": "landscape_2_off" + }, + { + "label": "landslide", + "content": "landslide" + }, + { + "label": "language", + "content": "language" + }, + { + "label": "language_chinese_array", + "content": "language_chinese_array" + }, + { + "label": "language_chinese_cangjie", + "content": "language_chinese_cangjie" + }, + { + "label": "language_chinese_dayi", + "content": "language_chinese_dayi" + }, + { + "label": "language_chinese_pinyin", + "content": "language_chinese_pinyin" + }, + { + "label": "language_chinese_quick", + "content": "language_chinese_quick" + }, + { + "label": "language_chinese_wubi", + "content": "language_chinese_wubi" + }, + { + "label": "language_french", + "content": "language_french" + }, + { + "label": "language_gb_english", + "content": "language_gb_english" + }, + { + "label": "language_international", + "content": "language_international" + }, + { + "label": "language_japanese_kana", + "content": "language_japanese_kana" + }, + { + "label": "language_korean_latin", + "content": "language_korean_latin" + }, + { + "label": "language_pinyin", + "content": "language_pinyin" + }, + { + "label": "language_spanish", + "content": "language_spanish" + }, + { + "label": "language_us", + "content": "language_us" + }, + { + "label": "language_us_colemak", + "content": "language_us_colemak" + }, + { + "label": "language_us_dvorak", + "content": "language_us_dvorak" + }, + { + "label": "laps", + "content": "laps" + }, + { + "label": "laptop_chromebook", + "content": "laptop_chromebook" + }, + { + "label": "laptop_mac", + "content": "laptop_mac" + }, + { + "label": "laptop_windows", + "content": "laptop_windows" + }, + { + "label": "lasso_select", + "content": "lasso_select" + }, + { + "label": "last_page", + "content": "last_page" + }, + { + "label": "laundry", + "content": "laundry" + }, + { + "label": "layers", + "content": "layers" + }, + { + "label": "layers_clear", + "content": "layers_clear" + }, + { + "label": "lda", + "content": "lda" + }, + { + "label": "leaderboard", + "content": "leaderboard" + }, + { + "label": "leak_add", + "content": "leak_add" + }, + { + "label": "leak_remove", + "content": "leak_remove" + }, + { + "label": "left_click", + "content": "left_click" + }, + { + "label": "left_panel_close", + "content": "left_panel_close" + }, + { + "label": "left_panel_open", + "content": "left_panel_open" + }, + { + "label": "legend_toggle", + "content": "legend_toggle" + }, + { + "label": "lens", + "content": "lens" + }, + { + "label": "lens_blur", + "content": "lens_blur" + }, + { + "label": "letter_switch", + "content": "letter_switch" + }, + { + "label": "library_add", + "content": "library_add" + }, + { + "label": "library_add_check", + "content": "library_add_check" + }, + { + "label": "library_books", + "content": "library_books" + }, + { + "label": "library_music", + "content": "library_music" + }, + { + "label": "license", + "content": "license" + }, + { + "label": "lift_to_talk", + "content": "lift_to_talk" + }, + { + "label": "light", + "content": "light" + }, + { + "label": "light_group", + "content": "light_group" + }, + { + "label": "light_mode", + "content": "light_mode" + }, + { + "label": "light_off", + "content": "light_off" + }, + { + "label": "lightbulb", + "content": "lightbulb" + }, + { + "label": "lightbulb_circle", + "content": "lightbulb_circle" + }, + { + "label": "lightning_stand", + "content": "lightning_stand" + }, + { + "label": "line_axis", + "content": "line_axis" + }, + { + "label": "line_curve", + "content": "line_curve" + }, + { + "label": "line_end", + "content": "line_end" + }, + { + "label": "line_end_arrow", + "content": "line_end_arrow" + }, + { + "label": "line_end_arrow_notch", + "content": "line_end_arrow_notch" + }, + { + "label": "line_end_circle", + "content": "line_end_circle" + }, + { + "label": "line_end_diamond", + "content": "line_end_diamond" + }, + { + "label": "line_end_square", + "content": "line_end_square" + }, + { + "label": "line_start", + "content": "line_start" + }, + { + "label": "line_start_arrow", + "content": "line_start_arrow" + }, + { + "label": "line_start_arrow_notch", + "content": "line_start_arrow_notch" + }, + { + "label": "line_start_circle", + "content": "line_start_circle" + }, + { + "label": "line_start_diamond", + "content": "line_start_diamond" + }, + { + "label": "line_start_square", + "content": "line_start_square" + }, + { + "label": "line_style", + "content": "line_style" + }, + { + "label": "line_weight", + "content": "line_weight" + }, + { + "label": "linear_scale", + "content": "linear_scale" + }, + { + "label": "link", + "content": "link" + }, + { + "label": "link_off", + "content": "link_off" + }, + { + "label": "linked_camera", + "content": "linked_camera" + }, + { + "label": "linked_services", + "content": "linked_services" + }, + { + "label": "liquor", + "content": "liquor" + }, + { + "label": "list", + "content": "list" + }, + { + "label": "list_alt", + "content": "list_alt" + }, + { + "label": "list_alt_add", + "content": "list_alt_add" + }, + { + "label": "lists", + "content": "lists" + }, + { + "label": "live_help", + "content": "live_help" + }, + { + "label": "live_tv", + "content": "live_tv" + }, + { + "label": "living", + "content": "living" + }, + { + "label": "local_activity", + "content": "local_activity" + }, + { + "label": "local_atm", + "content": "local_atm" + }, + { + "label": "local_bar", + "content": "local_bar" + }, + { + "label": "local_cafe", + "content": "local_cafe" + }, + { + "label": "local_car_wash", + "content": "local_car_wash" + }, + { + "label": "local_convenience_store", + "content": "local_convenience_store" + }, + { + "label": "local_dining", + "content": "local_dining" + }, + { + "label": "local_drink", + "content": "local_drink" + }, + { + "label": "local_fire_department", + "content": "local_fire_department" + }, + { + "label": "local_florist", + "content": "local_florist" + }, + { + "label": "local_gas_station", + "content": "local_gas_station" + }, + { + "label": "local_hospital", + "content": "local_hospital" + }, + { + "label": "local_laundry_service", + "content": "local_laundry_service" + }, + { + "label": "local_library", + "content": "local_library" + }, + { + "label": "local_mall", + "content": "local_mall" + }, + { + "label": "local_parking", + "content": "local_parking" + }, + { + "label": "local_pharmacy", + "content": "local_pharmacy" + }, + { + "label": "local_pizza", + "content": "local_pizza" + }, + { + "label": "local_police", + "content": "local_police" + }, + { + "label": "local_post_office", + "content": "local_post_office" + }, + { + "label": "local_see", + "content": "local_see" + }, + { + "label": "local_shipping", + "content": "local_shipping" + }, + { + "label": "local_taxi", + "content": "local_taxi" + }, + { + "label": "location_away", + "content": "location_away" + }, + { + "label": "location_chip", + "content": "location_chip" + }, + { + "label": "location_city", + "content": "location_city" + }, + { + "label": "location_disabled", + "content": "location_disabled" + }, + { + "label": "location_home", + "content": "location_home" + }, + { + "label": "location_off", + "content": "location_off" + }, + { + "label": "location_on", + "content": "location_on" + }, + { + "label": "location_searching", + "content": "location_searching" + }, + { + "label": "lock", + "content": "lock" + }, + { + "label": "lock_clock", + "content": "lock_clock" + }, + { + "label": "lock_open", + "content": "lock_open" + }, + { + "label": "lock_open_right", + "content": "lock_open_right" + }, + { + "label": "lock_person", + "content": "lock_person" + }, + { + "label": "lock_reset", + "content": "lock_reset" + }, + { + "label": "login", + "content": "login" + }, + { + "label": "logo_dev", + "content": "logo_dev" + }, + { + "label": "logout", + "content": "logout" + }, + { + "label": "looks", + "content": "looks" + }, + { + "label": "looks_3", + "content": "looks_3" + }, + { + "label": "looks_4", + "content": "looks_4" + }, + { + "label": "looks_5", + "content": "looks_5" + }, + { + "label": "looks_6", + "content": "looks_6" + }, + { + "label": "looks_one", + "content": "looks_one" + }, + { + "label": "looks_two", + "content": "looks_two" + }, + { + "label": "loupe", + "content": "loupe" + }, + { + "label": "low_density", + "content": "low_density" + }, + { + "label": "low_priority", + "content": "low_priority" + }, + { + "label": "lowercase", + "content": "lowercase" + }, + { + "label": "loyalty", + "content": "loyalty" + }, + { + "label": "lte_mobiledata", + "content": "lte_mobiledata" + }, + { + "label": "lte_mobiledata_badge", + "content": "lte_mobiledata_badge" + }, + { + "label": "lte_plus_mobiledata", + "content": "lte_plus_mobiledata" + }, + { + "label": "lte_plus_mobiledata_badge", + "content": "lte_plus_mobiledata_badge" + }, + { + "label": "luggage", + "content": "luggage" + }, + { + "label": "lunch_dining", + "content": "lunch_dining" + }, + { + "label": "lyrics", + "content": "lyrics" + }, + { + "label": "macro_auto", + "content": "macro_auto" + }, + { + "label": "macro_off", + "content": "macro_off" + }, + { + "label": "magnification_large", + "content": "magnification_large" + }, + { + "label": "magnification_small", + "content": "magnification_small" + }, + { + "label": "magnify_docked", + "content": "magnify_docked" + }, + { + "label": "magnify_fullscreen", + "content": "magnify_fullscreen" + }, + { + "label": "mail", + "content": "mail" + }, + { + "label": "mail_lock", + "content": "mail_lock" + }, + { + "label": "mail_off", + "content": "mail_off" + }, + { + "label": "male", + "content": "male" + }, + { + "label": "man", + "content": "man" + }, + { + "label": "man_2", + "content": "man_2" + }, + { + "label": "man_3", + "content": "man_3" + }, + { + "label": "man_4", + "content": "man_4" + }, + { + "label": "manage_accounts", + "content": "manage_accounts" + }, + { + "label": "manage_history", + "content": "manage_history" + }, + { + "label": "manage_search", + "content": "manage_search" + }, + { + "label": "manga", + "content": "manga" + }, + { + "label": "manufacturing", + "content": "manufacturing" + }, + { + "label": "map", + "content": "map" + }, + { + "label": "maps_ugc", + "content": "maps_ugc" + }, + { + "label": "margin", + "content": "margin" + }, + { + "label": "mark_as_unread", + "content": "mark_as_unread" + }, + { + "label": "mark_chat_read", + "content": "mark_chat_read" + }, + { + "label": "mark_chat_unread", + "content": "mark_chat_unread" + }, + { + "label": "mark_email_read", + "content": "mark_email_read" + }, + { + "label": "mark_email_unread", + "content": "mark_email_unread" + }, + { + "label": "mark_unread_chat_alt", + "content": "mark_unread_chat_alt" + }, + { + "label": "markdown", + "content": "markdown" + }, + { + "label": "markdown_copy", + "content": "markdown_copy" + }, + { + "label": "markdown_paste", + "content": "markdown_paste" + }, + { + "label": "markunread_mailbox", + "content": "markunread_mailbox" + }, + { + "label": "masked_transitions", + "content": "masked_transitions" + }, + { + "label": "masks", + "content": "masks" + }, + { + "label": "match_case", + "content": "match_case" + }, + { + "label": "match_word", + "content": "match_word" + }, + { + "label": "matter", + "content": "matter" + }, + { + "label": "maximize", + "content": "maximize" + }, + { + "label": "measuring_tape", + "content": "measuring_tape" + }, + { + "label": "media_bluetooth_off", + "content": "media_bluetooth_off" + }, + { + "label": "media_bluetooth_on", + "content": "media_bluetooth_on" + }, + { + "label": "media_link", + "content": "media_link" + }, + { + "label": "media_output", + "content": "media_output" + }, + { + "label": "media_output_off", + "content": "media_output_off" + }, + { + "label": "mediation", + "content": "mediation" + }, + { + "label": "medical_information", + "content": "medical_information" + }, + { + "label": "medical_mask", + "content": "medical_mask" + }, + { + "label": "medical_services", + "content": "medical_services" + }, + { + "label": "medication", + "content": "medication" + }, + { + "label": "medication_liquid", + "content": "medication_liquid" + }, + { + "label": "meeting_room", + "content": "meeting_room" + }, + { + "label": "memory", + "content": "memory" + }, + { + "label": "memory_alt", + "content": "memory_alt" + }, + { + "label": "menstrual_health", + "content": "menstrual_health" + }, + { + "label": "menu", + "content": "menu" + }, + { + "label": "menu_book", + "content": "menu_book" + }, + { + "label": "menu_open", + "content": "menu_open" + }, + { + "label": "merge", + "content": "merge" + }, + { + "label": "merge_type", + "content": "merge_type" + }, + { + "label": "metabolism", + "content": "metabolism" + }, + { + "label": "metro", + "content": "metro" + }, + { + "label": "mfg_nest_yale_lock", + "content": "mfg_nest_yale_lock" + }, + { + "label": "mic", + "content": "mic" + }, + { + "label": "mic_double", + "content": "mic_double" + }, + { + "label": "mic_external_off", + "content": "mic_external_off" + }, + { + "label": "mic_external_on", + "content": "mic_external_on" + }, + { + "label": "mic_off", + "content": "mic_off" + }, + { + "label": "microbiology", + "content": "microbiology" + }, + { + "label": "microwave", + "content": "microwave" + }, + { + "label": "microwave_gen", + "content": "microwave_gen" + }, + { + "label": "military_tech", + "content": "military_tech" + }, + { + "label": "mimo", + "content": "mimo" + }, + { + "label": "mimo_disconnect", + "content": "mimo_disconnect" + }, + { + "label": "mindfulness", + "content": "mindfulness" + }, + { + "label": "minimize", + "content": "minimize" + }, + { + "label": "minor_crash", + "content": "minor_crash" + }, + { + "label": "mintmark", + "content": "mintmark" + }, + { + "label": "missed_video_call", + "content": "missed_video_call" + }, + { + "label": "missing_controller", + "content": "missing_controller" + }, + { + "label": "mist", + "content": "mist" + }, + { + "label": "mitre", + "content": "mitre" + }, + { + "label": "mixture_med", + "content": "mixture_med" + }, + { + "label": "mms", + "content": "mms" + }, + { + "label": "mobile_friendly", + "content": "mobile_friendly" + }, + { + "label": "mobile_off", + "content": "mobile_off" + }, + { + "label": "mobile_screen_share", + "content": "mobile_screen_share" + }, + { + "label": "mobiledata_off", + "content": "mobiledata_off" + }, + { + "label": "mode_comment", + "content": "mode_comment" + }, + { + "label": "mode_cool", + "content": "mode_cool" + }, + { + "label": "mode_cool_off", + "content": "mode_cool_off" + }, + { + "label": "mode_dual", + "content": "mode_dual" + }, + { + "label": "mode_fan", + "content": "mode_fan" + }, + { + "label": "mode_fan_off", + "content": "mode_fan_off" + }, + { + "label": "mode_heat", + "content": "mode_heat" + }, + { + "label": "mode_heat_cool", + "content": "mode_heat_cool" + }, + { + "label": "mode_heat_off", + "content": "mode_heat_off" + }, + { + "label": "mode_night", + "content": "mode_night" + }, + { + "label": "mode_of_travel", + "content": "mode_of_travel" + }, + { + "label": "mode_off_on", + "content": "mode_off_on" + }, + { + "label": "mode_standby", + "content": "mode_standby" + }, + { + "label": "model_training", + "content": "model_training" + }, + { + "label": "money", + "content": "money" + }, + { + "label": "money_off", + "content": "money_off" + }, + { + "label": "monitor", + "content": "monitor" + }, + { + "label": "monitor_heart", + "content": "monitor_heart" + }, + { + "label": "monitor_weight", + "content": "monitor_weight" + }, + { + "label": "monitor_weight_gain", + "content": "monitor_weight_gain" + }, + { + "label": "monitor_weight_loss", + "content": "monitor_weight_loss" + }, + { + "label": "monitoring", + "content": "monitoring" + }, + { + "label": "monochrome_photos", + "content": "monochrome_photos" + }, + { + "label": "monorail", + "content": "monorail" + }, + { + "label": "mood", + "content": "mood" + }, + { + "label": "mood_bad", + "content": "mood_bad" + }, + { + "label": "mop", + "content": "mop" + }, + { + "label": "more", + "content": "more" + }, + { + "label": "more_down", + "content": "more_down" + }, + { + "label": "more_horiz", + "content": "more_horiz" + }, + { + "label": "more_time", + "content": "more_time" + }, + { + "label": "more_up", + "content": "more_up" + }, + { + "label": "more_vert", + "content": "more_vert" + }, + { + "label": "mosque", + "content": "mosque" + }, + { + "label": "motion_blur", + "content": "motion_blur" + }, + { + "label": "motion_mode", + "content": "motion_mode" + }, + { + "label": "motion_photos_auto", + "content": "motion_photos_auto" + }, + { + "label": "motion_photos_off", + "content": "motion_photos_off" + }, + { + "label": "motion_photos_on", + "content": "motion_photos_on" + }, + { + "label": "motion_photos_paused", + "content": "motion_photos_paused" + }, + { + "label": "motion_sensor_active", + "content": "motion_sensor_active" + }, + { + "label": "motion_sensor_alert", + "content": "motion_sensor_alert" + }, + { + "label": "motion_sensor_idle", + "content": "motion_sensor_idle" + }, + { + "label": "motion_sensor_urgent", + "content": "motion_sensor_urgent" + }, + { + "label": "motorcycle", + "content": "motorcycle" + }, + { + "label": "mountain_flag", + "content": "mountain_flag" + }, + { + "label": "mouse", + "content": "mouse" + }, + { + "label": "mouse_lock", + "content": "mouse_lock" + }, + { + "label": "mouse_lock_off", + "content": "mouse_lock_off" + }, + { + "label": "move", + "content": "move" + }, + { + "label": "move_down", + "content": "move_down" + }, + { + "label": "move_group", + "content": "move_group" + }, + { + "label": "move_item", + "content": "move_item" + }, + { + "label": "move_location", + "content": "move_location" + }, + { + "label": "move_selection_down", + "content": "move_selection_down" + }, + { + "label": "move_selection_left", + "content": "move_selection_left" + }, + { + "label": "move_selection_right", + "content": "move_selection_right" + }, + { + "label": "move_selection_up", + "content": "move_selection_up" + }, + { + "label": "move_to_inbox", + "content": "move_to_inbox" + }, + { + "label": "move_up", + "content": "move_up" + }, + { + "label": "moved_location", + "content": "moved_location" + }, + { + "label": "movie", + "content": "movie" + }, + { + "label": "movie_edit", + "content": "movie_edit" + }, + { + "label": "movie_info", + "content": "movie_info" + }, + { + "label": "movie_off", + "content": "movie_off" + }, + { + "label": "moving", + "content": "moving" + }, + { + "label": "moving_beds", + "content": "moving_beds" + }, + { + "label": "moving_ministry", + "content": "moving_ministry" + }, + { + "label": "mp", + "content": "mp" + }, + { + "label": "multicooker", + "content": "multicooker" + }, + { + "label": "multiline_chart", + "content": "multiline_chart" + }, + { + "label": "multiple_stop", + "content": "multiple_stop" + }, + { + "label": "museum", + "content": "museum" + }, + { + "label": "music_cast", + "content": "music_cast" + }, + { + "label": "music_note", + "content": "music_note" + }, + { + "label": "music_off", + "content": "music_off" + }, + { + "label": "music_video", + "content": "music_video" + }, + { + "label": "my_location", + "content": "my_location" + }, + { + "label": "mystery", + "content": "mystery" + }, + { + "label": "nat", + "content": "nat" + }, + { + "label": "nature", + "content": "nature" + }, + { + "label": "nature_people", + "content": "nature_people" + }, + { + "label": "navigation", + "content": "navigation" + }, + { + "label": "near_me", + "content": "near_me" + }, + { + "label": "near_me_disabled", + "content": "near_me_disabled" + }, + { + "label": "nearby", + "content": "nearby" + }, + { + "label": "nearby_error", + "content": "nearby_error" + }, + { + "label": "nearby_off", + "content": "nearby_off" + }, + { + "label": "nephrology", + "content": "nephrology" + }, + { + "label": "nest_audio", + "content": "nest_audio" + }, + { + "label": "nest_cam_floodlight", + "content": "nest_cam_floodlight" + }, + { + "label": "nest_cam_indoor", + "content": "nest_cam_indoor" + }, + { + "label": "nest_cam_iq", + "content": "nest_cam_iq" + }, + { + "label": "nest_cam_iq_outdoor", + "content": "nest_cam_iq_outdoor" + }, + { + "label": "nest_cam_magnet_mount", + "content": "nest_cam_magnet_mount" + }, + { + "label": "nest_cam_outdoor", + "content": "nest_cam_outdoor" + }, + { + "label": "nest_cam_stand", + "content": "nest_cam_stand" + }, + { + "label": "nest_cam_wall_mount", + "content": "nest_cam_wall_mount" + }, + { + "label": "nest_cam_wired_stand", + "content": "nest_cam_wired_stand" + }, + { + "label": "nest_clock_farsight_analog", + "content": "nest_clock_farsight_analog" + }, + { + "label": "nest_clock_farsight_digital", + "content": "nest_clock_farsight_digital" + }, + { + "label": "nest_connect", + "content": "nest_connect" + }, + { + "label": "nest_detect", + "content": "nest_detect" + }, + { + "label": "nest_display", + "content": "nest_display" + }, + { + "label": "nest_display_max", + "content": "nest_display_max" + }, + { + "label": "nest_doorbell_visitor", + "content": "nest_doorbell_visitor" + }, + { + "label": "nest_eco_leaf", + "content": "nest_eco_leaf" + }, + { + "label": "nest_farsight_weather", + "content": "nest_farsight_weather" + }, + { + "label": "nest_found_savings", + "content": "nest_found_savings" + }, + { + "label": "nest_gale_wifi", + "content": "nest_gale_wifi" + }, + { + "label": "nest_heat_link_e", + "content": "nest_heat_link_e" + }, + { + "label": "nest_heat_link_gen_3", + "content": "nest_heat_link_gen_3" + }, + { + "label": "nest_hello_doorbell", + "content": "nest_hello_doorbell" + }, + { + "label": "nest_mini", + "content": "nest_mini" + }, + { + "label": "nest_multi_room", + "content": "nest_multi_room" + }, + { + "label": "nest_protect", + "content": "nest_protect" + }, + { + "label": "nest_remote", + "content": "nest_remote" + }, + { + "label": "nest_remote_comfort_sensor", + "content": "nest_remote_comfort_sensor" + }, + { + "label": "nest_secure_alarm", + "content": "nest_secure_alarm" + }, + { + "label": "nest_sunblock", + "content": "nest_sunblock" + }, + { + "label": "nest_tag", + "content": "nest_tag" + }, + { + "label": "nest_thermostat", + "content": "nest_thermostat" + }, + { + "label": "nest_thermostat_e_eu", + "content": "nest_thermostat_e_eu" + }, + { + "label": "nest_thermostat_gen_3", + "content": "nest_thermostat_gen_3" + }, + { + "label": "nest_thermostat_sensor", + "content": "nest_thermostat_sensor" + }, + { + "label": "nest_thermostat_sensor_eu", + "content": "nest_thermostat_sensor_eu" + }, + { + "label": "nest_thermostat_zirconium_eu", + "content": "nest_thermostat_zirconium_eu" + }, + { + "label": "nest_true_radiant", + "content": "nest_true_radiant" + }, + { + "label": "nest_wake_on_approach", + "content": "nest_wake_on_approach" + }, + { + "label": "nest_wake_on_press", + "content": "nest_wake_on_press" + }, + { + "label": "nest_wifi_point", + "content": "nest_wifi_point" + }, + { + "label": "nest_wifi_pro", + "content": "nest_wifi_pro" + }, + { + "label": "nest_wifi_pro_2", + "content": "nest_wifi_pro_2" + }, + { + "label": "nest_wifi_router", + "content": "nest_wifi_router" + }, + { + "label": "network_cell", + "content": "network_cell" + }, + { + "label": "network_check", + "content": "network_check" + }, + { + "label": "network_intelligence_history", + "content": "network_intelligence_history" + }, + { + "label": "network_intelligence_update", + "content": "network_intelligence_update" + }, + { + "label": "network_locked", + "content": "network_locked" + }, + { + "label": "network_manage", + "content": "network_manage" + }, + { + "label": "network_node", + "content": "network_node" + }, + { + "label": "network_ping", + "content": "network_ping" + }, + { + "label": "network_wifi", + "content": "network_wifi" + }, + { + "label": "network_wifi_1_bar", + "content": "network_wifi_1_bar" + }, + { + "label": "network_wifi_1_bar_locked", + "content": "network_wifi_1_bar_locked" + }, + { + "label": "network_wifi_2_bar", + "content": "network_wifi_2_bar" + }, + { + "label": "network_wifi_2_bar_locked", + "content": "network_wifi_2_bar_locked" + }, + { + "label": "network_wifi_3_bar", + "content": "network_wifi_3_bar" + }, + { + "label": "network_wifi_3_bar_locked", + "content": "network_wifi_3_bar_locked" + }, + { + "label": "network_wifi_locked", + "content": "network_wifi_locked" + }, + { + "label": "neurology", + "content": "neurology" + }, + { + "label": "new_label", + "content": "new_label" + }, + { + "label": "new_releases", + "content": "new_releases" + }, + { + "label": "new_window", + "content": "new_window" + }, + { + "label": "news", + "content": "news" + }, + { + "label": "newsmode", + "content": "newsmode" + }, + { + "label": "newspaper", + "content": "newspaper" + }, + { + "label": "newsstand", + "content": "newsstand" + }, + { + "label": "next_plan", + "content": "next_plan" + }, + { + "label": "next_week", + "content": "next_week" + }, + { + "label": "nfc", + "content": "nfc" + }, + { + "label": "night_shelter", + "content": "night_shelter" + }, + { + "label": "night_sight_auto", + "content": "night_sight_auto" + }, + { + "label": "night_sight_auto_off", + "content": "night_sight_auto_off" + }, + { + "label": "night_sight_max", + "content": "night_sight_max" + }, + { + "label": "nightlife", + "content": "nightlife" + }, + { + "label": "nightlight", + "content": "nightlight" + }, + { + "label": "nights_stay", + "content": "nights_stay" + }, + { + "label": "no_accounts", + "content": "no_accounts" + }, + { + "label": "no_adult_content", + "content": "no_adult_content" + }, + { + "label": "no_backpack", + "content": "no_backpack" + }, + { + "label": "no_crash", + "content": "no_crash" + }, + { + "label": "no_drinks", + "content": "no_drinks" + }, + { + "label": "no_encryption", + "content": "no_encryption" + }, + { + "label": "no_flash", + "content": "no_flash" + }, + { + "label": "no_food", + "content": "no_food" + }, + { + "label": "no_luggage", + "content": "no_luggage" + }, + { + "label": "no_meals", + "content": "no_meals" + }, + { + "label": "no_meeting_room", + "content": "no_meeting_room" + }, + { + "label": "no_photography", + "content": "no_photography" + }, + { + "label": "no_sim", + "content": "no_sim" + }, + { + "label": "no_sound", + "content": "no_sound" + }, + { + "label": "no_stroller", + "content": "no_stroller" + }, + { + "label": "no_transfer", + "content": "no_transfer" + }, + { + "label": "noise_aware", + "content": "noise_aware" + }, + { + "label": "noise_control_off", + "content": "noise_control_off" + }, + { + "label": "noise_control_on", + "content": "noise_control_on" + }, + { + "label": "nordic_walking", + "content": "nordic_walking" + }, + { + "label": "north", + "content": "north" + }, + { + "label": "north_east", + "content": "north_east" + }, + { + "label": "north_west", + "content": "north_west" + }, + { + "label": "not_accessible", + "content": "not_accessible" + }, + { + "label": "not_accessible_forward", + "content": "not_accessible_forward" + }, + { + "label": "not_listed_location", + "content": "not_listed_location" + }, + { + "label": "not_started", + "content": "not_started" + }, + { + "label": "note_add", + "content": "note_add" + }, + { + "label": "note_alt", + "content": "note_alt" + }, + { + "label": "note_stack", + "content": "note_stack" + }, + { + "label": "note_stack_add", + "content": "note_stack_add" + }, + { + "label": "notes", + "content": "notes" + }, + { + "label": "notification_add", + "content": "notification_add" + }, + { + "label": "notification_important", + "content": "notification_important" + }, + { + "label": "notification_multiple", + "content": "notification_multiple" + }, + { + "label": "notifications", + "content": "notifications" + }, + { + "label": "notifications_active", + "content": "notifications_active" + }, + { + "label": "notifications_off", + "content": "notifications_off" + }, + { + "label": "notifications_paused", + "content": "notifications_paused" + }, + { + "label": "notifications_unread", + "content": "notifications_unread" + }, + { + "label": "numbers", + "content": "numbers" + }, + { + "label": "nutrition", + "content": "nutrition" + }, + { + "label": "ods", + "content": "ods" + }, + { + "label": "odt", + "content": "odt" + }, + { + "label": "offline_bolt", + "content": "offline_bolt" + }, + { + "label": "offline_pin", + "content": "offline_pin" + }, + { + "label": "offline_pin_off", + "content": "offline_pin_off" + }, + { + "label": "offline_share", + "content": "offline_share" + }, + { + "label": "oil_barrel", + "content": "oil_barrel" + }, + { + "label": "on_device_training", + "content": "on_device_training" + }, + { + "label": "on_hub_device", + "content": "on_hub_device" + }, + { + "label": "oncology", + "content": "oncology" + }, + { + "label": "online_prediction", + "content": "online_prediction" + }, + { + "label": "onsen", + "content": "onsen" + }, + { + "label": "opacity", + "content": "opacity" + }, + { + "label": "open_in_browser", + "content": "open_in_browser" + }, + { + "label": "open_in_full", + "content": "open_in_full" + }, + { + "label": "open_in_new", + "content": "open_in_new" + }, + { + "label": "open_in_new_down", + "content": "open_in_new_down" + }, + { + "label": "open_in_new_off", + "content": "open_in_new_off" + }, + { + "label": "open_in_phone", + "content": "open_in_phone" + }, + { + "label": "open_jam", + "content": "open_jam" + }, + { + "label": "open_run", + "content": "open_run" + }, + { + "label": "open_with", + "content": "open_with" + }, + { + "label": "ophthalmology", + "content": "ophthalmology" + }, + { + "label": "oral_disease", + "content": "oral_disease" + }, + { + "label": "order_approve", + "content": "order_approve" + }, + { + "label": "order_play", + "content": "order_play" + }, + { + "label": "orders", + "content": "orders" + }, + { + "label": "orthopedics", + "content": "orthopedics" + }, + { + "label": "other_admission", + "content": "other_admission" + }, + { + "label": "other_houses", + "content": "other_houses" + }, + { + "label": "outbound", + "content": "outbound" + }, + { + "label": "outbox", + "content": "outbox" + }, + { + "label": "outbox_alt", + "content": "outbox_alt" + }, + { + "label": "outdoor_garden", + "content": "outdoor_garden" + }, + { + "label": "outdoor_grill", + "content": "outdoor_grill" + }, + { + "label": "outgoing_mail", + "content": "outgoing_mail" + }, + { + "label": "outlet", + "content": "outlet" + }, + { + "label": "outpatient", + "content": "outpatient" + }, + { + "label": "outpatient_med", + "content": "outpatient_med" + }, + { + "label": "output", + "content": "output" + }, + { + "label": "output_circle", + "content": "output_circle" + }, + { + "label": "oven", + "content": "oven" + }, + { + "label": "oven_gen", + "content": "oven_gen" + }, + { + "label": "overview", + "content": "overview" + }, + { + "label": "overview_key", + "content": "overview_key" + }, + { + "label": "oxygen_saturation", + "content": "oxygen_saturation" + }, + { + "label": "p2p", + "content": "p2p" + }, + { + "label": "pace", + "content": "pace" + }, + { + "label": "pacemaker", + "content": "pacemaker" + }, + { + "label": "package", + "content": "package" + }, + { + "label": "package_2", + "content": "package_2" + }, + { + "label": "padding", + "content": "padding" + }, + { + "label": "page_control", + "content": "page_control" + }, + { + "label": "page_info", + "content": "page_info" + }, + { + "label": "pageless", + "content": "pageless" + }, + { + "label": "pages", + "content": "pages" + }, + { + "label": "pageview", + "content": "pageview" + }, + { + "label": "paid", + "content": "paid" + }, + { + "label": "palette", + "content": "palette" + }, + { + "label": "pallet", + "content": "pallet" + }, + { + "label": "pan_tool", + "content": "pan_tool" + }, + { + "label": "pan_tool_alt", + "content": "pan_tool_alt" + }, + { + "label": "pan_zoom", + "content": "pan_zoom" + }, + { + "label": "panorama", + "content": "panorama" + }, + { + "label": "panorama_fish_eye", + "content": "panorama_fish_eye" + }, + { + "label": "panorama_horizontal", + "content": "panorama_horizontal" + }, + { + "label": "panorama_photosphere", + "content": "panorama_photosphere" + }, + { + "label": "panorama_vertical", + "content": "panorama_vertical" + }, + { + "label": "panorama_wide_angle", + "content": "panorama_wide_angle" + }, + { + "label": "paragliding", + "content": "paragliding" + }, + { + "label": "park", + "content": "park" + }, + { + "label": "partly_cloudy_day", + "content": "partly_cloudy_day" + }, + { + "label": "partly_cloudy_night", + "content": "partly_cloudy_night" + }, + { + "label": "partner_exchange", + "content": "partner_exchange" + }, + { + "label": "partner_reports", + "content": "partner_reports" + }, + { + "label": "party_mode", + "content": "party_mode" + }, + { + "label": "passkey", + "content": "passkey" + }, + { + "label": "password", + "content": "password" + }, + { + "label": "password_2", + "content": "password_2" + }, + { + "label": "password_2_off", + "content": "password_2_off" + }, + { + "label": "patient_list", + "content": "patient_list" + }, + { + "label": "pattern", + "content": "pattern" + }, + { + "label": "pause", + "content": "pause" + }, + { + "label": "pause_circle", + "content": "pause_circle" + }, + { + "label": "pause_presentation", + "content": "pause_presentation" + }, + { + "label": "payments", + "content": "payments" + }, + { + "label": "pedal_bike", + "content": "pedal_bike" + }, + { + "label": "pediatrics", + "content": "pediatrics" + }, + { + "label": "pen_size_1", + "content": "pen_size_1" + }, + { + "label": "pen_size_2", + "content": "pen_size_2" + }, + { + "label": "pen_size_3", + "content": "pen_size_3" + }, + { + "label": "pen_size_4", + "content": "pen_size_4" + }, + { + "label": "pen_size_5", + "content": "pen_size_5" + }, + { + "label": "pending", + "content": "pending" + }, + { + "label": "pending_actions", + "content": "pending_actions" + }, + { + "label": "pentagon", + "content": "pentagon" + }, + { + "label": "percent", + "content": "percent" + }, + { + "label": "pergola", + "content": "pergola" + }, + { + "label": "perm_camera_mic", + "content": "perm_camera_mic" + }, + { + "label": "perm_contact_calendar", + "content": "perm_contact_calendar" + }, + { + "label": "perm_data_setting", + "content": "perm_data_setting" + }, + { + "label": "perm_device_information", + "content": "perm_device_information" + }, + { + "label": "perm_media", + "content": "perm_media" + }, + { + "label": "perm_phone_msg", + "content": "perm_phone_msg" + }, + { + "label": "perm_scan_wifi", + "content": "perm_scan_wifi" + }, + { + "label": "person", + "content": "person" + }, + { + "label": "person_2", + "content": "person_2" + }, + { + "label": "person_3", + "content": "person_3" + }, + { + "label": "person_4", + "content": "person_4" + }, + { + "label": "person_add", + "content": "person_add" + }, + { + "label": "person_add_disabled", + "content": "person_add_disabled" + }, + { + "label": "person_alert", + "content": "person_alert" + }, + { + "label": "person_apron", + "content": "person_apron" + }, + { + "label": "person_book", + "content": "person_book" + }, + { + "label": "person_cancel", + "content": "person_cancel" + }, + { + "label": "person_celebrate", + "content": "person_celebrate" + }, + { + "label": "person_check", + "content": "person_check" + }, + { + "label": "person_edit", + "content": "person_edit" + }, + { + "label": "person_off", + "content": "person_off" + }, + { + "label": "person_pin", + "content": "person_pin" + }, + { + "label": "person_pin_circle", + "content": "person_pin_circle" + }, + { + "label": "person_play", + "content": "person_play" + }, + { + "label": "person_raised_hand", + "content": "person_raised_hand" + }, + { + "label": "person_remove", + "content": "person_remove" + }, + { + "label": "person_search", + "content": "person_search" + }, + { + "label": "personal_bag", + "content": "personal_bag" + }, + { + "label": "personal_bag_off", + "content": "personal_bag_off" + }, + { + "label": "personal_bag_question", + "content": "personal_bag_question" + }, + { + "label": "personal_injury", + "content": "personal_injury" + }, + { + "label": "personal_places", + "content": "personal_places" + }, + { + "label": "pest_control", + "content": "pest_control" + }, + { + "label": "pest_control_rodent", + "content": "pest_control_rodent" + }, + { + "label": "pet_supplies", + "content": "pet_supplies" + }, + { + "label": "pets", + "content": "pets" + }, + { + "label": "phishing", + "content": "phishing" + }, + { + "label": "phone_android", + "content": "phone_android" + }, + { + "label": "phone_bluetooth_speaker", + "content": "phone_bluetooth_speaker" + }, + { + "label": "phone_callback", + "content": "phone_callback" + }, + { + "label": "phone_disabled", + "content": "phone_disabled" + }, + { + "label": "phone_enabled", + "content": "phone_enabled" + }, + { + "label": "phone_forwarded", + "content": "phone_forwarded" + }, + { + "label": "phone_in_talk", + "content": "phone_in_talk" + }, + { + "label": "phone_iphone", + "content": "phone_iphone" + }, + { + "label": "phone_locked", + "content": "phone_locked" + }, + { + "label": "phone_missed", + "content": "phone_missed" + }, + { + "label": "phone_paused", + "content": "phone_paused" + }, + { + "label": "phonelink_erase", + "content": "phonelink_erase" + }, + { + "label": "phonelink_lock", + "content": "phonelink_lock" + }, + { + "label": "phonelink_off", + "content": "phonelink_off" + }, + { + "label": "phonelink_ring", + "content": "phonelink_ring" + }, + { + "label": "phonelink_ring_off", + "content": "phonelink_ring_off" + }, + { + "label": "phonelink_setup", + "content": "phonelink_setup" + }, + { + "label": "photo", + "content": "photo" + }, + { + "label": "photo_album", + "content": "photo_album" + }, + { + "label": "photo_auto_merge", + "content": "photo_auto_merge" + }, + { + "label": "photo_camera", + "content": "photo_camera" + }, + { + "label": "photo_camera_back", + "content": "photo_camera_back" + }, + { + "label": "photo_camera_front", + "content": "photo_camera_front" + }, + { + "label": "photo_frame", + "content": "photo_frame" + }, + { + "label": "photo_library", + "content": "photo_library" + }, + { + "label": "photo_prints", + "content": "photo_prints" + }, + { + "label": "photo_size_select_large", + "content": "photo_size_select_large" + }, + { + "label": "photo_size_select_small", + "content": "photo_size_select_small" + }, + { + "label": "php", + "content": "php" + }, + { + "label": "physical_therapy", + "content": "physical_therapy" + }, + { + "label": "piano", + "content": "piano" + }, + { + "label": "piano_off", + "content": "piano_off" + }, + { + "label": "picture_as_pdf", + "content": "picture_as_pdf" + }, + { + "label": "picture_in_picture", + "content": "picture_in_picture" + }, + { + "label": "picture_in_picture_alt", + "content": "picture_in_picture_alt" + }, + { + "label": "picture_in_picture_center", + "content": "picture_in_picture_center" + }, + { + "label": "picture_in_picture_large", + "content": "picture_in_picture_large" + }, + { + "label": "picture_in_picture_medium", + "content": "picture_in_picture_medium" + }, + { + "label": "picture_in_picture_mobile", + "content": "picture_in_picture_mobile" + }, + { + "label": "picture_in_picture_off", + "content": "picture_in_picture_off" + }, + { + "label": "picture_in_picture_small", + "content": "picture_in_picture_small" + }, + { + "label": "pie_chart", + "content": "pie_chart" + }, + { + "label": "pill", + "content": "pill" + }, + { + "label": "pill_off", + "content": "pill_off" + }, + { + "label": "pin", + "content": "pin" + }, + { + "label": "pin_drop", + "content": "pin_drop" + }, + { + "label": "pin_end", + "content": "pin_end" + }, + { + "label": "pin_invoke", + "content": "pin_invoke" + }, + { + "label": "pinch", + "content": "pinch" + }, + { + "label": "pinch_zoom_in", + "content": "pinch_zoom_in" + }, + { + "label": "pinch_zoom_out", + "content": "pinch_zoom_out" + }, + { + "label": "pip", + "content": "pip" + }, + { + "label": "pip_exit", + "content": "pip_exit" + }, + { + "label": "pivot_table_chart", + "content": "pivot_table_chart" + }, + { + "label": "place_item", + "content": "place_item" + }, + { + "label": "plagiarism", + "content": "plagiarism" + }, + { + "label": "planner_banner_ad_pt", + "content": "planner_banner_ad_pt" + }, + { + "label": "planner_review", + "content": "planner_review" + }, + { + "label": "play_arrow", + "content": "play_arrow" + }, + { + "label": "play_circle", + "content": "play_circle" + }, + { + "label": "play_disabled", + "content": "play_disabled" + }, + { + "label": "play_for_work", + "content": "play_for_work" + }, + { + "label": "play_lesson", + "content": "play_lesson" + }, + { + "label": "play_pause", + "content": "play_pause" + }, + { + "label": "playing_cards", + "content": "playing_cards" + }, + { + "label": "playlist_add", + "content": "playlist_add" + }, + { + "label": "playlist_add_check", + "content": "playlist_add_check" + }, + { + "label": "playlist_add_check_circle", + "content": "playlist_add_check_circle" + }, + { + "label": "playlist_add_circle", + "content": "playlist_add_circle" + }, + { + "label": "playlist_play", + "content": "playlist_play" + }, + { + "label": "playlist_remove", + "content": "playlist_remove" + }, + { + "label": "plumbing", + "content": "plumbing" + }, + { + "label": "podcasts", + "content": "podcasts" + }, + { + "label": "podiatry", + "content": "podiatry" + }, + { + "label": "podium", + "content": "podium" + }, + { + "label": "point_of_sale", + "content": "point_of_sale" + }, + { + "label": "point_scan", + "content": "point_scan" + }, + { + "label": "poker_chip", + "content": "poker_chip" + }, + { + "label": "policy", + "content": "policy" + }, + { + "label": "polyline", + "content": "polyline" + }, + { + "label": "polymer", + "content": "polymer" + }, + { + "label": "pool", + "content": "pool" + }, + { + "label": "portable_wifi_off", + "content": "portable_wifi_off" + }, + { + "label": "position_bottom_left", + "content": "position_bottom_left" + }, + { + "label": "position_bottom_right", + "content": "position_bottom_right" + }, + { + "label": "position_top_right", + "content": "position_top_right" + }, + { + "label": "post", + "content": "post" + }, + { + "label": "post_add", + "content": "post_add" + }, + { + "label": "potted_plant", + "content": "potted_plant" + }, + { + "label": "power", + "content": "power" + }, + { + "label": "power_input", + "content": "power_input" + }, + { + "label": "power_off", + "content": "power_off" + }, + { + "label": "power_settings_new", + "content": "power_settings_new" + }, + { + "label": "prayer_times", + "content": "prayer_times" + }, + { + "label": "precision_manufacturing", + "content": "precision_manufacturing" + }, + { + "label": "pregnancy", + "content": "pregnancy" + }, + { + "label": "pregnant_woman", + "content": "pregnant_woman" + }, + { + "label": "preliminary", + "content": "preliminary" + }, + { + "label": "prescriptions", + "content": "prescriptions" + }, + { + "label": "present_to_all", + "content": "present_to_all" + }, + { + "label": "preview", + "content": "preview" + }, + { + "label": "preview_off", + "content": "preview_off" + }, + { + "label": "price_change", + "content": "price_change" + }, + { + "label": "price_check", + "content": "price_check" + }, + { + "label": "print", + "content": "print" + }, + { + "label": "print_add", + "content": "print_add" + }, + { + "label": "print_connect", + "content": "print_connect" + }, + { + "label": "print_disabled", + "content": "print_disabled" + }, + { + "label": "print_error", + "content": "print_error" + }, + { + "label": "print_lock", + "content": "print_lock" + }, + { + "label": "priority", + "content": "priority" + }, + { + "label": "priority_high", + "content": "priority_high" + }, + { + "label": "privacy", + "content": "privacy" + }, + { + "label": "privacy_tip", + "content": "privacy_tip" + }, + { + "label": "private_connectivity", + "content": "private_connectivity" + }, + { + "label": "problem", + "content": "problem" + }, + { + "label": "procedure", + "content": "procedure" + }, + { + "label": "process_chart", + "content": "process_chart" + }, + { + "label": "production_quantity_limits", + "content": "production_quantity_limits" + }, + { + "label": "productivity", + "content": "productivity" + }, + { + "label": "progress_activity", + "content": "progress_activity" + }, + { + "label": "prompt_suggestion", + "content": "prompt_suggestion" + }, + { + "label": "propane", + "content": "propane" + }, + { + "label": "propane_tank", + "content": "propane_tank" + }, + { + "label": "psychiatry", + "content": "psychiatry" + }, + { + "label": "psychology", + "content": "psychology" + }, + { + "label": "psychology_alt", + "content": "psychology_alt" + }, + { + "label": "public", + "content": "public" + }, + { + "label": "public_off", + "content": "public_off" + }, + { + "label": "publish", + "content": "publish" + }, + { + "label": "published_with_changes", + "content": "published_with_changes" + }, + { + "label": "pulmonology", + "content": "pulmonology" + }, + { + "label": "pulse_alert", + "content": "pulse_alert" + }, + { + "label": "punch_clock", + "content": "punch_clock" + }, + { + "label": "qr_code", + "content": "qr_code" + }, + { + "label": "qr_code_2", + "content": "qr_code_2" + }, + { + "label": "qr_code_2_add", + "content": "qr_code_2_add" + }, + { + "label": "qr_code_scanner", + "content": "qr_code_scanner" + }, + { + "label": "query_stats", + "content": "query_stats" + }, + { + "label": "question_exchange", + "content": "question_exchange" + }, + { + "label": "question_mark", + "content": "question_mark" + }, + { + "label": "queue_music", + "content": "queue_music" + }, + { + "label": "queue_play_next", + "content": "queue_play_next" + }, + { + "label": "quick_phrases", + "content": "quick_phrases" + }, + { + "label": "quick_reference", + "content": "quick_reference" + }, + { + "label": "quick_reference_all", + "content": "quick_reference_all" + }, + { + "label": "quick_reorder", + "content": "quick_reorder" + }, + { + "label": "quickreply", + "content": "quickreply" + }, + { + "label": "quiet_time", + "content": "quiet_time" + }, + { + "label": "quiet_time_active", + "content": "quiet_time_active" + }, + { + "label": "quiz", + "content": "quiz" + }, + { + "label": "r_mobiledata", + "content": "r_mobiledata" + }, + { + "label": "radar", + "content": "radar" + }, + { + "label": "radio", + "content": "radio" + }, + { + "label": "radio_button_checked", + "content": "radio_button_checked" + }, + { + "label": "radio_button_partial", + "content": "radio_button_partial" + }, + { + "label": "radio_button_unchecked", + "content": "radio_button_unchecked" + }, + { + "label": "radiology", + "content": "radiology" + }, + { + "label": "railway_alert", + "content": "railway_alert" + }, + { + "label": "railway_alert_2", + "content": "railway_alert_2" + }, + { + "label": "rainy", + "content": "rainy" + }, + { + "label": "rainy_heavy", + "content": "rainy_heavy" + }, + { + "label": "rainy_light", + "content": "rainy_light" + }, + { + "label": "rainy_snow", + "content": "rainy_snow" + }, + { + "label": "ramen_dining", + "content": "ramen_dining" + }, + { + "label": "ramp_left", + "content": "ramp_left" + }, + { + "label": "ramp_right", + "content": "ramp_right" + }, + { + "label": "range_hood", + "content": "range_hood" + }, + { + "label": "rate_review", + "content": "rate_review" + }, + { + "label": "raven", + "content": "raven" + }, + { + "label": "raw_off", + "content": "raw_off" + }, + { + "label": "raw_on", + "content": "raw_on" + }, + { + "label": "read_more", + "content": "read_more" + }, + { + "label": "readiness_score", + "content": "readiness_score" + }, + { + "label": "real_estate_agent", + "content": "real_estate_agent" + }, + { + "label": "rear_camera", + "content": "rear_camera" + }, + { + "label": "rebase", + "content": "rebase" + }, + { + "label": "rebase_edit", + "content": "rebase_edit" + }, + { + "label": "receipt", + "content": "receipt" + }, + { + "label": "receipt_long", + "content": "receipt_long" + }, + { + "label": "recent_actors", + "content": "recent_actors" + }, + { + "label": "recent_patient", + "content": "recent_patient" + }, + { + "label": "recenter", + "content": "recenter" + }, + { + "label": "recommend", + "content": "recommend" + }, + { + "label": "record_voice_over", + "content": "record_voice_over" + }, + { + "label": "rectangle", + "content": "rectangle" + }, + { + "label": "recycling", + "content": "recycling" + }, + { + "label": "redeem", + "content": "redeem" + }, + { + "label": "redo", + "content": "redo" + }, + { + "label": "reduce_capacity", + "content": "reduce_capacity" + }, + { + "label": "refresh", + "content": "refresh" + }, + { + "label": "regular_expression", + "content": "regular_expression" + }, + { + "label": "relax", + "content": "relax" + }, + { + "label": "release_alert", + "content": "release_alert" + }, + { + "label": "remember_me", + "content": "remember_me" + }, + { + "label": "reminder", + "content": "reminder" + }, + { + "label": "remote_gen", + "content": "remote_gen" + }, + { + "label": "remove", + "content": "remove" + }, + { + "label": "remove_done", + "content": "remove_done" + }, + { + "label": "remove_from_queue", + "content": "remove_from_queue" + }, + { + "label": "remove_moderator", + "content": "remove_moderator" + }, + { + "label": "remove_road", + "content": "remove_road" + }, + { + "label": "remove_selection", + "content": "remove_selection" + }, + { + "label": "remove_shopping_cart", + "content": "remove_shopping_cart" + }, + { + "label": "reopen_window", + "content": "reopen_window" + }, + { + "label": "reorder", + "content": "reorder" + }, + { + "label": "repartition", + "content": "repartition" + }, + { + "label": "repeat", + "content": "repeat" + }, + { + "label": "repeat_on", + "content": "repeat_on" + }, + { + "label": "repeat_one", + "content": "repeat_one" + }, + { + "label": "repeat_one_on", + "content": "repeat_one_on" + }, + { + "label": "replay", + "content": "replay" + }, + { + "label": "replay_10", + "content": "replay_10" + }, + { + "label": "replay_30", + "content": "replay_30" + }, + { + "label": "replay_5", + "content": "replay_5" + }, + { + "label": "reply", + "content": "reply" + }, + { + "label": "reply_all", + "content": "reply_all" + }, + { + "label": "report", + "content": "report" + }, + { + "label": "report_off", + "content": "report_off" + }, + { + "label": "request_page", + "content": "request_page" + }, + { + "label": "request_quote", + "content": "request_quote" + }, + { + "label": "reset_brightness", + "content": "reset_brightness" + }, + { + "label": "reset_focus", + "content": "reset_focus" + }, + { + "label": "reset_image", + "content": "reset_image" + }, + { + "label": "reset_iso", + "content": "reset_iso" + }, + { + "label": "reset_settings", + "content": "reset_settings" + }, + { + "label": "reset_shadow", + "content": "reset_shadow" + }, + { + "label": "reset_shutter_speed", + "content": "reset_shutter_speed" + }, + { + "label": "reset_tv", + "content": "reset_tv" + }, + { + "label": "reset_white_balance", + "content": "reset_white_balance" + }, + { + "label": "reset_wrench", + "content": "reset_wrench" + }, + { + "label": "resize", + "content": "resize" + }, + { + "label": "respiratory_rate", + "content": "respiratory_rate" + }, + { + "label": "responsive_layout", + "content": "responsive_layout" + }, + { + "label": "restart_alt", + "content": "restart_alt" + }, + { + "label": "restaurant", + "content": "restaurant" + }, + { + "label": "restaurant_menu", + "content": "restaurant_menu" + }, + { + "label": "restore_from_trash", + "content": "restore_from_trash" + }, + { + "label": "restore_page", + "content": "restore_page" + }, + { + "label": "resume", + "content": "resume" + }, + { + "label": "reviews", + "content": "reviews" + }, + { + "label": "rewarded_ads", + "content": "rewarded_ads" + }, + { + "label": "rheumatology", + "content": "rheumatology" + }, + { + "label": "rib_cage", + "content": "rib_cage" + }, + { + "label": "rice_bowl", + "content": "rice_bowl" + }, + { + "label": "right_click", + "content": "right_click" + }, + { + "label": "right_panel_close", + "content": "right_panel_close" + }, + { + "label": "right_panel_open", + "content": "right_panel_open" + }, + { + "label": "ring_volume", + "content": "ring_volume" + }, + { + "label": "ripples", + "content": "ripples" + }, + { + "label": "road", + "content": "road" + }, + { + "label": "robot", + "content": "robot" + }, + { + "label": "robot_2", + "content": "robot_2" + }, + { + "label": "rocket", + "content": "rocket" + }, + { + "label": "rocket_launch", + "content": "rocket_launch" + }, + { + "label": "roller_shades", + "content": "roller_shades" + }, + { + "label": "roller_shades_closed", + "content": "roller_shades_closed" + }, + { + "label": "roller_skating", + "content": "roller_skating" + }, + { + "label": "roofing", + "content": "roofing" + }, + { + "label": "room_preferences", + "content": "room_preferences" + }, + { + "label": "room_service", + "content": "room_service" + }, + { + "label": "rotate_90_degrees_ccw", + "content": "rotate_90_degrees_ccw" + }, + { + "label": "rotate_90_degrees_cw", + "content": "rotate_90_degrees_cw" + }, + { + "label": "rotate_left", + "content": "rotate_left" + }, + { + "label": "rotate_right", + "content": "rotate_right" + }, + { + "label": "roundabout_left", + "content": "roundabout_left" + }, + { + "label": "roundabout_right", + "content": "roundabout_right" + }, + { + "label": "rounded_corner", + "content": "rounded_corner" + }, + { + "label": "route", + "content": "route" + }, + { + "label": "router", + "content": "router" + }, + { + "label": "routine", + "content": "routine" + }, + { + "label": "rowing", + "content": "rowing" + }, + { + "label": "rss_feed", + "content": "rss_feed" + }, + { + "label": "rsvp", + "content": "rsvp" + }, + { + "label": "rtt", + "content": "rtt" + }, + { + "label": "rubric", + "content": "rubric" + }, + { + "label": "rule", + "content": "rule" + }, + { + "label": "rule_folder", + "content": "rule_folder" + }, + { + "label": "rule_settings", + "content": "rule_settings" + }, + { + "label": "run_circle", + "content": "run_circle" + }, + { + "label": "running_with_errors", + "content": "running_with_errors" + }, + { + "label": "rv_hookup", + "content": "rv_hookup" + }, + { + "label": "safety_check", + "content": "safety_check" + }, + { + "label": "safety_check_off", + "content": "safety_check_off" + }, + { + "label": "safety_divider", + "content": "safety_divider" + }, + { + "label": "sailing", + "content": "sailing" + }, + { + "label": "salinity", + "content": "salinity" + }, + { + "label": "sanitizer", + "content": "sanitizer" + }, + { + "label": "satellite", + "content": "satellite" + }, + { + "label": "satellite_alt", + "content": "satellite_alt" + }, + { + "label": "sauna", + "content": "sauna" + }, + { + "label": "save", + "content": "save" + }, + { + "label": "save_as", + "content": "save_as" + }, + { + "label": "saved_search", + "content": "saved_search" + }, + { + "label": "savings", + "content": "savings" + }, + { + "label": "scale", + "content": "scale" + }, + { + "label": "scan", + "content": "scan" + }, + { + "label": "scan_delete", + "content": "scan_delete" + }, + { + "label": "scanner", + "content": "scanner" + }, + { + "label": "scatter_plot", + "content": "scatter_plot" + }, + { + "label": "scene", + "content": "scene" + }, + { + "label": "schedule", + "content": "schedule" + }, + { + "label": "schedule_send", + "content": "schedule_send" + }, + { + "label": "schema", + "content": "schema" + }, + { + "label": "school", + "content": "school" + }, + { + "label": "science", + "content": "science" + }, + { + "label": "science_off", + "content": "science_off" + }, + { + "label": "scooter", + "content": "scooter" + }, + { + "label": "score", + "content": "score" + }, + { + "label": "scoreboard", + "content": "scoreboard" + }, + { + "label": "screen_lock_landscape", + "content": "screen_lock_landscape" + }, + { + "label": "screen_lock_portrait", + "content": "screen_lock_portrait" + }, + { + "label": "screen_lock_rotation", + "content": "screen_lock_rotation" + }, + { + "label": "screen_record", + "content": "screen_record" + }, + { + "label": "screen_rotation", + "content": "screen_rotation" + }, + { + "label": "screen_rotation_alt", + "content": "screen_rotation_alt" + }, + { + "label": "screen_rotation_up", + "content": "screen_rotation_up" + }, + { + "label": "screen_search_desktop", + "content": "screen_search_desktop" + }, + { + "label": "screen_share", + "content": "screen_share" + }, + { + "label": "screenshot", + "content": "screenshot" + }, + { + "label": "screenshot_frame", + "content": "screenshot_frame" + }, + { + "label": "screenshot_keyboard", + "content": "screenshot_keyboard" + }, + { + "label": "screenshot_monitor", + "content": "screenshot_monitor" + }, + { + "label": "screenshot_region", + "content": "screenshot_region" + }, + { + "label": "screenshot_tablet", + "content": "screenshot_tablet" + }, + { + "label": "script", + "content": "script" + }, + { + "label": "scrollable_header", + "content": "scrollable_header" + }, + { + "label": "scuba_diving", + "content": "scuba_diving" + }, + { + "label": "sd", + "content": "sd" + }, + { + "label": "sd_card", + "content": "sd_card" + }, + { + "label": "sd_card_alert", + "content": "sd_card_alert" + }, + { + "label": "sdk", + "content": "sdk" + }, + { + "label": "search", + "content": "search" + }, + { + "label": "search_check", + "content": "search_check" + }, + { + "label": "search_check_2", + "content": "search_check_2" + }, + { + "label": "search_hands_free", + "content": "search_hands_free" + }, + { + "label": "search_insights", + "content": "search_insights" + }, + { + "label": "search_off", + "content": "search_off" + }, + { + "label": "security", + "content": "security" + }, + { + "label": "security_key", + "content": "security_key" + }, + { + "label": "security_update_good", + "content": "security_update_good" + }, + { + "label": "security_update_warning", + "content": "security_update_warning" + }, + { + "label": "segment", + "content": "segment" + }, + { + "label": "select", + "content": "select" + }, + { + "label": "select_all", + "content": "select_all" + }, + { + "label": "select_check_box", + "content": "select_check_box" + }, + { + "label": "select_to_speak", + "content": "select_to_speak" + }, + { + "label": "select_window", + "content": "select_window" + }, + { + "label": "select_window_2", + "content": "select_window_2" + }, + { + "label": "select_window_off", + "content": "select_window_off" + }, + { + "label": "self_care", + "content": "self_care" + }, + { + "label": "self_improvement", + "content": "self_improvement" + }, + { + "label": "sell", + "content": "sell" + }, + { + "label": "send", + "content": "send" + }, + { + "label": "send_and_archive", + "content": "send_and_archive" + }, + { + "label": "send_money", + "content": "send_money" + }, + { + "label": "send_time_extension", + "content": "send_time_extension" + }, + { + "label": "send_to_mobile", + "content": "send_to_mobile" + }, + { + "label": "sensor_door", + "content": "sensor_door" + }, + { + "label": "sensor_occupied", + "content": "sensor_occupied" + }, + { + "label": "sensor_window", + "content": "sensor_window" + }, + { + "label": "sensors", + "content": "sensors" + }, + { + "label": "sensors_krx", + "content": "sensors_krx" + }, + { + "label": "sensors_krx_off", + "content": "sensors_krx_off" + }, + { + "label": "sensors_off", + "content": "sensors_off" + }, + { + "label": "sentiment_calm", + "content": "sentiment_calm" + }, + { + "label": "sentiment_content", + "content": "sentiment_content" + }, + { + "label": "sentiment_dissatisfied", + "content": "sentiment_dissatisfied" + }, + { + "label": "sentiment_excited", + "content": "sentiment_excited" + }, + { + "label": "sentiment_extremely_dissatisfied", + "content": "sentiment_extremely_dissatisfied" + }, + { + "label": "sentiment_frustrated", + "content": "sentiment_frustrated" + }, + { + "label": "sentiment_neutral", + "content": "sentiment_neutral" + }, + { + "label": "sentiment_sad", + "content": "sentiment_sad" + }, + { + "label": "sentiment_satisfied", + "content": "sentiment_satisfied" + }, + { + "label": "sentiment_stressed", + "content": "sentiment_stressed" + }, + { + "label": "sentiment_very_dissatisfied", + "content": "sentiment_very_dissatisfied" + }, + { + "label": "sentiment_very_satisfied", + "content": "sentiment_very_satisfied" + }, + { + "label": "sentiment_worried", + "content": "sentiment_worried" + }, + { + "label": "serif", + "content": "serif" + }, + { + "label": "service_toolbox", + "content": "service_toolbox" + }, + { + "label": "set_meal", + "content": "set_meal" + }, + { + "label": "settings", + "content": "settings" + }, + { + "label": "settings_accessibility", + "content": "settings_accessibility" + }, + { + "label": "settings_account_box", + "content": "settings_account_box" + }, + { + "label": "settings_alert", + "content": "settings_alert" + }, + { + "label": "settings_applications", + "content": "settings_applications" + }, + { + "label": "settings_b_roll", + "content": "settings_b_roll" + }, + { + "label": "settings_backup_restore", + "content": "settings_backup_restore" + }, + { + "label": "settings_bluetooth", + "content": "settings_bluetooth" + }, + { + "label": "settings_brightness", + "content": "settings_brightness" + }, + { + "label": "settings_cell", + "content": "settings_cell" + }, + { + "label": "settings_cinematic_blur", + "content": "settings_cinematic_blur" + }, + { + "label": "settings_ethernet", + "content": "settings_ethernet" + }, + { + "label": "settings_heart", + "content": "settings_heart" + }, + { + "label": "settings_input_antenna", + "content": "settings_input_antenna" + }, + { + "label": "settings_input_component", + "content": "settings_input_component" + }, + { + "label": "settings_input_hdmi", + "content": "settings_input_hdmi" + }, + { + "label": "settings_input_svideo", + "content": "settings_input_svideo" + }, + { + "label": "settings_motion_mode", + "content": "settings_motion_mode" + }, + { + "label": "settings_night_sight", + "content": "settings_night_sight" + }, + { + "label": "settings_overscan", + "content": "settings_overscan" + }, + { + "label": "settings_panorama", + "content": "settings_panorama" + }, + { + "label": "settings_phone", + "content": "settings_phone" + }, + { + "label": "settings_photo_camera", + "content": "settings_photo_camera" + }, + { + "label": "settings_power", + "content": "settings_power" + }, + { + "label": "settings_remote", + "content": "settings_remote" + }, + { + "label": "settings_slow_motion", + "content": "settings_slow_motion" + }, + { + "label": "settings_system_daydream", + "content": "settings_system_daydream" + }, + { + "label": "settings_timelapse", + "content": "settings_timelapse" + }, + { + "label": "settings_video_camera", + "content": "settings_video_camera" + }, + { + "label": "settings_voice", + "content": "settings_voice" + }, + { + "label": "settop_component", + "content": "settop_component" + }, + { + "label": "severe_cold", + "content": "severe_cold" + }, + { + "label": "shadow", + "content": "shadow" + }, + { + "label": "shadow_add", + "content": "shadow_add" + }, + { + "label": "shadow_minus", + "content": "shadow_minus" + }, + { + "label": "shape_line", + "content": "shape_line" + }, + { + "label": "shapes", + "content": "shapes" + }, + { + "label": "share", + "content": "share" + }, + { + "label": "share_location", + "content": "share_location" + }, + { + "label": "share_off", + "content": "share_off" + }, + { + "label": "share_reviews", + "content": "share_reviews" + }, + { + "label": "share_windows", + "content": "share_windows" + }, + { + "label": "sheets_rtl", + "content": "sheets_rtl" + }, + { + "label": "shelf_auto_hide", + "content": "shelf_auto_hide" + }, + { + "label": "shelf_position", + "content": "shelf_position" + }, + { + "label": "shelves", + "content": "shelves" + }, + { + "label": "shield", + "content": "shield" + }, + { + "label": "shield_lock", + "content": "shield_lock" + }, + { + "label": "shield_locked", + "content": "shield_locked" + }, + { + "label": "shield_moon", + "content": "shield_moon" + }, + { + "label": "shield_person", + "content": "shield_person" + }, + { + "label": "shield_question", + "content": "shield_question" + }, + { + "label": "shield_with_heart", + "content": "shield_with_heart" + }, + { + "label": "shield_with_house", + "content": "shield_with_house" + }, + { + "label": "shift", + "content": "shift" + }, + { + "label": "shift_lock", + "content": "shift_lock" + }, + { + "label": "shift_lock_off", + "content": "shift_lock_off" + }, + { + "label": "shop", + "content": "shop" + }, + { + "label": "shop_two", + "content": "shop_two" + }, + { + "label": "shopping_bag", + "content": "shopping_bag" + }, + { + "label": "shopping_basket", + "content": "shopping_basket" + }, + { + "label": "shopping_cart", + "content": "shopping_cart" + }, + { + "label": "shopping_cart_checkout", + "content": "shopping_cart_checkout" + }, + { + "label": "shopping_cart_off", + "content": "shopping_cart_off" + }, + { + "label": "shoppingmode", + "content": "shoppingmode" + }, + { + "label": "short_stay", + "content": "short_stay" + }, + { + "label": "short_text", + "content": "short_text" + }, + { + "label": "show_chart", + "content": "show_chart" + }, + { + "label": "shower", + "content": "shower" + }, + { + "label": "shuffle", + "content": "shuffle" + }, + { + "label": "shuffle_on", + "content": "shuffle_on" + }, + { + "label": "shutter_speed", + "content": "shutter_speed" + }, + { + "label": "shutter_speed_add", + "content": "shutter_speed_add" + }, + { + "label": "shutter_speed_minus", + "content": "shutter_speed_minus" + }, + { + "label": "sick", + "content": "sick" + }, + { + "label": "side_navigation", + "content": "side_navigation" + }, + { + "label": "sign_language", + "content": "sign_language" + }, + { + "label": "signal_cellular_0_bar", + "content": "signal_cellular_0_bar" + }, + { + "label": "signal_cellular_1_bar", + "content": "signal_cellular_1_bar" + }, + { + "label": "signal_cellular_2_bar", + "content": "signal_cellular_2_bar" + }, + { + "label": "signal_cellular_3_bar", + "content": "signal_cellular_3_bar" + }, + { + "label": "signal_cellular_4_bar", + "content": "signal_cellular_4_bar" + }, + { + "label": "signal_cellular_add", + "content": "signal_cellular_add" + }, + { + "label": "signal_cellular_alt", + "content": "signal_cellular_alt" + }, + { + "label": "signal_cellular_alt_1_bar", + "content": "signal_cellular_alt_1_bar" + }, + { + "label": "signal_cellular_alt_2_bar", + "content": "signal_cellular_alt_2_bar" + }, + { + "label": "signal_cellular_connected_no_internet_0_bar", + "content": "signal_cellular_connected_no_internet_0_bar" + }, + { + "label": "signal_cellular_connected_no_internet_4_bar", + "content": "signal_cellular_connected_no_internet_4_bar" + }, + { + "label": "signal_cellular_nodata", + "content": "signal_cellular_nodata" + }, + { + "label": "signal_cellular_null", + "content": "signal_cellular_null" + }, + { + "label": "signal_cellular_off", + "content": "signal_cellular_off" + }, + { + "label": "signal_cellular_pause", + "content": "signal_cellular_pause" + }, + { + "label": "signal_disconnected", + "content": "signal_disconnected" + }, + { + "label": "signal_wifi_0_bar", + "content": "signal_wifi_0_bar" + }, + { + "label": "signal_wifi_4_bar", + "content": "signal_wifi_4_bar" + }, + { + "label": "signal_wifi_bad", + "content": "signal_wifi_bad" + }, + { + "label": "signal_wifi_off", + "content": "signal_wifi_off" + }, + { + "label": "signal_wifi_statusbar_not_connected", + "content": "signal_wifi_statusbar_not_connected" + }, + { + "label": "signal_wifi_statusbar_null", + "content": "signal_wifi_statusbar_null" + }, + { + "label": "signature", + "content": "signature" + }, + { + "label": "signpost", + "content": "signpost" + }, + { + "label": "sim_card", + "content": "sim_card" + }, + { + "label": "sim_card_download", + "content": "sim_card_download" + }, + { + "label": "single_bed", + "content": "single_bed" + }, + { + "label": "sip", + "content": "sip" + }, + { + "label": "skateboarding", + "content": "skateboarding" + }, + { + "label": "skeleton", + "content": "skeleton" + }, + { + "label": "skillet", + "content": "skillet" + }, + { + "label": "skillet_cooktop", + "content": "skillet_cooktop" + }, + { + "label": "skip_next", + "content": "skip_next" + }, + { + "label": "skip_previous", + "content": "skip_previous" + }, + { + "label": "skull", + "content": "skull" + }, + { + "label": "slab_serif", + "content": "slab_serif" + }, + { + "label": "sledding", + "content": "sledding" + }, + { + "label": "sleep_score", + "content": "sleep_score" + }, + { + "label": "slide_library", + "content": "slide_library" + }, + { + "label": "sliders", + "content": "sliders" + }, + { + "label": "slideshow", + "content": "slideshow" + }, + { + "label": "slow_motion_video", + "content": "slow_motion_video" + }, + { + "label": "smart_card_reader", + "content": "smart_card_reader" + }, + { + "label": "smart_card_reader_off", + "content": "smart_card_reader_off" + }, + { + "label": "smart_display", + "content": "smart_display" + }, + { + "label": "smart_outlet", + "content": "smart_outlet" + }, + { + "label": "smart_screen", + "content": "smart_screen" + }, + { + "label": "smart_toy", + "content": "smart_toy" + }, + { + "label": "smartphone", + "content": "smartphone" + }, + { + "label": "smb_share", + "content": "smb_share" + }, + { + "label": "smoke_free", + "content": "smoke_free" + }, + { + "label": "smoking_rooms", + "content": "smoking_rooms" + }, + { + "label": "sms", + "content": "sms" + }, + { + "label": "snippet_folder", + "content": "snippet_folder" + }, + { + "label": "snooze", + "content": "snooze" + }, + { + "label": "snowboarding", + "content": "snowboarding" + }, + { + "label": "snowing", + "content": "snowing" + }, + { + "label": "snowing_heavy", + "content": "snowing_heavy" + }, + { + "label": "snowmobile", + "content": "snowmobile" + }, + { + "label": "snowshoeing", + "content": "snowshoeing" + }, + { + "label": "soap", + "content": "soap" + }, + { + "label": "social_distance", + "content": "social_distance" + }, + { + "label": "social_leaderboard", + "content": "social_leaderboard" + }, + { + "label": "solar_power", + "content": "solar_power" + }, + { + "label": "sort", + "content": "sort" + }, + { + "label": "sort_by_alpha", + "content": "sort_by_alpha" + }, + { + "label": "sos", + "content": "sos" + }, + { + "label": "sound_detection_dog_barking", + "content": "sound_detection_dog_barking" + }, + { + "label": "sound_detection_glass_break", + "content": "sound_detection_glass_break" + }, + { + "label": "sound_detection_loud_sound", + "content": "sound_detection_loud_sound" + }, + { + "label": "sound_sampler", + "content": "sound_sampler" + }, + { + "label": "soup_kitchen", + "content": "soup_kitchen" + }, + { + "label": "source_environment", + "content": "source_environment" + }, + { + "label": "source_notes", + "content": "source_notes" + }, + { + "label": "south", + "content": "south" + }, + { + "label": "south_america", + "content": "south_america" + }, + { + "label": "south_east", + "content": "south_east" + }, + { + "label": "south_west", + "content": "south_west" + }, + { + "label": "spa", + "content": "spa" + }, + { + "label": "space_bar", + "content": "space_bar" + }, + { + "label": "space_dashboard", + "content": "space_dashboard" + }, + { + "label": "spatial_audio", + "content": "spatial_audio" + }, + { + "label": "spatial_audio_off", + "content": "spatial_audio_off" + }, + { + "label": "spatial_speaker", + "content": "spatial_speaker" + }, + { + "label": "spatial_tracking", + "content": "spatial_tracking" + }, + { + "label": "speaker", + "content": "speaker" + }, + { + "label": "speaker_group", + "content": "speaker_group" + }, + { + "label": "speaker_notes", + "content": "speaker_notes" + }, + { + "label": "speaker_notes_off", + "content": "speaker_notes_off" + }, + { + "label": "speaker_phone", + "content": "speaker_phone" + }, + { + "label": "special_character", + "content": "special_character" + }, + { + "label": "specific_gravity", + "content": "specific_gravity" + }, + { + "label": "speech_to_text", + "content": "speech_to_text" + }, + { + "label": "speed", + "content": "speed" + }, + { + "label": "speed_0_25", + "content": "speed_0_25" + }, + { + "label": "speed_0_2x", + "content": "speed_0_2x" + }, + { + "label": "speed_0_5", + "content": "speed_0_5" + }, + { + "label": "speed_0_5x", + "content": "speed_0_5x" + }, + { + "label": "speed_0_75", + "content": "speed_0_75" + }, + { + "label": "speed_0_7x", + "content": "speed_0_7x" + }, + { + "label": "speed_1_2", + "content": "speed_1_2" + }, + { + "label": "speed_1_25", + "content": "speed_1_25" + }, + { + "label": "speed_1_2x", + "content": "speed_1_2x" + }, + { + "label": "speed_1_5", + "content": "speed_1_5" + }, + { + "label": "speed_1_5x", + "content": "speed_1_5x" + }, + { + "label": "speed_1_75", + "content": "speed_1_75" + }, + { + "label": "speed_1_7x", + "content": "speed_1_7x" + }, + { + "label": "speed_2x", + "content": "speed_2x" + }, + { + "label": "speed_camera", + "content": "speed_camera" + }, + { + "label": "spellcheck", + "content": "spellcheck" + }, + { + "label": "splitscreen", + "content": "splitscreen" + }, + { + "label": "splitscreen_add", + "content": "splitscreen_add" + }, + { + "label": "splitscreen_bottom", + "content": "splitscreen_bottom" + }, + { + "label": "splitscreen_landscape", + "content": "splitscreen_landscape" + }, + { + "label": "splitscreen_left", + "content": "splitscreen_left" + }, + { + "label": "splitscreen_portrait", + "content": "splitscreen_portrait" + }, + { + "label": "splitscreen_right", + "content": "splitscreen_right" + }, + { + "label": "splitscreen_top", + "content": "splitscreen_top" + }, + { + "label": "splitscreen_vertical_add", + "content": "splitscreen_vertical_add" + }, + { + "label": "spo2", + "content": "spo2" + }, + { + "label": "spoke", + "content": "spoke" + }, + { + "label": "sports", + "content": "sports" + }, + { + "label": "sports_and_outdoors", + "content": "sports_and_outdoors" + }, + { + "label": "sports_bar", + "content": "sports_bar" + }, + { + "label": "sports_baseball", + "content": "sports_baseball" + }, + { + "label": "sports_basketball", + "content": "sports_basketball" + }, + { + "label": "sports_cricket", + "content": "sports_cricket" + }, + { + "label": "sports_esports", + "content": "sports_esports" + }, + { + "label": "sports_football", + "content": "sports_football" + }, + { + "label": "sports_golf", + "content": "sports_golf" + }, + { + "label": "sports_gymnastics", + "content": "sports_gymnastics" + }, + { + "label": "sports_handball", + "content": "sports_handball" + }, + { + "label": "sports_hockey", + "content": "sports_hockey" + }, + { + "label": "sports_kabaddi", + "content": "sports_kabaddi" + }, + { + "label": "sports_martial_arts", + "content": "sports_martial_arts" + }, + { + "label": "sports_mma", + "content": "sports_mma" + }, + { + "label": "sports_motorsports", + "content": "sports_motorsports" + }, + { + "label": "sports_rugby", + "content": "sports_rugby" + }, + { + "label": "sports_score", + "content": "sports_score" + }, + { + "label": "sports_soccer", + "content": "sports_soccer" + }, + { + "label": "sports_tennis", + "content": "sports_tennis" + }, + { + "label": "sports_volleyball", + "content": "sports_volleyball" + }, + { + "label": "sprinkler", + "content": "sprinkler" + }, + { + "label": "sprint", + "content": "sprint" + }, + { + "label": "square", + "content": "square" + }, + { + "label": "square_foot", + "content": "square_foot" + }, + { + "label": "ssid_chart", + "content": "ssid_chart" + }, + { + "label": "stack", + "content": "stack" + }, + { + "label": "stack_off", + "content": "stack_off" + }, + { + "label": "stack_star", + "content": "stack_star" + }, + { + "label": "stacked_bar_chart", + "content": "stacked_bar_chart" + }, + { + "label": "stacked_email", + "content": "stacked_email" + }, + { + "label": "stacked_inbox", + "content": "stacked_inbox" + }, + { + "label": "stacked_line_chart", + "content": "stacked_line_chart" + }, + { + "label": "stacks", + "content": "stacks" + }, + { + "label": "stadia_controller", + "content": "stadia_controller" + }, + { + "label": "stadium", + "content": "stadium" + }, + { + "label": "stairs", + "content": "stairs" + }, + { + "label": "stairs_2", + "content": "stairs_2" + }, + { + "label": "star", + "content": "star" + }, + { + "label": "star_half", + "content": "star_half" + }, + { + "label": "star_rate", + "content": "star_rate" + }, + { + "label": "star_rate_half", + "content": "star_rate_half" + }, + { + "label": "stars", + "content": "stars" + }, + { + "label": "start", + "content": "start" + }, + { + "label": "stat_0", + "content": "stat_0" + }, + { + "label": "stat_1", + "content": "stat_1" + }, + { + "label": "stat_2", + "content": "stat_2" + }, + { + "label": "stat_3", + "content": "stat_3" + }, + { + "label": "stat_minus_1", + "content": "stat_minus_1" + }, + { + "label": "stat_minus_2", + "content": "stat_minus_2" + }, + { + "label": "stat_minus_3", + "content": "stat_minus_3" + }, + { + "label": "stay_current_landscape", + "content": "stay_current_landscape" + }, + { + "label": "stay_current_portrait", + "content": "stay_current_portrait" + }, + { + "label": "stay_primary_landscape", + "content": "stay_primary_landscape" + }, + { + "label": "stay_primary_portrait", + "content": "stay_primary_portrait" + }, + { + "label": "step", + "content": "step" + }, + { + "label": "step_into", + "content": "step_into" + }, + { + "label": "step_out", + "content": "step_out" + }, + { + "label": "step_over", + "content": "step_over" + }, + { + "label": "steppers", + "content": "steppers" + }, + { + "label": "steps", + "content": "steps" + }, + { + "label": "stethoscope", + "content": "stethoscope" + }, + { + "label": "stethoscope_arrow", + "content": "stethoscope_arrow" + }, + { + "label": "stethoscope_check", + "content": "stethoscope_check" + }, + { + "label": "sticky_note", + "content": "sticky_note" + }, + { + "label": "sticky_note_2", + "content": "sticky_note_2" + }, + { + "label": "stock_media", + "content": "stock_media" + }, + { + "label": "stockpot", + "content": "stockpot" + }, + { + "label": "stop", + "content": "stop" + }, + { + "label": "stop_circle", + "content": "stop_circle" + }, + { + "label": "stop_screen_share", + "content": "stop_screen_share" + }, + { + "label": "storage", + "content": "storage" + }, + { + "label": "store", + "content": "store" + }, + { + "label": "storefront", + "content": "storefront" + }, + { + "label": "storm", + "content": "storm" + }, + { + "label": "straight", + "content": "straight" + }, + { + "label": "straighten", + "content": "straighten" + }, + { + "label": "strategy", + "content": "strategy" + }, + { + "label": "stream", + "content": "stream" + }, + { + "label": "stream_apps", + "content": "stream_apps" + }, + { + "label": "streetview", + "content": "streetview" + }, + { + "label": "stress_management", + "content": "stress_management" + }, + { + "label": "strikethrough_s", + "content": "strikethrough_s" + }, + { + "label": "stroke_full", + "content": "stroke_full" + }, + { + "label": "stroke_partial", + "content": "stroke_partial" + }, + { + "label": "stroller", + "content": "stroller" + }, + { + "label": "style", + "content": "style" + }, + { + "label": "styler", + "content": "styler" + }, + { + "label": "stylus", + "content": "stylus" + }, + { + "label": "stylus_laser_pointer", + "content": "stylus_laser_pointer" + }, + { + "label": "stylus_note", + "content": "stylus_note" + }, + { + "label": "subdirectory_arrow_left", + "content": "subdirectory_arrow_left" + }, + { + "label": "subdirectory_arrow_right", + "content": "subdirectory_arrow_right" + }, + { + "label": "subheader", + "content": "subheader" + }, + { + "label": "subject", + "content": "subject" + }, + { + "label": "subscript", + "content": "subscript" + }, + { + "label": "subscriptions", + "content": "subscriptions" + }, + { + "label": "subtitles", + "content": "subtitles" + }, + { + "label": "subtitles_off", + "content": "subtitles_off" + }, + { + "label": "subway", + "content": "subway" + }, + { + "label": "summarize", + "content": "summarize" + }, + { + "label": "sunny", + "content": "sunny" + }, + { + "label": "sunny_snowing", + "content": "sunny_snowing" + }, + { + "label": "superscript", + "content": "superscript" + }, + { + "label": "supervised_user_circle", + "content": "supervised_user_circle" + }, + { + "label": "supervised_user_circle_off", + "content": "supervised_user_circle_off" + }, + { + "label": "supervisor_account", + "content": "supervisor_account" + }, + { + "label": "support", + "content": "support" + }, + { + "label": "support_agent", + "content": "support_agent" + }, + { + "label": "surfing", + "content": "surfing" + }, + { + "label": "surgical", + "content": "surgical" + }, + { + "label": "surround_sound", + "content": "surround_sound" + }, + { + "label": "swap_calls", + "content": "swap_calls" + }, + { + "label": "swap_driving_apps", + "content": "swap_driving_apps" + }, + { + "label": "swap_driving_apps_wheel", + "content": "swap_driving_apps_wheel" + }, + { + "label": "swap_horiz", + "content": "swap_horiz" + }, + { + "label": "swap_horizontal_circle", + "content": "swap_horizontal_circle" + }, + { + "label": "swap_vert", + "content": "swap_vert" + }, + { + "label": "swap_vertical_circle", + "content": "swap_vertical_circle" + }, + { + "label": "sweep", + "content": "sweep" + }, + { + "label": "swipe", + "content": "swipe" + }, + { + "label": "swipe_down", + "content": "swipe_down" + }, + { + "label": "swipe_down_alt", + "content": "swipe_down_alt" + }, + { + "label": "swipe_left", + "content": "swipe_left" + }, + { + "label": "swipe_left_alt", + "content": "swipe_left_alt" + }, + { + "label": "swipe_right", + "content": "swipe_right" + }, + { + "label": "swipe_right_alt", + "content": "swipe_right_alt" + }, + { + "label": "swipe_up", + "content": "swipe_up" + }, + { + "label": "swipe_up_alt", + "content": "swipe_up_alt" + }, + { + "label": "swipe_vertical", + "content": "swipe_vertical" + }, + { + "label": "switch", + "content": "switch" + }, + { + "label": "switch_access", + "content": "switch_access" + }, + { + "label": "switch_access_2", + "content": "switch_access_2" + }, + { + "label": "switch_access_shortcut", + "content": "switch_access_shortcut" + }, + { + "label": "switch_access_shortcut_add", + "content": "switch_access_shortcut_add" + }, + { + "label": "switch_account", + "content": "switch_account" + }, + { + "label": "switch_camera", + "content": "switch_camera" + }, + { + "label": "switch_left", + "content": "switch_left" + }, + { + "label": "switch_right", + "content": "switch_right" + }, + { + "label": "switch_video", + "content": "switch_video" + }, + { + "label": "switches", + "content": "switches" + }, + { + "label": "sword_rose", + "content": "sword_rose" + }, + { + "label": "swords", + "content": "swords" + }, + { + "label": "symptoms", + "content": "symptoms" + }, + { + "label": "synagogue", + "content": "synagogue" + }, + { + "label": "sync", + "content": "sync" + }, + { + "label": "sync_alt", + "content": "sync_alt" + }, + { + "label": "sync_disabled", + "content": "sync_disabled" + }, + { + "label": "sync_lock", + "content": "sync_lock" + }, + { + "label": "sync_problem", + "content": "sync_problem" + }, + { + "label": "sync_saved_locally", + "content": "sync_saved_locally" + }, + { + "label": "syringe", + "content": "syringe" + }, + { + "label": "system_update", + "content": "system_update" + }, + { + "label": "system_update_alt", + "content": "system_update_alt" + }, + { + "label": "tab", + "content": "tab" + }, + { + "label": "tab_close", + "content": "tab_close" + }, + { + "label": "tab_close_right", + "content": "tab_close_right" + }, + { + "label": "tab_duplicate", + "content": "tab_duplicate" + }, + { + "label": "tab_group", + "content": "tab_group" + }, + { + "label": "tab_move", + "content": "tab_move" + }, + { + "label": "tab_new_right", + "content": "tab_new_right" + }, + { + "label": "tab_recent", + "content": "tab_recent" + }, + { + "label": "tab_unselected", + "content": "tab_unselected" + }, + { + "label": "table", + "content": "table" + }, + { + "label": "table_bar", + "content": "table_bar" + }, + { + "label": "table_chart", + "content": "table_chart" + }, + { + "label": "table_chart_view", + "content": "table_chart_view" + }, + { + "label": "table_eye", + "content": "table_eye" + }, + { + "label": "table_lamp", + "content": "table_lamp" + }, + { + "label": "table_restaurant", + "content": "table_restaurant" + }, + { + "label": "table_rows", + "content": "table_rows" + }, + { + "label": "table_rows_narrow", + "content": "table_rows_narrow" + }, + { + "label": "table_view", + "content": "table_view" + }, + { + "label": "tablet", + "content": "tablet" + }, + { + "label": "tablet_android", + "content": "tablet_android" + }, + { + "label": "tablet_mac", + "content": "tablet_mac" + }, + { + "label": "tabs", + "content": "tabs" + }, + { + "label": "tactic", + "content": "tactic" + }, + { + "label": "tag", + "content": "tag" + }, + { + "label": "takeout_dining", + "content": "takeout_dining" + }, + { + "label": "tamper_detection_off", + "content": "tamper_detection_off" + }, + { + "label": "tamper_detection_on", + "content": "tamper_detection_on" + }, + { + "label": "tap_and_play", + "content": "tap_and_play" + }, + { + "label": "tapas", + "content": "tapas" + }, + { + "label": "target", + "content": "target" + }, + { + "label": "task", + "content": "task" + }, + { + "label": "task_alt", + "content": "task_alt" + }, + { + "label": "taunt", + "content": "taunt" + }, + { + "label": "taxi_alert", + "content": "taxi_alert" + }, + { + "label": "team_dashboard", + "content": "team_dashboard" + }, + { + "label": "temp_preferences_eco", + "content": "temp_preferences_eco" + }, + { + "label": "temple_buddhist", + "content": "temple_buddhist" + }, + { + "label": "temple_hindu", + "content": "temple_hindu" + }, + { + "label": "tenancy", + "content": "tenancy" + }, + { + "label": "terminal", + "content": "terminal" + }, + { + "label": "text_ad", + "content": "text_ad" + }, + { + "label": "text_decrease", + "content": "text_decrease" + }, + { + "label": "text_fields", + "content": "text_fields" + }, + { + "label": "text_fields_alt", + "content": "text_fields_alt" + }, + { + "label": "text_format", + "content": "text_format" + }, + { + "label": "text_increase", + "content": "text_increase" + }, + { + "label": "text_rotate_up", + "content": "text_rotate_up" + }, + { + "label": "text_rotate_vertical", + "content": "text_rotate_vertical" + }, + { + "label": "text_rotation_angledown", + "content": "text_rotation_angledown" + }, + { + "label": "text_rotation_angleup", + "content": "text_rotation_angleup" + }, + { + "label": "text_rotation_down", + "content": "text_rotation_down" + }, + { + "label": "text_rotation_none", + "content": "text_rotation_none" + }, + { + "label": "text_select_end", + "content": "text_select_end" + }, + { + "label": "text_select_jump_to_beginning", + "content": "text_select_jump_to_beginning" + }, + { + "label": "text_select_jump_to_end", + "content": "text_select_jump_to_end" + }, + { + "label": "text_select_move_back_character", + "content": "text_select_move_back_character" + }, + { + "label": "text_select_move_back_word", + "content": "text_select_move_back_word" + }, + { + "label": "text_select_move_down", + "content": "text_select_move_down" + }, + { + "label": "text_select_move_forward_character", + "content": "text_select_move_forward_character" + }, + { + "label": "text_select_move_forward_word", + "content": "text_select_move_forward_word" + }, + { + "label": "text_select_move_up", + "content": "text_select_move_up" + }, + { + "label": "text_select_start", + "content": "text_select_start" + }, + { + "label": "text_snippet", + "content": "text_snippet" + }, + { + "label": "text_to_speech", + "content": "text_to_speech" + }, + { + "label": "text_up", + "content": "text_up" + }, + { + "label": "texture", + "content": "texture" + }, + { + "label": "texture_add", + "content": "texture_add" + }, + { + "label": "texture_minus", + "content": "texture_minus" + }, + { + "label": "theater_comedy", + "content": "theater_comedy" + }, + { + "label": "theaters", + "content": "theaters" + }, + { + "label": "thermometer", + "content": "thermometer" + }, + { + "label": "thermometer_add", + "content": "thermometer_add" + }, + { + "label": "thermometer_gain", + "content": "thermometer_gain" + }, + { + "label": "thermometer_loss", + "content": "thermometer_loss" + }, + { + "label": "thermometer_minus", + "content": "thermometer_minus" + }, + { + "label": "thermostat", + "content": "thermostat" + }, + { + "label": "thermostat_auto", + "content": "thermostat_auto" + }, + { + "label": "thermostat_carbon", + "content": "thermostat_carbon" + }, + { + "label": "things_to_do", + "content": "things_to_do" + }, + { + "label": "thread_unread", + "content": "thread_unread" + }, + { + "label": "thumb_down", + "content": "thumb_down" + }, + { + "label": "thumb_up", + "content": "thumb_up" + }, + { + "label": "thumbnail_bar", + "content": "thumbnail_bar" + }, + { + "label": "thumbs_up_down", + "content": "thumbs_up_down" + }, + { + "label": "thunderstorm", + "content": "thunderstorm" + }, + { + "label": "tibia", + "content": "tibia" + }, + { + "label": "tibia_alt", + "content": "tibia_alt" + }, + { + "label": "time_auto", + "content": "time_auto" + }, + { + "label": "timelapse", + "content": "timelapse" + }, + { + "label": "timeline", + "content": "timeline" + }, + { + "label": "timer", + "content": "timer" + }, + { + "label": "timer_10", + "content": "timer_10" + }, + { + "label": "timer_10_alt_1", + "content": "timer_10_alt_1" + }, + { + "label": "timer_10_select", + "content": "timer_10_select" + }, + { + "label": "timer_3", + "content": "timer_3" + }, + { + "label": "timer_3_alt_1", + "content": "timer_3_alt_1" + }, + { + "label": "timer_3_select", + "content": "timer_3_select" + }, + { + "label": "timer_5", + "content": "timer_5" + }, + { + "label": "timer_5_shutter", + "content": "timer_5_shutter" + }, + { + "label": "timer_off", + "content": "timer_off" + }, + { + "label": "timer_pause", + "content": "timer_pause" + }, + { + "label": "timer_play", + "content": "timer_play" + }, + { + "label": "tire_repair", + "content": "tire_repair" + }, + { + "label": "title", + "content": "title" + }, + { + "label": "titlecase", + "content": "titlecase" + }, + { + "label": "toast", + "content": "toast" + }, + { + "label": "toc", + "content": "toc" + }, + { + "label": "today", + "content": "today" + }, + { + "label": "toggle_off", + "content": "toggle_off" + }, + { + "label": "toggle_on", + "content": "toggle_on" + }, + { + "label": "token", + "content": "token" + }, + { + "label": "toll", + "content": "toll" + }, + { + "label": "tonality", + "content": "tonality" + }, + { + "label": "toolbar", + "content": "toolbar" + }, + { + "label": "tools_flat_head", + "content": "tools_flat_head" + }, + { + "label": "tools_installation_kit", + "content": "tools_installation_kit" + }, + { + "label": "tools_ladder", + "content": "tools_ladder" + }, + { + "label": "tools_level", + "content": "tools_level" + }, + { + "label": "tools_phillips", + "content": "tools_phillips" + }, + { + "label": "tools_pliers_wire_stripper", + "content": "tools_pliers_wire_stripper" + }, + { + "label": "tools_power_drill", + "content": "tools_power_drill" + }, + { + "label": "tooltip", + "content": "tooltip" + }, + { + "label": "top_panel_close", + "content": "top_panel_close" + }, + { + "label": "top_panel_open", + "content": "top_panel_open" + }, + { + "label": "topic", + "content": "topic" + }, + { + "label": "tornado", + "content": "tornado" + }, + { + "label": "total_dissolved_solids", + "content": "total_dissolved_solids" + }, + { + "label": "touch_app", + "content": "touch_app" + }, + { + "label": "touchpad_mouse", + "content": "touchpad_mouse" + }, + { + "label": "touchpad_mouse_off", + "content": "touchpad_mouse_off" + }, + { + "label": "tour", + "content": "tour" + }, + { + "label": "toys", + "content": "toys" + }, + { + "label": "toys_and_games", + "content": "toys_and_games" + }, + { + "label": "toys_fan", + "content": "toys_fan" + }, + { + "label": "track_changes", + "content": "track_changes" + }, + { + "label": "trackpad_input", + "content": "trackpad_input" + }, + { + "label": "traffic", + "content": "traffic" + }, + { + "label": "traffic_jam", + "content": "traffic_jam" + }, + { + "label": "trail_length", + "content": "trail_length" + }, + { + "label": "trail_length_medium", + "content": "trail_length_medium" + }, + { + "label": "trail_length_short", + "content": "trail_length_short" + }, + { + "label": "train", + "content": "train" + }, + { + "label": "tram", + "content": "tram" + }, + { + "label": "transcribe", + "content": "transcribe" + }, + { + "label": "transfer_within_a_station", + "content": "transfer_within_a_station" + }, + { + "label": "transform", + "content": "transform" + }, + { + "label": "transgender", + "content": "transgender" + }, + { + "label": "transit_enterexit", + "content": "transit_enterexit" + }, + { + "label": "transition_chop", + "content": "transition_chop" + }, + { + "label": "transition_dissolve", + "content": "transition_dissolve" + }, + { + "label": "transition_fade", + "content": "transition_fade" + }, + { + "label": "transition_push", + "content": "transition_push" + }, + { + "label": "transition_slide", + "content": "transition_slide" + }, + { + "label": "translate", + "content": "translate" + }, + { + "label": "transportation", + "content": "transportation" + }, + { + "label": "travel", + "content": "travel" + }, + { + "label": "travel_explore", + "content": "travel_explore" + }, + { + "label": "travel_luggage_and_bags", + "content": "travel_luggage_and_bags" + }, + { + "label": "trending_down", + "content": "trending_down" + }, + { + "label": "trending_flat", + "content": "trending_flat" + }, + { + "label": "trending_up", + "content": "trending_up" + }, + { + "label": "trip", + "content": "trip" + }, + { + "label": "trip_origin", + "content": "trip_origin" + }, + { + "label": "trolley", + "content": "trolley" + }, + { + "label": "trolley_cable_car", + "content": "trolley_cable_car" + }, + { + "label": "trophy", + "content": "trophy" + }, + { + "label": "troubleshoot", + "content": "troubleshoot" + }, + { + "label": "tsunami", + "content": "tsunami" + }, + { + "label": "tsv", + "content": "tsv" + }, + { + "label": "tty", + "content": "tty" + }, + { + "label": "tune", + "content": "tune" + }, + { + "label": "turn_left", + "content": "turn_left" + }, + { + "label": "turn_right", + "content": "turn_right" + }, + { + "label": "turn_sharp_left", + "content": "turn_sharp_left" + }, + { + "label": "turn_sharp_right", + "content": "turn_sharp_right" + }, + { + "label": "turn_slight_left", + "content": "turn_slight_left" + }, + { + "label": "turn_slight_right", + "content": "turn_slight_right" + }, + { + "label": "tv", + "content": "tv" + }, + { + "label": "tv_gen", + "content": "tv_gen" + }, + { + "label": "tv_guide", + "content": "tv_guide" + }, + { + "label": "tv_off", + "content": "tv_off" + }, + { + "label": "tv_options_edit_channels", + "content": "tv_options_edit_channels" + }, + { + "label": "tv_options_input_settings", + "content": "tv_options_input_settings" + }, + { + "label": "tv_remote", + "content": "tv_remote" + }, + { + "label": "tv_signin", + "content": "tv_signin" + }, + { + "label": "tv_with_assistant", + "content": "tv_with_assistant" + }, + { + "label": "two_pager", + "content": "two_pager" + }, + { + "label": "two_wheeler", + "content": "two_wheeler" + }, + { + "label": "type_specimen", + "content": "type_specimen" + }, + { + "label": "u_turn_left", + "content": "u_turn_left" + }, + { + "label": "u_turn_right", + "content": "u_turn_right" + }, + { + "label": "ulna_radius", + "content": "ulna_radius" + }, + { + "label": "ulna_radius_alt", + "content": "ulna_radius_alt" + }, + { + "label": "umbrella", + "content": "umbrella" + }, + { + "label": "unarchive", + "content": "unarchive" + }, + { + "label": "undo", + "content": "undo" + }, + { + "label": "unfold_less", + "content": "unfold_less" + }, + { + "label": "unfold_less_double", + "content": "unfold_less_double" + }, + { + "label": "unfold_more", + "content": "unfold_more" + }, + { + "label": "unfold_more_double", + "content": "unfold_more_double" + }, + { + "label": "ungroup", + "content": "ungroup" + }, + { + "label": "universal_currency", + "content": "universal_currency" + }, + { + "label": "universal_currency_alt", + "content": "universal_currency_alt" + }, + { + "label": "universal_local", + "content": "universal_local" + }, + { + "label": "unknown_2", + "content": "unknown_2" + }, + { + "label": "unknown_5", + "content": "unknown_5" + }, + { + "label": "unknown_7", + "content": "unknown_7" + }, + { + "label": "unknown_document", + "content": "unknown_document" + }, + { + "label": "unknown_med", + "content": "unknown_med" + }, + { + "label": "unlicense", + "content": "unlicense" + }, + { + "label": "unpaved_road", + "content": "unpaved_road" + }, + { + "label": "unpublished", + "content": "unpublished" + }, + { + "label": "unsubscribe", + "content": "unsubscribe" + }, + { + "label": "upcoming", + "content": "upcoming" + }, + { + "label": "update", + "content": "update" + }, + { + "label": "update_disabled", + "content": "update_disabled" + }, + { + "label": "upgrade", + "content": "upgrade" + }, + { + "label": "upload", + "content": "upload" + }, + { + "label": "upload_2", + "content": "upload_2" + }, + { + "label": "upload_file", + "content": "upload_file" + }, + { + "label": "uppercase", + "content": "uppercase" + }, + { + "label": "urology", + "content": "urology" + }, + { + "label": "usb", + "content": "usb" + }, + { + "label": "usb_off", + "content": "usb_off" + }, + { + "label": "user_attributes", + "content": "user_attributes" + }, + { + "label": "vaccines", + "content": "vaccines" + }, + { + "label": "vacuum", + "content": "vacuum" + }, + { + "label": "valve", + "content": "valve" + }, + { + "label": "vape_free", + "content": "vape_free" + }, + { + "label": "vaping_rooms", + "content": "vaping_rooms" + }, + { + "label": "variable_add", + "content": "variable_add" + }, + { + "label": "variable_insert", + "content": "variable_insert" + }, + { + "label": "variable_remove", + "content": "variable_remove" + }, + { + "label": "variables", + "content": "variables" + }, + { + "label": "ventilator", + "content": "ventilator" + }, + { + "label": "verified", + "content": "verified" + }, + { + "label": "verified_user", + "content": "verified_user" + }, + { + "label": "vertical_align_bottom", + "content": "vertical_align_bottom" + }, + { + "label": "vertical_align_center", + "content": "vertical_align_center" + }, + { + "label": "vertical_align_top", + "content": "vertical_align_top" + }, + { + "label": "vertical_distribute", + "content": "vertical_distribute" + }, + { + "label": "vertical_shades", + "content": "vertical_shades" + }, + { + "label": "vertical_shades_closed", + "content": "vertical_shades_closed" + }, + { + "label": "vertical_split", + "content": "vertical_split" + }, + { + "label": "vibration", + "content": "vibration" + }, + { + "label": "video_call", + "content": "video_call" + }, + { + "label": "video_camera_back", + "content": "video_camera_back" + }, + { + "label": "video_camera_front", + "content": "video_camera_front" + }, + { + "label": "video_camera_front_off", + "content": "video_camera_front_off" + }, + { + "label": "video_chat", + "content": "video_chat" + }, + { + "label": "video_file", + "content": "video_file" + }, + { + "label": "video_label", + "content": "video_label" + }, + { + "label": "video_library", + "content": "video_library" + }, + { + "label": "video_search", + "content": "video_search" + }, + { + "label": "video_settings", + "content": "video_settings" + }, + { + "label": "video_stable", + "content": "video_stable" + }, + { + "label": "videocam", + "content": "videocam" + }, + { + "label": "videocam_off", + "content": "videocam_off" + }, + { + "label": "videogame_asset", + "content": "videogame_asset" + }, + { + "label": "videogame_asset_off", + "content": "videogame_asset_off" + }, + { + "label": "view_agenda", + "content": "view_agenda" + }, + { + "label": "view_array", + "content": "view_array" + }, + { + "label": "view_carousel", + "content": "view_carousel" + }, + { + "label": "view_column", + "content": "view_column" + }, + { + "label": "view_column_2", + "content": "view_column_2" + }, + { + "label": "view_comfy", + "content": "view_comfy" + }, + { + "label": "view_comfy_alt", + "content": "view_comfy_alt" + }, + { + "label": "view_compact", + "content": "view_compact" + }, + { + "label": "view_compact_alt", + "content": "view_compact_alt" + }, + { + "label": "view_cozy", + "content": "view_cozy" + }, + { + "label": "view_day", + "content": "view_day" + }, + { + "label": "view_headline", + "content": "view_headline" + }, + { + "label": "view_in_ar", + "content": "view_in_ar" + }, + { + "label": "view_in_ar_off", + "content": "view_in_ar_off" + }, + { + "label": "view_kanban", + "content": "view_kanban" + }, + { + "label": "view_list", + "content": "view_list" + }, + { + "label": "view_module", + "content": "view_module" + }, + { + "label": "view_quilt", + "content": "view_quilt" + }, + { + "label": "view_real_size", + "content": "view_real_size" + }, + { + "label": "view_sidebar", + "content": "view_sidebar" + }, + { + "label": "view_stream", + "content": "view_stream" + }, + { + "label": "view_timeline", + "content": "view_timeline" + }, + { + "label": "view_week", + "content": "view_week" + }, + { + "label": "vignette", + "content": "vignette" + }, + { + "label": "villa", + "content": "villa" + }, + { + "label": "visibility", + "content": "visibility" + }, + { + "label": "visibility_lock", + "content": "visibility_lock" + }, + { + "label": "visibility_off", + "content": "visibility_off" + }, + { + "label": "vital_signs", + "content": "vital_signs" + }, + { + "label": "vo2_max", + "content": "vo2_max" + }, + { + "label": "voice_chat", + "content": "voice_chat" + }, + { + "label": "voice_over_off", + "content": "voice_over_off" + }, + { + "label": "voice_selection", + "content": "voice_selection" + }, + { + "label": "voicemail", + "content": "voicemail" + }, + { + "label": "volcano", + "content": "volcano" + }, + { + "label": "volume_down", + "content": "volume_down" + }, + { + "label": "volume_down_alt", + "content": "volume_down_alt" + }, + { + "label": "volume_mute", + "content": "volume_mute" + }, + { + "label": "volume_off", + "content": "volume_off" + }, + { + "label": "volume_up", + "content": "volume_up" + }, + { + "label": "volunteer_activism", + "content": "volunteer_activism" + }, + { + "label": "voting_chip", + "content": "voting_chip" + }, + { + "label": "vpn_key", + "content": "vpn_key" + }, + { + "label": "vpn_key_alert", + "content": "vpn_key_alert" + }, + { + "label": "vpn_key_off", + "content": "vpn_key_off" + }, + { + "label": "vpn_lock", + "content": "vpn_lock" + }, + { + "label": "vr180_create2d", + "content": "vr180_create2d" + }, + { + "label": "vr180_create2d_off", + "content": "vr180_create2d_off" + }, + { + "label": "vrpano", + "content": "vrpano" + }, + { + "label": "wall_art", + "content": "wall_art" + }, + { + "label": "wall_lamp", + "content": "wall_lamp" + }, + { + "label": "wallet", + "content": "wallet" + }, + { + "label": "wallpaper", + "content": "wallpaper" + }, + { + "label": "wallpaper_slideshow", + "content": "wallpaper_slideshow" + }, + { + "label": "ward", + "content": "ward" + }, + { + "label": "warehouse", + "content": "warehouse" + }, + { + "label": "warning", + "content": "warning" + }, + { + "label": "warning_off", + "content": "warning_off" + }, + { + "label": "wash", + "content": "wash" + }, + { + "label": "watch", + "content": "watch" + }, + { + "label": "watch_button_press", + "content": "watch_button_press" + }, + { + "label": "watch_check", + "content": "watch_check" + }, + { + "label": "watch_off", + "content": "watch_off" + }, + { + "label": "watch_screentime", + "content": "watch_screentime" + }, + { + "label": "watch_vibration", + "content": "watch_vibration" + }, + { + "label": "watch_wake", + "content": "watch_wake" + }, + { + "label": "water", + "content": "water" + }, + { + "label": "water_bottle", + "content": "water_bottle" + }, + { + "label": "water_bottle_large", + "content": "water_bottle_large" + }, + { + "label": "water_damage", + "content": "water_damage" + }, + { + "label": "water_do", + "content": "water_do" + }, + { + "label": "water_drop", + "content": "water_drop" + }, + { + "label": "water_ec", + "content": "water_ec" + }, + { + "label": "water_full", + "content": "water_full" + }, + { + "label": "water_heater", + "content": "water_heater" + }, + { + "label": "water_lock", + "content": "water_lock" + }, + { + "label": "water_loss", + "content": "water_loss" + }, + { + "label": "water_lux", + "content": "water_lux" + }, + { + "label": "water_medium", + "content": "water_medium" + }, + { + "label": "water_orp", + "content": "water_orp" + }, + { + "label": "water_ph", + "content": "water_ph" + }, + { + "label": "water_pump", + "content": "water_pump" + }, + { + "label": "water_voc", + "content": "water_voc" + }, + { + "label": "waterfall_chart", + "content": "waterfall_chart" + }, + { + "label": "waves", + "content": "waves" + }, + { + "label": "waving_hand", + "content": "waving_hand" + }, + { + "label": "wb_auto", + "content": "wb_auto" + }, + { + "label": "wb_incandescent", + "content": "wb_incandescent" + }, + { + "label": "wb_iridescent", + "content": "wb_iridescent" + }, + { + "label": "wb_shade", + "content": "wb_shade" + }, + { + "label": "wb_sunny", + "content": "wb_sunny" + }, + { + "label": "wb_twilight", + "content": "wb_twilight" + }, + { + "label": "wc", + "content": "wc" + }, + { + "label": "weather_hail", + "content": "weather_hail" + }, + { + "label": "weather_mix", + "content": "weather_mix" + }, + { + "label": "weather_snowy", + "content": "weather_snowy" + }, + { + "label": "web", + "content": "web" + }, + { + "label": "web_asset", + "content": "web_asset" + }, + { + "label": "web_asset_off", + "content": "web_asset_off" + }, + { + "label": "web_stories", + "content": "web_stories" + }, + { + "label": "web_traffic", + "content": "web_traffic" + }, + { + "label": "webhook", + "content": "webhook" + }, + { + "label": "weekend", + "content": "weekend" + }, + { + "label": "weight", + "content": "weight" + }, + { + "label": "west", + "content": "west" + }, + { + "label": "whatshot", + "content": "whatshot" + }, + { + "label": "wheelchair_pickup", + "content": "wheelchair_pickup" + }, + { + "label": "where_to_vote", + "content": "where_to_vote" + }, + { + "label": "widgets", + "content": "widgets" + }, + { + "label": "width", + "content": "width" + }, + { + "label": "width_full", + "content": "width_full" + }, + { + "label": "width_normal", + "content": "width_normal" + }, + { + "label": "width_wide", + "content": "width_wide" + }, + { + "label": "wifi", + "content": "wifi" + }, + { + "label": "wifi_1_bar", + "content": "wifi_1_bar" + }, + { + "label": "wifi_2_bar", + "content": "wifi_2_bar" + }, + { + "label": "wifi_add", + "content": "wifi_add" + }, + { + "label": "wifi_calling", + "content": "wifi_calling" + }, + { + "label": "wifi_calling_1", + "content": "wifi_calling_1" + }, + { + "label": "wifi_calling_2", + "content": "wifi_calling_2" + }, + { + "label": "wifi_calling_3", + "content": "wifi_calling_3" + }, + { + "label": "wifi_channel", + "content": "wifi_channel" + }, + { + "label": "wifi_find", + "content": "wifi_find" + }, + { + "label": "wifi_home", + "content": "wifi_home" + }, + { + "label": "wifi_lock", + "content": "wifi_lock" + }, + { + "label": "wifi_notification", + "content": "wifi_notification" + }, + { + "label": "wifi_off", + "content": "wifi_off" + }, + { + "label": "wifi_password", + "content": "wifi_password" + }, + { + "label": "wifi_protected_setup", + "content": "wifi_protected_setup" + }, + { + "label": "wifi_proxy", + "content": "wifi_proxy" + }, + { + "label": "wifi_tethering", + "content": "wifi_tethering" + }, + { + "label": "wifi_tethering_error", + "content": "wifi_tethering_error" + }, + { + "label": "wifi_tethering_off", + "content": "wifi_tethering_off" + }, + { + "label": "wind_power", + "content": "wind_power" + }, + { + "label": "window", + "content": "window" + }, + { + "label": "window_closed", + "content": "window_closed" + }, + { + "label": "window_open", + "content": "window_open" + }, + { + "label": "window_sensor", + "content": "window_sensor" + }, + { + "label": "wine_bar", + "content": "wine_bar" + }, + { + "label": "woman", + "content": "woman" + }, + { + "label": "woman_2", + "content": "woman_2" + }, + { + "label": "work", + "content": "work" + }, + { + "label": "work_alert", + "content": "work_alert" + }, + { + "label": "work_history", + "content": "work_history" + }, + { + "label": "work_update", + "content": "work_update" + }, + { + "label": "workspace_premium", + "content": "workspace_premium" + }, + { + "label": "workspaces", + "content": "workspaces" + }, + { + "label": "wounds_injuries", + "content": "wounds_injuries" + }, + { + "label": "wrap_text", + "content": "wrap_text" + }, + { + "label": "wrist", + "content": "wrist" + }, + { + "label": "wrong_location", + "content": "wrong_location" + }, + { + "label": "wysiwyg", + "content": "wysiwyg" + }, + { + "label": "yard", + "content": "yard" + }, + { + "label": "your_trips", + "content": "your_trips" + }, + { + "label": "youtube_activity", + "content": "youtube_activity" + }, + { + "label": "youtube_searched_for", + "content": "youtube_searched_for" + }, + { + "label": "zone_person_alert", + "content": "zone_person_alert" + }, + { + "label": "zone_person_idle", + "content": "zone_person_idle" + }, + { + "label": "zone_person_urgent", + "content": "zone_person_urgent" + }, + { + "label": "zoom_in", + "content": "zoom_in" + }, + { + "label": "zoom_in_map", + "content": "zoom_in_map" + }, + { + "label": "zoom_out", + "content": "zoom_out" + }, + { + "label": "zoom_out_map", + "content": "zoom_out_map" + } + ] +} diff --git a/packages/iconography/iconography.php b/packages/iconography/iconography.php index 72fd31e..9045e2c 100644 --- a/packages/iconography/iconography.php +++ b/packages/iconography/iconography.php @@ -5,7 +5,7 @@ * Version: 1.0.0 * Author: BoxUK * Author URI: https://www.boxuk.com - * + * * @package Boxuk\Iconography */ @@ -13,112 +13,24 @@ namespace Boxuk\Iconography; -/** - * Loads Iconography - */ -class Iconography { - - /** - * Scripts - * - * @var array - */ - protected array $scripts = array( - 'material-symbols-sharp' => 'https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200', - 'material-symbols-rounded' => 'https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200', - 'material-symbols-outlined' => 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200', - ); - - /** - * Page Content - * - * @var string - */ - public string $content = ''; - - /** - * Init Hooks - * - * @return void - */ - public function init(): void { - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); - add_action( 'enqueue_block_assets', array( $this, 'register_scripts' ) ); - add_action( 'enqueue_block_assets', array( $this, 'enqueue_all_iconography' ) ); - add_action( 'wp_footer', array( $this, 'maybe_add_scripts' ), 1, 0 ); - } - - /** - * Register Scripts - * - * @return void - */ - public function register_scripts(): void { - foreach ( $this->scripts as $handle => $src ) { - $this->register_style( $handle, $src ); - } - } - - /** - * Enqueue all iconography scripts (for the block editor) - * - * @return void - */ - public function enqueue_all_iconography(): void { - foreach ( $this->scripts as $handle => $src ) { - wp_enqueue_style( $handle ); - } - - $asset = require __DIR__ . '/build/index.asset.php'; - wp_enqueue_script( - 'iconography', - plugins_url( 'build/index.js', __FILE__ ), - $asset['dependencies'], - $asset['version'], - true - ); - } - - /** - * Maybe add scripts - * - * @return void - */ - public function maybe_add_scripts(): void { - $html = get_the_block_template_html(); - foreach ( $this->scripts as $handle => $src ) { - if ( str_contains( $html, $handle ) ) { - wp_enqueue_style( $handle ); +add_action( + 'plugins_loaded', + function () { + + add_filter( + 'boxuk_iconography_files', + function ( $config_files ) { + $plugin_dir = __DIR__; + + $config_files['material-symbols-outlined'] = $plugin_dir . '/config/material-symbols-outlined.config.json'; + $config_files['material-symbols-outlined-filled'] = $plugin_dir . '/config/material-symbols-outlined-filled.config.json'; + $config_files['material-symbols-sharp'] = $plugin_dir . '/config/material-symbols-sharp.config.json'; + $config_files['material-symbols-sharp-filled'] = $plugin_dir . '/config/material-symbols-sharp-filled.config.json'; + $config_files['material-symbols-rounded'] = $plugin_dir . '/config/material-symbols-rounded.config.json'; + $config_files['material-symbols-rounded-filled'] = $plugin_dir . '/config/material-symbols-rounded-filled.config.json'; + return $config_files; } - } - } - - /** - * Register a style - * - * @param string $handle The handle. - * @param string $src The source. - * - * @return void - */ - public function register_style( string $handle, string $src ): void { - $inline_css = <<init(); } -} - -( new Iconography() )->init(); +); diff --git a/packages/iconography/includes/ConfigurationParser.php b/packages/iconography/includes/ConfigurationParser.php new file mode 100644 index 0000000..fe6b527 --- /dev/null +++ b/packages/iconography/includes/ConfigurationParser.php @@ -0,0 +1,142 @@ +configs ) ) { + $this->load_configs(); + } + return $this->configs; + } + + /** + * Load Icon Config + * + * @return void + */ + private function load_configs() { + $files = $this->get_config_files(); + foreach ( $files as $file ) { + $this->parse_config( $file ); + } + } + + /** + * Get Config Files + * + * @return string[] + */ + private function get_config_files(): array { + $files = (array) glob( get_stylesheet_directory() . '/icons/*.config.json' ); + return apply_filters( 'boxuk_iconography_files', $files ); + } + + /** + * Parse Config + * + * @param string $file The file to parse. + * + * @return void + */ + public function parse_config( string $file ) { + $file_contents = file_get_contents( $file ); // phpcs:ignore WordPressVIPMinimum.Performance.FetchingRemoteData.FileGetContentsUnknown -- The warning is for remote files, which we are not using here. + + $valid = $this->validate( json_decode( $file_contents ?: '' ) ); // phpcs:ignore Universal.Operators.DisallowShortTernary.Found -- We need to use the short ternary operator here to prevent a PHP warning. + + if ( is_wp_error( $valid ) ) { + wp_die( $valid ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- `wp_die` escapes `WP_Error` objects for us. + } + + $this->configs[] = $valid; + } + + /** + * Get Schema + * + * @return SchemaContract + */ + private function get_schema(): SchemaContract { + return Schema::import( plugin_dir_path( __DIR__ ) . '/schema.json' ); + } + + /** + * Validate data + * + * @param mixed $data JSON Data to validate. + * + * @return IconGroup|\WP_Error + */ + private function validate( mixed $data ): IconGroup|\WP_Error { + if ( ! is_object( $data ) ) { + return new \WP_Error( 'invalid_data', 'Data must be an object' ); + } + + $schema = $this->get_schema(); + try { + $schema->in( $data ); + } catch ( \Swaggest\JsonSchema\InvalidValue $e ) { + return new \WP_Error( 'invalid_data', $e->getMessage() ); + } + + /** + * We can now define the type of `$data` object for static analysis tools like PHPStan since it's been validated. + * + * @var object{ + * title:string, + * name:string, + * tagName:string, + * className:string, + * url:string, + * additionalCss:string, + * icons:array + * } $data Validated Data + */ + + return new IconGroup( + $data->title, + $data->name, + $data->tagName, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase -- This is a JSON object property. + $data->className, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase -- This is a JSON object property. + $data->url, + $data->additionalCss, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase -- This is a JSON object property. + array_map( + fn( $icon ) => new Icon( $icon->label, $icon->content ), + $data->icons + ) + ); + } +} diff --git a/packages/iconography/includes/IconographyService.php b/packages/iconography/includes/IconographyService.php new file mode 100644 index 0000000..dacaeff --- /dev/null +++ b/packages/iconography/includes/IconographyService.php @@ -0,0 +1,110 @@ +configuration_parser->get_configs() as $config ) { + $config->register_assets(); + } + } + + /** + * Enqueue Assets based on content. + * + * @return void + */ + public function enqueue_assets(): void { + $html = get_the_block_template_html(); + foreach ( $this->configuration_parser->get_configs() as $config ) { + $config->enqueue_assets( $html ); + } + } + + /** + * Enqueue all assets + * + * Useful in the block editor where we don't know the content to test against. + * + * @return void + */ + public function enqueue_all_assets(): void { + foreach ( $this->configuration_parser->get_configs() as $config ) { + $config->enqueue_assets(); + } + } + + /** + * Get Grouped Icons + * + * @return array + */ + public function get_icon_groups(): array { + return $this->configuration_parser->get_configs(); + } + + /** + * Enqueue all iconography scripts (for the block editor) + * + * @return void + */ + public function enqueue_editor_scripts(): void { + $asset = require plugin_dir_path( __DIR__ ) . 'build/index.asset.php'; + wp_enqueue_script( + 'iconography', + plugins_url( 'build/index.js', __DIR__ ), + $asset['dependencies'], + $asset['version'], + true + ); + + wp_localize_script( + 'iconography', + 'boxIconography', + array( + 'iconGroups' => array_map( + fn( IconGroup $group ) => $group->to_json(), + $this->get_icon_groups() + ), + ) + ); + } +} diff --git a/packages/iconography/includes/Model/Icon.php b/packages/iconography/includes/Model/Icon.php new file mode 100644 index 0000000..1d92963 --- /dev/null +++ b/packages/iconography/includes/Model/Icon.php @@ -0,0 +1,29 @@ +title ); + } + + /** + * Get Name + * + * @return string + */ + public function get_name(): string { + return apply_filters( 'boxuk_iconography_configuration_name', $this->name ); + } + + /** + * Get Tag Name + * + * @return string + */ + public function get_tag_name(): string { + return apply_filters( 'boxuk_iconography_configuration_tag_name', $this->tag_name ); + } + + /** + * Get Class Name + * + * @return string + */ + public function get_class_name(): string { + return apply_filters( 'boxuk_iconography_configuration_class_name', $this->class_name ); + } + + /** + * Get Icons + * + * @return Icon[] + */ + public function get_icons(): array { + return apply_filters( 'boxuk_iconography_configuration_icons', $this->icons ); + } + + + /** + * Regiser Assets in WP + */ + public function register_assets(): void { + wp_register_style( $this->name, $this->url, array(), null, 'all' ); // phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion -- The version isn't required for external stylesheets. + wp_add_inline_style( $this->name, $this->additional_css ); + } + + /** + * Enqueue Assets in WP + * + * @param string|null $content The content to validate against. + */ + public function enqueue_assets( string|null $content = null ): void { + if ( null === $content || $this->has_match( $content ) ) { + wp_enqueue_style( $this->name ); + } + } + + /** + * Has Match + * + * @param string $content The content to validate against. + * + * @return bool + */ + private function has_match( string $content ): bool { + return str_contains( $content, $this->class_name ); + } + + /** + * To JSON array + * + * An array for JSON representation to be consumed by the block editor. + * + * @return array{title:string,name:string,tagName:string,className:string,icons:array} + */ + public function to_json(): array { + return array( + 'title' => $this->get_title(), + 'name' => $this->get_name(), + 'tagName' => $this->get_tag_name(), + 'className' => $this->get_class_name(), + 'icons' => $this->get_icons(), + ); + } +} diff --git a/packages/iconography/package.json b/packages/iconography/package.json index 71819c0..60914e4 100644 --- a/packages/iconography/package.json +++ b/packages/iconography/package.json @@ -15,18 +15,19 @@ "test:snapshots": "wp-scripts test-unit-js --updateSnapshot", "packages-update": "wp-scripts packages-update", "start": "wp-scripts start", - "type-coverage": "type-coverage --strict --at-least 99.83" + "type-coverage": "type-coverage --strict --detail --at-least 97.5" }, "author": "", "license": "ISC", "devDependencies": { "@jest/globals": "^29.7.0", "@testing-library/react": "^16.0.0", + "@types/wordpress__block-editor": "^11.5.14", "@wordpress/dom-ready": "^4.0.0", "@wordpress/editor": "^14.1.0", "@wordpress/icons": "^10.0.0", "@wordpress/interface": "^6.0.0", - "@wordpress/scripts": "^28.1.0", + "@wordpress/scripts": "^27.8.0", "react": "^18.2.0", "type-coverage": "^2.29.0" } diff --git a/packages/iconography/schema.json b/packages/iconography/schema.json new file mode 100644 index 0000000..9031ee9 --- /dev/null +++ b/packages/iconography/schema.json @@ -0,0 +1,58 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object", + "properties": { + "$schema": { + "type": "string" + }, + "title": { + "type": "string", + "description": "The title used in the tabs of the icon picker." + }, + "name": { + "type": "string", + "pattern": "^[a-zA-Z0-9-/]+$", + "description": "The unique key of this icon set. Should follow pattern of `namespace/icon-set-name`. " + }, + "tagName": { + "type": "string", + "pattern": "^[a-zA-Z]+$", + "description": "The tag name of the icon set. This is used to create the HTML element." + }, + "className": { + "pattern": "^[a-zA-Z0-9_-]+$", + "type": "string", + "description": "The class name of the icon set. This is used to create the HTML element." + }, + "url": { + "type": "string", + "format": "uri", + "description": "The URL to the CSS file that is required to load the icons." + }, + "additionalCss": { + "type": "string", + "description": "Additional CSS to be included in the icon picker. This should include the selector based on your class name." + }, + "icons": { + "type": "array", + "description": "The list of icons in the set.", + "items": { + "type": "object", + "minLength": 1, + "properties": { + "label": { + "type": "string", + "description": "The label of the icon, shown in the icon picker on hover, and for screen readers." + }, + "content": { + "type": "string", + "description": "The content of the icon. This will be inserted inside the HTML element constructed from the Tag and Class names of the icon set." + } + }, + "required": [ "label", "content" ] + } + } + }, + "required": [ "title", "name", "tagName", "className", "url", "icons" ], + "additionalProperties": false +} diff --git a/packages/iconography/src/IconModal.tsx b/packages/iconography/src/IconModal.tsx new file mode 100644 index 0000000..82ab1e5 --- /dev/null +++ b/packages/iconography/src/IconModal.tsx @@ -0,0 +1,72 @@ +import React, { Suspense, lazy } from 'react'; + +/* WordPress Dependencies */ +import { __ } from '@wordpress/i18n'; +import { Modal, TabPanel, SearchControl } from '@wordpress/components'; +import { insert } from '@wordpress/rich-text'; +import { useState, useMemo } from '@wordpress/element'; + +/* Internal Dependencies */ +import { PlaceholderIconPanel } from './PlaceholderIconPanel'; +import { getIconGroups } from './utils'; + +/* Types */ +import type { RichTextValue } from '@wordpress/rich-text'; + +const IconPanel = lazy( () => import( './IconPanel' ) ); + +export const IconModal = ( { + onChange, + value, + onRequestClose, +}: { + onChange: ( value: RichTextValue ) => void; + value: RichTextValue; + onRequestClose: () => void; +} ) => { + const [ searchTerm, setSearchTerm ] = useState( '' ); + const iconGroups = useMemo( () => getIconGroups( false ), [] ); + + return ( + + + ( { + title: iconGroup.title, + name: iconGroup.name, + iconGroup, + } ) ) ?? [] + } + > + { ( tab ) => ( + }> + { + onChange( + insert( + value, + richText, + value.start, + value.end + ) + ); + onRequestClose(); + } } + /> + + ) } + + + ); +}; diff --git a/packages/iconography/src/IconPanel.tsx b/packages/iconography/src/IconPanel.tsx index 423050b..9e221ed 100644 --- a/packages/iconography/src/IconPanel.tsx +++ b/packages/iconography/src/IconPanel.tsx @@ -2,13 +2,23 @@ import React from 'react'; /* WordPress Dependencies */ import { __ } from '@wordpress/i18n'; -import { Flex, Button } from '@wordpress/components'; +import { + Button, + __experimentalGrid as Grid, // eslint-disable-line @wordpress/no-unsafe-wp-apis -- experimental package, but we know the risks! +} from '@wordpress/components'; /* Internal Dependencies */ import { generateRichTextFormat } from './utils'; /* Types */ -import type { IconPanelProps } from './types'; +import type { IconGroup } from './types'; +import type { RichTextValue } from '@wordpress/rich-text'; + +export type IconPanelProps = { + iconGroup: IconGroup; + onClick: ( icon: RichTextValue ) => void; + searchTerm: string; +}; export const IconPanel = ( { iconGroup, @@ -26,34 +36,23 @@ export const IconPanel = ( { : iconGroup.options; return ( - <> - - { filteredIcons.map( ( Icon ) => ( - - ) ) } - - + + { filteredIcons.map( ( Icon ) => ( + + ) ) } + ); }; + +export default IconPanel; diff --git a/packages/iconography/src/IconToolbarButton.tsx b/packages/iconography/src/IconToolbarButton.tsx index eb30722..299486f 100644 --- a/packages/iconography/src/IconToolbarButton.tsx +++ b/packages/iconography/src/IconToolbarButton.tsx @@ -1,91 +1,42 @@ -import React, { ComponentProps } from 'react'; +import React from 'react'; /* WordPress Dependencies */ import { __ } from '@wordpress/i18n'; import { useState } from '@wordpress/element'; -import { BlockControls } from '@wordpress/block-editor'; -import { - ToolbarGroup, - Modal, - ToolbarButton, - TabPanel, - SearchControl, -} from '@wordpress/components'; -import { insert } from '@wordpress/rich-text'; +import { ToolbarButton } from '@wordpress/components'; /* Internal Dependencies */ -import { IconPanel } from './IconPanel'; -import { iconGroups } from './index'; import { ReactComponent as AddReactionOutlined } from './AddReactionOutlined.svg'; /* Types */ -import type { IconGroup, IconToolbarButtonProps } from './types'; import type { RichTextValue } from '@wordpress/rich-text'; +import { IconModal } from './IconModal'; + +export type IconToolbarButtonProps = { + onChange: ( value: RichTextValue ) => void; + value: RichTextValue; +}; export const IconToolbarButton = ( { onChange, value, - initialOpenState = false, }: IconToolbarButtonProps ) => { - const [ open, setOpen ] = useState( initialOpenState ); - const [ searchTerm, setSearchTerm ] = useState( '' ); + const [ open, setOpen ] = useState( false ); return ( - - - } - label={ __( 'Add an icon', 'okdo' ) } - onClick={ () => setOpen( ! open ) } - placeholder={ __( 'Add an icon', 'okdo' ) } + <> + } + label={ __( 'Add an icon', 'boxuk' ) } + onClick={ () => setOpen( ! open ) } + /> + { open && ( + setOpen( false ) } + onChange={ onChange } + value={ value } /> - { open && ( - setOpen( false ) } - title={ __( 'Select an icon', 'okdo' ) } - > - - setSearchTerm( newValue ) - } - /> - { - return { - title: iconGroup.title, - name: iconGroup.name, - iconGroup, - }; - } ) } - children={ ( tab ) => { - const iconGroup: IconGroup = tab.iconGroup; - return ( - { - onChange( - insert( - value, - richText, - value.start, - value.end - ) - ); - setOpen( false ); - } } - /> - ); - } } - /> - - ) } - - + ) } + ); }; diff --git a/packages/iconography/src/PlaceholderIconPanel.tsx b/packages/iconography/src/PlaceholderIconPanel.tsx new file mode 100644 index 0000000..ea5f05c --- /dev/null +++ b/packages/iconography/src/PlaceholderIconPanel.tsx @@ -0,0 +1,34 @@ +import React from 'react'; + +/* WordPress Dependencies */ +import { __ } from '@wordpress/i18n'; +import { + Button, + Disabled, + Spinner, + __experimentalGrid as Grid, // eslint-disable-line @wordpress/no-unsafe-wp-apis -- experimental package, but we know the risks! +} from '@wordpress/components'; + +/* Types */ +import type { IconGroup } from './types'; +import type { RichTextValue } from '@wordpress/rich-text'; + +export type IconPanelProps = { + iconGroup: IconGroup; + onClick: ( icon: RichTextValue ) => void; + searchTerm: string; +}; + +export const PlaceholderIconPanel = () => { + return ( + + { [ ...Array( 300 ) ].map( ( _: any, index: number ) => ( + + + + ) ) } + + ); +}; diff --git a/packages/iconography/src/block/Attributes.type.ts b/packages/iconography/src/block/Attributes.type.ts new file mode 100644 index 0000000..e8960e2 --- /dev/null +++ b/packages/iconography/src/block/Attributes.type.ts @@ -0,0 +1,7 @@ +import type { WPFormat } from '@wordpress/rich-text/build-types/register-format-type'; + +export type Attributes = Partial< { + className: WPFormat[ 'className' ]; + tagName: WPFormat[ 'tagName' ]; + iconContent: string; +} >; diff --git a/packages/iconography/src/block/Edit.tsx b/packages/iconography/src/block/Edit.tsx new file mode 100644 index 0000000..7aebe25 --- /dev/null +++ b/packages/iconography/src/block/Edit.tsx @@ -0,0 +1,94 @@ +import React from 'react'; + +import { IconToolbarButton } from '../IconToolbarButton'; +import { + BlockControls, + InspectorControls, + useBlockProps, +} from '@wordpress/block-editor'; +import { store as RichTextStore } from '@wordpress/rich-text'; +import { useSelect } from '@wordpress/data'; +import { useState } from '@wordpress/element'; +import { Button, Panel, PanelBody } from '@wordpress/components'; + +/* Types */ +import type { Attributes } from './Attributes.type'; +import type { BlockEditProps } from '@wordpress/blocks'; +import type { RichTextValue } from '@wordpress/rich-text'; +import type { WPFormat } from '@wordpress/rich-text/build-types/register-format-type'; +import { IconModal } from '../IconModal'; + +export const Edit = ( { + attributes, + setAttributes, +}: BlockEditProps< Attributes > ) => { + const [ showIconModal, setShowIconModal ] = useState( false ); + const blockProps = useBlockProps(); + const { getFormatType } = useSelect( + ( select ) => + select( RichTextStore ) as { + getFormatType: ( type: string ) => WPFormat; + }, + [] + ); + + const handleChange = ( value: RichTextValue ) => { + const formats = value.formats.shift(); + if ( ! formats?.length ) { + return; + } + + const format = getFormatType( formats[ 0 ].type ); + + setAttributes( { + iconContent: value.text, + tagName: format.tagName, + className: format.className, + } ); + }; + + const TagName = + ( attributes.tagName as keyof HTMLElementTagNameMap ) ?? 'span'; + + const ShowModalButton = () => ( + + ); + + return ( + <> + + + + + + + +
+ { attributes.iconContent && ( + + { attributes.iconContent } + + ) } + { ! attributes.iconContent && } + { showIconModal && ( + setShowIconModal( false ) } + onChange={ handleChange } + value={ { + text: '', + formats: [], + replacements: [], + start: 0, + end: 0, + } } + /> + ) } +
+ + ); +}; diff --git a/packages/iconography/src/block/Save.tsx b/packages/iconography/src/block/Save.tsx new file mode 100644 index 0000000..f514a23 --- /dev/null +++ b/packages/iconography/src/block/Save.tsx @@ -0,0 +1,18 @@ +import React from 'react'; + +import { useBlockProps } from '@wordpress/block-editor'; + +/* Types */ +import type { Attributes } from './Attributes.type'; +import type { BlockSaveProps } from '@wordpress/blocks'; + +export const Save = ( { attributes }: BlockSaveProps< Attributes > ) => { + const { className, tagName, iconContent } = attributes; + const TagName = ( tagName as keyof HTMLElementTagNameMap ) ?? 'span'; + + return ( +
+ { iconContent } +
+ ); +}; diff --git a/packages/iconography/src/block/block.json b/packages/iconography/src/block/block.json new file mode 100644 index 0000000..ad0c210 --- /dev/null +++ b/packages/iconography/src/block/block.json @@ -0,0 +1,59 @@ +{ + "$schema": "https://schemas.wp.org/trunk/block.json", + "apiVersion": 3, + "name": "boxuk/icon", + "title": "Icon", + "category": "media", + "description": "Display an icon as a block.", + "icon": "star-filled", + "keywords": [ "icon", "emoji", "symbol" ], + "textdomain": "boxuk", + "supports": { + "align": [ "wide", "full" ], + "alignWide": true, + "color": { + "background": true, + "text": true + }, + "background": { "backgroundImage": true, "backgroundSize": true }, + "anchor": false, + "ariaLabel": true, + "className": true, + "customClassName": true, + "dimensions": { "aspectRatio": false, "minHeight": true }, + "filter": { "duotone": false }, + "html": false, + "inserter": true, + "interactivity": false, + "layout": true, + "lock": true, + "multiple": true, + "position": { + "sticky": false + }, + "renaming": true, + "reusable": true, + "shadow": false, + "spacing": { + "margin": true, + "padding": true + }, + "typography": { + "fontSize": true, + "lineHeight": true, + "textAlign": true + } + }, + "attributes": { + "className": { + "type": "string" + }, + "tagName": { + "type": "string" + }, + "iconContent": { + "type": "string" + } + }, + "example": {} +} diff --git a/packages/iconography/src/icons.json b/packages/iconography/src/icons.json deleted file mode 100644 index 8255d99..0000000 --- a/packages/iconography/src/icons.json +++ /dev/null @@ -1,10096 +0,0 @@ -[ - "Abc", - "AbcOutlined", - "AbcRounded", - "AbcSharp", - "AbcTwoTone", - "AcUnit", - "AcUnitOutlined", - "AcUnitRounded", - "AcUnitSharp", - "AcUnitTwoTone", - "AccessAlarm", - "AccessAlarmOutlined", - "AccessAlarmRounded", - "AccessAlarmSharp", - "AccessAlarmTwoTone", - "AccessAlarms", - "AccessAlarmsOutlined", - "AccessAlarmsRounded", - "AccessAlarmsSharp", - "AccessAlarmsTwoTone", - "AccessTime", - "AccessTimeFilled", - "AccessTimeFilledOutlined", - "AccessTimeFilledRounded", - "AccessTimeFilledSharp", - "AccessTimeFilledTwoTone", - "AccessTimeOutlined", - "AccessTimeRounded", - "AccessTimeSharp", - "AccessTimeTwoTone", - "Accessibility", - "AccessibilityNew", - "AccessibilityNewOutlined", - "AccessibilityNewRounded", - "AccessibilityNewSharp", - "AccessibilityNewTwoTone", - "AccessibilityOutlined", - "AccessibilityRounded", - "AccessibilitySharp", - "AccessibilityTwoTone", - "Accessible", - "AccessibleForward", - "AccessibleForwardOutlined", - "AccessibleForwardRounded", - "AccessibleForwardSharp", - "AccessibleForwardTwoTone", - "AccessibleOutlined", - "AccessibleRounded", - "AccessibleSharp", - "AccessibleTwoTone", - "AccountBalance", - "AccountBalanceOutlined", - "AccountBalanceRounded", - "AccountBalanceSharp", - "AccountBalanceTwoTone", - "AccountBalanceWallet", - "AccountBalanceWalletOutlined", - "AccountBalanceWalletRounded", - "AccountBalanceWalletSharp", - "AccountBalanceWalletTwoTone", - "AccountBox", - "AccountBoxOutlined", - "AccountBoxRounded", - "AccountBoxSharp", - "AccountBoxTwoTone", - "AccountCircle", - "AccountCircleOutlined", - "AccountCircleRounded", - "AccountCircleSharp", - "AccountCircleTwoTone", - "AccountTree", - "AccountTreeOutlined", - "AccountTreeRounded", - "AccountTreeSharp", - "AccountTreeTwoTone", - "AdUnits", - "AdUnitsOutlined", - "AdUnitsRounded", - "AdUnitsSharp", - "AdUnitsTwoTone", - "Adb", - "AdbOutlined", - "AdbRounded", - "AdbSharp", - "AdbTwoTone", - "Add", - "AddAPhoto", - "AddAPhotoOutlined", - "AddAPhotoRounded", - "AddAPhotoSharp", - "AddAPhotoTwoTone", - "AddAlarm", - "AddAlarmOutlined", - "AddAlarmRounded", - "AddAlarmSharp", - "AddAlarmTwoTone", - "AddAlert", - "AddAlertOutlined", - "AddAlertRounded", - "AddAlertSharp", - "AddAlertTwoTone", - "AddBox", - "AddBoxOutlined", - "AddBoxRounded", - "AddBoxSharp", - "AddBoxTwoTone", - "AddBusiness", - "AddBusinessOutlined", - "AddBusinessRounded", - "AddBusinessSharp", - "AddBusinessTwoTone", - "AddCard", - "AddCardOutlined", - "AddCardRounded", - "AddCardSharp", - "AddCardTwoTone", - "AddCircle", - "AddCircleOutline", - "AddCircleOutlineOutlined", - "AddCircleOutlineRounded", - "AddCircleOutlineSharp", - "AddCircleOutlineTwoTone", - "AddCircleOutlined", - "AddCircleRounded", - "AddCircleSharp", - "AddCircleTwoTone", - "AddComment", - "AddCommentOutlined", - "AddCommentRounded", - "AddCommentSharp", - "AddCommentTwoTone", - "AddHome", - "AddHomeOutlined", - "AddHomeRounded", - "AddHomeSharp", - "AddHomeTwoTone", - "AddHomeWork", - "AddHomeWorkOutlined", - "AddHomeWorkRounded", - "AddHomeWorkSharp", - "AddHomeWorkTwoTone", - "AddIcCall", - "AddIcCallOutlined", - "AddIcCallRounded", - "AddIcCallSharp", - "AddIcCallTwoTone", - "AddLink", - "AddLinkOutlined", - "AddLinkRounded", - "AddLinkSharp", - "AddLinkTwoTone", - "AddLocation", - "AddLocationAlt", - "AddLocationAltOutlined", - "AddLocationAltRounded", - "AddLocationAltSharp", - "AddLocationAltTwoTone", - "AddLocationOutlined", - "AddLocationRounded", - "AddLocationSharp", - "AddLocationTwoTone", - "AddModerator", - "AddModeratorOutlined", - "AddModeratorRounded", - "AddModeratorSharp", - "AddModeratorTwoTone", - "AddOutlined", - "AddPhotoAlternate", - "AddPhotoAlternateOutlined", - "AddPhotoAlternateRounded", - "AddPhotoAlternateSharp", - "AddPhotoAlternateTwoTone", - "AddReaction", - "AddReactionOutlined", - "AddReactionRounded", - "AddReactionSharp", - "AddReactionTwoTone", - "AddRoad", - "AddRoadOutlined", - "AddRoadRounded", - "AddRoadSharp", - "AddRoadTwoTone", - "AddRounded", - "AddSharp", - "AddShoppingCart", - "AddShoppingCartOutlined", - "AddShoppingCartRounded", - "AddShoppingCartSharp", - "AddShoppingCartTwoTone", - "AddTask", - "AddTaskOutlined", - "AddTaskRounded", - "AddTaskSharp", - "AddTaskTwoTone", - "AddToDrive", - "AddToDriveOutlined", - "AddToDriveRounded", - "AddToDriveSharp", - "AddToDriveTwoTone", - "AddToHomeScreen", - "AddToHomeScreenOutlined", - "AddToHomeScreenRounded", - "AddToHomeScreenSharp", - "AddToHomeScreenTwoTone", - "AddToPhotos", - "AddToPhotosOutlined", - "AddToPhotosRounded", - "AddToPhotosSharp", - "AddToPhotosTwoTone", - "AddToQueue", - "AddToQueueOutlined", - "AddToQueueRounded", - "AddToQueueSharp", - "AddToQueueTwoTone", - "AddTwoTone", - "Addchart", - "AddchartOutlined", - "AddchartRounded", - "AddchartSharp", - "AddchartTwoTone", - "AdfScanner", - "AdfScannerOutlined", - "AdfScannerRounded", - "AdfScannerSharp", - "AdfScannerTwoTone", - "Adjust", - "AdjustOutlined", - "AdjustRounded", - "AdjustSharp", - "AdjustTwoTone", - "AdminPanelSettings", - "AdminPanelSettingsOutlined", - "AdminPanelSettingsRounded", - "AdminPanelSettingsSharp", - "AdminPanelSettingsTwoTone", - "AdsClick", - "AdsClickOutlined", - "AdsClickRounded", - "AdsClickSharp", - "AdsClickTwoTone", - "Agriculture", - "AgricultureOutlined", - "AgricultureRounded", - "AgricultureSharp", - "AgricultureTwoTone", - "Air", - "AirOutlined", - "AirRounded", - "AirSharp", - "AirTwoTone", - "AirlineSeatFlat", - "AirlineSeatFlatAngled", - "AirlineSeatFlatAngledOutlined", - "AirlineSeatFlatAngledRounded", - "AirlineSeatFlatAngledSharp", - "AirlineSeatFlatAngledTwoTone", - "AirlineSeatFlatOutlined", - "AirlineSeatFlatRounded", - "AirlineSeatFlatSharp", - "AirlineSeatFlatTwoTone", - "AirlineSeatIndividualSuite", - "AirlineSeatIndividualSuiteOutlined", - "AirlineSeatIndividualSuiteRounded", - "AirlineSeatIndividualSuiteSharp", - "AirlineSeatIndividualSuiteTwoTone", - "AirlineSeatLegroomExtra", - "AirlineSeatLegroomExtraOutlined", - "AirlineSeatLegroomExtraRounded", - "AirlineSeatLegroomExtraSharp", - "AirlineSeatLegroomExtraTwoTone", - "AirlineSeatLegroomNormal", - "AirlineSeatLegroomNormalOutlined", - "AirlineSeatLegroomNormalRounded", - "AirlineSeatLegroomNormalSharp", - "AirlineSeatLegroomNormalTwoTone", - "AirlineSeatLegroomReduced", - "AirlineSeatLegroomReducedOutlined", - "AirlineSeatLegroomReducedRounded", - "AirlineSeatLegroomReducedSharp", - "AirlineSeatLegroomReducedTwoTone", - "AirlineSeatReclineExtra", - "AirlineSeatReclineExtraOutlined", - "AirlineSeatReclineExtraRounded", - "AirlineSeatReclineExtraSharp", - "AirlineSeatReclineExtraTwoTone", - "AirlineSeatReclineNormal", - "AirlineSeatReclineNormalOutlined", - "AirlineSeatReclineNormalRounded", - "AirlineSeatReclineNormalSharp", - "AirlineSeatReclineNormalTwoTone", - "AirlineStops", - "AirlineStopsOutlined", - "AirlineStopsRounded", - "AirlineStopsSharp", - "AirlineStopsTwoTone", - "Airlines", - "AirlinesOutlined", - "AirlinesRounded", - "AirlinesSharp", - "AirlinesTwoTone", - "AirplaneTicket", - "AirplaneTicketOutlined", - "AirplaneTicketRounded", - "AirplaneTicketSharp", - "AirplaneTicketTwoTone", - "AirplanemodeActive", - "AirplanemodeActiveOutlined", - "AirplanemodeActiveRounded", - "AirplanemodeActiveSharp", - "AirplanemodeActiveTwoTone", - "AirplanemodeInactive", - "AirplanemodeInactiveOutlined", - "AirplanemodeInactiveRounded", - "AirplanemodeInactiveSharp", - "AirplanemodeInactiveTwoTone", - "Airplay", - "AirplayOutlined", - "AirplayRounded", - "AirplaySharp", - "AirplayTwoTone", - "AirportShuttle", - "AirportShuttleOutlined", - "AirportShuttleRounded", - "AirportShuttleSharp", - "AirportShuttleTwoTone", - "Alarm", - "AlarmAdd", - "AlarmAddOutlined", - "AlarmAddRounded", - "AlarmAddSharp", - "AlarmAddTwoTone", - "AlarmOff", - "AlarmOffOutlined", - "AlarmOffRounded", - "AlarmOffSharp", - "AlarmOffTwoTone", - "AlarmOn", - "AlarmOnOutlined", - "AlarmOnRounded", - "AlarmOnSharp", - "AlarmOnTwoTone", - "AlarmOutlined", - "AlarmRounded", - "AlarmSharp", - "AlarmTwoTone", - "Album", - "AlbumOutlined", - "AlbumRounded", - "AlbumSharp", - "AlbumTwoTone", - "AlignHorizontalCenter", - "AlignHorizontalCenterOutlined", - "AlignHorizontalCenterRounded", - "AlignHorizontalCenterSharp", - "AlignHorizontalCenterTwoTone", - "AlignHorizontalLeft", - "AlignHorizontalLeftOutlined", - "AlignHorizontalLeftRounded", - "AlignHorizontalLeftSharp", - "AlignHorizontalLeftTwoTone", - "AlignHorizontalRight", - "AlignHorizontalRightOutlined", - "AlignHorizontalRightRounded", - "AlignHorizontalRightSharp", - "AlignHorizontalRightTwoTone", - "AlignVerticalBottom", - "AlignVerticalBottomOutlined", - "AlignVerticalBottomRounded", - "AlignVerticalBottomSharp", - "AlignVerticalBottomTwoTone", - "AlignVerticalCenter", - "AlignVerticalCenterOutlined", - "AlignVerticalCenterRounded", - "AlignVerticalCenterSharp", - "AlignVerticalCenterTwoTone", - "AlignVerticalTop", - "AlignVerticalTopOutlined", - "AlignVerticalTopRounded", - "AlignVerticalTopSharp", - "AlignVerticalTopTwoTone", - "AllInbox", - "AllInboxOutlined", - "AllInboxRounded", - "AllInboxSharp", - "AllInboxTwoTone", - "AllInclusive", - "AllInclusiveOutlined", - "AllInclusiveRounded", - "AllInclusiveSharp", - "AllInclusiveTwoTone", - "AllOut", - "AllOutOutlined", - "AllOutRounded", - "AllOutSharp", - "AllOutTwoTone", - "AltRoute", - "AltRouteOutlined", - "AltRouteRounded", - "AltRouteSharp", - "AltRouteTwoTone", - "AlternateEmail", - "AlternateEmailOutlined", - "AlternateEmailRounded", - "AlternateEmailSharp", - "AlternateEmailTwoTone", - "Analytics", - "AnalyticsOutlined", - "AnalyticsRounded", - "AnalyticsSharp", - "AnalyticsTwoTone", - "Anchor", - "AnchorOutlined", - "AnchorRounded", - "AnchorSharp", - "AnchorTwoTone", - "Android", - "AndroidOutlined", - "AndroidRounded", - "AndroidSharp", - "AndroidTwoTone", - "Animation", - "AnimationOutlined", - "AnimationRounded", - "AnimationSharp", - "AnimationTwoTone", - "Announcement", - "AnnouncementOutlined", - "AnnouncementRounded", - "AnnouncementSharp", - "AnnouncementTwoTone", - "Aod", - "AodOutlined", - "AodRounded", - "AodSharp", - "AodTwoTone", - "Apartment", - "ApartmentOutlined", - "ApartmentRounded", - "ApartmentSharp", - "ApartmentTwoTone", - "Api", - "ApiOutlined", - "ApiRounded", - "ApiSharp", - "ApiTwoTone", - "AppBlocking", - "AppBlockingOutlined", - "AppBlockingRounded", - "AppBlockingSharp", - "AppBlockingTwoTone", - "AppRegistration", - "AppRegistrationOutlined", - "AppRegistrationRounded", - "AppRegistrationSharp", - "AppRegistrationTwoTone", - "AppSettingsAlt", - "AppSettingsAltOutlined", - "AppSettingsAltRounded", - "AppSettingsAltSharp", - "AppSettingsAltTwoTone", - "AppShortcut", - "AppShortcutOutlined", - "AppShortcutRounded", - "AppShortcutSharp", - "AppShortcutTwoTone", - "Apple", - "Approval", - "ApprovalOutlined", - "ApprovalRounded", - "ApprovalSharp", - "ApprovalTwoTone", - "Apps", - "AppsOutage", - "AppsOutageOutlined", - "AppsOutageRounded", - "AppsOutageSharp", - "AppsOutageTwoTone", - "AppsOutlined", - "AppsRounded", - "AppsSharp", - "AppsTwoTone", - "Architecture", - "ArchitectureOutlined", - "ArchitectureRounded", - "ArchitectureSharp", - "ArchitectureTwoTone", - "Archive", - "ArchiveOutlined", - "ArchiveRounded", - "ArchiveSharp", - "ArchiveTwoTone", - "ArrowBack", - "ArrowBackIos", - "ArrowBackIosNew", - "ArrowBackIosNewOutlined", - "ArrowBackIosNewRounded", - "ArrowBackIosNewSharp", - "ArrowBackIosNewTwoTone", - "ArrowBackIosOutlined", - "ArrowBackIosRounded", - "ArrowBackIosSharp", - "ArrowBackIosTwoTone", - "ArrowBackOutlined", - "ArrowBackRounded", - "ArrowBackSharp", - "ArrowBackTwoTone", - "ArrowCircleDown", - "ArrowCircleDownOutlined", - "ArrowCircleDownRounded", - "ArrowCircleDownSharp", - "ArrowCircleDownTwoTone", - "ArrowCircleLeft", - "ArrowCircleLeftOutlined", - "ArrowCircleLeftRounded", - "ArrowCircleLeftSharp", - "ArrowCircleLeftTwoTone", - "ArrowCircleRight", - "ArrowCircleRightOutlined", - "ArrowCircleRightRounded", - "ArrowCircleRightSharp", - "ArrowCircleRightTwoTone", - "ArrowCircleUp", - "ArrowCircleUpOutlined", - "ArrowCircleUpRounded", - "ArrowCircleUpSharp", - "ArrowCircleUpTwoTone", - "ArrowDownward", - "ArrowDownwardOutlined", - "ArrowDownwardRounded", - "ArrowDownwardSharp", - "ArrowDownwardTwoTone", - "ArrowDropDown", - "ArrowDropDownCircle", - "ArrowDropDownCircleOutlined", - "ArrowDropDownCircleRounded", - "ArrowDropDownCircleSharp", - "ArrowDropDownCircleTwoTone", - "ArrowDropDownOutlined", - "ArrowDropDownRounded", - "ArrowDropDownSharp", - "ArrowDropDownTwoTone", - "ArrowDropUp", - "ArrowDropUpOutlined", - "ArrowDropUpRounded", - "ArrowDropUpSharp", - "ArrowDropUpTwoTone", - "ArrowForward", - "ArrowForwardIos", - "ArrowForwardIosOutlined", - "ArrowForwardIosRounded", - "ArrowForwardIosSharp", - "ArrowForwardIosTwoTone", - "ArrowForwardOutlined", - "ArrowForwardRounded", - "ArrowForwardSharp", - "ArrowForwardTwoTone", - "ArrowLeft", - "ArrowLeftOutlined", - "ArrowLeftRounded", - "ArrowLeftSharp", - "ArrowLeftTwoTone", - "ArrowOutward", - "ArrowOutwardOutlined", - "ArrowOutwardRounded", - "ArrowOutwardSharp", - "ArrowOutwardTwoTone", - "ArrowRight", - "ArrowRightAlt", - "ArrowRightAltOutlined", - "ArrowRightAltRounded", - "ArrowRightAltSharp", - "ArrowRightAltTwoTone", - "ArrowRightOutlined", - "ArrowRightRounded", - "ArrowRightSharp", - "ArrowRightTwoTone", - "ArrowUpward", - "ArrowUpwardOutlined", - "ArrowUpwardRounded", - "ArrowUpwardSharp", - "ArrowUpwardTwoTone", - "ArtTrack", - "ArtTrackOutlined", - "ArtTrackRounded", - "ArtTrackSharp", - "ArtTrackTwoTone", - "Article", - "ArticleOutlined", - "ArticleRounded", - "ArticleSharp", - "ArticleTwoTone", - "AspectRatio", - "AspectRatioOutlined", - "AspectRatioRounded", - "AspectRatioSharp", - "AspectRatioTwoTone", - "Assessment", - "AssessmentOutlined", - "AssessmentRounded", - "AssessmentSharp", - "AssessmentTwoTone", - "Assignment", - "AssignmentInd", - "AssignmentIndOutlined", - "AssignmentIndRounded", - "AssignmentIndSharp", - "AssignmentIndTwoTone", - "AssignmentLate", - "AssignmentLateOutlined", - "AssignmentLateRounded", - "AssignmentLateSharp", - "AssignmentLateTwoTone", - "AssignmentOutlined", - "AssignmentReturn", - "AssignmentReturnOutlined", - "AssignmentReturnRounded", - "AssignmentReturnSharp", - "AssignmentReturnTwoTone", - "AssignmentReturned", - "AssignmentReturnedOutlined", - "AssignmentReturnedRounded", - "AssignmentReturnedSharp", - "AssignmentReturnedTwoTone", - "AssignmentRounded", - "AssignmentSharp", - "AssignmentTurnedIn", - "AssignmentTurnedInOutlined", - "AssignmentTurnedInRounded", - "AssignmentTurnedInSharp", - "AssignmentTurnedInTwoTone", - "AssignmentTwoTone", - "AssistWalker", - "AssistWalkerOutlined", - "AssistWalkerRounded", - "AssistWalkerSharp", - "AssistWalkerTwoTone", - "Assistant", - "AssistantDirection", - "AssistantDirectionOutlined", - "AssistantDirectionRounded", - "AssistantDirectionSharp", - "AssistantDirectionTwoTone", - "AssistantOutlined", - "AssistantPhoto", - "AssistantPhotoOutlined", - "AssistantPhotoRounded", - "AssistantPhotoSharp", - "AssistantPhotoTwoTone", - "AssistantRounded", - "AssistantSharp", - "AssistantTwoTone", - "AssuredWorkload", - "AssuredWorkloadOutlined", - "AssuredWorkloadRounded", - "AssuredWorkloadSharp", - "AssuredWorkloadTwoTone", - "Atm", - "AtmOutlined", - "AtmRounded", - "AtmSharp", - "AtmTwoTone", - "AttachEmail", - "AttachEmailOutlined", - "AttachEmailRounded", - "AttachEmailSharp", - "AttachEmailTwoTone", - "AttachFile", - "AttachFileOutlined", - "AttachFileRounded", - "AttachFileSharp", - "AttachFileTwoTone", - "AttachMoney", - "AttachMoneyOutlined", - "AttachMoneyRounded", - "AttachMoneySharp", - "AttachMoneyTwoTone", - "Attachment", - "AttachmentOutlined", - "AttachmentRounded", - "AttachmentSharp", - "AttachmentTwoTone", - "Attractions", - "AttractionsOutlined", - "AttractionsRounded", - "AttractionsSharp", - "AttractionsTwoTone", - "Attribution", - "AttributionOutlined", - "AttributionRounded", - "AttributionSharp", - "AttributionTwoTone", - "AudioFile", - "AudioFileOutlined", - "AudioFileRounded", - "AudioFileSharp", - "AudioFileTwoTone", - "Audiotrack", - "AudiotrackOutlined", - "AudiotrackRounded", - "AudiotrackSharp", - "AudiotrackTwoTone", - "AutoAwesome", - "AutoAwesomeMosaic", - "AutoAwesomeMosaicOutlined", - "AutoAwesomeMosaicRounded", - "AutoAwesomeMosaicSharp", - "AutoAwesomeMosaicTwoTone", - "AutoAwesomeMotion", - "AutoAwesomeMotionOutlined", - "AutoAwesomeMotionRounded", - "AutoAwesomeMotionSharp", - "AutoAwesomeMotionTwoTone", - "AutoAwesomeOutlined", - "AutoAwesomeRounded", - "AutoAwesomeSharp", - "AutoAwesomeTwoTone", - "AutoDelete", - "AutoDeleteOutlined", - "AutoDeleteRounded", - "AutoDeleteSharp", - "AutoDeleteTwoTone", - "AutoFixHigh", - "AutoFixHighOutlined", - "AutoFixHighRounded", - "AutoFixHighSharp", - "AutoFixHighTwoTone", - "AutoFixNormal", - "AutoFixNormalOutlined", - "AutoFixNormalRounded", - "AutoFixNormalSharp", - "AutoFixNormalTwoTone", - "AutoFixOff", - "AutoFixOffOutlined", - "AutoFixOffRounded", - "AutoFixOffSharp", - "AutoFixOffTwoTone", - "AutoGraph", - "AutoGraphOutlined", - "AutoGraphRounded", - "AutoGraphSharp", - "AutoGraphTwoTone", - "AutoMode", - "AutoModeOutlined", - "AutoModeRounded", - "AutoModeSharp", - "AutoModeTwoTone", - "AutoStories", - "AutoStoriesOutlined", - "AutoStoriesRounded", - "AutoStoriesSharp", - "AutoStoriesTwoTone", - "AutofpsSelect", - "AutofpsSelectOutlined", - "AutofpsSelectRounded", - "AutofpsSelectSharp", - "AutofpsSelectTwoTone", - "Autorenew", - "AutorenewOutlined", - "AutorenewRounded", - "AutorenewSharp", - "AutorenewTwoTone", - "AvTimer", - "AvTimerOutlined", - "AvTimerRounded", - "AvTimerSharp", - "AvTimerTwoTone", - "BabyChangingStation", - "BabyChangingStationOutlined", - "BabyChangingStationRounded", - "BabyChangingStationSharp", - "BabyChangingStationTwoTone", - "BackHand", - "BackHandOutlined", - "BackHandRounded", - "BackHandSharp", - "BackHandTwoTone", - "Backpack", - "BackpackOutlined", - "BackpackRounded", - "BackpackSharp", - "BackpackTwoTone", - "Backspace", - "BackspaceOutlined", - "BackspaceRounded", - "BackspaceSharp", - "BackspaceTwoTone", - "Backup", - "BackupOutlined", - "BackupRounded", - "BackupSharp", - "BackupTable", - "BackupTableOutlined", - "BackupTableRounded", - "BackupTableSharp", - "BackupTableTwoTone", - "BackupTwoTone", - "Badge", - "BadgeOutlined", - "BadgeRounded", - "BadgeSharp", - "BadgeTwoTone", - "BakeryDining", - "BakeryDiningOutlined", - "BakeryDiningRounded", - "BakeryDiningSharp", - "BakeryDiningTwoTone", - "Balance", - "BalanceOutlined", - "BalanceRounded", - "BalanceSharp", - "BalanceTwoTone", - "Balcony", - "BalconyOutlined", - "BalconyRounded", - "BalconySharp", - "BalconyTwoTone", - "Ballot", - "BallotOutlined", - "BallotRounded", - "BallotSharp", - "BallotTwoTone", - "BarChart", - "BarChartOutlined", - "BarChartRounded", - "BarChartSharp", - "BarChartTwoTone", - "BatchPrediction", - "BatchPredictionOutlined", - "BatchPredictionRounded", - "BatchPredictionSharp", - "BatchPredictionTwoTone", - "Bathroom", - "BathroomOutlined", - "BathroomRounded", - "BathroomSharp", - "BathroomTwoTone", - "Bathtub", - "BathtubOutlined", - "BathtubRounded", - "BathtubSharp", - "BathtubTwoTone", - "Battery0Bar", - "Battery0BarOutlined", - "Battery0BarRounded", - "Battery0BarSharp", - "Battery0BarTwoTone", - "Battery1Bar", - "Battery1BarOutlined", - "Battery1BarRounded", - "Battery1BarSharp", - "Battery1BarTwoTone", - "Battery20", - "Battery20Outlined", - "Battery20Rounded", - "Battery20Sharp", - "Battery20TwoTone", - "Battery2Bar", - "Battery2BarOutlined", - "Battery2BarRounded", - "Battery2BarSharp", - "Battery2BarTwoTone", - "Battery30", - "Battery30Outlined", - "Battery30Rounded", - "Battery30Sharp", - "Battery30TwoTone", - "Battery3Bar", - "Battery3BarOutlined", - "Battery3BarRounded", - "Battery3BarSharp", - "Battery3BarTwoTone", - "Battery4Bar", - "Battery4BarOutlined", - "Battery4BarRounded", - "Battery4BarSharp", - "Battery4BarTwoTone", - "Battery50", - "Battery50Outlined", - "Battery50Rounded", - "Battery50Sharp", - "Battery50TwoTone", - "Battery5Bar", - "Battery5BarOutlined", - "Battery5BarRounded", - "Battery5BarSharp", - "Battery5BarTwoTone", - "Battery60", - "Battery60Outlined", - "Battery60Rounded", - "Battery60Sharp", - "Battery60TwoTone", - "Battery6Bar", - "Battery6BarOutlined", - "Battery6BarRounded", - "Battery6BarSharp", - "Battery6BarTwoTone", - "Battery80", - "Battery80Outlined", - "Battery80Rounded", - "Battery80Sharp", - "Battery80TwoTone", - "Battery90", - "Battery90Outlined", - "Battery90Rounded", - "Battery90Sharp", - "Battery90TwoTone", - "BatteryAlert", - "BatteryAlertOutlined", - "BatteryAlertRounded", - "BatteryAlertSharp", - "BatteryAlertTwoTone", - "BatteryCharging20", - "BatteryCharging20Outlined", - "BatteryCharging20Rounded", - "BatteryCharging20Sharp", - "BatteryCharging20TwoTone", - "BatteryCharging30", - "BatteryCharging30Outlined", - "BatteryCharging30Rounded", - "BatteryCharging30Sharp", - "BatteryCharging30TwoTone", - "BatteryCharging50", - "BatteryCharging50Outlined", - "BatteryCharging50Rounded", - "BatteryCharging50Sharp", - "BatteryCharging50TwoTone", - "BatteryCharging60", - "BatteryCharging60Outlined", - "BatteryCharging60Rounded", - "BatteryCharging60Sharp", - "BatteryCharging60TwoTone", - "BatteryCharging80", - "BatteryCharging80Outlined", - "BatteryCharging80Rounded", - "BatteryCharging80Sharp", - "BatteryCharging80TwoTone", - "BatteryCharging90", - "BatteryCharging90Outlined", - "BatteryCharging90Rounded", - "BatteryCharging90Sharp", - "BatteryCharging90TwoTone", - "BatteryChargingFull", - "BatteryChargingFullOutlined", - "BatteryChargingFullRounded", - "BatteryChargingFullSharp", - "BatteryChargingFullTwoTone", - "BatteryFull", - "BatteryFullOutlined", - "BatteryFullRounded", - "BatteryFullSharp", - "BatteryFullTwoTone", - "BatterySaver", - "BatterySaverOutlined", - "BatterySaverRounded", - "BatterySaverSharp", - "BatterySaverTwoTone", - "BatteryStd", - "BatteryStdOutlined", - "BatteryStdRounded", - "BatteryStdSharp", - "BatteryStdTwoTone", - "BatteryUnknown", - "BatteryUnknownOutlined", - "BatteryUnknownRounded", - "BatteryUnknownSharp", - "BatteryUnknownTwoTone", - "BeachAccess", - "BeachAccessOutlined", - "BeachAccessRounded", - "BeachAccessSharp", - "BeachAccessTwoTone", - "Bed", - "BedOutlined", - "BedRounded", - "BedSharp", - "BedTwoTone", - "BedroomBaby", - "BedroomBabyOutlined", - "BedroomBabyRounded", - "BedroomBabySharp", - "BedroomBabyTwoTone", - "BedroomChild", - "BedroomChildOutlined", - "BedroomChildRounded", - "BedroomChildSharp", - "BedroomChildTwoTone", - "BedroomParent", - "BedroomParentOutlined", - "BedroomParentRounded", - "BedroomParentSharp", - "BedroomParentTwoTone", - "Bedtime", - "BedtimeOff", - "BedtimeOffOutlined", - "BedtimeOffRounded", - "BedtimeOffSharp", - "BedtimeOffTwoTone", - "BedtimeOutlined", - "BedtimeRounded", - "BedtimeSharp", - "BedtimeTwoTone", - "Beenhere", - "BeenhereOutlined", - "BeenhereRounded", - "BeenhereSharp", - "BeenhereTwoTone", - "Bento", - "BentoOutlined", - "BentoRounded", - "BentoSharp", - "BentoTwoTone", - "BikeScooter", - "BikeScooterOutlined", - "BikeScooterRounded", - "BikeScooterSharp", - "BikeScooterTwoTone", - "Biotech", - "BiotechOutlined", - "BiotechRounded", - "BiotechSharp", - "BiotechTwoTone", - "Blender", - "BlenderOutlined", - "BlenderRounded", - "BlenderSharp", - "BlenderTwoTone", - "Blind", - "BlindOutlined", - "BlindRounded", - "BlindSharp", - "BlindTwoTone", - "Blinds", - "BlindsClosed", - "BlindsClosedOutlined", - "BlindsClosedRounded", - "BlindsClosedSharp", - "BlindsClosedTwoTone", - "BlindsOutlined", - "BlindsRounded", - "BlindsSharp", - "BlindsTwoTone", - "Block", - "BlockOutlined", - "BlockRounded", - "BlockSharp", - "BlockTwoTone", - "Bloodtype", - "BloodtypeOutlined", - "BloodtypeRounded", - "BloodtypeSharp", - "BloodtypeTwoTone", - "Bluetooth", - "BluetoothAudio", - "BluetoothAudioOutlined", - "BluetoothAudioRounded", - "BluetoothAudioSharp", - "BluetoothAudioTwoTone", - "BluetoothConnected", - "BluetoothConnectedOutlined", - "BluetoothConnectedRounded", - "BluetoothConnectedSharp", - "BluetoothConnectedTwoTone", - "BluetoothDisabled", - "BluetoothDisabledOutlined", - "BluetoothDisabledRounded", - "BluetoothDisabledSharp", - "BluetoothDisabledTwoTone", - "BluetoothDrive", - "BluetoothDriveOutlined", - "BluetoothDriveRounded", - "BluetoothDriveSharp", - "BluetoothDriveTwoTone", - "BluetoothOutlined", - "BluetoothRounded", - "BluetoothSearching", - "BluetoothSearchingOutlined", - "BluetoothSearchingRounded", - "BluetoothSearchingSharp", - "BluetoothSearchingTwoTone", - "BluetoothSharp", - "BluetoothTwoTone", - "BlurCircular", - "BlurCircularOutlined", - "BlurCircularRounded", - "BlurCircularSharp", - "BlurCircularTwoTone", - "BlurLinear", - "BlurLinearOutlined", - "BlurLinearRounded", - "BlurLinearSharp", - "BlurLinearTwoTone", - "BlurOff", - "BlurOffOutlined", - "BlurOffRounded", - "BlurOffSharp", - "BlurOffTwoTone", - "BlurOn", - "BlurOnOutlined", - "BlurOnRounded", - "BlurOnSharp", - "BlurOnTwoTone", - "Bolt", - "BoltOutlined", - "BoltRounded", - "BoltSharp", - "BoltTwoTone", - "Book", - "BookOnline", - "BookOnlineOutlined", - "BookOnlineRounded", - "BookOnlineSharp", - "BookOnlineTwoTone", - "BookOutlined", - "BookRounded", - "BookSharp", - "BookTwoTone", - "Bookmark", - "BookmarkAdd", - "BookmarkAddOutlined", - "BookmarkAddRounded", - "BookmarkAddSharp", - "BookmarkAddTwoTone", - "BookmarkAdded", - "BookmarkAddedOutlined", - "BookmarkAddedRounded", - "BookmarkAddedSharp", - "BookmarkAddedTwoTone", - "BookmarkBorder", - "BookmarkBorderOutlined", - "BookmarkBorderRounded", - "BookmarkBorderSharp", - "BookmarkBorderTwoTone", - "BookmarkOutlined", - "BookmarkRemove", - "BookmarkRemoveOutlined", - "BookmarkRemoveRounded", - "BookmarkRemoveSharp", - "BookmarkRemoveTwoTone", - "BookmarkRounded", - "BookmarkSharp", - "BookmarkTwoTone", - "Bookmarks", - "BookmarksOutlined", - "BookmarksRounded", - "BookmarksSharp", - "BookmarksTwoTone", - "BorderAll", - "BorderAllOutlined", - "BorderAllRounded", - "BorderAllSharp", - "BorderAllTwoTone", - "BorderBottom", - "BorderBottomOutlined", - "BorderBottomRounded", - "BorderBottomSharp", - "BorderBottomTwoTone", - "BorderClear", - "BorderClearOutlined", - "BorderClearRounded", - "BorderClearSharp", - "BorderClearTwoTone", - "BorderColor", - "BorderColorOutlined", - "BorderColorRounded", - "BorderColorSharp", - "BorderColorTwoTone", - "BorderHorizontal", - "BorderHorizontalOutlined", - "BorderHorizontalRounded", - "BorderHorizontalSharp", - "BorderHorizontalTwoTone", - "BorderInner", - "BorderInnerOutlined", - "BorderInnerRounded", - "BorderInnerSharp", - "BorderInnerTwoTone", - "BorderLeft", - "BorderLeftOutlined", - "BorderLeftRounded", - "BorderLeftSharp", - "BorderLeftTwoTone", - "BorderOuter", - "BorderOuterOutlined", - "BorderOuterRounded", - "BorderOuterSharp", - "BorderOuterTwoTone", - "BorderRight", - "BorderRightOutlined", - "BorderRightRounded", - "BorderRightSharp", - "BorderRightTwoTone", - "BorderStyle", - "BorderStyleOutlined", - "BorderStyleRounded", - "BorderStyleSharp", - "BorderStyleTwoTone", - "BorderTop", - "BorderTopOutlined", - "BorderTopRounded", - "BorderTopSharp", - "BorderTopTwoTone", - "BorderVertical", - "BorderVerticalOutlined", - "BorderVerticalRounded", - "BorderVerticalSharp", - "BorderVerticalTwoTone", - "Boy", - "BoyOutlined", - "BoyRounded", - "BoySharp", - "BoyTwoTone", - "BrandingWatermark", - "BrandingWatermarkOutlined", - "BrandingWatermarkRounded", - "BrandingWatermarkSharp", - "BrandingWatermarkTwoTone", - "BreakfastDining", - "BreakfastDiningOutlined", - "BreakfastDiningRounded", - "BreakfastDiningSharp", - "BreakfastDiningTwoTone", - "Brightness1", - "Brightness1Outlined", - "Brightness1Rounded", - "Brightness1Sharp", - "Brightness1TwoTone", - "Brightness2", - "Brightness2Outlined", - "Brightness2Rounded", - "Brightness2Sharp", - "Brightness2TwoTone", - "Brightness3", - "Brightness3Outlined", - "Brightness3Rounded", - "Brightness3Sharp", - "Brightness3TwoTone", - "Brightness4", - "Brightness4Outlined", - "Brightness4Rounded", - "Brightness4Sharp", - "Brightness4TwoTone", - "Brightness5", - "Brightness5Outlined", - "Brightness5Rounded", - "Brightness5Sharp", - "Brightness5TwoTone", - "Brightness6", - "Brightness6Outlined", - "Brightness6Rounded", - "Brightness6Sharp", - "Brightness6TwoTone", - "Brightness7", - "Brightness7Outlined", - "Brightness7Rounded", - "Brightness7Sharp", - "Brightness7TwoTone", - "BrightnessAuto", - "BrightnessAutoOutlined", - "BrightnessAutoRounded", - "BrightnessAutoSharp", - "BrightnessAutoTwoTone", - "BrightnessHigh", - "BrightnessHighOutlined", - "BrightnessHighRounded", - "BrightnessHighSharp", - "BrightnessHighTwoTone", - "BrightnessLow", - "BrightnessLowOutlined", - "BrightnessLowRounded", - "BrightnessLowSharp", - "BrightnessLowTwoTone", - "BrightnessMedium", - "BrightnessMediumOutlined", - "BrightnessMediumRounded", - "BrightnessMediumSharp", - "BrightnessMediumTwoTone", - "BroadcastOnHome", - "BroadcastOnHomeOutlined", - "BroadcastOnHomeRounded", - "BroadcastOnHomeSharp", - "BroadcastOnHomeTwoTone", - "BroadcastOnPersonal", - "BroadcastOnPersonalOutlined", - "BroadcastOnPersonalRounded", - "BroadcastOnPersonalSharp", - "BroadcastOnPersonalTwoTone", - "BrokenImage", - "BrokenImageOutlined", - "BrokenImageRounded", - "BrokenImageSharp", - "BrokenImageTwoTone", - "BrowseGallery", - "BrowseGalleryOutlined", - "BrowseGalleryRounded", - "BrowseGallerySharp", - "BrowseGalleryTwoTone", - "BrowserNotSupported", - "BrowserNotSupportedOutlined", - "BrowserNotSupportedRounded", - "BrowserNotSupportedSharp", - "BrowserNotSupportedTwoTone", - "BrowserUpdated", - "BrowserUpdatedOutlined", - "BrowserUpdatedRounded", - "BrowserUpdatedSharp", - "BrowserUpdatedTwoTone", - "BrunchDining", - "BrunchDiningOutlined", - "BrunchDiningRounded", - "BrunchDiningSharp", - "BrunchDiningTwoTone", - "Brush", - "BrushOutlined", - "BrushRounded", - "BrushSharp", - "BrushTwoTone", - "BubbleChart", - "BubbleChartOutlined", - "BubbleChartRounded", - "BubbleChartSharp", - "BubbleChartTwoTone", - "BugReport", - "BugReportOutlined", - "BugReportRounded", - "BugReportSharp", - "BugReportTwoTone", - "Build", - "BuildCircle", - "BuildCircleOutlined", - "BuildCircleRounded", - "BuildCircleSharp", - "BuildCircleTwoTone", - "BuildOutlined", - "BuildRounded", - "BuildSharp", - "BuildTwoTone", - "Bungalow", - "BungalowOutlined", - "BungalowRounded", - "BungalowSharp", - "BungalowTwoTone", - "BurstMode", - "BurstModeOutlined", - "BurstModeRounded", - "BurstModeSharp", - "BurstModeTwoTone", - "BusAlert", - "BusAlertOutlined", - "BusAlertRounded", - "BusAlertSharp", - "BusAlertTwoTone", - "Business", - "BusinessCenter", - "BusinessCenterOutlined", - "BusinessCenterRounded", - "BusinessCenterSharp", - "BusinessCenterTwoTone", - "BusinessOutlined", - "BusinessRounded", - "BusinessSharp", - "BusinessTwoTone", - "Cabin", - "CabinOutlined", - "CabinRounded", - "CabinSharp", - "CabinTwoTone", - "Cable", - "CableOutlined", - "CableRounded", - "CableSharp", - "CableTwoTone", - "Cached", - "CachedOutlined", - "CachedRounded", - "CachedSharp", - "CachedTwoTone", - "Cake", - "CakeOutlined", - "CakeRounded", - "CakeSharp", - "CakeTwoTone", - "Calculate", - "CalculateOutlined", - "CalculateRounded", - "CalculateSharp", - "CalculateTwoTone", - "CalendarMonth", - "CalendarMonthOutlined", - "CalendarMonthRounded", - "CalendarMonthSharp", - "CalendarMonthTwoTone", - "CalendarToday", - "CalendarTodayOutlined", - "CalendarTodayRounded", - "CalendarTodaySharp", - "CalendarTodayTwoTone", - "CalendarViewDay", - "CalendarViewDayOutlined", - "CalendarViewDayRounded", - "CalendarViewDaySharp", - "CalendarViewDayTwoTone", - "CalendarViewMonth", - "CalendarViewMonthOutlined", - "CalendarViewMonthRounded", - "CalendarViewMonthSharp", - "CalendarViewMonthTwoTone", - "CalendarViewWeek", - "CalendarViewWeekOutlined", - "CalendarViewWeekRounded", - "CalendarViewWeekSharp", - "CalendarViewWeekTwoTone", - "Call", - "CallEnd", - "CallEndOutlined", - "CallEndRounded", - "CallEndSharp", - "CallEndTwoTone", - "CallMade", - "CallMadeOutlined", - "CallMadeRounded", - "CallMadeSharp", - "CallMadeTwoTone", - "CallMerge", - "CallMergeOutlined", - "CallMergeRounded", - "CallMergeSharp", - "CallMergeTwoTone", - "CallMissed", - "CallMissedOutgoing", - "CallMissedOutgoingOutlined", - "CallMissedOutgoingRounded", - "CallMissedOutgoingSharp", - "CallMissedOutgoingTwoTone", - "CallMissedOutlined", - "CallMissedRounded", - "CallMissedSharp", - "CallMissedTwoTone", - "CallOutlined", - "CallReceived", - "CallReceivedOutlined", - "CallReceivedRounded", - "CallReceivedSharp", - "CallReceivedTwoTone", - "CallRounded", - "CallSharp", - "CallSplit", - "CallSplitOutlined", - "CallSplitRounded", - "CallSplitSharp", - "CallSplitTwoTone", - "CallToAction", - "CallToActionOutlined", - "CallToActionRounded", - "CallToActionSharp", - "CallToActionTwoTone", - "CallTwoTone", - "Camera", - "CameraAlt", - "CameraAltOutlined", - "CameraAltRounded", - "CameraAltSharp", - "CameraAltTwoTone", - "CameraEnhance", - "CameraEnhanceOutlined", - "CameraEnhanceRounded", - "CameraEnhanceSharp", - "CameraEnhanceTwoTone", - "CameraFront", - "CameraFrontOutlined", - "CameraFrontRounded", - "CameraFrontSharp", - "CameraFrontTwoTone", - "CameraIndoor", - "CameraIndoorOutlined", - "CameraIndoorRounded", - "CameraIndoorSharp", - "CameraIndoorTwoTone", - "CameraOutdoor", - "CameraOutdoorOutlined", - "CameraOutdoorRounded", - "CameraOutdoorSharp", - "CameraOutdoorTwoTone", - "CameraOutlined", - "CameraRear", - "CameraRearOutlined", - "CameraRearRounded", - "CameraRearSharp", - "CameraRearTwoTone", - "CameraRoll", - "CameraRollOutlined", - "CameraRollRounded", - "CameraRollSharp", - "CameraRollTwoTone", - "CameraRounded", - "CameraSharp", - "CameraTwoTone", - "Cameraswitch", - "CameraswitchOutlined", - "CameraswitchRounded", - "CameraswitchSharp", - "CameraswitchTwoTone", - "Campaign", - "CampaignOutlined", - "CampaignRounded", - "CampaignSharp", - "CampaignTwoTone", - "Cancel", - "CancelOutlined", - "CancelPresentation", - "CancelPresentationOutlined", - "CancelPresentationRounded", - "CancelPresentationSharp", - "CancelPresentationTwoTone", - "CancelRounded", - "CancelScheduleSend", - "CancelScheduleSendOutlined", - "CancelScheduleSendRounded", - "CancelScheduleSendSharp", - "CancelScheduleSendTwoTone", - "CancelSharp", - "CancelTwoTone", - "CandlestickChart", - "CandlestickChartOutlined", - "CandlestickChartRounded", - "CandlestickChartSharp", - "CandlestickChartTwoTone", - "CarCrash", - "CarCrashOutlined", - "CarCrashRounded", - "CarCrashSharp", - "CarCrashTwoTone", - "CarRental", - "CarRentalOutlined", - "CarRentalRounded", - "CarRentalSharp", - "CarRentalTwoTone", - "CarRepair", - "CarRepairOutlined", - "CarRepairRounded", - "CarRepairSharp", - "CarRepairTwoTone", - "CardGiftcard", - "CardGiftcardOutlined", - "CardGiftcardRounded", - "CardGiftcardSharp", - "CardGiftcardTwoTone", - "CardMembership", - "CardMembershipOutlined", - "CardMembershipRounded", - "CardMembershipSharp", - "CardMembershipTwoTone", - "CardTravel", - "CardTravelOutlined", - "CardTravelRounded", - "CardTravelSharp", - "CardTravelTwoTone", - "Carpenter", - "CarpenterOutlined", - "CarpenterRounded", - "CarpenterSharp", - "CarpenterTwoTone", - "Cases", - "CasesOutlined", - "CasesRounded", - "CasesSharp", - "CasesTwoTone", - "Casino", - "CasinoOutlined", - "CasinoRounded", - "CasinoSharp", - "CasinoTwoTone", - "Cast", - "CastConnected", - "CastConnectedOutlined", - "CastConnectedRounded", - "CastConnectedSharp", - "CastConnectedTwoTone", - "CastForEducation", - "CastForEducationOutlined", - "CastForEducationRounded", - "CastForEducationSharp", - "CastForEducationTwoTone", - "CastOutlined", - "CastRounded", - "CastSharp", - "CastTwoTone", - "Castle", - "CastleOutlined", - "CastleRounded", - "CastleSharp", - "CastleTwoTone", - - "Category", - "CategoryOutlined", - "CategoryRounded", - "CategorySharp", - "CategoryTwoTone", - "Celebration", - "CelebrationOutlined", - "CelebrationRounded", - "CelebrationSharp", - "CelebrationTwoTone", - "CellTower", - "CellTowerOutlined", - "CellTowerRounded", - "CellTowerSharp", - "CellTowerTwoTone", - "CellWifi", - "CellWifiOutlined", - "CellWifiRounded", - "CellWifiSharp", - "CellWifiTwoTone", - "CenterFocusStrong", - "CenterFocusStrongOutlined", - "CenterFocusStrongRounded", - "CenterFocusStrongSharp", - "CenterFocusStrongTwoTone", - "CenterFocusWeak", - "CenterFocusWeakOutlined", - "CenterFocusWeakRounded", - "CenterFocusWeakSharp", - "CenterFocusWeakTwoTone", - "Chair", - "ChairAlt", - "ChairAltOutlined", - "ChairAltRounded", - "ChairAltSharp", - "ChairAltTwoTone", - "ChairOutlined", - "ChairRounded", - "ChairSharp", - "ChairTwoTone", - "Chalet", - "ChaletOutlined", - "ChaletRounded", - "ChaletSharp", - "ChaletTwoTone", - "ChangeCircle", - "ChangeCircleOutlined", - "ChangeCircleRounded", - "ChangeCircleSharp", - "ChangeCircleTwoTone", - "ChangeHistory", - "ChangeHistoryOutlined", - "ChangeHistoryRounded", - "ChangeHistorySharp", - "ChangeHistoryTwoTone", - "ChargingStation", - "ChargingStationOutlined", - "ChargingStationRounded", - "ChargingStationSharp", - "ChargingStationTwoTone", - "Chat", - "ChatBubble", - "ChatBubbleOutline", - "ChatBubbleOutlineOutlined", - "ChatBubbleOutlineRounded", - "ChatBubbleOutlineSharp", - "ChatBubbleOutlineTwoTone", - "ChatBubbleOutlined", - "ChatBubbleRounded", - "ChatBubbleSharp", - "ChatBubbleTwoTone", - "ChatOutlined", - "ChatRounded", - "ChatSharp", - "ChatTwoTone", - "Check", - "CheckBox", - "CheckBoxOutlineBlank", - "CheckBoxOutlineBlankOutlined", - "CheckBoxOutlineBlankRounded", - "CheckBoxOutlineBlankSharp", - "CheckBoxOutlineBlankTwoTone", - "CheckBoxOutlined", - "CheckBoxRounded", - "CheckBoxSharp", - "CheckBoxTwoTone", - "CheckCircle", - "CheckCircleOutline", - "CheckCircleOutlineOutlined", - "CheckCircleOutlineRounded", - "CheckCircleOutlineSharp", - "CheckCircleOutlineTwoTone", - "CheckCircleOutlined", - "CheckCircleRounded", - "CheckCircleSharp", - "CheckCircleTwoTone", - "CheckOutlined", - "CheckRounded", - "CheckSharp", - "CheckTwoTone", - "Checklist", - "ChecklistOutlined", - "ChecklistRounded", - "ChecklistRtl", - "ChecklistRtlOutlined", - "ChecklistRtlRounded", - "ChecklistRtlSharp", - "ChecklistRtlTwoTone", - "ChecklistSharp", - "ChecklistTwoTone", - "Checkroom", - "CheckroomOutlined", - "CheckroomRounded", - "CheckroomSharp", - "CheckroomTwoTone", - "ChevronLeft", - "ChevronLeftOutlined", - "ChevronLeftRounded", - "ChevronLeftSharp", - "ChevronLeftTwoTone", - "ChevronRight", - "ChevronRightOutlined", - "ChevronRightRounded", - "ChevronRightSharp", - "ChevronRightTwoTone", - "ChildCare", - "ChildCareOutlined", - "ChildCareRounded", - "ChildCareSharp", - "ChildCareTwoTone", - "ChildFriendly", - "ChildFriendlyOutlined", - "ChildFriendlyRounded", - "ChildFriendlySharp", - "ChildFriendlyTwoTone", - "ChromeReaderMode", - "ChromeReaderModeOutlined", - "ChromeReaderModeRounded", - "ChromeReaderModeSharp", - "ChromeReaderModeTwoTone", - "Church", - "ChurchOutlined", - "ChurchRounded", - "ChurchSharp", - "ChurchTwoTone", - "Circle", - "CircleNotifications", - "CircleNotificationsOutlined", - "CircleNotificationsRounded", - "CircleNotificationsSharp", - "CircleNotificationsTwoTone", - "CircleOutlined", - "CircleRounded", - "CircleSharp", - "CircleTwoTone", - "Class", - "ClassOutlined", - "ClassRounded", - "ClassSharp", - "ClassTwoTone", - "CleanHands", - "CleanHandsOutlined", - "CleanHandsRounded", - "CleanHandsSharp", - "CleanHandsTwoTone", - "CleaningServices", - "CleaningServicesOutlined", - "CleaningServicesRounded", - "CleaningServicesSharp", - "CleaningServicesTwoTone", - "Clear", - "ClearAll", - "ClearAllOutlined", - "ClearAllRounded", - "ClearAllSharp", - "ClearAllTwoTone", - "ClearOutlined", - "ClearRounded", - "ClearSharp", - "ClearTwoTone", - "Close", - "CloseFullscreen", - "CloseFullscreenOutlined", - "CloseFullscreenRounded", - "CloseFullscreenSharp", - "CloseFullscreenTwoTone", - "CloseOutlined", - "CloseRounded", - "CloseSharp", - "CloseTwoTone", - "ClosedCaption", - "ClosedCaptionDisabled", - "ClosedCaptionDisabledOutlined", - "ClosedCaptionDisabledRounded", - "ClosedCaptionDisabledSharp", - "ClosedCaptionDisabledTwoTone", - "ClosedCaptionOff", - "ClosedCaptionOffOutlined", - "ClosedCaptionOffRounded", - "ClosedCaptionOffSharp", - "ClosedCaptionOffTwoTone", - "ClosedCaptionOutlined", - "ClosedCaptionRounded", - "ClosedCaptionSharp", - "ClosedCaptionTwoTone", - "Cloud", - "CloudCircle", - "CloudCircleOutlined", - "CloudCircleRounded", - "CloudCircleSharp", - "CloudCircleTwoTone", - "CloudDone", - "CloudDoneOutlined", - "CloudDoneRounded", - "CloudDoneSharp", - "CloudDoneTwoTone", - "CloudDownload", - "CloudDownloadOutlined", - "CloudDownloadRounded", - "CloudDownloadSharp", - "CloudDownloadTwoTone", - "CloudOff", - "CloudOffOutlined", - "CloudOffRounded", - "CloudOffSharp", - "CloudOffTwoTone", - "CloudOutlined", - "CloudQueue", - "CloudQueueOutlined", - "CloudQueueRounded", - "CloudQueueSharp", - "CloudQueueTwoTone", - "CloudRounded", - "CloudSharp", - "CloudSync", - "CloudSyncOutlined", - "CloudSyncRounded", - "CloudSyncSharp", - "CloudSyncTwoTone", - "CloudTwoTone", - "CloudUpload", - "CloudUploadOutlined", - "CloudUploadRounded", - "CloudUploadSharp", - "CloudUploadTwoTone", - "CoPresent", - "CoPresentOutlined", - "CoPresentRounded", - "CoPresentSharp", - "CoPresentTwoTone", - "Code", - "CodeOff", - "CodeOffOutlined", - "CodeOffRounded", - "CodeOffSharp", - "CodeOffTwoTone", - "CodeOutlined", - "CodeRounded", - "CodeSharp", - "CodeTwoTone", - "Coffee", - "CoffeeMaker", - "CoffeeMakerOutlined", - "CoffeeMakerRounded", - "CoffeeMakerSharp", - "CoffeeMakerTwoTone", - "CoffeeOutlined", - "CoffeeRounded", - "CoffeeSharp", - "CoffeeTwoTone", - "Collections", - "CollectionsBookmark", - "CollectionsBookmarkOutlined", - "CollectionsBookmarkRounded", - "CollectionsBookmarkSharp", - "CollectionsBookmarkTwoTone", - "CollectionsOutlined", - "CollectionsRounded", - "CollectionsSharp", - "CollectionsTwoTone", - "ColorLens", - "ColorLensOutlined", - "ColorLensRounded", - "ColorLensSharp", - "ColorLensTwoTone", - "Colorize", - "ColorizeOutlined", - "ColorizeRounded", - "ColorizeSharp", - "ColorizeTwoTone", - "Comment", - "CommentBank", - "CommentBankOutlined", - "CommentBankRounded", - "CommentBankSharp", - "CommentBankTwoTone", - "CommentOutlined", - "CommentRounded", - "CommentSharp", - "CommentTwoTone", - "CommentsDisabled", - "CommentsDisabledOutlined", - "CommentsDisabledRounded", - "CommentsDisabledSharp", - "CommentsDisabledTwoTone", - "Commit", - "CommitOutlined", - "CommitRounded", - "CommitSharp", - "CommitTwoTone", - "Commute", - "CommuteOutlined", - "CommuteRounded", - "CommuteSharp", - "CommuteTwoTone", - "Compare", - "CompareArrows", - "CompareArrowsOutlined", - "CompareArrowsRounded", - "CompareArrowsSharp", - "CompareArrowsTwoTone", - "CompareOutlined", - "CompareRounded", - "CompareSharp", - "CompareTwoTone", - "CompassCalibration", - "CompassCalibrationOutlined", - "CompassCalibrationRounded", - "CompassCalibrationSharp", - "CompassCalibrationTwoTone", - "Compress", - "CompressOutlined", - "CompressRounded", - "CompressSharp", - "CompressTwoTone", - "Computer", - "ComputerOutlined", - "ComputerRounded", - "ComputerSharp", - "ComputerTwoTone", - "ConfirmationNumber", - "ConfirmationNumberOutlined", - "ConfirmationNumberRounded", - "ConfirmationNumberSharp", - "ConfirmationNumberTwoTone", - "ConnectWithoutContact", - "ConnectWithoutContactOutlined", - "ConnectWithoutContactRounded", - "ConnectWithoutContactSharp", - "ConnectWithoutContactTwoTone", - "ConnectedTv", - "ConnectedTvOutlined", - "ConnectedTvRounded", - "ConnectedTvSharp", - "ConnectedTvTwoTone", - "ConnectingAirports", - "ConnectingAirportsOutlined", - "ConnectingAirportsRounded", - "ConnectingAirportsSharp", - "ConnectingAirportsTwoTone", - "Construction", - "ConstructionOutlined", - "ConstructionRounded", - "ConstructionSharp", - "ConstructionTwoTone", - "ContactEmergency", - "ContactEmergencyOutlined", - "ContactEmergencyRounded", - "ContactEmergencySharp", - "ContactEmergencyTwoTone", - "ContactMail", - "ContactMailOutlined", - "ContactMailRounded", - "ContactMailSharp", - "ContactMailTwoTone", - "ContactPage", - "ContactPageOutlined", - "ContactPageRounded", - "ContactPageSharp", - "ContactPageTwoTone", - "ContactPhone", - "ContactPhoneOutlined", - "ContactPhoneRounded", - "ContactPhoneSharp", - "ContactPhoneTwoTone", - "ContactSupport", - "ContactSupportOutlined", - "ContactSupportRounded", - "ContactSupportSharp", - "ContactSupportTwoTone", - "Contactless", - "ContactlessOutlined", - "ContactlessRounded", - "ContactlessSharp", - "ContactlessTwoTone", - "Contacts", - "ContactsOutlined", - "ContactsRounded", - "ContactsSharp", - "ContactsTwoTone", - "ContentCopy", - "ContentCopyOutlined", - "ContentCopyRounded", - "ContentCopySharp", - "ContentCopyTwoTone", - "ContentCut", - "ContentCutOutlined", - "ContentCutRounded", - "ContentCutSharp", - "ContentCutTwoTone", - "ContentPaste", - "ContentPasteGo", - "ContentPasteGoOutlined", - "ContentPasteGoRounded", - "ContentPasteGoSharp", - "ContentPasteGoTwoTone", - "ContentPasteOff", - "ContentPasteOffOutlined", - "ContentPasteOffRounded", - "ContentPasteOffSharp", - "ContentPasteOffTwoTone", - "ContentPasteOutlined", - "ContentPasteRounded", - "ContentPasteSearch", - "ContentPasteSearchOutlined", - "ContentPasteSearchRounded", - "ContentPasteSearchSharp", - "ContentPasteSearchTwoTone", - "ContentPasteSharp", - "ContentPasteTwoTone", - "Contrast", - "ContrastOutlined", - "ContrastRounded", - "ContrastSharp", - "ContrastTwoTone", - "ControlCamera", - "ControlCameraOutlined", - "ControlCameraRounded", - "ControlCameraSharp", - "ControlCameraTwoTone", - "ControlPoint", - "ControlPointDuplicate", - "ControlPointDuplicateOutlined", - "ControlPointDuplicateRounded", - "ControlPointDuplicateSharp", - "ControlPointDuplicateTwoTone", - "ControlPointOutlined", - "ControlPointRounded", - "ControlPointSharp", - "ControlPointTwoTone", - "Cookie", - "CookieOutlined", - "CookieRounded", - "CookieSharp", - "CookieTwoTone", - "CopyAll", - "CopyAllOutlined", - "CopyAllRounded", - "CopyAllSharp", - "CopyAllTwoTone", - "Copyright", - "CopyrightOutlined", - "CopyrightRounded", - "CopyrightSharp", - "CopyrightTwoTone", - "Coronavirus", - "CoronavirusOutlined", - "CoronavirusRounded", - "CoronavirusSharp", - "CoronavirusTwoTone", - "CorporateFare", - "CorporateFareOutlined", - "CorporateFareRounded", - "CorporateFareSharp", - "CorporateFareTwoTone", - "Cottage", - "CottageOutlined", - "CottageRounded", - "CottageSharp", - "CottageTwoTone", - "Countertops", - "CountertopsOutlined", - "CountertopsRounded", - "CountertopsSharp", - "CountertopsTwoTone", - "Create", - "CreateNewFolder", - "CreateNewFolderOutlined", - "CreateNewFolderRounded", - "CreateNewFolderSharp", - "CreateNewFolderTwoTone", - "CreateOutlined", - "CreateRounded", - "CreateSharp", - "CreateTwoTone", - "CreditCard", - "CreditCardOff", - "CreditCardOffOutlined", - "CreditCardOffRounded", - "CreditCardOffSharp", - "CreditCardOffTwoTone", - "CreditCardOutlined", - "CreditCardRounded", - "CreditCardSharp", - "CreditCardTwoTone", - "CreditScore", - "CreditScoreOutlined", - "CreditScoreRounded", - "CreditScoreSharp", - "CreditScoreTwoTone", - "Crib", - "CribOutlined", - "CribRounded", - "CribSharp", - "CribTwoTone", - "CrisisAlert", - "CrisisAlertOutlined", - "CrisisAlertRounded", - "CrisisAlertSharp", - "CrisisAlertTwoTone", - "Crop", - "CropDin", - "CropDinOutlined", - "CropDinRounded", - "CropDinSharp", - "CropDinTwoTone", - "CropFree", - "CropFreeOutlined", - "CropFreeRounded", - "CropFreeSharp", - "CropFreeTwoTone", - "CropLandscape", - "CropLandscapeOutlined", - "CropLandscapeRounded", - "CropLandscapeSharp", - "CropLandscapeTwoTone", - "CropOriginal", - "CropOriginalOutlined", - "CropOriginalRounded", - "CropOriginalSharp", - "CropOriginalTwoTone", - "CropOutlined", - "CropPortrait", - "CropPortraitOutlined", - "CropPortraitRounded", - "CropPortraitSharp", - "CropPortraitTwoTone", - "CropRotate", - "CropRotateOutlined", - "CropRotateRounded", - "CropRotateSharp", - "CropRotateTwoTone", - "CropRounded", - "CropSharp", - "CropSquare", - "CropSquareOutlined", - "CropSquareRounded", - "CropSquareSharp", - "CropSquareTwoTone", - "CropTwoTone", - "Css", - "CssOutlined", - "CssRounded", - "CssSharp", - "CssTwoTone", - "CurrencyBitcoin", - "CurrencyBitcoinOutlined", - "CurrencyBitcoinRounded", - "CurrencyBitcoinSharp", - "CurrencyBitcoinTwoTone", - "CurrencyExchange", - "CurrencyExchangeOutlined", - "CurrencyExchangeRounded", - "CurrencyExchangeSharp", - "CurrencyExchangeTwoTone", - "CurrencyFranc", - "CurrencyFrancOutlined", - "CurrencyFrancRounded", - "CurrencyFrancSharp", - "CurrencyFrancTwoTone", - "CurrencyLira", - "CurrencyLiraOutlined", - "CurrencyLiraRounded", - "CurrencyLiraSharp", - "CurrencyLiraTwoTone", - "CurrencyPound", - "CurrencyPoundOutlined", - "CurrencyPoundRounded", - "CurrencyPoundSharp", - "CurrencyPoundTwoTone", - "CurrencyRuble", - "CurrencyRubleOutlined", - "CurrencyRubleRounded", - "CurrencyRubleSharp", - "CurrencyRubleTwoTone", - "CurrencyRupee", - "CurrencyRupeeOutlined", - "CurrencyRupeeRounded", - "CurrencyRupeeSharp", - "CurrencyRupeeTwoTone", - "CurrencyYen", - "CurrencyYenOutlined", - "CurrencyYenRounded", - "CurrencyYenSharp", - "CurrencyYenTwoTone", - "CurrencyYuan", - "CurrencyYuanOutlined", - "CurrencyYuanRounded", - "CurrencyYuanSharp", - "CurrencyYuanTwoTone", - "Curtains", - "CurtainsClosed", - "CurtainsClosedOutlined", - "CurtainsClosedRounded", - "CurtainsClosedSharp", - "CurtainsClosedTwoTone", - "CurtainsOutlined", - "CurtainsRounded", - "CurtainsSharp", - "CurtainsTwoTone", - "Cyclone", - "CycloneOutlined", - "CycloneRounded", - "CycloneSharp", - "CycloneTwoTone", - "Dangerous", - "DangerousOutlined", - "DangerousRounded", - "DangerousSharp", - "DangerousTwoTone", - "DarkMode", - "DarkModeOutlined", - "DarkModeRounded", - "DarkModeSharp", - "DarkModeTwoTone", - "Dashboard", - "DashboardCustomize", - "DashboardCustomizeOutlined", - "DashboardCustomizeRounded", - "DashboardCustomizeSharp", - "DashboardCustomizeTwoTone", - "DashboardOutlined", - "DashboardRounded", - "DashboardSharp", - "DashboardTwoTone", - "DataArray", - "DataArrayOutlined", - "DataArrayRounded", - "DataArraySharp", - "DataArrayTwoTone", - "DataObject", - "DataObjectOutlined", - "DataObjectRounded", - "DataObjectSharp", - "DataObjectTwoTone", - "DataSaverOff", - "DataSaverOffOutlined", - "DataSaverOffRounded", - "DataSaverOffSharp", - "DataSaverOffTwoTone", - "DataSaverOn", - "DataSaverOnOutlined", - "DataSaverOnRounded", - "DataSaverOnSharp", - "DataSaverOnTwoTone", - "DataThresholding", - "DataThresholdingOutlined", - "DataThresholdingRounded", - "DataThresholdingSharp", - "DataThresholdingTwoTone", - "DataUsage", - "DataUsageOutlined", - "DataUsageRounded", - "DataUsageSharp", - "DataUsageTwoTone", - "Dataset", - "DatasetLinked", - "DatasetLinkedOutlined", - "DatasetLinkedRounded", - "DatasetLinkedSharp", - "DatasetLinkedTwoTone", - "DatasetOutlined", - "DatasetRounded", - "DatasetSharp", - "DatasetTwoTone", - "DateRange", - "DateRangeOutlined", - "DateRangeRounded", - "DateRangeSharp", - "DateRangeTwoTone", - "Deblur", - "DeblurOutlined", - "DeblurRounded", - "DeblurSharp", - "DeblurTwoTone", - "Deck", - "DeckOutlined", - "DeckRounded", - "DeckSharp", - "DeckTwoTone", - "Dehaze", - "DehazeOutlined", - "DehazeRounded", - "DehazeSharp", - "DehazeTwoTone", - "Delete", - "DeleteForever", - "DeleteForeverOutlined", - "DeleteForeverRounded", - "DeleteForeverSharp", - "DeleteForeverTwoTone", - "DeleteOutline", - "DeleteOutlineOutlined", - "DeleteOutlineRounded", - "DeleteOutlineSharp", - "DeleteOutlineTwoTone", - "DeleteOutlined", - "DeleteRounded", - "DeleteSharp", - "DeleteSweep", - "DeleteSweepOutlined", - "DeleteSweepRounded", - "DeleteSweepSharp", - "DeleteSweepTwoTone", - "DeleteTwoTone", - "DensityLarge", - "DensityLargeOutlined", - "DensityLargeRounded", - "DensityLargeSharp", - "DensityLargeTwoTone", - "DensityMedium", - "DensityMediumOutlined", - "DensityMediumRounded", - "DensityMediumSharp", - "DensityMediumTwoTone", - "DensitySmall", - "DensitySmallOutlined", - "DensitySmallRounded", - "DensitySmallSharp", - "DensitySmallTwoTone", - "DepartureBoard", - "DepartureBoardOutlined", - "DepartureBoardRounded", - "DepartureBoardSharp", - "DepartureBoardTwoTone", - "Description", - "DescriptionOutlined", - "DescriptionRounded", - "DescriptionSharp", - "DescriptionTwoTone", - "Deselect", - "DeselectOutlined", - "DeselectRounded", - "DeselectSharp", - "DeselectTwoTone", - "DesignServices", - "DesignServicesOutlined", - "DesignServicesRounded", - "DesignServicesSharp", - "DesignServicesTwoTone", - "Desk", - "DeskOutlined", - "DeskRounded", - "DeskSharp", - "DeskTwoTone", - "DesktopAccessDisabled", - "DesktopAccessDisabledOutlined", - "DesktopAccessDisabledRounded", - "DesktopAccessDisabledSharp", - "DesktopAccessDisabledTwoTone", - "DesktopMac", - "DesktopMacOutlined", - "DesktopMacRounded", - "DesktopMacSharp", - "DesktopMacTwoTone", - "DesktopWindows", - "DesktopWindowsOutlined", - "DesktopWindowsRounded", - "DesktopWindowsSharp", - "DesktopWindowsTwoTone", - "Details", - "DetailsOutlined", - "DetailsRounded", - "DetailsSharp", - "DetailsTwoTone", - "DeveloperBoard", - "DeveloperBoardOff", - "DeveloperBoardOffOutlined", - "DeveloperBoardOffRounded", - "DeveloperBoardOffSharp", - "DeveloperBoardOffTwoTone", - "DeveloperBoardOutlined", - "DeveloperBoardRounded", - "DeveloperBoardSharp", - "DeveloperBoardTwoTone", - "DeveloperMode", - "DeveloperModeOutlined", - "DeveloperModeRounded", - "DeveloperModeSharp", - "DeveloperModeTwoTone", - "DeviceHub", - "DeviceHubOutlined", - "DeviceHubRounded", - "DeviceHubSharp", - "DeviceHubTwoTone", - "DeviceThermostat", - "DeviceThermostatOutlined", - "DeviceThermostatRounded", - "DeviceThermostatSharp", - "DeviceThermostatTwoTone", - "DeviceUnknown", - "DeviceUnknownOutlined", - "DeviceUnknownRounded", - "DeviceUnknownSharp", - "DeviceUnknownTwoTone", - "Devices", - "DevicesFold", - "DevicesFoldOutlined", - "DevicesFoldRounded", - "DevicesFoldSharp", - "DevicesFoldTwoTone", - "DevicesOther", - "DevicesOtherOutlined", - "DevicesOtherRounded", - "DevicesOtherSharp", - "DevicesOtherTwoTone", - "DevicesOutlined", - "DevicesRounded", - "DevicesSharp", - "DevicesTwoTone", - "DialerSip", - "DialerSipOutlined", - "DialerSipRounded", - "DialerSipSharp", - "DialerSipTwoTone", - "Dialpad", - "DialpadOutlined", - "DialpadRounded", - "DialpadSharp", - "DialpadTwoTone", - "Diamond", - "DiamondOutlined", - "DiamondRounded", - "DiamondSharp", - "DiamondTwoTone", - "Difference", - "DifferenceOutlined", - "DifferenceRounded", - "DifferenceSharp", - "DifferenceTwoTone", - "Dining", - "DiningOutlined", - "DiningRounded", - "DiningSharp", - "DiningTwoTone", - "DinnerDining", - "DinnerDiningOutlined", - "DinnerDiningRounded", - "DinnerDiningSharp", - "DinnerDiningTwoTone", - "Directions", - "DirectionsBike", - "DirectionsBikeOutlined", - "DirectionsBikeRounded", - "DirectionsBikeSharp", - "DirectionsBikeTwoTone", - "DirectionsBoat", - "DirectionsBoatFilled", - "DirectionsBoatFilledOutlined", - "DirectionsBoatFilledRounded", - "DirectionsBoatFilledSharp", - "DirectionsBoatFilledTwoTone", - "DirectionsBoatOutlined", - "DirectionsBoatRounded", - "DirectionsBoatSharp", - "DirectionsBoatTwoTone", - "DirectionsBus", - "DirectionsBusFilled", - "DirectionsBusFilledOutlined", - "DirectionsBusFilledRounded", - "DirectionsBusFilledSharp", - "DirectionsBusFilledTwoTone", - "DirectionsBusOutlined", - "DirectionsBusRounded", - "DirectionsBusSharp", - "DirectionsBusTwoTone", - "DirectionsCar", - "DirectionsCarFilled", - "DirectionsCarFilledOutlined", - "DirectionsCarFilledRounded", - "DirectionsCarFilledSharp", - "DirectionsCarFilledTwoTone", - "DirectionsCarOutlined", - "DirectionsCarRounded", - "DirectionsCarSharp", - "DirectionsCarTwoTone", - "DirectionsOff", - "DirectionsOffOutlined", - "DirectionsOffRounded", - "DirectionsOffSharp", - "DirectionsOffTwoTone", - "DirectionsOutlined", - "DirectionsRailway", - "DirectionsRailwayFilled", - "DirectionsRailwayFilledOutlined", - "DirectionsRailwayFilledRounded", - "DirectionsRailwayFilledSharp", - "DirectionsRailwayFilledTwoTone", - "DirectionsRailwayOutlined", - "DirectionsRailwayRounded", - "DirectionsRailwaySharp", - "DirectionsRailwayTwoTone", - "DirectionsRounded", - "DirectionsRun", - "DirectionsRunOutlined", - "DirectionsRunRounded", - "DirectionsRunSharp", - "DirectionsRunTwoTone", - "DirectionsSharp", - "DirectionsSubway", - "DirectionsSubwayFilled", - "DirectionsSubwayFilledOutlined", - "DirectionsSubwayFilledRounded", - "DirectionsSubwayFilledSharp", - "DirectionsSubwayFilledTwoTone", - "DirectionsSubwayOutlined", - "DirectionsSubwayRounded", - "DirectionsSubwaySharp", - "DirectionsSubwayTwoTone", - "DirectionsTransit", - "DirectionsTransitFilled", - "DirectionsTransitFilledOutlined", - "DirectionsTransitFilledRounded", - "DirectionsTransitFilledSharp", - "DirectionsTransitFilledTwoTone", - "DirectionsTransitOutlined", - "DirectionsTransitRounded", - "DirectionsTransitSharp", - "DirectionsTransitTwoTone", - "DirectionsTwoTone", - "DirectionsWalk", - "DirectionsWalkOutlined", - "DirectionsWalkRounded", - "DirectionsWalkSharp", - "DirectionsWalkTwoTone", - "DirtyLens", - "DirtyLensOutlined", - "DirtyLensRounded", - "DirtyLensSharp", - "DirtyLensTwoTone", - "DisabledByDefault", - "DisabledByDefaultOutlined", - "DisabledByDefaultRounded", - "DisabledByDefaultSharp", - "DisabledByDefaultTwoTone", - "DiscFull", - "DiscFullOutlined", - "DiscFullRounded", - "DiscFullSharp", - "DiscFullTwoTone", - "DisplaySettings", - "DisplaySettingsOutlined", - "DisplaySettingsRounded", - "DisplaySettingsSharp", - "DisplaySettingsTwoTone", - "Diversity1", - "Diversity1Outlined", - "Diversity1Rounded", - "Diversity1Sharp", - "Diversity1TwoTone", - "Diversity2", - "Diversity2Outlined", - "Diversity2Rounded", - "Diversity2Sharp", - "Diversity2TwoTone", - "Diversity3", - "Diversity3Outlined", - "Diversity3Rounded", - "Diversity3Sharp", - "Diversity3TwoTone", - "Dns", - "DnsOutlined", - "DnsRounded", - "DnsSharp", - "DnsTwoTone", - "DoDisturb", - "DoDisturbAlt", - "DoDisturbAltOutlined", - "DoDisturbAltRounded", - "DoDisturbAltSharp", - "DoDisturbAltTwoTone", - "DoDisturbOff", - "DoDisturbOffOutlined", - "DoDisturbOffRounded", - "DoDisturbOffSharp", - "DoDisturbOffTwoTone", - "DoDisturbOn", - "DoDisturbOnOutlined", - "DoDisturbOnRounded", - "DoDisturbOnSharp", - "DoDisturbOnTwoTone", - "DoDisturbOutlined", - "DoDisturbRounded", - "DoDisturbSharp", - "DoDisturbTwoTone", - "DoNotDisturb", - "DoNotDisturbAlt", - "DoNotDisturbAltOutlined", - "DoNotDisturbAltRounded", - "DoNotDisturbAltSharp", - "DoNotDisturbAltTwoTone", - "DoNotDisturbOff", - "DoNotDisturbOffOutlined", - "DoNotDisturbOffRounded", - "DoNotDisturbOffSharp", - "DoNotDisturbOffTwoTone", - "DoNotDisturbOn", - "DoNotDisturbOnOutlined", - "DoNotDisturbOnRounded", - "DoNotDisturbOnSharp", - "DoNotDisturbOnTotalSilence", - "DoNotDisturbOnTotalSilenceOutlined", - "DoNotDisturbOnTotalSilenceRounded", - "DoNotDisturbOnTotalSilenceSharp", - "DoNotDisturbOnTotalSilenceTwoTone", - "DoNotDisturbOnTwoTone", - "DoNotDisturbOutlined", - "DoNotDisturbRounded", - "DoNotDisturbSharp", - "DoNotDisturbTwoTone", - "DoNotStep", - "DoNotStepOutlined", - "DoNotStepRounded", - "DoNotStepSharp", - "DoNotStepTwoTone", - "DoNotTouch", - "DoNotTouchOutlined", - "DoNotTouchRounded", - "DoNotTouchSharp", - "DoNotTouchTwoTone", - "Dock", - "DockOutlined", - "DockRounded", - "DockSharp", - "DockTwoTone", - "DocumentScanner", - "DocumentScannerOutlined", - "DocumentScannerRounded", - "DocumentScannerSharp", - "DocumentScannerTwoTone", - "Domain", - "DomainAdd", - "DomainAddOutlined", - "DomainAddRounded", - "DomainAddSharp", - "DomainAddTwoTone", - "DomainDisabled", - "DomainDisabledOutlined", - "DomainDisabledRounded", - "DomainDisabledSharp", - "DomainDisabledTwoTone", - "DomainOutlined", - "DomainRounded", - "DomainSharp", - "DomainTwoTone", - "DomainVerification", - "DomainVerificationOutlined", - "DomainVerificationRounded", - "DomainVerificationSharp", - "DomainVerificationTwoTone", - "Done", - "DoneAll", - "DoneAllOutlined", - "DoneAllRounded", - "DoneAllSharp", - "DoneAllTwoTone", - "DoneOutline", - "DoneOutlineOutlined", - "DoneOutlineRounded", - "DoneOutlineSharp", - "DoneOutlineTwoTone", - "DoneOutlined", - "DoneRounded", - "DoneSharp", - "DoneTwoTone", - "DonutLarge", - "DonutLargeOutlined", - "DonutLargeRounded", - "DonutLargeSharp", - "DonutLargeTwoTone", - "DonutSmall", - "DonutSmallOutlined", - "DonutSmallRounded", - "DonutSmallSharp", - "DonutSmallTwoTone", - "DoorBack", - "DoorBackOutlined", - "DoorBackRounded", - "DoorBackSharp", - "DoorBackTwoTone", - "DoorFront", - "DoorFrontOutlined", - "DoorFrontRounded", - "DoorFrontSharp", - "DoorFrontTwoTone", - "DoorSliding", - "DoorSlidingOutlined", - "DoorSlidingRounded", - "DoorSlidingSharp", - "DoorSlidingTwoTone", - "Doorbell", - "DoorbellOutlined", - "DoorbellRounded", - "DoorbellSharp", - "DoorbellTwoTone", - "DoubleArrow", - "DoubleArrowOutlined", - "DoubleArrowRounded", - "DoubleArrowSharp", - "DoubleArrowTwoTone", - "DownhillSkiing", - "DownhillSkiingOutlined", - "DownhillSkiingRounded", - "DownhillSkiingSharp", - "DownhillSkiingTwoTone", - "Download", - "DownloadDone", - "DownloadDoneOutlined", - "DownloadDoneRounded", - "DownloadDoneSharp", - "DownloadDoneTwoTone", - "DownloadForOffline", - "DownloadForOfflineOutlined", - "DownloadForOfflineRounded", - "DownloadForOfflineSharp", - "DownloadForOfflineTwoTone", - "DownloadOutlined", - "DownloadRounded", - "DownloadSharp", - "DownloadTwoTone", - "Downloading", - "DownloadingOutlined", - "DownloadingRounded", - "DownloadingSharp", - "DownloadingTwoTone", - "Drafts", - "DraftsOutlined", - "DraftsRounded", - "DraftsSharp", - "DraftsTwoTone", - "DragHandle", - "DragHandleOutlined", - "DragHandleRounded", - "DragHandleSharp", - "DragHandleTwoTone", - "DragIndicator", - "DragIndicatorOutlined", - "DragIndicatorRounded", - "DragIndicatorSharp", - "DragIndicatorTwoTone", - "Draw", - "DrawOutlined", - "DrawRounded", - "DrawSharp", - "DrawTwoTone", - "DriveEta", - "DriveEtaOutlined", - "DriveEtaRounded", - "DriveEtaSharp", - "DriveEtaTwoTone", - "DriveFileMove", - "DriveFileMoveOutlined", - "DriveFileMoveRounded", - "DriveFileMoveSharp", - "DriveFileMoveTwoTone", - "DriveFileRenameOutline", - "DriveFileRenameOutlineOutlined", - "DriveFileRenameOutlineRounded", - "DriveFileRenameOutlineSharp", - "DriveFileRenameOutlineTwoTone", - "DriveFolderUpload", - "DriveFolderUploadOutlined", - "DriveFolderUploadRounded", - "DriveFolderUploadSharp", - "DriveFolderUploadTwoTone", - "Dry", - "DryCleaning", - "DryCleaningOutlined", - "DryCleaningRounded", - "DryCleaningSharp", - "DryCleaningTwoTone", - "DryOutlined", - "DryRounded", - "DrySharp", - "DryTwoTone", - "Duo", - "DuoOutlined", - "DuoRounded", - "DuoSharp", - "DuoTwoTone", - "Dvr", - "DvrOutlined", - "DvrRounded", - "DvrSharp", - "DvrTwoTone", - "DynamicFeed", - "DynamicFeedOutlined", - "DynamicFeedRounded", - "DynamicFeedSharp", - "DynamicFeedTwoTone", - "DynamicForm", - "DynamicFormOutlined", - "DynamicFormRounded", - "DynamicFormSharp", - "DynamicFormTwoTone", - "EMobiledata", - "EMobiledataOutlined", - "EMobiledataRounded", - "EMobiledataSharp", - "EMobiledataTwoTone", - "Earbuds", - "EarbudsBattery", - "EarbudsBatteryOutlined", - "EarbudsBatteryRounded", - "EarbudsBatterySharp", - "EarbudsBatteryTwoTone", - "EarbudsOutlined", - "EarbudsRounded", - "EarbudsSharp", - "EarbudsTwoTone", - "East", - "EastOutlined", - "EastRounded", - "EastSharp", - "EastTwoTone", - "EdgesensorHigh", - "EdgesensorHighOutlined", - "EdgesensorHighRounded", - "EdgesensorHighSharp", - "EdgesensorHighTwoTone", - "EdgesensorLow", - "EdgesensorLowOutlined", - "EdgesensorLowRounded", - "EdgesensorLowSharp", - "EdgesensorLowTwoTone", - "Edit", - "EditAttributes", - "EditAttributesOutlined", - "EditAttributesRounded", - "EditAttributesSharp", - "EditAttributesTwoTone", - "EditCalendar", - "EditCalendarOutlined", - "EditCalendarRounded", - "EditCalendarSharp", - "EditCalendarTwoTone", - "EditLocation", - "EditLocationAlt", - "EditLocationAltOutlined", - "EditLocationAltRounded", - "EditLocationAltSharp", - "EditLocationAltTwoTone", - "EditLocationOutlined", - "EditLocationRounded", - "EditLocationSharp", - "EditLocationTwoTone", - "EditNote", - "EditNoteOutlined", - "EditNoteRounded", - "EditNoteSharp", - "EditNoteTwoTone", - "EditNotifications", - "EditNotificationsOutlined", - "EditNotificationsRounded", - "EditNotificationsSharp", - "EditNotificationsTwoTone", - "EditOff", - "EditOffOutlined", - "EditOffRounded", - "EditOffSharp", - "EditOffTwoTone", - "EditOutlined", - "EditRoad", - "EditRoadOutlined", - "EditRoadRounded", - "EditRoadSharp", - "EditRoadTwoTone", - "EditRounded", - "EditSharp", - "EditTwoTone", - "Egg", - "EggAlt", - "EggAltOutlined", - "EggAltRounded", - "EggAltSharp", - "EggAltTwoTone", - "EggOutlined", - "EggRounded", - "EggSharp", - "EggTwoTone", - "Eject", - "EjectOutlined", - "EjectRounded", - "EjectSharp", - "EjectTwoTone", - "Elderly", - "ElderlyOutlined", - "ElderlyRounded", - "ElderlySharp", - "ElderlyTwoTone", - "ElderlyWoman", - "ElderlyWomanOutlined", - "ElderlyWomanRounded", - "ElderlyWomanSharp", - "ElderlyWomanTwoTone", - "ElectricBike", - "ElectricBikeOutlined", - "ElectricBikeRounded", - "ElectricBikeSharp", - "ElectricBikeTwoTone", - "ElectricBolt", - "ElectricBoltOutlined", - "ElectricBoltRounded", - "ElectricBoltSharp", - "ElectricBoltTwoTone", - "ElectricCar", - "ElectricCarOutlined", - "ElectricCarRounded", - "ElectricCarSharp", - "ElectricCarTwoTone", - "ElectricMeter", - "ElectricMeterOutlined", - "ElectricMeterRounded", - "ElectricMeterSharp", - "ElectricMeterTwoTone", - "ElectricMoped", - "ElectricMopedOutlined", - "ElectricMopedRounded", - "ElectricMopedSharp", - "ElectricMopedTwoTone", - "ElectricRickshaw", - "ElectricRickshawOutlined", - "ElectricRickshawRounded", - "ElectricRickshawSharp", - "ElectricRickshawTwoTone", - "ElectricScooter", - "ElectricScooterOutlined", - "ElectricScooterRounded", - "ElectricScooterSharp", - "ElectricScooterTwoTone", - "ElectricalServices", - "ElectricalServicesOutlined", - "ElectricalServicesRounded", - "ElectricalServicesSharp", - "ElectricalServicesTwoTone", - "Elevator", - "ElevatorOutlined", - "ElevatorRounded", - "ElevatorSharp", - "ElevatorTwoTone", - "Email", - "EmailOutlined", - "EmailRounded", - "EmailSharp", - "EmailTwoTone", - "EmergencyRecording", - "EmergencyRecordingOutlined", - "EmergencyRecordingRounded", - "EmergencyRecordingSharp", - "EmergencyRecordingTwoTone", - "EmergencyShare", - "EmergencyShareOutlined", - "EmergencyShareRounded", - "EmergencyShareSharp", - "EmergencyShareTwoTone", - "EmojiEmotions", - "EmojiEmotionsOutlined", - "EmojiEmotionsRounded", - "EmojiEmotionsSharp", - "EmojiEmotionsTwoTone", - "EmojiEvents", - "EmojiEventsOutlined", - "EmojiEventsRounded", - "EmojiEventsSharp", - "EmojiEventsTwoTone", - "EmojiFlags", - "EmojiFlagsOutlined", - "EmojiFlagsRounded", - "EmojiFlagsSharp", - "EmojiFlagsTwoTone", - "EmojiFoodBeverage", - "EmojiFoodBeverageOutlined", - "EmojiFoodBeverageRounded", - "EmojiFoodBeverageSharp", - "EmojiFoodBeverageTwoTone", - "EmojiNature", - "EmojiNatureOutlined", - "EmojiNatureRounded", - "EmojiNatureSharp", - "EmojiNatureTwoTone", - "EmojiObjects", - "EmojiObjectsOutlined", - "EmojiObjectsRounded", - "EmojiObjectsSharp", - "EmojiObjectsTwoTone", - "EmojiPeople", - "EmojiPeopleOutlined", - "EmojiPeopleRounded", - "EmojiPeopleSharp", - "EmojiPeopleTwoTone", - "EmojiSymbols", - "EmojiSymbolsOutlined", - "EmojiSymbolsRounded", - "EmojiSymbolsSharp", - "EmojiSymbolsTwoTone", - "EmojiTransportation", - "EmojiTransportationOutlined", - "EmojiTransportationRounded", - "EmojiTransportationSharp", - "EmojiTransportationTwoTone", - "EnergySavingsLeaf", - "EnergySavingsLeafOutlined", - "EnergySavingsLeafRounded", - "EnergySavingsLeafSharp", - "EnergySavingsLeafTwoTone", - "Engineering", - "EngineeringOutlined", - "EngineeringRounded", - "EngineeringSharp", - "EngineeringTwoTone", - "EnhancedEncryption", - "EnhancedEncryptionOutlined", - "EnhancedEncryptionRounded", - "EnhancedEncryptionSharp", - "EnhancedEncryptionTwoTone", - "Equalizer", - "EqualizerOutlined", - "EqualizerRounded", - "EqualizerSharp", - "EqualizerTwoTone", - "Error", - "ErrorOutline", - "ErrorOutlineOutlined", - "ErrorOutlineRounded", - "ErrorOutlineSharp", - "ErrorOutlineTwoTone", - "ErrorOutlined", - "ErrorRounded", - "ErrorSharp", - "ErrorTwoTone", - "Escalator", - "EscalatorOutlined", - "EscalatorRounded", - "EscalatorSharp", - "EscalatorTwoTone", - "EscalatorWarning", - "EscalatorWarningOutlined", - "EscalatorWarningRounded", - "EscalatorWarningSharp", - "EscalatorWarningTwoTone", - "Euro", - "EuroOutlined", - "EuroRounded", - "EuroSharp", - "EuroSymbol", - "EuroSymbolOutlined", - "EuroSymbolRounded", - "EuroSymbolSharp", - "EuroSymbolTwoTone", - "EuroTwoTone", - "EvStation", - "EvStationOutlined", - "EvStationRounded", - "EvStationSharp", - "EvStationTwoTone", - "Event", - "EventAvailable", - "EventAvailableOutlined", - "EventAvailableRounded", - "EventAvailableSharp", - "EventAvailableTwoTone", - "EventBusy", - "EventBusyOutlined", - "EventBusyRounded", - "EventBusySharp", - "EventBusyTwoTone", - "EventNote", - "EventNoteOutlined", - "EventNoteRounded", - "EventNoteSharp", - "EventNoteTwoTone", - "EventOutlined", - "EventRepeat", - "EventRepeatOutlined", - "EventRepeatRounded", - "EventRepeatSharp", - "EventRepeatTwoTone", - "EventRounded", - "EventSeat", - "EventSeatOutlined", - "EventSeatRounded", - "EventSeatSharp", - "EventSeatTwoTone", - "EventSharp", - "EventTwoTone", - "ExitToApp", - "ExitToAppOutlined", - "ExitToAppRounded", - "ExitToAppSharp", - "ExitToAppTwoTone", - "Expand", - "ExpandCircleDown", - "ExpandCircleDownOutlined", - "ExpandCircleDownRounded", - "ExpandCircleDownSharp", - "ExpandCircleDownTwoTone", - "ExpandLess", - "ExpandLessOutlined", - "ExpandLessRounded", - "ExpandLessSharp", - "ExpandLessTwoTone", - "ExpandMore", - "ExpandMoreOutlined", - "ExpandMoreRounded", - "ExpandMoreSharp", - "ExpandMoreTwoTone", - "ExpandOutlined", - "ExpandRounded", - "ExpandSharp", - "ExpandTwoTone", - "Explicit", - "ExplicitOutlined", - "ExplicitRounded", - "ExplicitSharp", - "ExplicitTwoTone", - "Explore", - "ExploreOff", - "ExploreOffOutlined", - "ExploreOffRounded", - "ExploreOffSharp", - "ExploreOffTwoTone", - "ExploreOutlined", - "ExploreRounded", - "ExploreSharp", - "ExploreTwoTone", - "Exposure", - "ExposureOutlined", - "ExposureRounded", - "ExposureSharp", - "ExposureTwoTone", - "Extension", - "ExtensionOff", - "ExtensionOffOutlined", - "ExtensionOffRounded", - "ExtensionOffSharp", - "ExtensionOffTwoTone", - "ExtensionOutlined", - "ExtensionRounded", - "ExtensionSharp", - "ExtensionTwoTone", - "Face", - "Face2", - "Face2Outlined", - "Face2Rounded", - "Face2Sharp", - "Face2TwoTone", - "Face3", - "Face3Outlined", - "Face3Rounded", - "Face3Sharp", - "Face3TwoTone", - "Face4", - "Face4Outlined", - "Face4Rounded", - "Face4Sharp", - "Face4TwoTone", - "Face5", - "Face5Outlined", - "Face5Rounded", - "Face5Sharp", - "Face5TwoTone", - "Face6", - "Face6Outlined", - "Face6Rounded", - "Face6Sharp", - "Face6TwoTone", - "FaceOutlined", - "FaceRetouchingNatural", - "FaceRetouchingNaturalOutlined", - "FaceRetouchingNaturalRounded", - "FaceRetouchingNaturalSharp", - "FaceRetouchingNaturalTwoTone", - "FaceRetouchingOff", - "FaceRetouchingOffOutlined", - "FaceRetouchingOffRounded", - "FaceRetouchingOffSharp", - "FaceRetouchingOffTwoTone", - "FaceRounded", - "FaceSharp", - "FaceTwoTone", - "FactCheck", - "FactCheckOutlined", - "FactCheckRounded", - "FactCheckSharp", - "FactCheckTwoTone", - "Factory", - "FactoryOutlined", - "FactoryRounded", - "FactorySharp", - "FactoryTwoTone", - "FamilyRestroom", - "FamilyRestroomOutlined", - "FamilyRestroomRounded", - "FamilyRestroomSharp", - "FamilyRestroomTwoTone", - "FastForward", - "FastForwardOutlined", - "FastForwardRounded", - "FastForwardSharp", - "FastForwardTwoTone", - "FastRewind", - "FastRewindOutlined", - "FastRewindRounded", - "FastRewindSharp", - "FastRewindTwoTone", - "Fastfood", - "FastfoodOutlined", - "FastfoodRounded", - "FastfoodSharp", - "FastfoodTwoTone", - "Favorite", - "FavoriteBorder", - "FavoriteBorderOutlined", - "FavoriteBorderRounded", - "FavoriteBorderSharp", - "FavoriteBorderTwoTone", - "FavoriteOutlined", - "FavoriteRounded", - "FavoriteSharp", - "FavoriteTwoTone", - "Fax", - "FaxOutlined", - "FaxRounded", - "FaxSharp", - "FaxTwoTone", - "FeaturedPlayList", - "FeaturedPlayListOutlined", - "FeaturedPlayListRounded", - "FeaturedPlayListSharp", - "FeaturedPlayListTwoTone", - "FeaturedVideo", - "FeaturedVideoOutlined", - "FeaturedVideoRounded", - "FeaturedVideoSharp", - "FeaturedVideoTwoTone", - "Feed", - "FeedOutlined", - "FeedRounded", - "FeedSharp", - "FeedTwoTone", - "Feedback", - "FeedbackOutlined", - "FeedbackRounded", - "FeedbackSharp", - "FeedbackTwoTone", - "Female", - "FemaleOutlined", - "FemaleRounded", - "FemaleSharp", - "FemaleTwoTone", - "Fence", - "FenceOutlined", - "FenceRounded", - "FenceSharp", - "FenceTwoTone", - "Festival", - "FestivalOutlined", - "FestivalRounded", - "FestivalSharp", - "FestivalTwoTone", - "FiberDvr", - "FiberDvrOutlined", - "FiberDvrRounded", - "FiberDvrSharp", - "FiberDvrTwoTone", - "FiberManualRecord", - "FiberManualRecordOutlined", - "FiberManualRecordRounded", - "FiberManualRecordSharp", - "FiberManualRecordTwoTone", - "FiberNew", - "FiberNewOutlined", - "FiberNewRounded", - "FiberNewSharp", - "FiberNewTwoTone", - "FiberPin", - "FiberPinOutlined", - "FiberPinRounded", - "FiberPinSharp", - "FiberPinTwoTone", - "FiberSmartRecord", - "FiberSmartRecordOutlined", - "FiberSmartRecordRounded", - "FiberSmartRecordSharp", - "FiberSmartRecordTwoTone", - "FileCopy", - "FileCopyOutlined", - "FileCopyRounded", - "FileCopySharp", - "FileCopyTwoTone", - "FileDownload", - "FileDownloadDone", - "FileDownloadDoneOutlined", - "FileDownloadDoneRounded", - "FileDownloadDoneSharp", - "FileDownloadDoneTwoTone", - "FileDownloadOff", - "FileDownloadOffOutlined", - "FileDownloadOffRounded", - "FileDownloadOffSharp", - "FileDownloadOffTwoTone", - "FileDownloadOutlined", - "FileDownloadRounded", - "FileDownloadSharp", - "FileDownloadTwoTone", - "FileOpen", - "FileOpenOutlined", - "FileOpenRounded", - "FileOpenSharp", - "FileOpenTwoTone", - "FilePresent", - "FilePresentOutlined", - "FilePresentRounded", - "FilePresentSharp", - "FilePresentTwoTone", - "FileUpload", - "FileUploadOutlined", - "FileUploadRounded", - "FileUploadSharp", - "FileUploadTwoTone", - "Filter", - "Filter1", - "Filter1Outlined", - "Filter1Rounded", - "Filter1Sharp", - "Filter1TwoTone", - "Filter2", - "Filter2Outlined", - "Filter2Rounded", - "Filter2Sharp", - "Filter2TwoTone", - "Filter3", - "Filter3Outlined", - "Filter3Rounded", - "Filter3Sharp", - "Filter3TwoTone", - "Filter4", - "Filter4Outlined", - "Filter4Rounded", - "Filter4Sharp", - "Filter4TwoTone", - "Filter5", - "Filter5Outlined", - "Filter5Rounded", - "Filter5Sharp", - "Filter5TwoTone", - "Filter6", - "Filter6Outlined", - "Filter6Rounded", - "Filter6Sharp", - "Filter6TwoTone", - "Filter7", - "Filter7Outlined", - "Filter7Rounded", - "Filter7Sharp", - "Filter7TwoTone", - "Filter8", - "Filter8Outlined", - "Filter8Rounded", - "Filter8Sharp", - "Filter8TwoTone", - "Filter9", - "Filter9Outlined", - "Filter9Plus", - "Filter9PlusOutlined", - "Filter9PlusRounded", - "Filter9PlusSharp", - "Filter9PlusTwoTone", - "Filter9Rounded", - "Filter9Sharp", - "Filter9TwoTone", - "FilterAlt", - "FilterAltOff", - "FilterAltOffOutlined", - "FilterAltOffRounded", - "FilterAltOffSharp", - "FilterAltOffTwoTone", - "FilterAltOutlined", - "FilterAltRounded", - "FilterAltSharp", - "FilterAltTwoTone", - "FilterBAndW", - "FilterBAndWOutlined", - "FilterBAndWRounded", - "FilterBAndWSharp", - "FilterBAndWTwoTone", - "FilterCenterFocus", - "FilterCenterFocusOutlined", - "FilterCenterFocusRounded", - "FilterCenterFocusSharp", - "FilterCenterFocusTwoTone", - "FilterDrama", - "FilterDramaOutlined", - "FilterDramaRounded", - "FilterDramaSharp", - "FilterDramaTwoTone", - "FilterFrames", - "FilterFramesOutlined", - "FilterFramesRounded", - "FilterFramesSharp", - "FilterFramesTwoTone", - "FilterHdr", - "FilterHdrOutlined", - "FilterHdrRounded", - "FilterHdrSharp", - "FilterHdrTwoTone", - "FilterList", - "FilterListOff", - "FilterListOffOutlined", - "FilterListOffRounded", - "FilterListOffSharp", - "FilterListOffTwoTone", - "FilterListOutlined", - "FilterListRounded", - "FilterListSharp", - "FilterListTwoTone", - "FilterNone", - "FilterNoneOutlined", - "FilterNoneRounded", - "FilterNoneSharp", - "FilterNoneTwoTone", - "FilterOutlined", - "FilterRounded", - "FilterSharp", - "FilterTiltShift", - "FilterTiltShiftOutlined", - "FilterTiltShiftRounded", - "FilterTiltShiftSharp", - "FilterTiltShiftTwoTone", - "FilterTwoTone", - "FilterVintage", - "FilterVintageOutlined", - "FilterVintageRounded", - "FilterVintageSharp", - "FilterVintageTwoTone", - "FindInPage", - "FindInPageOutlined", - "FindInPageRounded", - "FindInPageSharp", - "FindInPageTwoTone", - "FindReplace", - "FindReplaceOutlined", - "FindReplaceRounded", - "FindReplaceSharp", - "FindReplaceTwoTone", - "Fingerprint", - "FingerprintOutlined", - "FingerprintRounded", - "FingerprintSharp", - "FingerprintTwoTone", - "FireExtinguisher", - "FireExtinguisherOutlined", - "FireExtinguisherRounded", - "FireExtinguisherSharp", - "FireExtinguisherTwoTone", - "FireTruck", - "FireTruckOutlined", - "FireTruckRounded", - "FireTruckSharp", - "FireTruckTwoTone", - "Fireplace", - "FireplaceOutlined", - "FireplaceRounded", - "FireplaceSharp", - "FireplaceTwoTone", - "FirstPage", - "FirstPageOutlined", - "FirstPageRounded", - "FirstPageSharp", - "FirstPageTwoTone", - "FitScreen", - "FitScreenOutlined", - "FitScreenRounded", - "FitScreenSharp", - "FitScreenTwoTone", - "FitnessCenter", - "FitnessCenterOutlined", - "FitnessCenterRounded", - "FitnessCenterSharp", - "FitnessCenterTwoTone", - "Flag", - "FlagCircle", - "FlagCircleOutlined", - "FlagCircleRounded", - "FlagCircleSharp", - "FlagCircleTwoTone", - "FlagOutlined", - "FlagRounded", - "FlagSharp", - "FlagTwoTone", - "Flaky", - "FlakyOutlined", - "FlakyRounded", - "FlakySharp", - "FlakyTwoTone", - "Flare", - "FlareOutlined", - "FlareRounded", - "FlareSharp", - "FlareTwoTone", - "FlashAuto", - "FlashAutoOutlined", - "FlashAutoRounded", - "FlashAutoSharp", - "FlashAutoTwoTone", - "FlashOff", - "FlashOffOutlined", - "FlashOffRounded", - "FlashOffSharp", - "FlashOffTwoTone", - "FlashOn", - "FlashOnOutlined", - "FlashOnRounded", - "FlashOnSharp", - "FlashOnTwoTone", - "FlashlightOff", - "FlashlightOffOutlined", - "FlashlightOffRounded", - "FlashlightOffSharp", - "FlashlightOffTwoTone", - "FlashlightOn", - "FlashlightOnOutlined", - "FlashlightOnRounded", - "FlashlightOnSharp", - "FlashlightOnTwoTone", - "Flatware", - "FlatwareOutlined", - "FlatwareRounded", - "FlatwareSharp", - "FlatwareTwoTone", - "Flight", - "FlightClass", - "FlightClassOutlined", - "FlightClassRounded", - "FlightClassSharp", - "FlightClassTwoTone", - "FlightLand", - "FlightLandOutlined", - "FlightLandRounded", - "FlightLandSharp", - "FlightLandTwoTone", - "FlightOutlined", - "FlightRounded", - "FlightSharp", - "FlightTakeoff", - "FlightTakeoffOutlined", - "FlightTakeoffRounded", - "FlightTakeoffSharp", - "FlightTakeoffTwoTone", - "FlightTwoTone", - "Flip", - "FlipCameraAndroid", - "FlipCameraAndroidOutlined", - "FlipCameraAndroidRounded", - "FlipCameraAndroidSharp", - "FlipCameraAndroidTwoTone", - "FlipCameraIos", - "FlipCameraIosOutlined", - "FlipCameraIosRounded", - "FlipCameraIosSharp", - "FlipCameraIosTwoTone", - "FlipOutlined", - "FlipRounded", - "FlipSharp", - "FlipToBack", - "FlipToBackOutlined", - "FlipToBackRounded", - "FlipToBackSharp", - "FlipToBackTwoTone", - "FlipToFront", - "FlipToFrontOutlined", - "FlipToFrontRounded", - "FlipToFrontSharp", - "FlipToFrontTwoTone", - "FlipTwoTone", - "Flood", - "FloodOutlined", - "FloodRounded", - "FloodSharp", - "FloodTwoTone", - "Fluorescent", - "FluorescentOutlined", - "FluorescentRounded", - "FluorescentSharp", - "FluorescentTwoTone", - "FlutterDash", - "FlutterDashOutlined", - "FlutterDashRounded", - "FlutterDashSharp", - "FlutterDashTwoTone", - "FmdBad", - "FmdBadOutlined", - "FmdBadRounded", - "FmdBadSharp", - "FmdBadTwoTone", - "FmdGood", - "FmdGoodOutlined", - "FmdGoodRounded", - "FmdGoodSharp", - "FmdGoodTwoTone", - "Folder", - "FolderCopy", - "FolderCopyOutlined", - "FolderCopyRounded", - "FolderCopySharp", - "FolderCopyTwoTone", - "FolderDelete", - "FolderDeleteOutlined", - "FolderDeleteRounded", - "FolderDeleteSharp", - "FolderDeleteTwoTone", - "FolderOff", - "FolderOffOutlined", - "FolderOffRounded", - "FolderOffSharp", - "FolderOffTwoTone", - "FolderOpen", - "FolderOpenOutlined", - "FolderOpenRounded", - "FolderOpenSharp", - "FolderOpenTwoTone", - "FolderOutlined", - "FolderRounded", - "FolderShared", - "FolderSharedOutlined", - "FolderSharedRounded", - "FolderSharedSharp", - "FolderSharedTwoTone", - "FolderSharp", - "FolderSpecial", - "FolderSpecialOutlined", - "FolderSpecialRounded", - "FolderSpecialSharp", - "FolderSpecialTwoTone", - "FolderTwoTone", - "FolderZip", - "FolderZipOutlined", - "FolderZipRounded", - "FolderZipSharp", - "FolderZipTwoTone", - "FollowTheSigns", - "FollowTheSignsOutlined", - "FollowTheSignsRounded", - "FollowTheSignsSharp", - "FollowTheSignsTwoTone", - "FontDownload", - "FontDownloadOff", - "FontDownloadOffOutlined", - "FontDownloadOffRounded", - "FontDownloadOffSharp", - "FontDownloadOffTwoTone", - "FontDownloadOutlined", - "FontDownloadRounded", - "FontDownloadSharp", - "FontDownloadTwoTone", - "FoodBank", - "FoodBankOutlined", - "FoodBankRounded", - "FoodBankSharp", - "FoodBankTwoTone", - "Forest", - "ForestOutlined", - "ForestRounded", - "ForestSharp", - "ForestTwoTone", - "ForkLeft", - "ForkLeftOutlined", - "ForkLeftRounded", - "ForkLeftSharp", - "ForkLeftTwoTone", - "ForkRight", - "ForkRightOutlined", - "ForkRightRounded", - "ForkRightSharp", - "ForkRightTwoTone", - "FormatAlignCenter", - "FormatAlignCenterOutlined", - "FormatAlignCenterRounded", - "FormatAlignCenterSharp", - "FormatAlignCenterTwoTone", - "FormatAlignJustify", - "FormatAlignJustifyOutlined", - "FormatAlignJustifyRounded", - "FormatAlignJustifySharp", - "FormatAlignJustifyTwoTone", - "FormatAlignLeft", - "FormatAlignLeftOutlined", - "FormatAlignLeftRounded", - "FormatAlignLeftSharp", - "FormatAlignLeftTwoTone", - "FormatAlignRight", - "FormatAlignRightOutlined", - "FormatAlignRightRounded", - "FormatAlignRightSharp", - "FormatAlignRightTwoTone", - "FormatBold", - "FormatBoldOutlined", - "FormatBoldRounded", - "FormatBoldSharp", - "FormatBoldTwoTone", - "FormatClear", - "FormatClearOutlined", - "FormatClearRounded", - "FormatClearSharp", - "FormatClearTwoTone", - "FormatColorFill", - "FormatColorFillOutlined", - "FormatColorFillRounded", - "FormatColorFillSharp", - "FormatColorFillTwoTone", - "FormatColorReset", - "FormatColorResetOutlined", - "FormatColorResetRounded", - "FormatColorResetSharp", - "FormatColorResetTwoTone", - "FormatColorText", - "FormatColorTextOutlined", - "FormatColorTextRounded", - "FormatColorTextSharp", - "FormatColorTextTwoTone", - "FormatIndentDecrease", - "FormatIndentDecreaseOutlined", - "FormatIndentDecreaseRounded", - "FormatIndentDecreaseSharp", - "FormatIndentDecreaseTwoTone", - "FormatIndentIncrease", - "FormatIndentIncreaseOutlined", - "FormatIndentIncreaseRounded", - "FormatIndentIncreaseSharp", - "FormatIndentIncreaseTwoTone", - "FormatItalic", - "FormatItalicOutlined", - "FormatItalicRounded", - "FormatItalicSharp", - "FormatItalicTwoTone", - "FormatLineSpacing", - "FormatLineSpacingOutlined", - "FormatLineSpacingRounded", - "FormatLineSpacingSharp", - "FormatLineSpacingTwoTone", - "FormatListBulleted", - "FormatListBulletedOutlined", - "FormatListBulletedRounded", - "FormatListBulletedSharp", - "FormatListBulletedTwoTone", - "FormatListNumbered", - "FormatListNumberedOutlined", - "FormatListNumberedRounded", - "FormatListNumberedRtl", - "FormatListNumberedRtlOutlined", - "FormatListNumberedRtlRounded", - "FormatListNumberedRtlSharp", - "FormatListNumberedRtlTwoTone", - "FormatListNumberedSharp", - "FormatListNumberedTwoTone", - "FormatOverline", - "FormatOverlineOutlined", - "FormatOverlineRounded", - "FormatOverlineSharp", - "FormatOverlineTwoTone", - "FormatPaint", - "FormatPaintOutlined", - "FormatPaintRounded", - "FormatPaintSharp", - "FormatPaintTwoTone", - "FormatQuote", - "FormatQuoteOutlined", - "FormatQuoteRounded", - "FormatQuoteSharp", - "FormatQuoteTwoTone", - "FormatShapes", - "FormatShapesOutlined", - "FormatShapesRounded", - "FormatShapesSharp", - "FormatShapesTwoTone", - "FormatSize", - "FormatSizeOutlined", - "FormatSizeRounded", - "FormatSizeSharp", - "FormatSizeTwoTone", - "FormatStrikethrough", - "FormatStrikethroughOutlined", - "FormatStrikethroughRounded", - "FormatStrikethroughSharp", - "FormatStrikethroughTwoTone", - "FormatTextdirectionLToR", - "FormatTextdirectionLToROutlined", - "FormatTextdirectionLToRRounded", - "FormatTextdirectionLToRSharp", - "FormatTextdirectionLToRTwoTone", - "FormatTextdirectionRToL", - "FormatTextdirectionRToLOutlined", - "FormatTextdirectionRToLRounded", - "FormatTextdirectionRToLSharp", - "FormatTextdirectionRToLTwoTone", - "FormatUnderlined", - "FormatUnderlinedOutlined", - "FormatUnderlinedRounded", - "FormatUnderlinedSharp", - "FormatUnderlinedTwoTone", - "Fort", - "FortOutlined", - "FortRounded", - "FortSharp", - "FortTwoTone", - "Forum", - "ForumOutlined", - "ForumRounded", - "ForumSharp", - "ForumTwoTone", - "Forward", - "Forward10", - "Forward10Outlined", - "Forward10Rounded", - "Forward10Sharp", - "Forward10TwoTone", - "Forward30", - "Forward30Outlined", - "Forward30Rounded", - "Forward30Sharp", - "Forward30TwoTone", - "Forward5", - "Forward5Outlined", - "Forward5Rounded", - "Forward5Sharp", - "Forward5TwoTone", - "ForwardOutlined", - "ForwardRounded", - "ForwardSharp", - "ForwardToInbox", - "ForwardToInboxOutlined", - "ForwardToInboxRounded", - "ForwardToInboxSharp", - "ForwardToInboxTwoTone", - "ForwardTwoTone", - "Foundation", - "FoundationOutlined", - "FoundationRounded", - "FoundationSharp", - "FoundationTwoTone", - "FreeBreakfast", - "FreeBreakfastOutlined", - "FreeBreakfastRounded", - "FreeBreakfastSharp", - "FreeBreakfastTwoTone", - "Fullscreen", - "FullscreenExit", - "FullscreenExitOutlined", - "FullscreenExitRounded", - "FullscreenExitSharp", - "FullscreenExitTwoTone", - "FullscreenOutlined", - "FullscreenRounded", - "FullscreenSharp", - "FullscreenTwoTone", - "Functions", - "FunctionsOutlined", - "FunctionsRounded", - "FunctionsSharp", - "FunctionsTwoTone", - "GMobiledata", - "GMobiledataOutlined", - "GMobiledataRounded", - "GMobiledataSharp", - "GMobiledataTwoTone", - "GTranslate", - "GTranslateOutlined", - "GTranslateRounded", - "GTranslateSharp", - "GTranslateTwoTone", - "Gamepad", - "GamepadOutlined", - "GamepadRounded", - "GamepadSharp", - "GamepadTwoTone", - "Games", - "GamesOutlined", - "GamesRounded", - "GamesSharp", - "GamesTwoTone", - "Garage", - "GarageOutlined", - "GarageRounded", - "GarageSharp", - "GarageTwoTone", - "GasMeter", - "GasMeterOutlined", - "GasMeterRounded", - "GasMeterSharp", - "GasMeterTwoTone", - "Gavel", - "GavelOutlined", - "GavelRounded", - "GavelSharp", - "GavelTwoTone", - "Gesture", - "GestureOutlined", - "GestureRounded", - "GestureSharp", - "GestureTwoTone", - "GetApp", - "GetAppOutlined", - "GetAppRounded", - "GetAppSharp", - "GetAppTwoTone", - "Gif", - "GifBox", - "GifBoxOutlined", - "GifBoxRounded", - "GifBoxSharp", - "GifBoxTwoTone", - "GifOutlined", - "GifRounded", - "GifSharp", - "GifTwoTone", - "Girl", - "GirlOutlined", - "GirlRounded", - "GirlSharp", - "GirlTwoTone", - "GitHub", - "Gite", - "GiteOutlined", - "GiteRounded", - "GiteSharp", - "GiteTwoTone", - "GolfCourse", - "GolfCourseOutlined", - "GolfCourseRounded", - "GolfCourseSharp", - "GolfCourseTwoTone", - "Google", - "GppBad", - "GppBadOutlined", - "GppBadRounded", - "GppBadSharp", - "GppBadTwoTone", - "GppGood", - "GppGoodOutlined", - "GppGoodRounded", - "GppGoodSharp", - "GppGoodTwoTone", - "GppMaybe", - "GppMaybeOutlined", - "GppMaybeRounded", - "GppMaybeSharp", - "GppMaybeTwoTone", - "GpsFixed", - "GpsFixedOutlined", - "GpsFixedRounded", - "GpsFixedSharp", - "GpsFixedTwoTone", - "GpsNotFixed", - "GpsNotFixedOutlined", - "GpsNotFixedRounded", - "GpsNotFixedSharp", - "GpsNotFixedTwoTone", - "GpsOff", - "GpsOffOutlined", - "GpsOffRounded", - "GpsOffSharp", - "GpsOffTwoTone", - "Grade", - "GradeOutlined", - "GradeRounded", - "GradeSharp", - "GradeTwoTone", - "Gradient", - "GradientOutlined", - "GradientRounded", - "GradientSharp", - "GradientTwoTone", - "Grading", - "GradingOutlined", - "GradingRounded", - "GradingSharp", - "GradingTwoTone", - "Grain", - "GrainOutlined", - "GrainRounded", - "GrainSharp", - "GrainTwoTone", - "GraphicEq", - "GraphicEqOutlined", - "GraphicEqRounded", - "GraphicEqSharp", - "GraphicEqTwoTone", - "Grass", - "GrassOutlined", - "GrassRounded", - "GrassSharp", - "GrassTwoTone", - "GridGoldenratio", - "GridGoldenratioOutlined", - "GridGoldenratioRounded", - "GridGoldenratioSharp", - "GridGoldenratioTwoTone", - "GridOff", - "GridOffOutlined", - "GridOffRounded", - "GridOffSharp", - "GridOffTwoTone", - "GridOn", - "GridOnOutlined", - "GridOnRounded", - "GridOnSharp", - "GridOnTwoTone", - "GridView", - "GridViewOutlined", - "GridViewRounded", - "GridViewSharp", - "GridViewTwoTone", - "Group", - "GroupAdd", - "GroupAddOutlined", - "GroupAddRounded", - "GroupAddSharp", - "GroupAddTwoTone", - "GroupOutlined", - "GroupRemove", - "GroupRemoveOutlined", - "GroupRemoveRounded", - "GroupRemoveSharp", - "GroupRemoveTwoTone", - "GroupRounded", - "GroupSharp", - "GroupTwoTone", - "GroupWork", - "GroupWorkOutlined", - "GroupWorkRounded", - "GroupWorkSharp", - "GroupWorkTwoTone", - "Groups", - "Groups2", - "Groups2Outlined", - "Groups2Rounded", - "Groups2Sharp", - "Groups2TwoTone", - "Groups3", - "Groups3Outlined", - "Groups3Rounded", - "Groups3Sharp", - "Groups3TwoTone", - "GroupsOutlined", - "GroupsRounded", - "GroupsSharp", - "GroupsTwoTone", - "HMobiledata", - "HMobiledataOutlined", - "HMobiledataRounded", - "HMobiledataSharp", - "HMobiledataTwoTone", - "HPlusMobiledata", - "HPlusMobiledataOutlined", - "HPlusMobiledataRounded", - "HPlusMobiledataSharp", - "HPlusMobiledataTwoTone", - "Hail", - "HailOutlined", - "HailRounded", - "HailSharp", - "HailTwoTone", - "Handshake", - "HandshakeOutlined", - "HandshakeRounded", - "HandshakeSharp", - "HandshakeTwoTone", - "Handyman", - "HandymanOutlined", - "HandymanRounded", - "HandymanSharp", - "HandymanTwoTone", - "Hardware", - "HardwareOutlined", - "HardwareRounded", - "HardwareSharp", - "HardwareTwoTone", - "Hd", - "HdOutlined", - "HdRounded", - "HdSharp", - "HdTwoTone", - "HdrAuto", - "HdrAutoOutlined", - "HdrAutoRounded", - "HdrAutoSelect", - "HdrAutoSelectOutlined", - "HdrAutoSelectRounded", - "HdrAutoSelectSharp", - "HdrAutoSelectTwoTone", - "HdrAutoSharp", - "HdrAutoTwoTone", - "HdrEnhancedSelect", - "HdrEnhancedSelectOutlined", - "HdrEnhancedSelectRounded", - "HdrEnhancedSelectSharp", - "HdrEnhancedSelectTwoTone", - "HdrOff", - "HdrOffOutlined", - "HdrOffRounded", - "HdrOffSelect", - "HdrOffSelectOutlined", - "HdrOffSelectRounded", - "HdrOffSelectSharp", - "HdrOffSelectTwoTone", - "HdrOffSharp", - "HdrOffTwoTone", - "HdrOn", - "HdrOnOutlined", - "HdrOnRounded", - "HdrOnSelect", - "HdrOnSelectOutlined", - "HdrOnSelectRounded", - "HdrOnSelectSharp", - "HdrOnSelectTwoTone", - "HdrOnSharp", - "HdrOnTwoTone", - "HdrPlus", - "HdrPlusOutlined", - "HdrPlusRounded", - "HdrPlusSharp", - "HdrPlusTwoTone", - "HdrStrong", - "HdrStrongOutlined", - "HdrStrongRounded", - "HdrStrongSharp", - "HdrStrongTwoTone", - "HdrWeak", - "HdrWeakOutlined", - "HdrWeakRounded", - "HdrWeakSharp", - "HdrWeakTwoTone", - "Headphones", - "HeadphonesBattery", - "HeadphonesBatteryOutlined", - "HeadphonesBatteryRounded", - "HeadphonesBatterySharp", - "HeadphonesBatteryTwoTone", - "HeadphonesOutlined", - "HeadphonesRounded", - "HeadphonesSharp", - "HeadphonesTwoTone", - "Headset", - "HeadsetMic", - "HeadsetMicOutlined", - "HeadsetMicRounded", - "HeadsetMicSharp", - "HeadsetMicTwoTone", - "HeadsetOff", - "HeadsetOffOutlined", - "HeadsetOffRounded", - "HeadsetOffSharp", - "HeadsetOffTwoTone", - "HeadsetOutlined", - "HeadsetRounded", - "HeadsetSharp", - "HeadsetTwoTone", - "Healing", - "HealingOutlined", - "HealingRounded", - "HealingSharp", - "HealingTwoTone", - "HealthAndSafety", - "HealthAndSafetyOutlined", - "HealthAndSafetyRounded", - "HealthAndSafetySharp", - "HealthAndSafetyTwoTone", - "Hearing", - "HearingDisabled", - "HearingDisabledOutlined", - "HearingDisabledRounded", - "HearingDisabledSharp", - "HearingDisabledTwoTone", - "HearingOutlined", - "HearingRounded", - "HearingSharp", - "HearingTwoTone", - "HeartBroken", - "HeartBrokenOutlined", - "HeartBrokenRounded", - "HeartBrokenSharp", - "HeartBrokenTwoTone", - "HeatPump", - "HeatPumpOutlined", - "HeatPumpRounded", - "HeatPumpSharp", - "HeatPumpTwoTone", - "Height", - "HeightOutlined", - "HeightRounded", - "HeightSharp", - "HeightTwoTone", - "Help", - "HelpCenter", - "HelpCenterOutlined", - "HelpCenterRounded", - "HelpCenterSharp", - "HelpCenterTwoTone", - "HelpOutline", - "HelpOutlineOutlined", - "HelpOutlineRounded", - "HelpOutlineSharp", - "HelpOutlineTwoTone", - "HelpOutlined", - "HelpRounded", - "HelpSharp", - "HelpTwoTone", - "Hevc", - "HevcOutlined", - "HevcRounded", - "HevcSharp", - "HevcTwoTone", - "Hexagon", - "HexagonOutlined", - "HexagonRounded", - "HexagonSharp", - "HexagonTwoTone", - "HideImage", - "HideImageOutlined", - "HideImageRounded", - "HideImageSharp", - "HideImageTwoTone", - "HideSource", - "HideSourceOutlined", - "HideSourceRounded", - "HideSourceSharp", - "HideSourceTwoTone", - "HighQuality", - "HighQualityOutlined", - "HighQualityRounded", - "HighQualitySharp", - "HighQualityTwoTone", - "Highlight", - "HighlightOff", - "HighlightOffOutlined", - "HighlightOffRounded", - "HighlightOffSharp", - "HighlightOffTwoTone", - "HighlightOutlined", - "HighlightRounded", - "HighlightSharp", - "HighlightTwoTone", - "Hiking", - "HikingOutlined", - "HikingRounded", - "HikingSharp", - "HikingTwoTone", - "History", - "HistoryEdu", - "HistoryEduOutlined", - "HistoryEduRounded", - "HistoryEduSharp", - "HistoryEduTwoTone", - "HistoryOutlined", - "HistoryRounded", - "HistorySharp", - "HistoryToggleOff", - "HistoryToggleOffOutlined", - "HistoryToggleOffRounded", - "HistoryToggleOffSharp", - "HistoryToggleOffTwoTone", - "HistoryTwoTone", - "Hive", - "HiveOutlined", - "HiveRounded", - "HiveSharp", - "HiveTwoTone", - "Hls", - "HlsOff", - "HlsOffOutlined", - "HlsOffRounded", - "HlsOffSharp", - "HlsOffTwoTone", - "HlsOutlined", - "HlsRounded", - "HlsSharp", - "HlsTwoTone", - "HolidayVillage", - "HolidayVillageOutlined", - "HolidayVillageRounded", - "HolidayVillageSharp", - "HolidayVillageTwoTone", - "Home", - "HomeMax", - "HomeMaxOutlined", - "HomeMaxRounded", - "HomeMaxSharp", - "HomeMaxTwoTone", - "HomeMini", - "HomeMiniOutlined", - "HomeMiniRounded", - "HomeMiniSharp", - "HomeMiniTwoTone", - "HomeOutlined", - "HomeRepairService", - "HomeRepairServiceOutlined", - "HomeRepairServiceRounded", - "HomeRepairServiceSharp", - "HomeRepairServiceTwoTone", - "HomeRounded", - "HomeSharp", - "HomeTwoTone", - "HomeWork", - "HomeWorkOutlined", - "HomeWorkRounded", - "HomeWorkSharp", - "HomeWorkTwoTone", - "HorizontalRule", - "HorizontalRuleOutlined", - "HorizontalRuleRounded", - "HorizontalRuleSharp", - "HorizontalRuleTwoTone", - "HorizontalSplit", - "HorizontalSplitOutlined", - "HorizontalSplitRounded", - "HorizontalSplitSharp", - "HorizontalSplitTwoTone", - "HotTub", - "HotTubOutlined", - "HotTubRounded", - "HotTubSharp", - "HotTubTwoTone", - "Hotel", - "HotelOutlined", - "HotelRounded", - "HotelSharp", - "HotelTwoTone", - "HourglassBottom", - "HourglassBottomOutlined", - "HourglassBottomRounded", - "HourglassBottomSharp", - "HourglassBottomTwoTone", - "HourglassDisabled", - "HourglassDisabledOutlined", - "HourglassDisabledRounded", - "HourglassDisabledSharp", - "HourglassDisabledTwoTone", - "HourglassEmpty", - "HourglassEmptyOutlined", - "HourglassEmptyRounded", - "HourglassEmptySharp", - "HourglassEmptyTwoTone", - "HourglassFull", - "HourglassFullOutlined", - "HourglassFullRounded", - "HourglassFullSharp", - "HourglassFullTwoTone", - "HourglassTop", - "HourglassTopOutlined", - "HourglassTopRounded", - "HourglassTopSharp", - "HourglassTopTwoTone", - "House", - "HouseOutlined", - "HouseRounded", - "HouseSharp", - "HouseSiding", - "HouseSidingOutlined", - "HouseSidingRounded", - "HouseSidingSharp", - "HouseSidingTwoTone", - "HouseTwoTone", - "Houseboat", - "HouseboatOutlined", - "HouseboatRounded", - "HouseboatSharp", - "HouseboatTwoTone", - "HowToReg", - "HowToRegOutlined", - "HowToRegRounded", - "HowToRegSharp", - "HowToRegTwoTone", - "HowToVote", - "HowToVoteOutlined", - "HowToVoteRounded", - "HowToVoteSharp", - "HowToVoteTwoTone", - "Html", - "HtmlOutlined", - "HtmlRounded", - "HtmlSharp", - "HtmlTwoTone", - "Http", - "HttpOutlined", - "HttpRounded", - "HttpSharp", - "HttpTwoTone", - "Https", - "HttpsOutlined", - "HttpsRounded", - "HttpsSharp", - "HttpsTwoTone", - "Hub", - "HubOutlined", - "HubRounded", - "HubSharp", - "HubTwoTone", - "Hvac", - "HvacOutlined", - "HvacRounded", - "HvacSharp", - "HvacTwoTone", - "IceSkating", - "IceSkatingOutlined", - "IceSkatingRounded", - "IceSkatingSharp", - "IceSkatingTwoTone", - "Icecream", - "IcecreamOutlined", - "IcecreamRounded", - "IcecreamSharp", - "IcecreamTwoTone", - "Image", - "ImageAspectRatio", - "ImageAspectRatioOutlined", - "ImageAspectRatioRounded", - "ImageAspectRatioSharp", - "ImageAspectRatioTwoTone", - "ImageNotSupported", - "ImageNotSupportedOutlined", - "ImageNotSupportedRounded", - "ImageNotSupportedSharp", - "ImageNotSupportedTwoTone", - "ImageOutlined", - "ImageRounded", - "ImageSearch", - "ImageSearchOutlined", - "ImageSearchRounded", - "ImageSearchSharp", - "ImageSearchTwoTone", - "ImageSharp", - "ImageTwoTone", - "ImagesearchRoller", - "ImagesearchRollerOutlined", - "ImagesearchRollerRounded", - "ImagesearchRollerSharp", - "ImagesearchRollerTwoTone", - "ImportContacts", - "ImportContactsOutlined", - "ImportContactsRounded", - "ImportContactsSharp", - "ImportContactsTwoTone", - "ImportExport", - "ImportExportOutlined", - "ImportExportRounded", - "ImportExportSharp", - "ImportExportTwoTone", - "ImportantDevices", - "ImportantDevicesOutlined", - "ImportantDevicesRounded", - "ImportantDevicesSharp", - "ImportantDevicesTwoTone", - "Inbox", - "InboxOutlined", - "InboxRounded", - "InboxSharp", - "InboxTwoTone", - "IndeterminateCheckBox", - "IndeterminateCheckBoxOutlined", - "IndeterminateCheckBoxRounded", - "IndeterminateCheckBoxSharp", - "IndeterminateCheckBoxTwoTone", - "Info", - "InfoOutlined", - "InfoRounded", - "InfoSharp", - "InfoTwoTone", - "Input", - "InputOutlined", - "InputRounded", - "InputSharp", - "InputTwoTone", - "InsertChart", - "InsertChartOutlined", - "InsertChartOutlinedOutlined", - "InsertChartOutlinedRounded", - "InsertChartOutlinedSharp", - "InsertChartOutlinedTwoTone", - "InsertChartRounded", - "InsertChartSharp", - "InsertChartTwoTone", - "InsertComment", - "InsertCommentOutlined", - "InsertCommentRounded", - "InsertCommentSharp", - "InsertCommentTwoTone", - "InsertDriveFile", - "InsertDriveFileOutlined", - "InsertDriveFileRounded", - "InsertDriveFileSharp", - "InsertDriveFileTwoTone", - "InsertEmoticon", - "InsertEmoticonOutlined", - "InsertEmoticonRounded", - "InsertEmoticonSharp", - "InsertEmoticonTwoTone", - "InsertInvitation", - "InsertInvitationOutlined", - "InsertInvitationRounded", - "InsertInvitationSharp", - "InsertInvitationTwoTone", - "InsertLink", - "InsertLinkOutlined", - "InsertLinkRounded", - "InsertLinkSharp", - "InsertLinkTwoTone", - "InsertPageBreak", - "InsertPageBreakOutlined", - "InsertPageBreakRounded", - "InsertPageBreakSharp", - "InsertPageBreakTwoTone", - "InsertPhoto", - "InsertPhotoOutlined", - "InsertPhotoRounded", - "InsertPhotoSharp", - "InsertPhotoTwoTone", - "Insights", - "InsightsOutlined", - "InsightsRounded", - "InsightsSharp", - "InsightsTwoTone", - "Instagram", - "InstallDesktop", - "InstallDesktopOutlined", - "InstallDesktopRounded", - "InstallDesktopSharp", - "InstallDesktopTwoTone", - "InstallMobile", - "InstallMobileOutlined", - "InstallMobileRounded", - "InstallMobileSharp", - "InstallMobileTwoTone", - "IntegrationInstructions", - "IntegrationInstructionsOutlined", - "IntegrationInstructionsRounded", - "IntegrationInstructionsSharp", - "IntegrationInstructionsTwoTone", - "Interests", - "InterestsOutlined", - "InterestsRounded", - "InterestsSharp", - "InterestsTwoTone", - "InterpreterMode", - "InterpreterModeOutlined", - "InterpreterModeRounded", - "InterpreterModeSharp", - "InterpreterModeTwoTone", - "Inventory", - "Inventory2", - "Inventory2Outlined", - "Inventory2Rounded", - "Inventory2Sharp", - "Inventory2TwoTone", - "InventoryOutlined", - "InventoryRounded", - "InventorySharp", - "InventoryTwoTone", - "InvertColors", - "InvertColorsOff", - "InvertColorsOffOutlined", - "InvertColorsOffRounded", - "InvertColorsOffSharp", - "InvertColorsOffTwoTone", - "InvertColorsOutlined", - "InvertColorsRounded", - "InvertColorsSharp", - "InvertColorsTwoTone", - "IosShare", - "IosShareOutlined", - "IosShareRounded", - "IosShareSharp", - "IosShareTwoTone", - "Iron", - "IronOutlined", - "IronRounded", - "IronSharp", - "IronTwoTone", - "Iso", - "IsoOutlined", - "IsoRounded", - "IsoSharp", - "IsoTwoTone", - "Javascript", - "JavascriptOutlined", - "JavascriptRounded", - "JavascriptSharp", - "JavascriptTwoTone", - "JoinFull", - "JoinFullOutlined", - "JoinFullRounded", - "JoinFullSharp", - "JoinFullTwoTone", - "JoinInner", - "JoinInnerOutlined", - "JoinInnerRounded", - "JoinInnerSharp", - "JoinInnerTwoTone", - "JoinLeft", - "JoinLeftOutlined", - "JoinLeftRounded", - "JoinLeftSharp", - "JoinLeftTwoTone", - "JoinRight", - "JoinRightOutlined", - "JoinRightRounded", - "JoinRightSharp", - "JoinRightTwoTone", - "Kayaking", - "KayakingOutlined", - "KayakingRounded", - "KayakingSharp", - "KayakingTwoTone", - "KebabDining", - "KebabDiningOutlined", - "KebabDiningRounded", - "KebabDiningSharp", - "KebabDiningTwoTone", - "Key", - "KeyOff", - "KeyOffOutlined", - "KeyOffRounded", - "KeyOffSharp", - "KeyOffTwoTone", - "KeyOutlined", - "KeyRounded", - "KeySharp", - "KeyTwoTone", - "Keyboard", - "KeyboardAlt", - "KeyboardAltOutlined", - "KeyboardAltRounded", - "KeyboardAltSharp", - "KeyboardAltTwoTone", - "KeyboardArrowDown", - "KeyboardArrowDownOutlined", - "KeyboardArrowDownRounded", - "KeyboardArrowDownSharp", - "KeyboardArrowDownTwoTone", - "KeyboardArrowLeft", - "KeyboardArrowLeftOutlined", - "KeyboardArrowLeftRounded", - "KeyboardArrowLeftSharp", - "KeyboardArrowLeftTwoTone", - "KeyboardArrowRight", - "KeyboardArrowRightOutlined", - "KeyboardArrowRightRounded", - "KeyboardArrowRightSharp", - "KeyboardArrowRightTwoTone", - "KeyboardArrowUp", - "KeyboardArrowUpOutlined", - "KeyboardArrowUpRounded", - "KeyboardArrowUpSharp", - "KeyboardArrowUpTwoTone", - "KeyboardBackspace", - "KeyboardBackspaceOutlined", - "KeyboardBackspaceRounded", - "KeyboardBackspaceSharp", - "KeyboardBackspaceTwoTone", - "KeyboardCapslock", - "KeyboardCapslockOutlined", - "KeyboardCapslockRounded", - "KeyboardCapslockSharp", - "KeyboardCapslockTwoTone", - "KeyboardCommandKey", - "KeyboardCommandKeyOutlined", - "KeyboardCommandKeyRounded", - "KeyboardCommandKeySharp", - "KeyboardCommandKeyTwoTone", - "KeyboardControlKey", - "KeyboardControlKeyOutlined", - "KeyboardControlKeyRounded", - "KeyboardControlKeySharp", - "KeyboardControlKeyTwoTone", - "KeyboardDoubleArrowDown", - "KeyboardDoubleArrowDownOutlined", - "KeyboardDoubleArrowDownRounded", - "KeyboardDoubleArrowDownSharp", - "KeyboardDoubleArrowDownTwoTone", - "KeyboardDoubleArrowLeft", - "KeyboardDoubleArrowLeftOutlined", - "KeyboardDoubleArrowLeftRounded", - "KeyboardDoubleArrowLeftSharp", - "KeyboardDoubleArrowLeftTwoTone", - "KeyboardDoubleArrowRight", - "KeyboardDoubleArrowRightOutlined", - "KeyboardDoubleArrowRightRounded", - "KeyboardDoubleArrowRightSharp", - "KeyboardDoubleArrowRightTwoTone", - "KeyboardDoubleArrowUp", - "KeyboardDoubleArrowUpOutlined", - "KeyboardDoubleArrowUpRounded", - "KeyboardDoubleArrowUpSharp", - "KeyboardDoubleArrowUpTwoTone", - "KeyboardHide", - "KeyboardHideOutlined", - "KeyboardHideRounded", - "KeyboardHideSharp", - "KeyboardHideTwoTone", - "KeyboardOptionKey", - "KeyboardOptionKeyOutlined", - "KeyboardOptionKeyRounded", - "KeyboardOptionKeySharp", - "KeyboardOptionKeyTwoTone", - "KeyboardOutlined", - "KeyboardReturn", - "KeyboardReturnOutlined", - "KeyboardReturnRounded", - "KeyboardReturnSharp", - "KeyboardReturnTwoTone", - "KeyboardRounded", - "KeyboardSharp", - "KeyboardTab", - "KeyboardTabOutlined", - "KeyboardTabRounded", - "KeyboardTabSharp", - "KeyboardTabTwoTone", - "KeyboardTwoTone", - "KeyboardVoice", - "KeyboardVoiceOutlined", - "KeyboardVoiceRounded", - "KeyboardVoiceSharp", - "KeyboardVoiceTwoTone", - "KingBed", - "KingBedOutlined", - "KingBedRounded", - "KingBedSharp", - "KingBedTwoTone", - "Kitchen", - "KitchenOutlined", - "KitchenRounded", - "KitchenSharp", - "KitchenTwoTone", - "Kitesurfing", - "KitesurfingOutlined", - "KitesurfingRounded", - "KitesurfingSharp", - "KitesurfingTwoTone", - "Label", - "LabelImportant", - "LabelImportantOutlined", - "LabelImportantRounded", - "LabelImportantSharp", - "LabelImportantTwoTone", - "LabelOff", - "LabelOffOutlined", - "LabelOffRounded", - "LabelOffSharp", - "LabelOffTwoTone", - "LabelOutlined", - "LabelRounded", - "LabelSharp", - "LabelTwoTone", - "Lan", - "LanOutlined", - "LanRounded", - "LanSharp", - "LanTwoTone", - "Landscape", - "LandscapeOutlined", - "LandscapeRounded", - "LandscapeSharp", - "LandscapeTwoTone", - "Landslide", - "LandslideOutlined", - "LandslideRounded", - "LandslideSharp", - "LandslideTwoTone", - "Language", - "LanguageOutlined", - "LanguageRounded", - "LanguageSharp", - "LanguageTwoTone", - "Laptop", - "LaptopChromebook", - "LaptopChromebookOutlined", - "LaptopChromebookRounded", - "LaptopChromebookSharp", - "LaptopChromebookTwoTone", - "LaptopMac", - "LaptopMacOutlined", - "LaptopMacRounded", - "LaptopMacSharp", - "LaptopMacTwoTone", - "LaptopOutlined", - "LaptopRounded", - "LaptopSharp", - "LaptopTwoTone", - "LaptopWindows", - "LaptopWindowsOutlined", - "LaptopWindowsRounded", - "LaptopWindowsSharp", - "LaptopWindowsTwoTone", - "LastPage", - "LastPageOutlined", - "LastPageRounded", - "LastPageSharp", - "LastPageTwoTone", - "Launch", - "LaunchOutlined", - "LaunchRounded", - "LaunchSharp", - "LaunchTwoTone", - "Layers", - "LayersClear", - "LayersClearOutlined", - "LayersClearRounded", - "LayersClearSharp", - "LayersClearTwoTone", - "LayersOutlined", - "LayersRounded", - "LayersSharp", - "LayersTwoTone", - "Leaderboard", - "LeaderboardOutlined", - "LeaderboardRounded", - "LeaderboardSharp", - "LeaderboardTwoTone", - "LeakAdd", - "LeakAddOutlined", - "LeakAddRounded", - "LeakAddSharp", - "LeakAddTwoTone", - "LeakRemove", - "LeakRemoveOutlined", - "LeakRemoveRounded", - "LeakRemoveSharp", - "LeakRemoveTwoTone", - "LegendToggle", - "LegendToggleOutlined", - "LegendToggleRounded", - "LegendToggleSharp", - "LegendToggleTwoTone", - "Lens", - "LensBlur", - "LensBlurOutlined", - "LensBlurRounded", - "LensBlurSharp", - "LensBlurTwoTone", - "LensOutlined", - "LensRounded", - "LensSharp", - "LensTwoTone", - "LibraryAdd", - "LibraryAddCheck", - "LibraryAddCheckOutlined", - "LibraryAddCheckRounded", - "LibraryAddCheckSharp", - "LibraryAddCheckTwoTone", - "LibraryAddOutlined", - "LibraryAddRounded", - "LibraryAddSharp", - "LibraryAddTwoTone", - "LibraryBooks", - "LibraryBooksOutlined", - "LibraryBooksRounded", - "LibraryBooksSharp", - "LibraryBooksTwoTone", - "LibraryMusic", - "LibraryMusicOutlined", - "LibraryMusicRounded", - "LibraryMusicSharp", - "LibraryMusicTwoTone", - "Light", - "LightMode", - "LightModeOutlined", - "LightModeRounded", - "LightModeSharp", - "LightModeTwoTone", - "LightOutlined", - "LightRounded", - "LightSharp", - "LightTwoTone", - "Lightbulb", - "LightbulbCircle", - "LightbulbCircleOutlined", - "LightbulbCircleRounded", - "LightbulbCircleSharp", - "LightbulbCircleTwoTone", - "LightbulbOutlined", - "LightbulbRounded", - "LightbulbSharp", - "LightbulbTwoTone", - "LineAxis", - "LineAxisOutlined", - "LineAxisRounded", - "LineAxisSharp", - "LineAxisTwoTone", - "LineStyle", - "LineStyleOutlined", - "LineStyleRounded", - "LineStyleSharp", - "LineStyleTwoTone", - "LineWeight", - "LineWeightOutlined", - "LineWeightRounded", - "LineWeightSharp", - "LineWeightTwoTone", - "LinearScale", - "LinearScaleOutlined", - "LinearScaleRounded", - "LinearScaleSharp", - "LinearScaleTwoTone", - "Link", - "LinkOff", - "LinkOffOutlined", - "LinkOffRounded", - "LinkOffSharp", - "LinkOffTwoTone", - "LinkOutlined", - "LinkRounded", - "LinkSharp", - "LinkTwoTone", - "LinkedCamera", - "LinkedCameraOutlined", - "LinkedCameraRounded", - "LinkedCameraSharp", - "LinkedCameraTwoTone", - "LinkedIn", - "Liquor", - "LiquorOutlined", - "LiquorRounded", - "LiquorSharp", - "LiquorTwoTone", - "List", - "ListAlt", - "ListAltOutlined", - "ListAltRounded", - "ListAltSharp", - "ListAltTwoTone", - "ListOutlined", - "ListRounded", - "ListSharp", - "ListTwoTone", - "LiveHelp", - "LiveHelpOutlined", - "LiveHelpRounded", - "LiveHelpSharp", - "LiveHelpTwoTone", - "LiveTv", - "LiveTvOutlined", - "LiveTvRounded", - "LiveTvSharp", - "LiveTvTwoTone", - "Living", - "LivingOutlined", - "LivingRounded", - "LivingSharp", - "LivingTwoTone", - "LocalActivity", - "LocalActivityOutlined", - "LocalActivityRounded", - "LocalActivitySharp", - "LocalActivityTwoTone", - "LocalAirport", - "LocalAirportOutlined", - "LocalAirportRounded", - "LocalAirportSharp", - "LocalAirportTwoTone", - "LocalAtm", - "LocalAtmOutlined", - "LocalAtmRounded", - "LocalAtmSharp", - "LocalAtmTwoTone", - "LocalBar", - "LocalBarOutlined", - "LocalBarRounded", - "LocalBarSharp", - "LocalBarTwoTone", - "LocalCafe", - "LocalCafeOutlined", - "LocalCafeRounded", - "LocalCafeSharp", - "LocalCafeTwoTone", - "LocalCarWash", - "LocalCarWashOutlined", - "LocalCarWashRounded", - "LocalCarWashSharp", - "LocalCarWashTwoTone", - "LocalConvenienceStore", - "LocalConvenienceStoreOutlined", - "LocalConvenienceStoreRounded", - "LocalConvenienceStoreSharp", - "LocalConvenienceStoreTwoTone", - "LocalDining", - "LocalDiningOutlined", - "LocalDiningRounded", - "LocalDiningSharp", - "LocalDiningTwoTone", - "LocalDrink", - "LocalDrinkOutlined", - "LocalDrinkRounded", - "LocalDrinkSharp", - "LocalDrinkTwoTone", - "LocalFireDepartment", - "LocalFireDepartmentOutlined", - "LocalFireDepartmentRounded", - "LocalFireDepartmentSharp", - "LocalFireDepartmentTwoTone", - "LocalFlorist", - "LocalFloristOutlined", - "LocalFloristRounded", - "LocalFloristSharp", - "LocalFloristTwoTone", - "LocalGasStation", - "LocalGasStationOutlined", - "LocalGasStationRounded", - "LocalGasStationSharp", - "LocalGasStationTwoTone", - "LocalGroceryStore", - "LocalGroceryStoreOutlined", - "LocalGroceryStoreRounded", - "LocalGroceryStoreSharp", - "LocalGroceryStoreTwoTone", - "LocalHospital", - "LocalHospitalOutlined", - "LocalHospitalRounded", - "LocalHospitalSharp", - "LocalHospitalTwoTone", - "LocalHotel", - "LocalHotelOutlined", - "LocalHotelRounded", - "LocalHotelSharp", - "LocalHotelTwoTone", - "LocalLaundryService", - "LocalLaundryServiceOutlined", - "LocalLaundryServiceRounded", - "LocalLaundryServiceSharp", - "LocalLaundryServiceTwoTone", - "LocalLibrary", - "LocalLibraryOutlined", - "LocalLibraryRounded", - "LocalLibrarySharp", - "LocalLibraryTwoTone", - "LocalMall", - "LocalMallOutlined", - "LocalMallRounded", - "LocalMallSharp", - "LocalMallTwoTone", - "LocalMovies", - "LocalMoviesOutlined", - "LocalMoviesRounded", - "LocalMoviesSharp", - "LocalMoviesTwoTone", - "LocalOffer", - "LocalOfferOutlined", - "LocalOfferRounded", - "LocalOfferSharp", - "LocalOfferTwoTone", - "LocalParking", - "LocalParkingOutlined", - "LocalParkingRounded", - "LocalParkingSharp", - "LocalParkingTwoTone", - "LocalPharmacy", - "LocalPharmacyOutlined", - "LocalPharmacyRounded", - "LocalPharmacySharp", - "LocalPharmacyTwoTone", - "LocalPhone", - "LocalPhoneOutlined", - "LocalPhoneRounded", - "LocalPhoneSharp", - "LocalPhoneTwoTone", - "LocalPizza", - "LocalPizzaOutlined", - "LocalPizzaRounded", - "LocalPizzaSharp", - "LocalPizzaTwoTone", - "LocalPlay", - "LocalPlayOutlined", - "LocalPlayRounded", - "LocalPlaySharp", - "LocalPlayTwoTone", - "LocalPolice", - "LocalPoliceOutlined", - "LocalPoliceRounded", - "LocalPoliceSharp", - "LocalPoliceTwoTone", - "LocalPostOffice", - "LocalPostOfficeOutlined", - "LocalPostOfficeRounded", - "LocalPostOfficeSharp", - "LocalPostOfficeTwoTone", - "LocalPrintshop", - "LocalPrintshopOutlined", - "LocalPrintshopRounded", - "LocalPrintshopSharp", - "LocalPrintshopTwoTone", - "LocalSee", - "LocalSeeOutlined", - "LocalSeeRounded", - "LocalSeeSharp", - "LocalSeeTwoTone", - "LocalShipping", - "LocalShippingOutlined", - "LocalShippingRounded", - "LocalShippingSharp", - "LocalShippingTwoTone", - "LocalTaxi", - "LocalTaxiOutlined", - "LocalTaxiRounded", - "LocalTaxiSharp", - "LocalTaxiTwoTone", - "LocationCity", - "LocationCityOutlined", - "LocationCityRounded", - "LocationCitySharp", - "LocationCityTwoTone", - "LocationDisabled", - "LocationDisabledOutlined", - "LocationDisabledRounded", - "LocationDisabledSharp", - "LocationDisabledTwoTone", - "LocationOff", - "LocationOffOutlined", - "LocationOffRounded", - "LocationOffSharp", - "LocationOffTwoTone", - "LocationOn", - "LocationOnOutlined", - "LocationOnRounded", - "LocationOnSharp", - "LocationOnTwoTone", - "LocationSearching", - "LocationSearchingOutlined", - "LocationSearchingRounded", - "LocationSearchingSharp", - "LocationSearchingTwoTone", - "Lock", - "LockClock", - "LockClockOutlined", - "LockClockRounded", - "LockClockSharp", - "LockClockTwoTone", - "LockOpen", - "LockOpenOutlined", - "LockOpenRounded", - "LockOpenSharp", - "LockOpenTwoTone", - "LockOutlined", - "LockPerson", - "LockPersonOutlined", - "LockPersonRounded", - "LockPersonSharp", - "LockPersonTwoTone", - "LockReset", - "LockResetOutlined", - "LockResetRounded", - "LockResetSharp", - "LockResetTwoTone", - "LockRounded", - "LockSharp", - "LockTwoTone", - "Login", - "LoginOutlined", - "LoginRounded", - "LoginSharp", - "LoginTwoTone", - "LogoDev", - "LogoDevOutlined", - "LogoDevRounded", - "LogoDevSharp", - "LogoDevTwoTone", - "Logout", - "LogoutOutlined", - "LogoutRounded", - "LogoutSharp", - "LogoutTwoTone", - "Looks", - "Looks3", - "Looks3Outlined", - "Looks3Rounded", - "Looks3Sharp", - "Looks3TwoTone", - "Looks4", - "Looks4Outlined", - "Looks4Rounded", - "Looks4Sharp", - "Looks4TwoTone", - "Looks5", - "Looks5Outlined", - "Looks5Rounded", - "Looks5Sharp", - "Looks5TwoTone", - "Looks6", - "Looks6Outlined", - "Looks6Rounded", - "Looks6Sharp", - "Looks6TwoTone", - "LooksOne", - "LooksOneOutlined", - "LooksOneRounded", - "LooksOneSharp", - "LooksOneTwoTone", - "LooksOutlined", - "LooksRounded", - "LooksSharp", - "LooksTwo", - "LooksTwoOutlined", - "LooksTwoRounded", - "LooksTwoSharp", - "LooksTwoTone", - "LooksTwoTwoTone", - "Loop", - "LoopOutlined", - "LoopRounded", - "LoopSharp", - "LoopTwoTone", - "Loupe", - "LoupeOutlined", - "LoupeRounded", - "LoupeSharp", - "LoupeTwoTone", - "LowPriority", - "LowPriorityOutlined", - "LowPriorityRounded", - "LowPrioritySharp", - "LowPriorityTwoTone", - "Loyalty", - "LoyaltyOutlined", - "LoyaltyRounded", - "LoyaltySharp", - "LoyaltyTwoTone", - "LteMobiledata", - "LteMobiledataOutlined", - "LteMobiledataRounded", - "LteMobiledataSharp", - "LteMobiledataTwoTone", - "LtePlusMobiledata", - "LtePlusMobiledataOutlined", - "LtePlusMobiledataRounded", - "LtePlusMobiledataSharp", - "LtePlusMobiledataTwoTone", - "Luggage", - "LuggageOutlined", - "LuggageRounded", - "LuggageSharp", - "LuggageTwoTone", - "LunchDining", - "LunchDiningOutlined", - "LunchDiningRounded", - "LunchDiningSharp", - "LunchDiningTwoTone", - "Lyrics", - "LyricsOutlined", - "LyricsRounded", - "LyricsSharp", - "LyricsTwoTone", - "MacroOff", - "MacroOffOutlined", - "MacroOffRounded", - "MacroOffSharp", - "MacroOffTwoTone", - "Mail", - "MailLock", - "MailLockOutlined", - "MailLockRounded", - "MailLockSharp", - "MailLockTwoTone", - "MailOutline", - "MailOutlineOutlined", - "MailOutlineRounded", - "MailOutlineSharp", - "MailOutlineTwoTone", - "MailOutlined", - "MailRounded", - "MailSharp", - "MailTwoTone", - "Male", - "MaleOutlined", - "MaleRounded", - "MaleSharp", - "MaleTwoTone", - "Man", - "Man2", - "Man2Outlined", - "Man2Rounded", - "Man2Sharp", - "Man2TwoTone", - "Man3", - "Man3Outlined", - "Man3Rounded", - "Man3Sharp", - "Man3TwoTone", - "Man4", - "Man4Outlined", - "Man4Rounded", - "Man4Sharp", - "Man4TwoTone", - "ManOutlined", - "ManRounded", - "ManSharp", - "ManTwoTone", - "ManageAccounts", - "ManageAccountsOutlined", - "ManageAccountsRounded", - "ManageAccountsSharp", - "ManageAccountsTwoTone", - "ManageHistory", - "ManageHistoryOutlined", - "ManageHistoryRounded", - "ManageHistorySharp", - "ManageHistoryTwoTone", - "ManageSearch", - "ManageSearchOutlined", - "ManageSearchRounded", - "ManageSearchSharp", - "ManageSearchTwoTone", - "Map", - "MapOutlined", - "MapRounded", - "MapSharp", - "MapTwoTone", - "MapsHomeWork", - "MapsHomeWorkOutlined", - "MapsHomeWorkRounded", - "MapsHomeWorkSharp", - "MapsHomeWorkTwoTone", - "MapsUgc", - "MapsUgcOutlined", - "MapsUgcRounded", - "MapsUgcSharp", - "MapsUgcTwoTone", - "Margin", - "MarginOutlined", - "MarginRounded", - "MarginSharp", - "MarginTwoTone", - "MarkAsUnread", - "MarkAsUnreadOutlined", - "MarkAsUnreadRounded", - "MarkAsUnreadSharp", - "MarkAsUnreadTwoTone", - "MarkChatRead", - "MarkChatReadOutlined", - "MarkChatReadRounded", - "MarkChatReadSharp", - "MarkChatReadTwoTone", - "MarkChatUnread", - "MarkChatUnreadOutlined", - "MarkChatUnreadRounded", - "MarkChatUnreadSharp", - "MarkChatUnreadTwoTone", - "MarkEmailRead", - "MarkEmailReadOutlined", - "MarkEmailReadRounded", - "MarkEmailReadSharp", - "MarkEmailReadTwoTone", - "MarkEmailUnread", - "MarkEmailUnreadOutlined", - "MarkEmailUnreadRounded", - "MarkEmailUnreadSharp", - "MarkEmailUnreadTwoTone", - "MarkUnreadChatAlt", - "MarkUnreadChatAltOutlined", - "MarkUnreadChatAltRounded", - "MarkUnreadChatAltSharp", - "MarkUnreadChatAltTwoTone", - "Markunread", - "MarkunreadMailbox", - "MarkunreadMailboxOutlined", - "MarkunreadMailboxRounded", - "MarkunreadMailboxSharp", - "MarkunreadMailboxTwoTone", - "MarkunreadOutlined", - "MarkunreadRounded", - "MarkunreadSharp", - "MarkunreadTwoTone", - "Masks", - "MasksOutlined", - "MasksRounded", - "MasksSharp", - "MasksTwoTone", - "Maximize", - "MaximizeOutlined", - "MaximizeRounded", - "MaximizeSharp", - "MaximizeTwoTone", - "MediaBluetoothOff", - "MediaBluetoothOffOutlined", - "MediaBluetoothOffRounded", - "MediaBluetoothOffSharp", - "MediaBluetoothOffTwoTone", - "MediaBluetoothOn", - "MediaBluetoothOnOutlined", - "MediaBluetoothOnRounded", - "MediaBluetoothOnSharp", - "MediaBluetoothOnTwoTone", - "Mediation", - "MediationOutlined", - "MediationRounded", - "MediationSharp", - "MediationTwoTone", - "MedicalInformation", - "MedicalInformationOutlined", - "MedicalInformationRounded", - "MedicalInformationSharp", - "MedicalInformationTwoTone", - "MedicalServices", - "MedicalServicesOutlined", - "MedicalServicesRounded", - "MedicalServicesSharp", - "MedicalServicesTwoTone", - "Medication", - "MedicationLiquid", - "MedicationLiquidOutlined", - "MedicationLiquidRounded", - "MedicationLiquidSharp", - "MedicationLiquidTwoTone", - "MedicationOutlined", - "MedicationRounded", - "MedicationSharp", - "MedicationTwoTone", - "MeetingRoom", - "MeetingRoomOutlined", - "MeetingRoomRounded", - "MeetingRoomSharp", - "MeetingRoomTwoTone", - "Memory", - "MemoryOutlined", - "MemoryRounded", - "MemorySharp", - "MemoryTwoTone", - "Menu", - "MenuBook", - "MenuBookOutlined", - "MenuBookRounded", - "MenuBookSharp", - "MenuBookTwoTone", - "MenuOpen", - "MenuOpenOutlined", - "MenuOpenRounded", - "MenuOpenSharp", - "MenuOpenTwoTone", - "MenuOutlined", - "MenuRounded", - "MenuSharp", - "MenuTwoTone", - "Merge", - "MergeOutlined", - "MergeRounded", - "MergeSharp", - "MergeTwoTone", - "MergeType", - "MergeTypeOutlined", - "MergeTypeRounded", - "MergeTypeSharp", - "MergeTypeTwoTone", - "Message", - "MessageOutlined", - "MessageRounded", - "MessageSharp", - "MessageTwoTone", - "Mic", - "MicExternalOff", - "MicExternalOffOutlined", - "MicExternalOffRounded", - "MicExternalOffSharp", - "MicExternalOffTwoTone", - "MicExternalOn", - "MicExternalOnOutlined", - "MicExternalOnRounded", - "MicExternalOnSharp", - "MicExternalOnTwoTone", - "MicNone", - "MicNoneOutlined", - "MicNoneRounded", - "MicNoneSharp", - "MicNoneTwoTone", - "MicOff", - "MicOffOutlined", - "MicOffRounded", - "MicOffSharp", - "MicOffTwoTone", - "MicOutlined", - "MicRounded", - "MicSharp", - "MicTwoTone", - "Microsoft", - "Microwave", - "MicrowaveOutlined", - "MicrowaveRounded", - "MicrowaveSharp", - "MicrowaveTwoTone", - "MilitaryTech", - "MilitaryTechOutlined", - "MilitaryTechRounded", - "MilitaryTechSharp", - "MilitaryTechTwoTone", - "Minimize", - "MinimizeOutlined", - "MinimizeRounded", - "MinimizeSharp", - "MinimizeTwoTone", - "MinorCrash", - "MinorCrashOutlined", - "MinorCrashRounded", - "MinorCrashSharp", - "MinorCrashTwoTone", - "MissedVideoCall", - "MissedVideoCallOutlined", - "MissedVideoCallRounded", - "MissedVideoCallSharp", - "MissedVideoCallTwoTone", - "Mms", - "MmsOutlined", - "MmsRounded", - "MmsSharp", - "MmsTwoTone", - "MobileFriendly", - "MobileFriendlyOutlined", - "MobileFriendlyRounded", - "MobileFriendlySharp", - "MobileFriendlyTwoTone", - "MobileOff", - "MobileOffOutlined", - "MobileOffRounded", - "MobileOffSharp", - "MobileOffTwoTone", - "MobileScreenShare", - "MobileScreenShareOutlined", - "MobileScreenShareRounded", - "MobileScreenShareSharp", - "MobileScreenShareTwoTone", - "MobiledataOff", - "MobiledataOffOutlined", - "MobiledataOffRounded", - "MobiledataOffSharp", - "MobiledataOffTwoTone", - "Mode", - "ModeComment", - "ModeCommentOutlined", - "ModeCommentRounded", - "ModeCommentSharp", - "ModeCommentTwoTone", - "ModeEdit", - "ModeEditOutline", - "ModeEditOutlineOutlined", - "ModeEditOutlineRounded", - "ModeEditOutlineSharp", - "ModeEditOutlineTwoTone", - "ModeEditOutlined", - "ModeEditRounded", - "ModeEditSharp", - "ModeEditTwoTone", - "ModeFanOff", - "ModeFanOffOutlined", - "ModeFanOffRounded", - "ModeFanOffSharp", - "ModeFanOffTwoTone", - "ModeNight", - "ModeNightOutlined", - "ModeNightRounded", - "ModeNightSharp", - "ModeNightTwoTone", - "ModeOfTravel", - "ModeOfTravelOutlined", - "ModeOfTravelRounded", - "ModeOfTravelSharp", - "ModeOfTravelTwoTone", - "ModeOutlined", - "ModeRounded", - "ModeSharp", - "ModeStandby", - "ModeStandbyOutlined", - "ModeStandbyRounded", - "ModeStandbySharp", - "ModeStandbyTwoTone", - "ModeTwoTone", - "ModelTraining", - "ModelTrainingOutlined", - "ModelTrainingRounded", - "ModelTrainingSharp", - "ModelTrainingTwoTone", - "MonetizationOn", - "MonetizationOnOutlined", - "MonetizationOnRounded", - "MonetizationOnSharp", - "MonetizationOnTwoTone", - "Money", - "MoneyOff", - "MoneyOffCsred", - "MoneyOffCsredOutlined", - "MoneyOffCsredRounded", - "MoneyOffCsredSharp", - "MoneyOffCsredTwoTone", - "MoneyOffOutlined", - "MoneyOffRounded", - "MoneyOffSharp", - "MoneyOffTwoTone", - "MoneyOutlined", - "MoneyRounded", - "MoneySharp", - "MoneyTwoTone", - "Monitor", - "MonitorHeart", - "MonitorHeartOutlined", - "MonitorHeartRounded", - "MonitorHeartSharp", - "MonitorHeartTwoTone", - "MonitorOutlined", - "MonitorRounded", - "MonitorSharp", - "MonitorTwoTone", - "MonitorWeight", - "MonitorWeightOutlined", - "MonitorWeightRounded", - "MonitorWeightSharp", - "MonitorWeightTwoTone", - "MonochromePhotos", - "MonochromePhotosOutlined", - "MonochromePhotosRounded", - "MonochromePhotosSharp", - "MonochromePhotosTwoTone", - "Mood", - "MoodBad", - "MoodBadOutlined", - "MoodBadRounded", - "MoodBadSharp", - "MoodBadTwoTone", - "MoodOutlined", - "MoodRounded", - "MoodSharp", - "MoodTwoTone", - "More", - "MoreHoriz", - "MoreHorizOutlined", - "MoreHorizRounded", - "MoreHorizSharp", - "MoreHorizTwoTone", - "MoreOutlined", - "MoreRounded", - "MoreSharp", - "MoreTime", - "MoreTimeOutlined", - "MoreTimeRounded", - "MoreTimeSharp", - "MoreTimeTwoTone", - "MoreTwoTone", - "MoreVert", - "MoreVertOutlined", - "MoreVertRounded", - "MoreVertSharp", - "MoreVertTwoTone", - "Mosque", - "MosqueOutlined", - "MosqueRounded", - "MosqueSharp", - "MosqueTwoTone", - "MotionPhotosAuto", - "MotionPhotosAutoOutlined", - "MotionPhotosAutoRounded", - "MotionPhotosAutoSharp", - "MotionPhotosAutoTwoTone", - "MotionPhotosOff", - "MotionPhotosOffOutlined", - "MotionPhotosOffRounded", - "MotionPhotosOffSharp", - "MotionPhotosOffTwoTone", - "Mouse", - "MouseOutlined", - "MouseRounded", - "MouseSharp", - "MouseTwoTone", - "MoveDown", - "MoveDownOutlined", - "MoveDownRounded", - "MoveDownSharp", - "MoveDownTwoTone", - "MoveToInbox", - "MoveToInboxOutlined", - "MoveToInboxRounded", - "MoveToInboxSharp", - "MoveToInboxTwoTone", - "MoveUp", - "MoveUpOutlined", - "MoveUpRounded", - "MoveUpSharp", - "MoveUpTwoTone", - "Movie", - "MovieCreation", - "MovieCreationOutlined", - "MovieCreationRounded", - "MovieCreationSharp", - "MovieCreationTwoTone", - "MovieFilter", - "MovieFilterOutlined", - "MovieFilterRounded", - "MovieFilterSharp", - "MovieFilterTwoTone", - "MovieOutlined", - "MovieRounded", - "MovieSharp", - "MovieTwoTone", - "Moving", - "MovingOutlined", - "MovingRounded", - "MovingSharp", - "MovingTwoTone", - "Mp", - "MpOutlined", - "MpRounded", - "MpSharp", - "MpTwoTone", - "MultilineChart", - "MultilineChartOutlined", - "MultilineChartRounded", - "MultilineChartSharp", - "MultilineChartTwoTone", - "MultipleStop", - "MultipleStopOutlined", - "MultipleStopRounded", - "MultipleStopSharp", - "MultipleStopTwoTone", - "Museum", - "MuseumOutlined", - "MuseumRounded", - "MuseumSharp", - "MuseumTwoTone", - "MusicNote", - "MusicNoteOutlined", - "MusicNoteRounded", - "MusicNoteSharp", - "MusicNoteTwoTone", - "MusicOff", - "MusicOffOutlined", - "MusicOffRounded", - "MusicOffSharp", - "MusicOffTwoTone", - "MusicVideo", - "MusicVideoOutlined", - "MusicVideoRounded", - "MusicVideoSharp", - "MusicVideoTwoTone", - "MyLocation", - "MyLocationOutlined", - "MyLocationRounded", - "MyLocationSharp", - "MyLocationTwoTone", - "Nat", - "NatOutlined", - "NatRounded", - "NatSharp", - "NatTwoTone", - "Nature", - "NatureOutlined", - "NaturePeople", - "NaturePeopleOutlined", - "NaturePeopleRounded", - "NaturePeopleSharp", - "NaturePeopleTwoTone", - "NatureRounded", - "NatureSharp", - "NatureTwoTone", - "NavigateBefore", - "NavigateBeforeOutlined", - "NavigateBeforeRounded", - "NavigateBeforeSharp", - "NavigateBeforeTwoTone", - "NavigateNext", - "NavigateNextOutlined", - "NavigateNextRounded", - "NavigateNextSharp", - "NavigateNextTwoTone", - "Navigation", - "NavigationOutlined", - "NavigationRounded", - "NavigationSharp", - "NavigationTwoTone", - "NearMe", - "NearMeDisabled", - "NearMeDisabledOutlined", - "NearMeDisabledRounded", - "NearMeDisabledSharp", - "NearMeDisabledTwoTone", - "NearMeOutlined", - "NearMeRounded", - "NearMeSharp", - "NearMeTwoTone", - "NearbyError", - "NearbyErrorOutlined", - "NearbyErrorRounded", - "NearbyErrorSharp", - "NearbyErrorTwoTone", - "NearbyOff", - "NearbyOffOutlined", - "NearbyOffRounded", - "NearbyOffSharp", - "NearbyOffTwoTone", - "NestCamWiredStand", - "NestCamWiredStandOutlined", - "NestCamWiredStandRounded", - "NestCamWiredStandSharp", - "NestCamWiredStandTwoTone", - "NetworkCell", - "NetworkCellOutlined", - "NetworkCellRounded", - "NetworkCellSharp", - "NetworkCellTwoTone", - "NetworkCheck", - "NetworkCheckOutlined", - "NetworkCheckRounded", - "NetworkCheckSharp", - "NetworkCheckTwoTone", - "NetworkLocked", - "NetworkLockedOutlined", - "NetworkLockedRounded", - "NetworkLockedSharp", - "NetworkLockedTwoTone", - "NetworkPing", - "NetworkPingOutlined", - "NetworkPingRounded", - "NetworkPingSharp", - "NetworkPingTwoTone", - "NetworkWifi", - "NetworkWifi1Bar", - "NetworkWifi1BarOutlined", - "NetworkWifi1BarRounded", - "NetworkWifi1BarSharp", - "NetworkWifi1BarTwoTone", - "NetworkWifi2Bar", - "NetworkWifi2BarOutlined", - "NetworkWifi2BarRounded", - "NetworkWifi2BarSharp", - "NetworkWifi2BarTwoTone", - "NetworkWifi3Bar", - "NetworkWifi3BarOutlined", - "NetworkWifi3BarRounded", - "NetworkWifi3BarSharp", - "NetworkWifi3BarTwoTone", - "NetworkWifiOutlined", - "NetworkWifiRounded", - "NetworkWifiSharp", - "NetworkWifiTwoTone", - "NewReleases", - "NewReleasesOutlined", - "NewReleasesRounded", - "NewReleasesSharp", - "NewReleasesTwoTone", - "Newspaper", - "NewspaperOutlined", - "NewspaperRounded", - "NewspaperSharp", - "NewspaperTwoTone", - "NextPlan", - "NextPlanOutlined", - "NextPlanRounded", - "NextPlanSharp", - "NextPlanTwoTone", - "NextWeek", - "NextWeekOutlined", - "NextWeekRounded", - "NextWeekSharp", - "NextWeekTwoTone", - "Nfc", - "NfcOutlined", - "NfcRounded", - "NfcSharp", - "NfcTwoTone", - "NightShelter", - "NightShelterOutlined", - "NightShelterRounded", - "NightShelterSharp", - "NightShelterTwoTone", - "Nightlife", - "NightlifeOutlined", - "NightlifeRounded", - "NightlifeSharp", - "NightlifeTwoTone", - "Nightlight", - "NightlightOutlined", - "NightlightRound", - "NightlightRoundOutlined", - "NightlightRoundRounded", - "NightlightRoundSharp", - "NightlightRoundTwoTone", - "NightlightRounded", - "NightlightSharp", - "NightlightTwoTone", - "NightsStay", - "NightsStayOutlined", - "NightsStayRounded", - "NightsStaySharp", - "NightsStayTwoTone", - "NoAccounts", - "NoAccountsOutlined", - "NoAccountsRounded", - "NoAccountsSharp", - "NoAccountsTwoTone", - "NoAdultContent", - "NoAdultContentOutlined", - "NoAdultContentRounded", - "NoAdultContentSharp", - "NoAdultContentTwoTone", - "NoBackpack", - "NoBackpackOutlined", - "NoBackpackRounded", - "NoBackpackSharp", - "NoBackpackTwoTone", - "NoCrash", - "NoCrashOutlined", - "NoCrashRounded", - "NoCrashSharp", - "NoCrashTwoTone", - "NoDrinks", - "NoDrinksOutlined", - "NoDrinksRounded", - "NoDrinksSharp", - "NoDrinksTwoTone", - "NoEncryption", - "NoEncryptionGmailerrorred", - "NoEncryptionGmailerrorredOutlined", - "NoEncryptionGmailerrorredRounded", - "NoEncryptionGmailerrorredSharp", - "NoEncryptionGmailerrorredTwoTone", - "NoEncryptionOutlined", - "NoEncryptionRounded", - "NoEncryptionSharp", - "NoEncryptionTwoTone", - "NoFlash", - "NoFlashOutlined", - "NoFlashRounded", - "NoFlashSharp", - "NoFlashTwoTone", - "NoFood", - "NoFoodOutlined", - "NoFoodRounded", - "NoFoodSharp", - "NoFoodTwoTone", - "NoLuggage", - "NoLuggageOutlined", - "NoLuggageRounded", - "NoLuggageSharp", - "NoLuggageTwoTone", - "NoMeals", - "NoMealsOutlined", - "NoMealsRounded", - "NoMealsSharp", - "NoMealsTwoTone", - "NoMeetingRoom", - "NoMeetingRoomOutlined", - "NoMeetingRoomRounded", - "NoMeetingRoomSharp", - "NoMeetingRoomTwoTone", - "NoPhotography", - "NoPhotographyOutlined", - "NoPhotographyRounded", - "NoPhotographySharp", - "NoPhotographyTwoTone", - "NoSim", - "NoSimOutlined", - "NoSimRounded", - "NoSimSharp", - "NoSimTwoTone", - "NoStroller", - "NoStrollerOutlined", - "NoStrollerRounded", - "NoStrollerSharp", - "NoStrollerTwoTone", - "NoTransfer", - "NoTransferOutlined", - "NoTransferRounded", - "NoTransferSharp", - "NoTransferTwoTone", - "NoiseAware", - "NoiseAwareOutlined", - "NoiseAwareRounded", - "NoiseAwareSharp", - "NoiseAwareTwoTone", - "NoiseControlOff", - "NoiseControlOffOutlined", - "NoiseControlOffRounded", - "NoiseControlOffSharp", - "NoiseControlOffTwoTone", - "NordicWalking", - "NordicWalkingOutlined", - "NordicWalkingRounded", - "NordicWalkingSharp", - "NordicWalkingTwoTone", - "North", - "NorthEast", - "NorthEastOutlined", - "NorthEastRounded", - "NorthEastSharp", - "NorthEastTwoTone", - "NorthOutlined", - "NorthRounded", - "NorthSharp", - "NorthTwoTone", - "NorthWest", - "NorthWestOutlined", - "NorthWestRounded", - "NorthWestSharp", - "NorthWestTwoTone", - "NotAccessible", - "NotAccessibleOutlined", - "NotAccessibleRounded", - "NotAccessibleSharp", - "NotAccessibleTwoTone", - "NotInterested", - "NotInterestedOutlined", - "NotInterestedRounded", - "NotInterestedSharp", - "NotInterestedTwoTone", - "NotListedLocation", - "NotListedLocationOutlined", - "NotListedLocationRounded", - "NotListedLocationSharp", - "NotListedLocationTwoTone", - "NotStarted", - "NotStartedOutlined", - "NotStartedRounded", - "NotStartedSharp", - "NotStartedTwoTone", - "Note", - "NoteAdd", - "NoteAddOutlined", - "NoteAddRounded", - "NoteAddSharp", - "NoteAddTwoTone", - "NoteAlt", - "NoteAltOutlined", - "NoteAltRounded", - "NoteAltSharp", - "NoteAltTwoTone", - "NoteOutlined", - "NoteRounded", - "NoteSharp", - "NoteTwoTone", - "Notes", - "NotesOutlined", - "NotesRounded", - "NotesSharp", - "NotesTwoTone", - "NotificationAdd", - "NotificationAddOutlined", - "NotificationAddRounded", - "NotificationAddSharp", - "NotificationAddTwoTone", - "NotificationImportant", - "NotificationImportantOutlined", - "NotificationImportantRounded", - "NotificationImportantSharp", - "NotificationImportantTwoTone", - "Notifications", - "NotificationsActive", - "NotificationsActiveOutlined", - "NotificationsActiveRounded", - "NotificationsActiveSharp", - "NotificationsActiveTwoTone", - "NotificationsNone", - "NotificationsNoneOutlined", - "NotificationsNoneRounded", - "NotificationsNoneSharp", - "NotificationsNoneTwoTone", - "NotificationsOff", - "NotificationsOffOutlined", - "NotificationsOffRounded", - "NotificationsOffSharp", - "NotificationsOffTwoTone", - "NotificationsOutlined", - "NotificationsPaused", - "NotificationsPausedOutlined", - "NotificationsPausedRounded", - "NotificationsPausedSharp", - "NotificationsPausedTwoTone", - "NotificationsRounded", - "NotificationsSharp", - "NotificationsTwoTone", - "Numbers", - "NumbersOutlined", - "NumbersRounded", - "NumbersSharp", - "NumbersTwoTone", - "OfflineBolt", - "OfflineBoltOutlined", - "OfflineBoltRounded", - "OfflineBoltSharp", - "OfflineBoltTwoTone", - "OfflinePin", - "OfflinePinOutlined", - "OfflinePinRounded", - "OfflinePinSharp", - "OfflinePinTwoTone", - "OfflineShare", - "OfflineShareOutlined", - "OfflineShareRounded", - "OfflineShareSharp", - "OfflineShareTwoTone", - "OilBarrel", - "OilBarrelOutlined", - "OilBarrelRounded", - "OilBarrelSharp", - "OilBarrelTwoTone", - "OnDeviceTraining", - "OnDeviceTrainingOutlined", - "OnDeviceTrainingRounded", - "OnDeviceTrainingSharp", - "OnDeviceTrainingTwoTone", - "OndemandVideo", - "OndemandVideoOutlined", - "OndemandVideoRounded", - "OndemandVideoSharp", - "OndemandVideoTwoTone", - "OnlinePrediction", - "OnlinePredictionOutlined", - "OnlinePredictionRounded", - "OnlinePredictionSharp", - "OnlinePredictionTwoTone", - "Opacity", - "OpacityOutlined", - "OpacityRounded", - "OpacitySharp", - "OpacityTwoTone", - "OpenInBrowser", - "OpenInBrowserOutlined", - "OpenInBrowserRounded", - "OpenInBrowserSharp", - "OpenInBrowserTwoTone", - "OpenInFull", - "OpenInFullOutlined", - "OpenInFullRounded", - "OpenInFullSharp", - "OpenInFullTwoTone", - "OpenInNew", - "OpenInNewOff", - "OpenInNewOffOutlined", - "OpenInNewOffRounded", - "OpenInNewOffSharp", - "OpenInNewOffTwoTone", - "OpenInNewOutlined", - "OpenInNewRounded", - "OpenInNewSharp", - "OpenInNewTwoTone", - "OpenWith", - "OpenWithOutlined", - "OpenWithRounded", - "OpenWithSharp", - "OpenWithTwoTone", - "OtherHouses", - "OtherHousesOutlined", - "OtherHousesRounded", - "OtherHousesSharp", - "OtherHousesTwoTone", - "Outbound", - "OutboundOutlined", - "OutboundRounded", - "OutboundSharp", - "OutboundTwoTone", - "Outbox", - "OutboxOutlined", - "OutboxRounded", - "OutboxSharp", - "OutboxTwoTone", - "OutdoorGrill", - "OutdoorGrillOutlined", - "OutdoorGrillRounded", - "OutdoorGrillSharp", - "OutdoorGrillTwoTone", - "Outlet", - "OutletOutlined", - "OutletRounded", - "OutletSharp", - "OutletTwoTone", - "OutlinedFlag", - "OutlinedFlagRounded", - "OutlinedFlagSharp", - "OutlinedFlagTwoTone", - "Output", - "OutputOutlined", - "OutputRounded", - "OutputSharp", - "OutputTwoTone", - "Padding", - "PaddingOutlined", - "PaddingRounded", - "PaddingSharp", - "PaddingTwoTone", - "Pages", - "PagesOutlined", - "PagesRounded", - "PagesSharp", - "PagesTwoTone", - "Pageview", - "PageviewOutlined", - "PageviewRounded", - "PageviewSharp", - "PageviewTwoTone", - "Paid", - "PaidOutlined", - "PaidRounded", - "PaidSharp", - "PaidTwoTone", - "Palette", - "PaletteOutlined", - "PaletteRounded", - "PaletteSharp", - "PaletteTwoTone", - "PanTool", - "PanToolAlt", - "PanToolAltOutlined", - "PanToolAltRounded", - "PanToolAltSharp", - "PanToolAltTwoTone", - "PanToolOutlined", - "PanToolRounded", - "PanToolSharp", - "PanToolTwoTone", - "Panorama", - "PanoramaFishEye", - "PanoramaFishEyeOutlined", - "PanoramaFishEyeRounded", - "PanoramaFishEyeSharp", - "PanoramaFishEyeTwoTone", - "PanoramaHorizontal", - "PanoramaHorizontalOutlined", - "PanoramaHorizontalRounded", - "PanoramaHorizontalSharp", - "PanoramaHorizontalTwoTone", - "PanoramaOutlined", - "PanoramaPhotosphere", - "PanoramaPhotosphereOutlined", - "PanoramaPhotosphereRounded", - "PanoramaPhotosphereSharp", - "PanoramaPhotosphereTwoTone", - "PanoramaRounded", - "PanoramaSharp", - "PanoramaTwoTone", - "PanoramaVertical", - "PanoramaVerticalOutlined", - "PanoramaVerticalRounded", - "PanoramaVerticalSharp", - "PanoramaVerticalTwoTone", - "PanoramaWideAngle", - "PanoramaWideAngleOutlined", - "PanoramaWideAngleRounded", - "PanoramaWideAngleSharp", - "PanoramaWideAngleTwoTone", - "Paragliding", - "ParaglidingOutlined", - "ParaglidingRounded", - "ParaglidingSharp", - "ParaglidingTwoTone", - "Park", - "ParkOutlined", - "ParkRounded", - "ParkSharp", - "ParkTwoTone", - "PartyMode", - "PartyModeOutlined", - "PartyModeRounded", - "PartyModeSharp", - "PartyModeTwoTone", - "Password", - "PasswordOutlined", - "PasswordRounded", - "PasswordSharp", - "PasswordTwoTone", - "Pattern", - "PatternOutlined", - "PatternRounded", - "PatternSharp", - "PatternTwoTone", - "Pause", - "PauseCircle", - "PauseCircleFilled", - "PauseCircleFilledOutlined", - "PauseCircleFilledRounded", - "PauseCircleFilledSharp", - "PauseCircleFilledTwoTone", - "PauseCircleOutline", - "PauseCircleOutlineOutlined", - "PauseCircleOutlineRounded", - "PauseCircleOutlineSharp", - "PauseCircleOutlineTwoTone", - "PauseCircleOutlined", - "PauseCircleRounded", - "PauseCircleSharp", - "PauseCircleTwoTone", - "PauseOutlined", - "PausePresentation", - "PausePresentationOutlined", - "PausePresentationRounded", - "PausePresentationSharp", - "PausePresentationTwoTone", - "PauseRounded", - "PauseSharp", - "PauseTwoTone", - "Payment", - "PaymentOutlined", - "PaymentRounded", - "PaymentSharp", - "PaymentTwoTone", - "Payments", - "PaymentsOutlined", - "PaymentsRounded", - "PaymentsSharp", - "PaymentsTwoTone", - "PedalBike", - "PedalBikeOutlined", - "PedalBikeRounded", - "PedalBikeSharp", - "PedalBikeTwoTone", - "Pending", - "PendingActions", - "PendingActionsOutlined", - "PendingActionsRounded", - "PendingActionsSharp", - "PendingActionsTwoTone", - "PendingOutlined", - "PendingRounded", - "PendingSharp", - "PendingTwoTone", - "Pentagon", - "PentagonOutlined", - "PentagonRounded", - "PentagonSharp", - "PentagonTwoTone", - "People", - "PeopleAlt", - "PeopleAltOutlined", - "PeopleAltRounded", - "PeopleAltSharp", - "PeopleAltTwoTone", - "PeopleOutline", - "PeopleOutlineOutlined", - "PeopleOutlineRounded", - "PeopleOutlineSharp", - "PeopleOutlineTwoTone", - "PeopleOutlined", - "PeopleRounded", - "PeopleSharp", - "PeopleTwoTone", - "Percent", - "PercentOutlined", - "PercentRounded", - "PercentSharp", - "PercentTwoTone", - "PermCameraMic", - "PermCameraMicOutlined", - "PermCameraMicRounded", - "PermCameraMicSharp", - "PermCameraMicTwoTone", - "PermContactCalendar", - "PermContactCalendarOutlined", - "PermContactCalendarRounded", - "PermContactCalendarSharp", - "PermContactCalendarTwoTone", - "PermDataSetting", - "PermDataSettingOutlined", - "PermDataSettingRounded", - "PermDataSettingSharp", - "PermDataSettingTwoTone", - "PermDeviceInformation", - "PermDeviceInformationOutlined", - "PermDeviceInformationRounded", - "PermDeviceInformationSharp", - "PermDeviceInformationTwoTone", - "PermIdentity", - "PermIdentityOutlined", - "PermIdentityRounded", - "PermIdentitySharp", - "PermIdentityTwoTone", - "PermMedia", - "PermMediaOutlined", - "PermMediaRounded", - "PermMediaSharp", - "PermMediaTwoTone", - "PermPhoneMsg", - "PermPhoneMsgOutlined", - "PermPhoneMsgRounded", - "PermPhoneMsgSharp", - "PermPhoneMsgTwoTone", - "PermScanWifi", - "PermScanWifiOutlined", - "PermScanWifiRounded", - "PermScanWifiSharp", - "PermScanWifiTwoTone", - "Person", - "Person2", - "Person2Outlined", - "Person2Rounded", - "Person2Sharp", - "Person2TwoTone", - "Person3", - "Person3Outlined", - "Person3Rounded", - "Person3Sharp", - "Person3TwoTone", - "Person4", - "Person4Outlined", - "Person4Rounded", - "Person4Sharp", - "Person4TwoTone", - "PersonAdd", - "PersonAddAlt", - "PersonAddAltOutlined", - "PersonAddAltRounded", - "PersonAddAltSharp", - "PersonAddAltTwoTone", - "PersonAddDisabled", - "PersonAddDisabledOutlined", - "PersonAddDisabledRounded", - "PersonAddDisabledSharp", - "PersonAddDisabledTwoTone", - "PersonAddOutlined", - "PersonAddRounded", - "PersonAddSharp", - "PersonAddTwoTone", - "PersonOff", - "PersonOffOutlined", - "PersonOffRounded", - "PersonOffSharp", - "PersonOffTwoTone", - "PersonOutline", - "PersonOutlineOutlined", - "PersonOutlineRounded", - "PersonOutlineSharp", - "PersonOutlineTwoTone", - "PersonOutlined", - "PersonPin", - "PersonPinCircle", - "PersonPinCircleOutlined", - "PersonPinCircleRounded", - "PersonPinCircleSharp", - "PersonPinCircleTwoTone", - "PersonPinOutlined", - "PersonPinRounded", - "PersonPinSharp", - "PersonPinTwoTone", - "PersonRemove", - "PersonRemoveOutlined", - "PersonRemoveRounded", - "PersonRemoveSharp", - "PersonRemoveTwoTone", - "PersonRounded", - "PersonSearch", - "PersonSearchOutlined", - "PersonSearchRounded", - "PersonSearchSharp", - "PersonSearchTwoTone", - "PersonSharp", - "PersonTwoTone", - "PersonalVideo", - "PersonalVideoOutlined", - "PersonalVideoRounded", - "PersonalVideoSharp", - "PersonalVideoTwoTone", - "PestControl", - "PestControlOutlined", - "PestControlRodent", - "PestControlRodentOutlined", - "PestControlRodentRounded", - "PestControlRodentSharp", - "PestControlRodentTwoTone", - "PestControlRounded", - "PestControlSharp", - "PestControlTwoTone", - "Pets", - "PetsOutlined", - "PetsRounded", - "PetsSharp", - "PetsTwoTone", - "Phishing", - "PhishingOutlined", - "PhishingRounded", - "PhishingSharp", - "PhishingTwoTone", - "Phone", - "PhoneAndroid", - "PhoneAndroidOutlined", - "PhoneAndroidRounded", - "PhoneAndroidSharp", - "PhoneAndroidTwoTone", - "PhoneBluetoothSpeaker", - "PhoneBluetoothSpeakerOutlined", - "PhoneBluetoothSpeakerRounded", - "PhoneBluetoothSpeakerSharp", - "PhoneBluetoothSpeakerTwoTone", - "PhoneCallback", - "PhoneCallbackOutlined", - "PhoneCallbackRounded", - "PhoneCallbackSharp", - "PhoneCallbackTwoTone", - "PhoneDisabled", - "PhoneDisabledOutlined", - "PhoneDisabledRounded", - "PhoneDisabledSharp", - "PhoneDisabledTwoTone", - "PhoneEnabled", - "PhoneEnabledOutlined", - "PhoneEnabledRounded", - "PhoneEnabledSharp", - "PhoneEnabledTwoTone", - "PhoneForwarded", - "PhoneForwardedOutlined", - "PhoneForwardedRounded", - "PhoneForwardedSharp", - "PhoneForwardedTwoTone", - "PhoneInTalk", - "PhoneInTalkOutlined", - "PhoneInTalkRounded", - "PhoneInTalkSharp", - "PhoneInTalkTwoTone", - "PhoneIphone", - "PhoneIphoneOutlined", - "PhoneIphoneRounded", - "PhoneIphoneSharp", - "PhoneIphoneTwoTone", - "PhoneLocked", - "PhoneLockedOutlined", - "PhoneLockedRounded", - "PhoneLockedSharp", - "PhoneLockedTwoTone", - "PhoneMissed", - "PhoneMissedOutlined", - "PhoneMissedRounded", - "PhoneMissedSharp", - "PhoneMissedTwoTone", - "PhoneOutlined", - "PhonePaused", - "PhonePausedOutlined", - "PhonePausedRounded", - "PhonePausedSharp", - "PhonePausedTwoTone", - "PhoneRounded", - "PhoneSharp", - "PhoneTwoTone", - "Phonelink", - "PhonelinkErase", - "PhonelinkEraseOutlined", - "PhonelinkEraseRounded", - "PhonelinkEraseSharp", - "PhonelinkEraseTwoTone", - "PhonelinkLock", - "PhonelinkLockOutlined", - "PhonelinkLockRounded", - "PhonelinkLockSharp", - "PhonelinkLockTwoTone", - "PhonelinkOff", - "PhonelinkOffOutlined", - "PhonelinkOffRounded", - "PhonelinkOffSharp", - "PhonelinkOffTwoTone", - "PhonelinkOutlined", - "PhonelinkRing", - "PhonelinkRingOutlined", - "PhonelinkRingRounded", - "PhonelinkRingSharp", - "PhonelinkRingTwoTone", - "PhonelinkRounded", - "PhonelinkSetup", - "PhonelinkSetupOutlined", - "PhonelinkSetupRounded", - "PhonelinkSetupSharp", - "PhonelinkSetupTwoTone", - "PhonelinkSharp", - "PhonelinkTwoTone", - "Photo", - "PhotoAlbum", - "PhotoAlbumOutlined", - "PhotoAlbumRounded", - "PhotoAlbumSharp", - "PhotoAlbumTwoTone", - "PhotoCamera", - "PhotoCameraBack", - "PhotoCameraBackOutlined", - "PhotoCameraBackRounded", - "PhotoCameraBackSharp", - "PhotoCameraBackTwoTone", - "PhotoCameraFront", - "PhotoCameraFrontOutlined", - "PhotoCameraFrontRounded", - "PhotoCameraFrontSharp", - "PhotoCameraFrontTwoTone", - "PhotoCameraOutlined", - "PhotoCameraRounded", - "PhotoCameraSharp", - "PhotoCameraTwoTone", - "PhotoFilter", - "PhotoFilterOutlined", - "PhotoFilterRounded", - "PhotoFilterSharp", - "PhotoFilterTwoTone", - "PhotoLibrary", - "PhotoLibraryOutlined", - "PhotoLibraryRounded", - "PhotoLibrarySharp", - "PhotoLibraryTwoTone", - "PhotoOutlined", - "PhotoRounded", - "PhotoSharp", - "PhotoSizeSelectActual", - "PhotoSizeSelectActualOutlined", - "PhotoSizeSelectActualRounded", - "PhotoSizeSelectActualSharp", - "PhotoSizeSelectActualTwoTone", - "PhotoSizeSelectLarge", - "PhotoSizeSelectLargeOutlined", - "PhotoSizeSelectLargeRounded", - "PhotoSizeSelectLargeSharp", - "PhotoSizeSelectLargeTwoTone", - "PhotoSizeSelectSmall", - "PhotoSizeSelectSmallOutlined", - "PhotoSizeSelectSmallRounded", - "PhotoSizeSelectSmallSharp", - "PhotoSizeSelectSmallTwoTone", - "PhotoTwoTone", - "Php", - "PhpOutlined", - "PhpRounded", - "PhpSharp", - "PhpTwoTone", - "Piano", - "PianoOff", - "PianoOffOutlined", - "PianoOffRounded", - "PianoOffSharp", - "PianoOffTwoTone", - "PianoOutlined", - "PianoRounded", - "PianoSharp", - "PianoTwoTone", - "PictureAsPdf", - "PictureAsPdfOutlined", - "PictureAsPdfRounded", - "PictureAsPdfSharp", - "PictureAsPdfTwoTone", - "PictureInPicture", - "PictureInPictureAlt", - "PictureInPictureAltOutlined", - "PictureInPictureAltRounded", - "PictureInPictureAltSharp", - "PictureInPictureAltTwoTone", - "PictureInPictureOutlined", - "PictureInPictureRounded", - "PictureInPictureSharp", - "PictureInPictureTwoTone", - "PieChart", - "PieChartOutline", - "PieChartOutlineOutlined", - "PieChartOutlineRounded", - "PieChartOutlineSharp", - "PieChartOutlineTwoTone", - "PieChartOutlined", - "PieChartRounded", - "PieChartSharp", - "PieChartTwoTone", - "Pin", - "PinDrop", - "PinDropOutlined", - "PinDropRounded", - "PinDropSharp", - "PinDropTwoTone", - "PinOutlined", - "PinRounded", - "PinSharp", - "PinTwoTone", - "Pinch", - "PinchOutlined", - "PinchRounded", - "PinchSharp", - "PinchTwoTone", - "Pinterest", - "PivotTableChart", - "PivotTableChartOutlined", - "PivotTableChartRounded", - "PivotTableChartSharp", - "PivotTableChartTwoTone", - "Place", - "PlaceOutlined", - "PlaceRounded", - "PlaceSharp", - "PlaceTwoTone", - "Plagiarism", - "PlagiarismOutlined", - "PlagiarismRounded", - "PlagiarismSharp", - "PlagiarismTwoTone", - "PlayArrow", - "PlayArrowOutlined", - "PlayArrowRounded", - "PlayArrowSharp", - "PlayArrowTwoTone", - "PlayCircle", - "PlayCircleFilled", - "PlayCircleOutlined", - "PlayCircleRounded", - "PlayCircleSharp", - "PlayCircleTwoTone", - "PlayDisabled", - "PlayDisabledOutlined", - "PlayDisabledRounded", - "PlayDisabledSharp", - "PlayDisabledTwoTone", - "PlayForWork", - "PlayForWorkOutlined", - "PlayForWorkRounded", - "PlayForWorkSharp", - "PlayForWorkTwoTone", - "PlayLesson", - "PlayLessonOutlined", - "PlayLessonRounded", - "PlayLessonSharp", - "PlayLessonTwoTone", - "PlaylistAdd", - "PlaylistAddCheck", - "PlaylistAddCheckCircle", - "PlaylistAddCheckCircleOutlined", - "PlaylistAddCheckCircleRounded", - "PlaylistAddCheckCircleSharp", - "PlaylistAddCheckCircleTwoTone", - "PlaylistAddCheckOutlined", - "PlaylistAddCheckRounded", - "PlaylistAddCheckSharp", - "PlaylistAddCheckTwoTone", - "PlaylistAddCircle", - "PlaylistAddCircleOutlined", - "PlaylistAddCircleRounded", - "PlaylistAddCircleSharp", - "PlaylistAddCircleTwoTone", - "PlaylistAddOutlined", - "PlaylistAddRounded", - "PlaylistAddSharp", - "PlaylistAddTwoTone", - "PlaylistPlay", - "PlaylistPlayOutlined", - "PlaylistPlayRounded", - "PlaylistPlaySharp", - "PlaylistPlayTwoTone", - "PlaylistRemove", - "PlaylistRemoveOutlined", - "PlaylistRemoveRounded", - "PlaylistRemoveSharp", - "PlaylistRemoveTwoTone", - "Plumbing", - "PlumbingOutlined", - "PlumbingRounded", - "PlumbingSharp", - "PlumbingTwoTone", - "PlusOne", - "PlusOneOutlined", - "PlusOneRounded", - "PlusOneSharp", - "PlusOneTwoTone", - "Podcasts", - "PodcastsOutlined", - "PodcastsRounded", - "PodcastsSharp", - "PodcastsTwoTone", - "PointOfSale", - "PointOfSaleOutlined", - "PointOfSaleRounded", - "PointOfSaleSharp", - "PointOfSaleTwoTone", - "Policy", - "PolicyOutlined", - "PolicyRounded", - "PolicySharp", - "PolicyTwoTone", - "Poll", - "PollOutlined", - "PollRounded", - "PollSharp", - "PollTwoTone", - "Polyline", - "PolylineOutlined", - "PolylineRounded", - "PolylineSharp", - "PolylineTwoTone", - "Pool", - "PoolOutlined", - "PoolRounded", - "PoolSharp", - "PoolTwoTone", - "PortableWifiOff", - "PortableWifiOffOutlined", - "PortableWifiOffRounded", - "PortableWifiOffSharp", - "PortableWifiOffTwoTone", - "Portrait", - "PortraitOutlined", - "PortraitRounded", - "PortraitSharp", - "PortraitTwoTone", - "PostAdd", - "PostAddOutlined", - "PostAddRounded", - "PostAddSharp", - "PostAddTwoTone", - "Power", - "PowerInput", - "PowerInputOutlined", - "PowerInputRounded", - "PowerInputSharp", - "PowerInputTwoTone", - "PowerOff", - "PowerOffOutlined", - "PowerOffRounded", - "PowerOffSharp", - "PowerOffTwoTone", - "PowerOutlined", - "PowerRounded", - "PowerSettingsNew", - "PowerSettingsNewOutlined", - "PowerSettingsNewRounded", - "PowerSettingsNewSharp", - "PowerSettingsNewTwoTone", - "PowerSharp", - "PowerTwoTone", - "PrecisionManufacturing", - "PrecisionManufacturingOutlined", - "PrecisionManufacturingRounded", - "PrecisionManufacturingSharp", - "PrecisionManufacturingTwoTone", - "PregnantWoman", - "PregnantWomanOutlined", - "PregnantWomanRounded", - "PregnantWomanSharp", - "PregnantWomanTwoTone", - "PresentToAll", - "PresentToAllOutlined", - "PresentToAllRounded", - "PresentToAllSharp", - "PresentToAllTwoTone", - "Preview", - "PreviewOutlined", - "PreviewRounded", - "PreviewSharp", - "PreviewTwoTone", - "PriceChange", - "PriceChangeOutlined", - "PriceChangeRounded", - "PriceChangeSharp", - "PriceChangeTwoTone", - "PriceCheck", - "PriceCheckOutlined", - "PriceCheckRounded", - "PriceCheckSharp", - "PriceCheckTwoTone", - "Print", - "PrintDisabled", - "PrintDisabledOutlined", - "PrintDisabledRounded", - "PrintDisabledSharp", - "PrintDisabledTwoTone", - "PrintOutlined", - "PrintRounded", - "PrintSharp", - "PrintTwoTone", - "PriorityHigh", - "PriorityHighOutlined", - "PriorityHighRounded", - "PriorityHighSharp", - "PriorityHighTwoTone", - "PrivacyTip", - "PrivacyTipOutlined", - "PrivacyTipRounded", - "PrivacyTipSharp", - "PrivacyTipTwoTone", - "ProductionQuantityLimits", - "ProductionQuantityLimitsOutlined", - "ProductionQuantityLimitsRounded", - "ProductionQuantityLimitsSharp", - "ProductionQuantityLimitsTwoTone", - "Propane", - "PropaneOutlined", - "PropaneRounded", - "PropaneSharp", - "PropaneTank", - "PropaneTankOutlined", - "PropaneTankRounded", - "PropaneTankSharp", - "PropaneTankTwoTone", - "PropaneTwoTone", - "Psychology", - "PsychologyAlt", - "PsychologyAltOutlined", - "PsychologyAltRounded", - "PsychologyAltSharp", - "PsychologyAltTwoTone", - "PsychologyOutlined", - "PsychologyRounded", - "PsychologySharp", - "PsychologyTwoTone", - "Public", - "PublicOff", - "PublicOffOutlined", - "PublicOffRounded", - "PublicOffSharp", - "PublicOffTwoTone", - "PublicOutlined", - "PublicRounded", - "PublicSharp", - "PublicTwoTone", - "Publish", - "PublishOutlined", - "PublishRounded", - "PublishSharp", - "PublishTwoTone", - "PublishedWithChanges", - "PublishedWithChangesOutlined", - "PublishedWithChangesRounded", - "PublishedWithChangesSharp", - "PublishedWithChangesTwoTone", - "PunchClock", - "PunchClockOutlined", - "PunchClockRounded", - "PunchClockSharp", - "PunchClockTwoTone", - "PushPin", - "PushPinOutlined", - "PushPinRounded", - "PushPinSharp", - "PushPinTwoTone", - "QrCode", - "QrCode2", - "QrCode2Outlined", - "QrCode2Rounded", - "QrCode2Sharp", - "QrCode2TwoTone", - "QrCodeOutlined", - "QrCodeRounded", - "QrCodeScanner", - "QrCodeScannerOutlined", - "QrCodeScannerRounded", - "QrCodeScannerSharp", - "QrCodeScannerTwoTone", - "QrCodeSharp", - "QrCodeTwoTone", - "QueryBuilder", - "QueryBuilderOutlined", - "QueryBuilderRounded", - "QueryBuilderSharp", - "QueryBuilderTwoTone", - "QueryStats", - "QueryStatsOutlined", - "QueryStatsRounded", - "QueryStatsSharp", - "QueryStatsTwoTone", - "QuestionAnswer", - "QuestionAnswerOutlined", - "QuestionAnswerRounded", - "QuestionAnswerSharp", - "QuestionAnswerTwoTone", - "QuestionMark", - "QuestionMarkOutlined", - "QuestionMarkRounded", - "QuestionMarkSharp", - "QuestionMarkTwoTone", - "Queue", - "QueueMusic", - "QueueMusicOutlined", - "QueueMusicRounded", - "QueueMusicSharp", - "QueueMusicTwoTone", - "QueueOutlined", - "QueuePlayNext", - "QueuePlayNextOutlined", - "QueuePlayNextRounded", - "QueuePlayNextSharp", - "QueuePlayNextTwoTone", - "QueueRounded", - "QueueSharp", - "QueueTwoTone", - "Quickreply", - "QuickreplyOutlined", - "QuickreplyRounded", - "QuickreplySharp", - "QuickreplyTwoTone", - "Quiz", - "QuizOutlined", - "QuizRounded", - "QuizSharp", - "QuizTwoTone", - "RMobiledata", - "RMobiledataOutlined", - "RMobiledataRounded", - "RMobiledataSharp", - "RMobiledataTwoTone", - "Radar", - "RadarOutlined", - "RadarRounded", - "RadarSharp", - "RadarTwoTone", - "Radio", - "RadioButtonChecked", - "RadioButtonCheckedOutlined", - "RadioButtonCheckedRounded", - "RadioButtonCheckedSharp", - "RadioButtonCheckedTwoTone", - "RadioButtonUnchecked", - "RadioButtonUncheckedOutlined", - "RadioButtonUncheckedRounded", - "RadioButtonUncheckedSharp", - "RadioButtonUncheckedTwoTone", - "RadioOutlined", - "RadioRounded", - "RadioSharp", - "RadioTwoTone", - "RailwayAlert", - "RailwayAlertOutlined", - "RailwayAlertRounded", - "RailwayAlertSharp", - "RailwayAlertTwoTone", - "RamenDining", - "RamenDiningOutlined", - "RamenDiningRounded", - "RamenDiningSharp", - "RamenDiningTwoTone", - "RampLeft", - "RampLeftOutlined", - "RampLeftRounded", - "RampLeftSharp", - "RampLeftTwoTone", - "RampRight", - "RampRightOutlined", - "RampRightRounded", - "RampRightSharp", - "RampRightTwoTone", - "RateReview", - "RateReviewOutlined", - "RateReviewRounded", - "RateReviewSharp", - "RateReviewTwoTone", - "RawOff", - "RawOffOutlined", - "RawOffRounded", - "RawOffSharp", - "RawOffTwoTone", - "RawOn", - "RawOnOutlined", - "RawOnRounded", - "RawOnSharp", - "RawOnTwoTone", - "ReadMore", - "ReadMoreOutlined", - "ReadMoreRounded", - "ReadMoreSharp", - "ReadMoreTwoTone", - "Receipt", - "ReceiptLong", - "ReceiptLongOutlined", - "ReceiptLongRounded", - "ReceiptLongSharp", - "ReceiptLongTwoTone", - "ReceiptOutlined", - "ReceiptRounded", - "ReceiptSharp", - "ReceiptTwoTone", - "RecentActors", - "RecentActorsOutlined", - "RecentActorsRounded", - "RecentActorsSharp", - "RecentActorsTwoTone", - "Recommend", - "RecommendOutlined", - "RecommendRounded", - "RecommendSharp", - "RecommendTwoTone", - "RecordVoiceOver", - "RecordVoiceOverOutlined", - "RecordVoiceOverRounded", - "RecordVoiceOverSharp", - "RecordVoiceOverTwoTone", - "Rectangle", - "RectangleOutlined", - "RectangleRounded", - "RectangleSharp", - "RectangleTwoTone", - "Recycling", - "RecyclingOutlined", - "RecyclingRounded", - "RecyclingSharp", - "RecyclingTwoTone", - "Reddit", - "Redeem", - "RedeemOutlined", - "RedeemRounded", - "RedeemSharp", - "RedeemTwoTone", - "Redo", - "RedoOutlined", - "RedoRounded", - "RedoSharp", - "RedoTwoTone", - "ReduceCapacity", - "ReduceCapacityOutlined", - "ReduceCapacityRounded", - "ReduceCapacitySharp", - "ReduceCapacityTwoTone", - "Refresh", - "RefreshOutlined", - "RefreshRounded", - "RefreshSharp", - "RefreshTwoTone", - "RememberMe", - "RememberMeOutlined", - "RememberMeRounded", - "RememberMeSharp", - "RememberMeTwoTone", - "Remove", - "RemoveCircle", - "RemoveCircleOutline", - "RemoveCircleOutlineOutlined", - "RemoveCircleOutlineRounded", - "RemoveCircleOutlineSharp", - "RemoveCircleOutlineTwoTone", - "RemoveCircleOutlined", - "RemoveCircleRounded", - "RemoveCircleSharp", - "RemoveCircleTwoTone", - "RemoveDone", - "RemoveDoneOutlined", - "RemoveDoneRounded", - "RemoveDoneSharp", - "RemoveDoneTwoTone", - "RemoveFromQueue", - "RemoveFromQueueOutlined", - "RemoveFromQueueRounded", - "RemoveFromQueueSharp", - "RemoveFromQueueTwoTone", - "RemoveModerator", - "RemoveModeratorOutlined", - "RemoveModeratorRounded", - "RemoveModeratorSharp", - "RemoveModeratorTwoTone", - "RemoveOutlined", - "RemoveRedEye", - "RemoveRedEyeOutlined", - "RemoveRedEyeRounded", - "RemoveRedEyeSharp", - "RemoveRedEyeTwoTone", - "RemoveRoad", - "RemoveRoadOutlined", - "RemoveRoadRounded", - "RemoveRoadSharp", - "RemoveRoadTwoTone", - "RemoveRounded", - "RemoveSharp", - "RemoveShoppingCart", - "RemoveShoppingCartOutlined", - "RemoveShoppingCartRounded", - "RemoveShoppingCartSharp", - "RemoveShoppingCartTwoTone", - "RemoveTwoTone", - "Reorder", - "ReorderOutlined", - "ReorderRounded", - "ReorderSharp", - "ReorderTwoTone", - "Repartition", - "RepartitionOutlined", - "RepartitionRounded", - "RepartitionSharp", - "RepartitionTwoTone", - "Repeat", - "RepeatOn", - "RepeatOnOutlined", - "RepeatOnRounded", - "RepeatOnSharp", - "RepeatOnTwoTone", - "RepeatOne", - "RepeatOneOn", - "RepeatOneOnOutlined", - "RepeatOneOnRounded", - "RepeatOneOnSharp", - "RepeatOneOnTwoTone", - "RepeatOneOutlined", - "RepeatOneRounded", - "RepeatOneSharp", - "RepeatOneTwoTone", - "RepeatOutlined", - "RepeatRounded", - "RepeatSharp", - "RepeatTwoTone", - "Replay", - "Replay10", - "Replay10Outlined", - "Replay10Rounded", - "Replay10Sharp", - "Replay10TwoTone", - "Replay30", - "Replay30Outlined", - "Replay30Rounded", - "Replay30Sharp", - "Replay30TwoTone", - "Replay5", - "Replay5Outlined", - "Replay5Rounded", - "Replay5Sharp", - "Replay5TwoTone", - "ReplayCircleFilled", - "ReplayCircleFilledOutlined", - "ReplayCircleFilledRounded", - "ReplayCircleFilledSharp", - "ReplayCircleFilledTwoTone", - "ReplayOutlined", - "ReplayRounded", - "ReplaySharp", - "ReplayTwoTone", - "Reply", - "ReplyAll", - "ReplyAllOutlined", - "ReplyAllRounded", - "ReplyAllSharp", - "ReplyAllTwoTone", - "ReplyOutlined", - "ReplyRounded", - "ReplySharp", - "ReplyTwoTone", - "Report", - "ReportGmailerrorred", - "ReportGmailerrorredOutlined", - "ReportGmailerrorredRounded", - "ReportGmailerrorredSharp", - "ReportGmailerrorredTwoTone", - "ReportOff", - "ReportOffOutlined", - "ReportOffRounded", - "ReportOffSharp", - "ReportOffTwoTone", - "ReportOutlined", - "ReportProblem", - "ReportProblemOutlined", - "ReportProblemRounded", - "ReportProblemSharp", - "ReportProblemTwoTone", - "ReportRounded", - "ReportSharp", - "ReportTwoTone", - "RequestPage", - "RequestPageOutlined", - "RequestPageRounded", - "RequestPageSharp", - "RequestPageTwoTone", - "RequestQuote", - "RequestQuoteOutlined", - "RequestQuoteRounded", - "RequestQuoteSharp", - "RequestQuoteTwoTone", - "ResetTv", - "ResetTvOutlined", - "ResetTvRounded", - "ResetTvSharp", - "ResetTvTwoTone", - "RestartAlt", - "RestartAltOutlined", - "RestartAltRounded", - "RestartAltSharp", - "RestartAltTwoTone", - "Restaurant", - "RestaurantMenu", - "RestaurantMenuOutlined", - "RestaurantMenuRounded", - "RestaurantMenuSharp", - "RestaurantMenuTwoTone", - "RestaurantOutlined", - "RestaurantRounded", - "RestaurantSharp", - "RestaurantTwoTone", - "Restore", - "RestoreFromTrash", - "RestoreFromTrashOutlined", - "RestoreFromTrashRounded", - "RestoreFromTrashSharp", - "RestoreFromTrashTwoTone", - "RestoreOutlined", - "RestorePage", - "RestorePageOutlined", - "RestorePageRounded", - "RestorePageSharp", - "RestorePageTwoTone", - "RestoreRounded", - "RestoreSharp", - "RestoreTwoTone", - "Reviews", - "ReviewsOutlined", - "ReviewsRounded", - "ReviewsSharp", - "ReviewsTwoTone", - "RiceBowl", - "RiceBowlOutlined", - "RiceBowlRounded", - "RiceBowlSharp", - "RiceBowlTwoTone", - "RingVolume", - "RingVolumeOutlined", - "RingVolumeRounded", - "RingVolumeSharp", - "RingVolumeTwoTone", - "Rocket", - "RocketLaunch", - "RocketLaunchOutlined", - "RocketLaunchRounded", - "RocketLaunchSharp", - "RocketLaunchTwoTone", - "RocketOutlined", - "RocketRounded", - "RocketSharp", - "RocketTwoTone", - "RollerShades", - "RollerShadesClosed", - "RollerShadesClosedOutlined", - "RollerShadesClosedRounded", - "RollerShadesClosedSharp", - "RollerShadesClosedTwoTone", - "RollerShadesOutlined", - "RollerShadesRounded", - "RollerShadesSharp", - "RollerShadesTwoTone", - "RollerSkating", - "RollerSkatingOutlined", - "RollerSkatingRounded", - "RollerSkatingSharp", - "RollerSkatingTwoTone", - "Roofing", - "RoofingOutlined", - "RoofingRounded", - "RoofingSharp", - "RoofingTwoTone", - "Room", - "RoomOutlined", - "RoomPreferences", - "RoomPreferencesOutlined", - "RoomPreferencesRounded", - "RoomPreferencesSharp", - "RoomPreferencesTwoTone", - "RoomRounded", - "RoomService", - "RoomServiceOutlined", - "RoomServiceRounded", - "RoomServiceSharp", - "RoomServiceTwoTone", - "RoomSharp", - "RoomTwoTone", - "Rotate90DegreesCcw", - "Rotate90DegreesCcwOutlined", - "Rotate90DegreesCcwRounded", - "Rotate90DegreesCcwSharp", - "Rotate90DegreesCcwTwoTone", - "Rotate90DegreesCw", - "Rotate90DegreesCwOutlined", - "Rotate90DegreesCwRounded", - "Rotate90DegreesCwSharp", - "Rotate90DegreesCwTwoTone", - "RotateLeft", - "RotateLeftOutlined", - "RotateLeftRounded", - "RotateLeftSharp", - "RotateLeftTwoTone", - "RotateRight", - "RotateRightOutlined", - "RotateRightRounded", - "RotateRightSharp", - "RotateRightTwoTone", - "RoundaboutLeft", - "RoundaboutLeftOutlined", - "RoundaboutLeftRounded", - "RoundaboutLeftSharp", - "RoundaboutLeftTwoTone", - "RoundaboutRight", - "RoundaboutRightOutlined", - "RoundaboutRightRounded", - "RoundaboutRightSharp", - "RoundaboutRightTwoTone", - "RoundedCorner", - "RoundedCornerOutlined", - "RoundedCornerSharp", - "RoundedCornerTwoTone", - "Route", - "RouteOutlined", - "RouteRounded", - "RouteSharp", - "RouteTwoTone", - "Router", - "RouterOutlined", - "RouterRounded", - "RouterSharp", - "RouterTwoTone", - "Rowing", - "RowingOutlined", - "RowingRounded", - "RowingSharp", - "RowingTwoTone", - "RssFeed", - "RssFeedOutlined", - "RssFeedRounded", - "RssFeedSharp", - "RssFeedTwoTone", - "Rsvp", - "RsvpOutlined", - "RsvpRounded", - "RsvpSharp", - "RsvpTwoTone", - "Rtt", - "RttOutlined", - "RttRounded", - "RttSharp", - "RttTwoTone", - "Rule", - "RuleFolder", - "RuleFolderOutlined", - "RuleFolderRounded", - "RuleFolderSharp", - "RuleFolderTwoTone", - "RuleOutlined", - "RuleRounded", - "RuleSharp", - "RuleTwoTone", - "RunCircle", - "RunCircleOutlined", - "RunCircleRounded", - "RunCircleSharp", - "RunCircleTwoTone", - "RunningWithErrors", - "RunningWithErrorsOutlined", - "RunningWithErrorsRounded", - "RunningWithErrorsSharp", - "RunningWithErrorsTwoTone", - "RvHookup", - "RvHookupOutlined", - "RvHookupRounded", - "RvHookupSharp", - "RvHookupTwoTone", - "SafetyCheck", - "SafetyCheckOutlined", - "SafetyCheckRounded", - "SafetyCheckSharp", - "SafetyCheckTwoTone", - "SafetyDivider", - "SafetyDividerOutlined", - "SafetyDividerRounded", - "SafetyDividerSharp", - "SafetyDividerTwoTone", - "Sailing", - "SailingOutlined", - "SailingRounded", - "SailingSharp", - "SailingTwoTone", - "Sanitizer", - "SanitizerOutlined", - "SanitizerRounded", - "SanitizerSharp", - "SanitizerTwoTone", - "Satellite", - "SatelliteAlt", - "SatelliteAltOutlined", - "SatelliteAltRounded", - "SatelliteAltSharp", - "SatelliteAltTwoTone", - "SatelliteOutlined", - "SatelliteRounded", - "SatelliteSharp", - "SatelliteTwoTone", - "Save", - "SaveAlt", - "SaveAltOutlined", - "SaveAltRounded", - "SaveAltSharp", - "SaveAltTwoTone", - "SaveAs", - "SaveAsOutlined", - "SaveAsRounded", - "SaveAsSharp", - "SaveAsTwoTone", - "SaveOutlined", - "SaveRounded", - "SaveSharp", - "SaveTwoTone", - "SavedSearch", - "SavedSearchOutlined", - "SavedSearchRounded", - "SavedSearchSharp", - "SavedSearchTwoTone", - "Savings", - "SavingsOutlined", - "SavingsRounded", - "SavingsSharp", - "SavingsTwoTone", - "Scale", - "ScaleOutlined", - "ScaleRounded", - "ScaleSharp", - "ScaleTwoTone", - "Scanner", - "ScannerOutlined", - "ScannerRounded", - "ScannerSharp", - "ScannerTwoTone", - "ScatterPlot", - "ScatterPlotOutlined", - "ScatterPlotRounded", - "ScatterPlotSharp", - "ScatterPlotTwoTone", - "Schedule", - "ScheduleOutlined", - "ScheduleRounded", - "ScheduleSend", - "ScheduleSendOutlined", - "ScheduleSendRounded", - "ScheduleSendSharp", - "ScheduleSendTwoTone", - "ScheduleSharp", - "ScheduleTwoTone", - "Schema", - "SchemaOutlined", - "SchemaRounded", - "SchemaSharp", - "SchemaTwoTone", - "School", - "SchoolOutlined", - "SchoolRounded", - "SchoolSharp", - "SchoolTwoTone", - "Science", - "ScienceOutlined", - "ScienceRounded", - "ScienceSharp", - "ScienceTwoTone", - "Score", - "ScoreOutlined", - "ScoreRounded", - "ScoreSharp", - "ScoreTwoTone", - "Scoreboard", - "ScoreboardOutlined", - "ScoreboardRounded", - "ScoreboardSharp", - "ScoreboardTwoTone", - "ScreenLockLandscape", - "ScreenLockLandscapeOutlined", - "ScreenLockLandscapeRounded", - "ScreenLockLandscapeSharp", - "ScreenLockLandscapeTwoTone", - "ScreenLockPortrait", - "ScreenLockPortraitOutlined", - "ScreenLockPortraitRounded", - "ScreenLockPortraitSharp", - "ScreenLockPortraitTwoTone", - "ScreenLockRotation", - "ScreenLockRotationOutlined", - "ScreenLockRotationRounded", - "ScreenLockRotationSharp", - "ScreenLockRotationTwoTone", - "ScreenRotation", - "ScreenRotationAlt", - "ScreenRotationAltOutlined", - "ScreenRotationAltRounded", - "ScreenRotationAltSharp", - "ScreenRotationAltTwoTone", - "ScreenRotationOutlined", - "ScreenRotationRounded", - "ScreenRotationSharp", - "ScreenRotationTwoTone", - "ScreenSearchDesktop", - "ScreenSearchDesktopOutlined", - "ScreenSearchDesktopRounded", - "ScreenSearchDesktopSharp", - "ScreenSearchDesktopTwoTone", - "ScreenShare", - "ScreenShareOutlined", - "ScreenShareRounded", - "ScreenShareSharp", - "ScreenShareTwoTone", - "Screenshot", - "ScreenshotMonitor", - "ScreenshotMonitorOutlined", - "ScreenshotMonitorRounded", - "ScreenshotMonitorSharp", - "ScreenshotMonitorTwoTone", - "ScreenshotOutlined", - "ScreenshotRounded", - "ScreenshotSharp", - "ScreenshotTwoTone", - "ScubaDiving", - "ScubaDivingOutlined", - "ScubaDivingRounded", - "ScubaDivingSharp", - "ScubaDivingTwoTone", - "Sd", - "SdCard", - "SdCardAlert", - "SdCardAlertOutlined", - "SdCardAlertRounded", - "SdCardAlertSharp", - "SdCardAlertTwoTone", - "SdCardOutlined", - "SdCardRounded", - "SdCardSharp", - "SdCardTwoTone", - "SdOutlined", - "SdRounded", - "SdSharp", - "SdStorage", - "SdStorageOutlined", - "SdStorageRounded", - "SdStorageSharp", - "SdStorageTwoTone", - "SdTwoTone", - "Search", - "SearchOff", - "SearchOffOutlined", - "SearchOffRounded", - "SearchOffSharp", - "SearchOffTwoTone", - "SearchOutlined", - "SearchRounded", - "SearchSharp", - "SearchTwoTone", - "Security", - "SecurityOutlined", - "SecurityRounded", - "SecuritySharp", - "SecurityTwoTone", - "SecurityUpdate", - "SecurityUpdateGood", - "SecurityUpdateGoodOutlined", - "SecurityUpdateGoodRounded", - "SecurityUpdateGoodSharp", - "SecurityUpdateGoodTwoTone", - "SecurityUpdateOutlined", - "SecurityUpdateRounded", - "SecurityUpdateSharp", - "SecurityUpdateTwoTone", - "SecurityUpdateWarning", - "SecurityUpdateWarningOutlined", - "SecurityUpdateWarningRounded", - "SecurityUpdateWarningSharp", - "SecurityUpdateWarningTwoTone", - "Segment", - "SegmentOutlined", - "SegmentRounded", - "SegmentSharp", - "SegmentTwoTone", - "SelectAll", - "SelectAllOutlined", - "SelectAllRounded", - "SelectAllSharp", - "SelectAllTwoTone", - "SelfImprovement", - "SelfImprovementOutlined", - "SelfImprovementRounded", - "SelfImprovementSharp", - "SelfImprovementTwoTone", - "Sell", - "SellOutlined", - "SellRounded", - "SellSharp", - "SellTwoTone", - "Send", - "SendAndArchive", - "SendAndArchiveOutlined", - "SendAndArchiveRounded", - "SendAndArchiveSharp", - "SendAndArchiveTwoTone", - "SendOutlined", - "SendRounded", - "SendSharp", - "SendTimeExtension", - "SendTimeExtensionOutlined", - "SendTimeExtensionRounded", - "SendTimeExtensionSharp", - "SendTimeExtensionTwoTone", - "SendToMobile", - "SendToMobileOutlined", - "SendToMobileRounded", - "SendToMobileSharp", - "SendToMobileTwoTone", - "SendTwoTone", - "SensorDoor", - "SensorDoorOutlined", - "SensorDoorRounded", - "SensorDoorSharp", - "SensorDoorTwoTone", - "SensorOccupied", - "SensorOccupiedOutlined", - "SensorOccupiedRounded", - "SensorOccupiedSharp", - "SensorOccupiedTwoTone", - "SensorWindow", - "SensorWindowOutlined", - "SensorWindowRounded", - "SensorWindowSharp", - "SensorWindowTwoTone", - "Sensors", - "SensorsOff", - "SensorsOffOutlined", - "SensorsOffRounded", - "SensorsOffSharp", - "SensorsOffTwoTone", - "SensorsOutlined", - "SensorsRounded", - "SensorsSharp", - "SensorsTwoTone", - "SentimentDissatisfied", - "SentimentDissatisfiedOutlined", - "SentimentDissatisfiedRounded", - "SentimentDissatisfiedSharp", - "SentimentDissatisfiedTwoTone", - "SentimentNeutral", - "SentimentNeutralOutlined", - "SentimentNeutralRounded", - "SentimentNeutralSharp", - "SentimentNeutralTwoTone", - "SentimentSatisfied", - "SentimentSatisfiedAlt", - "SentimentSatisfiedAltOutlined", - "SentimentSatisfiedAltRounded", - "SentimentSatisfiedAltSharp", - "SentimentSatisfiedAltTwoTone", - "SentimentSatisfiedOutlined", - "SentimentSatisfiedRounded", - "SentimentSatisfiedSharp", - "SentimentSatisfiedTwoTone", - "SentimentVeryDissatisfied", - "SentimentVeryDissatisfiedOutlined", - "SentimentVeryDissatisfiedRounded", - "SentimentVeryDissatisfiedSharp", - "SentimentVeryDissatisfiedTwoTone", - "SentimentVerySatisfied", - "SentimentVerySatisfiedOutlined", - "SentimentVerySatisfiedRounded", - "SentimentVerySatisfiedSharp", - "SentimentVerySatisfiedTwoTone", - "SetMeal", - "SetMealOutlined", - "SetMealRounded", - "SetMealSharp", - "SetMealTwoTone", - "Settings", - "SettingsAccessibility", - "SettingsAccessibilityOutlined", - "SettingsAccessibilityRounded", - "SettingsAccessibilitySharp", - "SettingsAccessibilityTwoTone", - "SettingsApplications", - "SettingsApplicationsOutlined", - "SettingsApplicationsRounded", - "SettingsApplicationsSharp", - "SettingsApplicationsTwoTone", - "SettingsBackupRestore", - "SettingsBackupRestoreOutlined", - "SettingsBackupRestoreRounded", - "SettingsBackupRestoreSharp", - "SettingsBackupRestoreTwoTone", - "SettingsBluetooth", - "SettingsBluetoothOutlined", - "SettingsBluetoothRounded", - "SettingsBluetoothSharp", - "SettingsBluetoothTwoTone", - "SettingsBrightness", - "SettingsBrightnessOutlined", - "SettingsBrightnessRounded", - "SettingsBrightnessSharp", - "SettingsBrightnessTwoTone", - "SettingsCell", - "SettingsCellOutlined", - "SettingsCellRounded", - "SettingsCellSharp", - "SettingsCellTwoTone", - "SettingsEthernet", - "SettingsEthernetOutlined", - "SettingsEthernetRounded", - "SettingsEthernetSharp", - "SettingsEthernetTwoTone", - "SettingsInputAntenna", - "SettingsInputAntennaOutlined", - "SettingsInputAntennaRounded", - "SettingsInputAntennaSharp", - "SettingsInputAntennaTwoTone", - "SettingsInputComponent", - "SettingsInputComponentOutlined", - "SettingsInputComponentRounded", - "SettingsInputComponentSharp", - "SettingsInputComponentTwoTone", - "SettingsInputComposite", - "SettingsInputCompositeOutlined", - "SettingsInputCompositeRounded", - "SettingsInputCompositeSharp", - "SettingsInputCompositeTwoTone", - "SettingsInputHdmi", - "SettingsInputHdmiOutlined", - "SettingsInputHdmiRounded", - "SettingsInputHdmiSharp", - "SettingsInputHdmiTwoTone", - "SettingsInputSvideo", - "SettingsInputSvideoOutlined", - "SettingsInputSvideoRounded", - "SettingsInputSvideoSharp", - "SettingsInputSvideoTwoTone", - "SettingsOutlined", - "SettingsOverscan", - "SettingsOverscanOutlined", - "SettingsOverscanRounded", - "SettingsOverscanSharp", - "SettingsOverscanTwoTone", - "SettingsPhone", - "SettingsPhoneOutlined", - "SettingsPhoneRounded", - "SettingsPhoneSharp", - "SettingsPhoneTwoTone", - "SettingsPower", - "SettingsPowerOutlined", - "SettingsPowerRounded", - "SettingsPowerSharp", - "SettingsPowerTwoTone", - "SettingsRemote", - "SettingsRemoteOutlined", - "SettingsRemoteRounded", - "SettingsRemoteSharp", - "SettingsRemoteTwoTone", - "SettingsRounded", - "SettingsSharp", - "SettingsSuggest", - "SettingsSuggestOutlined", - "SettingsSuggestRounded", - "SettingsSuggestSharp", - "SettingsSuggestTwoTone", - "SettingsSystemDaydream", - "SettingsSystemDaydreamOutlined", - "SettingsSystemDaydreamRounded", - "SettingsSystemDaydreamSharp", - "SettingsSystemDaydreamTwoTone", - "SettingsTwoTone", - "SettingsVoice", - "SettingsVoiceOutlined", - "SettingsVoiceRounded", - "SettingsVoiceSharp", - "SettingsVoiceTwoTone", - "SevereCold", - "SevereColdOutlined", - "SevereColdRounded", - "SevereColdSharp", - "SevereColdTwoTone", - "ShapeLine", - "ShapeLineOutlined", - "ShapeLineRounded", - "ShapeLineSharp", - "ShapeLineTwoTone", - "Share", - "ShareLocation", - "ShareLocationOutlined", - "ShareLocationRounded", - "ShareLocationSharp", - "ShareLocationTwoTone", - "ShareOutlined", - "ShareRounded", - "ShareSharp", - "ShareTwoTone", - "Shield", - "ShieldMoon", - "ShieldMoonOutlined", - "ShieldMoonRounded", - "ShieldMoonSharp", - "ShieldMoonTwoTone", - "ShieldOutlined", - "ShieldRounded", - "ShieldSharp", - "ShieldTwoTone", - "Shop", - "Shop2", - "Shop2Outlined", - "Shop2Rounded", - "Shop2Sharp", - "Shop2TwoTone", - "ShopOutlined", - "ShopRounded", - "ShopSharp", - "ShopTwo", - "ShopTwoOutlined", - "ShopTwoRounded", - "ShopTwoSharp", - "ShopTwoTone", - "ShopTwoTwoTone", - "ShoppingBag", - "ShoppingBagOutlined", - "ShoppingBagRounded", - "ShoppingBagSharp", - "ShoppingBagTwoTone", - "ShoppingBasket", - "ShoppingBasketOutlined", - "ShoppingBasketRounded", - "ShoppingBasketSharp", - "ShoppingBasketTwoTone", - "ShoppingCart", - "ShoppingCartCheckout", - "ShoppingCartCheckoutOutlined", - "ShoppingCartCheckoutRounded", - "ShoppingCartCheckoutSharp", - "ShoppingCartCheckoutTwoTone", - "ShoppingCartOutlined", - "ShoppingCartRounded", - "ShoppingCartSharp", - "ShoppingCartTwoTone", - "ShortText", - "ShortTextOutlined", - "ShortTextRounded", - "ShortTextSharp", - "ShortTextTwoTone", - "Shortcut", - "ShortcutOutlined", - "ShortcutRounded", - "ShortcutSharp", - "ShortcutTwoTone", - "ShowChart", - "ShowChartOutlined", - "ShowChartRounded", - "ShowChartSharp", - "ShowChartTwoTone", - "Shower", - "ShowerOutlined", - "ShowerRounded", - "ShowerSharp", - "ShowerTwoTone", - "Shuffle", - "ShuffleOn", - "ShuffleOnOutlined", - "ShuffleOnRounded", - "ShuffleOnSharp", - "ShuffleOnTwoTone", - "ShuffleOutlined", - "ShuffleRounded", - "ShuffleSharp", - "ShuffleTwoTone", - "ShutterSpeed", - "ShutterSpeedOutlined", - "ShutterSpeedRounded", - "ShutterSpeedSharp", - "ShutterSpeedTwoTone", - "Sick", - "SickOutlined", - "SickRounded", - "SickSharp", - "SickTwoTone", - "SignLanguage", - "SignLanguageOutlined", - "SignLanguageRounded", - "SignLanguageSharp", - "SignLanguageTwoTone", - "SignalCellular0Bar", - "SignalCellular0BarOutlined", - "SignalCellular0BarRounded", - "SignalCellular0BarSharp", - "SignalCellular0BarTwoTone", - "SignalCellular1Bar", - "SignalCellular1BarOutlined", - "SignalCellular1BarRounded", - "SignalCellular1BarSharp", - "SignalCellular1BarTwoTone", - "SignalCellular2Bar", - "SignalCellular2BarOutlined", - "SignalCellular2BarRounded", - "SignalCellular2BarSharp", - "SignalCellular2BarTwoTone", - "SignalCellular3Bar", - "SignalCellular3BarOutlined", - "SignalCellular3BarRounded", - "SignalCellular3BarSharp", - "SignalCellular3BarTwoTone", - "SignalCellular4Bar", - "SignalCellular4BarOutlined", - "SignalCellular4BarRounded", - "SignalCellular4BarSharp", - "SignalCellular4BarTwoTone", - "SignalCellularAlt", - "SignalCellularAlt1Bar", - "SignalCellularAlt1BarOutlined", - "SignalCellularAlt1BarRounded", - "SignalCellularAlt1BarSharp", - "SignalCellularAlt1BarTwoTone", - "SignalCellularAlt2Bar", - "SignalCellularAlt2BarOutlined", - "SignalCellularAlt2BarRounded", - "SignalCellularAlt2BarSharp", - "SignalCellularAlt2BarTwoTone", - "SignalCellularAltOutlined", - "SignalCellularAltRounded", - "SignalCellularAltSharp", - "SignalCellularAltTwoTone", - "SignalCellularNoSim", - "SignalCellularNoSimOutlined", - "SignalCellularNoSimRounded", - "SignalCellularNoSimSharp", - "SignalCellularNoSimTwoTone", - "SignalCellularNodata", - "SignalCellularNodataOutlined", - "SignalCellularNodataRounded", - "SignalCellularNodataSharp", - "SignalCellularNodataTwoTone", - "SignalCellularNull", - "SignalCellularNullOutlined", - "SignalCellularNullRounded", - "SignalCellularNullSharp", - "SignalCellularNullTwoTone", - "SignalCellularOff", - "SignalCellularOffOutlined", - "SignalCellularOffRounded", - "SignalCellularOffSharp", - "SignalCellularOffTwoTone", - "SignalWifi0Bar", - "SignalWifi0BarOutlined", - "SignalWifi0BarRounded", - "SignalWifi0BarSharp", - "SignalWifi0BarTwoTone", - "SignalWifiBad", - "SignalWifiBadOutlined", - "SignalWifiBadRounded", - "SignalWifiBadSharp", - "SignalWifiBadTwoTone", - "SignalWifiOff", - "SignalWifiOffOutlined", - "SignalWifiOffRounded", - "SignalWifiOffSharp", - "SignalWifiOffTwoTone", - "SignalWifiStatusbar4Bar", - "SignalWifiStatusbar4BarOutlined", - "SignalWifiStatusbar4BarRounded", - "SignalWifiStatusbar4BarSharp", - "SignalWifiStatusbar4BarTwoTone", - "SignalWifiStatusbarNull", - "SignalWifiStatusbarNullOutlined", - "SignalWifiStatusbarNullRounded", - "SignalWifiStatusbarNullSharp", - "SignalWifiStatusbarNullTwoTone", - "Signpost", - "SignpostOutlined", - "SignpostRounded", - "SignpostSharp", - "SignpostTwoTone", - "SimCard", - "SimCardAlert", - "SimCardAlertOutlined", - "SimCardAlertRounded", - "SimCardAlertSharp", - "SimCardAlertTwoTone", - "SimCardDownload", - "SimCardDownloadOutlined", - "SimCardDownloadRounded", - "SimCardDownloadSharp", - "SimCardDownloadTwoTone", - "SimCardOutlined", - "SimCardRounded", - "SimCardSharp", - "SimCardTwoTone", - "SingleBed", - "SingleBedOutlined", - "SingleBedRounded", - "SingleBedSharp", - "SingleBedTwoTone", - "Sip", - "SipOutlined", - "SipRounded", - "SipSharp", - "SipTwoTone", - "Skateboarding", - "SkateboardingOutlined", - "SkateboardingRounded", - "SkateboardingSharp", - "SkateboardingTwoTone", - "SkipNext", - "SkipNextOutlined", - "SkipNextRounded", - "SkipNextSharp", - "SkipNextTwoTone", - "SkipPrevious", - "SkipPreviousOutlined", - "SkipPreviousRounded", - "SkipPreviousSharp", - "SkipPreviousTwoTone", - "Sledding", - "SleddingOutlined", - "SleddingRounded", - "SleddingSharp", - "SleddingTwoTone", - "Slideshow", - "SlideshowOutlined", - "SlideshowRounded", - "SlideshowSharp", - "SlideshowTwoTone", - "SlowMotionVideo", - "SlowMotionVideoOutlined", - "SlowMotionVideoRounded", - "SlowMotionVideoSharp", - "SlowMotionVideoTwoTone", - "SmartButton", - "SmartButtonOutlined", - "SmartButtonRounded", - "SmartButtonSharp", - "SmartButtonTwoTone", - "SmartDisplay", - "SmartDisplayOutlined", - "SmartDisplayRounded", - "SmartDisplaySharp", - "SmartDisplayTwoTone", - "SmartScreen", - "SmartScreenOutlined", - "SmartScreenRounded", - "SmartScreenSharp", - "SmartScreenTwoTone", - "SmartToy", - "SmartToyOutlined", - "SmartToyRounded", - "SmartToySharp", - "SmartToyTwoTone", - "Smartphone", - "SmartphoneOutlined", - "SmartphoneRounded", - "SmartphoneSharp", - "SmartphoneTwoTone", - "SmokeFree", - "SmokeFreeOutlined", - "SmokeFreeRounded", - "SmokeFreeSharp", - "SmokeFreeTwoTone", - "SmokingRooms", - "SmokingRoomsOutlined", - "SmokingRoomsRounded", - "SmokingRoomsSharp", - "SmokingRoomsTwoTone", - "Sms", - "SmsFailed", - "SmsFailedOutlined", - "SmsFailedRounded", - "SmsFailedSharp", - "SmsFailedTwoTone", - "SmsOutlined", - "SmsRounded", - "SmsSharp", - "SmsTwoTone", - "SnippetFolder", - "SnippetFolderOutlined", - "SnippetFolderRounded", - "SnippetFolderSharp", - "SnippetFolderTwoTone", - "Snooze", - "SnoozeOutlined", - "SnoozeRounded", - "SnoozeSharp", - "SnoozeTwoTone", - "Snowboarding", - "SnowboardingOutlined", - "SnowboardingRounded", - "SnowboardingSharp", - "SnowboardingTwoTone", - "Snowmobile", - "SnowmobileOutlined", - "SnowmobileRounded", - "SnowmobileSharp", - "SnowmobileTwoTone", - "Snowshoeing", - "SnowshoeingOutlined", - "SnowshoeingRounded", - "SnowshoeingSharp", - "SnowshoeingTwoTone", - "Soap", - "SoapOutlined", - "SoapRounded", - "SoapSharp", - "SoapTwoTone", - "SocialDistance", - "SocialDistanceOutlined", - "SocialDistanceRounded", - "SocialDistanceSharp", - "SocialDistanceTwoTone", - "SolarPower", - "SolarPowerOutlined", - "SolarPowerRounded", - "SolarPowerSharp", - "SolarPowerTwoTone", - "Sort", - "SortByAlpha", - "SortByAlphaOutlined", - "SortByAlphaRounded", - "SortByAlphaSharp", - "SortByAlphaTwoTone", - "SortOutlined", - "SortRounded", - "SortSharp", - "SortTwoTone", - "Sos", - "SosOutlined", - "SosRounded", - "SosSharp", - "SosTwoTone", - "SoupKitchen", - "SoupKitchenOutlined", - "SoupKitchenRounded", - "SoupKitchenSharp", - "SoupKitchenTwoTone", - "Source", - "SourceOutlined", - "SourceRounded", - "SourceSharp", - "SourceTwoTone", - "South", - "SouthAmerica", - "SouthAmericaOutlined", - "SouthAmericaRounded", - "SouthAmericaSharp", - "SouthAmericaTwoTone", - "SouthEast", - "SouthEastOutlined", - "SouthEastRounded", - "SouthEastSharp", - "SouthEastTwoTone", - "SouthOutlined", - "SouthRounded", - "SouthSharp", - "SouthTwoTone", - "SouthWest", - "SouthWestOutlined", - "SouthWestRounded", - "SouthWestSharp", - "SouthWestTwoTone", - "Spa", - "SpaOutlined", - "SpaRounded", - "SpaSharp", - "SpaTwoTone", - "SpaceBar", - "SpaceBarOutlined", - "SpaceBarRounded", - "SpaceBarSharp", - "SpaceBarTwoTone", - "SpaceDashboard", - "SpaceDashboardOutlined", - "SpaceDashboardRounded", - "SpaceDashboardSharp", - "SpaceDashboardTwoTone", - "SpatialAudio", - "SpatialAudioOff", - "SpatialAudioOffOutlined", - "SpatialAudioOffRounded", - "SpatialAudioOffSharp", - "SpatialAudioOffTwoTone", - "SpatialAudioOutlined", - "SpatialAudioRounded", - "SpatialAudioSharp", - "SpatialAudioTwoTone", - "SpatialTracking", - "SpatialTrackingOutlined", - "SpatialTrackingRounded", - "SpatialTrackingSharp", - "SpatialTrackingTwoTone", - "Speaker", - "SpeakerGroup", - "SpeakerGroupOutlined", - "SpeakerGroupRounded", - "SpeakerGroupSharp", - "SpeakerGroupTwoTone", - "SpeakerNotes", - "SpeakerNotesOff", - "SpeakerNotesOffOutlined", - "SpeakerNotesOffRounded", - "SpeakerNotesOffSharp", - "SpeakerNotesOffTwoTone", - "SpeakerNotesOutlined", - "SpeakerNotesRounded", - "SpeakerNotesSharp", - "SpeakerNotesTwoTone", - "SpeakerOutlined", - "SpeakerPhone", - "SpeakerPhoneOutlined", - "SpeakerPhoneRounded", - "SpeakerPhoneSharp", - "SpeakerPhoneTwoTone", - "SpeakerRounded", - "SpeakerSharp", - "SpeakerTwoTone", - "Speed", - "SpeedOutlined", - "SpeedRounded", - "SpeedSharp", - "SpeedTwoTone", - "Spellcheck", - "SpellcheckOutlined", - "SpellcheckRounded", - "SpellcheckSharp", - "SpellcheckTwoTone", - "Splitscreen", - "SplitscreenOutlined", - "SplitscreenRounded", - "SplitscreenSharp", - "SplitscreenTwoTone", - "Spoke", - "SpokeOutlined", - "SpokeRounded", - "SpokeSharp", - "SpokeTwoTone", - "Sports", - "SportsBar", - "SportsBarOutlined", - "SportsBarRounded", - "SportsBarSharp", - "SportsBarTwoTone", - "SportsBaseball", - "SportsBaseballOutlined", - "SportsBaseballRounded", - "SportsBaseballSharp", - "SportsBaseballTwoTone", - "SportsBasketball", - "SportsBasketballOutlined", - "SportsBasketballRounded", - "SportsBasketballSharp", - "SportsBasketballTwoTone", - "SportsCricket", - "SportsCricketOutlined", - "SportsCricketRounded", - "SportsCricketSharp", - "SportsCricketTwoTone", - "SportsEsports", - "SportsEsportsOutlined", - "SportsEsportsRounded", - "SportsEsportsSharp", - "SportsEsportsTwoTone", - "SportsFootball", - "SportsFootballOutlined", - "SportsFootballRounded", - "SportsFootballSharp", - "SportsFootballTwoTone", - "SportsGolf", - "SportsGolfOutlined", - "SportsGolfRounded", - "SportsGolfSharp", - "SportsGolfTwoTone", - "SportsGymnastics", - "SportsGymnasticsOutlined", - "SportsGymnasticsRounded", - "SportsGymnasticsSharp", - "SportsGymnasticsTwoTone", - "SportsHandball", - "SportsHandballOutlined", - "SportsHandballRounded", - "SportsHandballSharp", - "SportsHandballTwoTone", - "SportsHockey", - "SportsHockeyOutlined", - "SportsHockeyRounded", - "SportsHockeySharp", - "SportsHockeyTwoTone", - "SportsKabaddi", - "SportsKabaddiOutlined", - "SportsKabaddiRounded", - "SportsKabaddiSharp", - "SportsKabaddiTwoTone", - "SportsMartialArts", - "SportsMartialArtsOutlined", - "SportsMartialArtsRounded", - "SportsMartialArtsSharp", - "SportsMartialArtsTwoTone", - "SportsMma", - "SportsMmaOutlined", - "SportsMmaRounded", - "SportsMmaSharp", - "SportsMmaTwoTone", - "SportsMotorsports", - "SportsMotorsportsOutlined", - "SportsMotorsportsRounded", - "SportsMotorsportsSharp", - "SportsMotorsportsTwoTone", - "SportsOutlined", - "SportsRounded", - "SportsRugby", - "SportsRugbyOutlined", - "SportsRugbyRounded", - "SportsRugbySharp", - "SportsRugbyTwoTone", - "SportsScore", - "SportsScoreOutlined", - "SportsScoreRounded", - "SportsScoreSharp", - "SportsScoreTwoTone", - "SportsSharp", - "SportsSoccer", - "SportsSoccerOutlined", - "SportsSoccerRounded", - "SportsSoccerSharp", - "SportsSoccerTwoTone", - "SportsTennis", - "SportsTennisOutlined", - "SportsTennisRounded", - "SportsTennisSharp", - "SportsTennisTwoTone", - "SportsTwoTone", - "SportsVolleyball", - "SportsVolleyballOutlined", - "SportsVolleyballRounded", - "SportsVolleyballSharp", - "SportsVolleyballTwoTone", - "Square", - "SquareFoot", - "SquareFootOutlined", - "SquareFootRounded", - "SquareFootSharp", - "SquareFootTwoTone", - "SquareOutlined", - "SquareRounded", - "SquareSharp", - "SquareTwoTone", - "SsidChart", - "SsidChartOutlined", - "SsidChartRounded", - "SsidChartSharp", - "SsidChartTwoTone", - "StackedBarChart", - "StackedBarChartOutlined", - "StackedBarChartRounded", - "StackedBarChartSharp", - "StackedBarChartTwoTone", - "StackedLineChart", - "StackedLineChartOutlined", - "StackedLineChartRounded", - "StackedLineChartSharp", - "StackedLineChartTwoTone", - "Stadium", - "StadiumOutlined", - "StadiumRounded", - "StadiumSharp", - "StadiumTwoTone", - "Stairs", - "StairsOutlined", - "StairsRounded", - "StairsSharp", - "StairsTwoTone", - "Star", - "StarBorder", - "StarBorderOutlined", - "StarBorderRounded", - "StarBorderSharp", - "StarBorderTwoTone", - "StarHalf", - "StarHalfOutlined", - "StarHalfRounded", - "StarHalfSharp", - "StarHalfTwoTone", - "StarOutline", - "StarOutlineOutlined", - "StarOutlineRounded", - "StarOutlineSharp", - "StarOutlineTwoTone", - "StarOutlined", - "StarRate", - "StarRateOutlined", - "StarRateRounded", - "StarRateSharp", - "StarRateTwoTone", - "StarRounded", - "StarSharp", - "StarTwoTone", - "Stars", - "StarsOutlined", - "StarsRounded", - "StarsSharp", - "StarsTwoTone", - "Start", - "StartOutlined", - "StartRounded", - "StartSharp", - "StartTwoTone", - "StayCurrentLandscape", - "StayCurrentLandscapeOutlined", - "StayCurrentLandscapeRounded", - "StayCurrentLandscapeSharp", - "StayCurrentLandscapeTwoTone", - "StayCurrentPortrait", - "StayCurrentPortraitOutlined", - "StayCurrentPortraitRounded", - "StayCurrentPortraitSharp", - "StayCurrentPortraitTwoTone", - "StayPrimaryLandscape", - "StayPrimaryLandscapeOutlined", - "StayPrimaryLandscapeRounded", - "StayPrimaryLandscapeSharp", - "StayPrimaryLandscapeTwoTone", - "StayPrimaryPortrait", - "StayPrimaryPortraitOutlined", - "StayPrimaryPortraitRounded", - "StayPrimaryPortraitSharp", - "StayPrimaryPortraitTwoTone", - "StickyNote2", - "StickyNote2Outlined", - "StickyNote2Rounded", - "StickyNote2Sharp", - "StickyNote2TwoTone", - "Stop", - "StopCircle", - "StopCircleOutlined", - "StopCircleRounded", - "StopCircleSharp", - "StopCircleTwoTone", - "StopOutlined", - "StopRounded", - "StopScreenShare", - "StopScreenShareOutlined", - "StopScreenShareRounded", - "StopScreenShareSharp", - "StopScreenShareTwoTone", - "StopSharp", - "StopTwoTone", - "Storage", - "StorageOutlined", - "StorageRounded", - "StorageSharp", - "StorageTwoTone", - "Store", - "StoreMallDirectory", - "StoreMallDirectoryOutlined", - "StoreMallDirectoryRounded", - "StoreMallDirectorySharp", - "StoreMallDirectoryTwoTone", - "StoreOutlined", - "StoreRounded", - "StoreSharp", - "StoreTwoTone", - "Storefront", - "StorefrontOutlined", - "StorefrontRounded", - "StorefrontSharp", - "StorefrontTwoTone", - "Storm", - "StormOutlined", - "StormRounded", - "StormSharp", - "StormTwoTone", - "Straight", - "StraightOutlined", - "StraightRounded", - "StraightSharp", - "StraightTwoTone", - "Straighten", - "StraightenOutlined", - "StraightenRounded", - "StraightenSharp", - "StraightenTwoTone", - "Stream", - "StreamOutlined", - "StreamRounded", - "StreamSharp", - "StreamTwoTone", - "Streetview", - "StreetviewOutlined", - "StreetviewRounded", - "StreetviewSharp", - "StreetviewTwoTone", - "StrikethroughS", - "StrikethroughSOutlined", - "StrikethroughSRounded", - "StrikethroughSSharp", - "StrikethroughSTwoTone", - "Stroller", - "StrollerOutlined", - "StrollerRounded", - "StrollerSharp", - "StrollerTwoTone", - "Style", - "StyleOutlined", - "StyleRounded", - "StyleSharp", - "StyleTwoTone", - "SubdirectoryArrowLeft", - "SubdirectoryArrowLeftOutlined", - "SubdirectoryArrowLeftRounded", - "SubdirectoryArrowLeftSharp", - "SubdirectoryArrowLeftTwoTone", - "SubdirectoryArrowRight", - "SubdirectoryArrowRightOutlined", - "SubdirectoryArrowRightRounded", - "SubdirectoryArrowRightSharp", - "SubdirectoryArrowRightTwoTone", - "Subject", - "SubjectOutlined", - "SubjectRounded", - "SubjectSharp", - "SubjectTwoTone", - "Subscript", - "SubscriptOutlined", - "SubscriptRounded", - "SubscriptSharp", - "SubscriptTwoTone", - "Subscriptions", - "SubscriptionsOutlined", - "SubscriptionsRounded", - "SubscriptionsSharp", - "SubscriptionsTwoTone", - "Subtitles", - "SubtitlesOff", - "SubtitlesOffOutlined", - "SubtitlesOffRounded", - "SubtitlesOffSharp", - "SubtitlesOffTwoTone", - "SubtitlesOutlined", - "SubtitlesRounded", - "SubtitlesSharp", - "SubtitlesTwoTone", - "Subway", - "SubwayOutlined", - "SubwayRounded", - "SubwaySharp", - "SubwayTwoTone", - "Summarize", - "SummarizeOutlined", - "SummarizeRounded", - "SummarizeSharp", - "SummarizeTwoTone", - "Superscript", - "SuperscriptOutlined", - "SuperscriptRounded", - "SuperscriptSharp", - "SuperscriptTwoTone", - "SupervisedUserCircle", - "SupervisedUserCircleOutlined", - "SupervisedUserCircleRounded", - "SupervisedUserCircleSharp", - "SupervisedUserCircleTwoTone", - "SupervisorAccount", - "SupervisorAccountOutlined", - "SupervisorAccountRounded", - "SupervisorAccountSharp", - "SupervisorAccountTwoTone", - "Support", - "SupportAgent", - "SupportAgentOutlined", - "SupportAgentRounded", - "SupportAgentSharp", - "SupportAgentTwoTone", - "SupportOutlined", - "SupportRounded", - "SupportSharp", - "SupportTwoTone", - "Surfing", - "SurfingOutlined", - "SurfingRounded", - "SurfingSharp", - "SurfingTwoTone", - "SurroundSound", - "SurroundSoundOutlined", - "SurroundSoundRounded", - "SurroundSoundSharp", - "SurroundSoundTwoTone", - "SwapCalls", - "SwapCallsOutlined", - "SwapCallsRounded", - "SwapCallsSharp", - "SwapCallsTwoTone", - "SwapHoriz", - "SwapHorizOutlined", - "SwapHorizRounded", - "SwapHorizSharp", - "SwapHorizTwoTone", - "SwapHorizontalCircle", - "SwapHorizontalCircleOutlined", - "SwapHorizontalCircleRounded", - "SwapHorizontalCircleSharp", - "SwapHorizontalCircleTwoTone", - "SwapVert", - "SwapVertOutlined", - "SwapVertRounded", - "SwapVertSharp", - "SwapVertTwoTone", - "SwapVerticalCircle", - "SwapVerticalCircleOutlined", - "SwapVerticalCircleRounded", - "SwapVerticalCircleSharp", - "SwapVerticalCircleTwoTone", - "Swipe", - "SwipeDown", - "SwipeDownAlt", - "SwipeDownAltOutlined", - "SwipeDownAltRounded", - "SwipeDownAltSharp", - "SwipeDownAltTwoTone", - "SwipeDownOutlined", - "SwipeDownRounded", - "SwipeDownSharp", - "SwipeDownTwoTone", - "SwipeLeft", - "SwipeLeftAlt", - "SwipeLeftAltOutlined", - "SwipeLeftAltRounded", - "SwipeLeftAltSharp", - "SwipeLeftAltTwoTone", - "SwipeLeftOutlined", - "SwipeLeftRounded", - "SwipeLeftSharp", - "SwipeLeftTwoTone", - "SwipeOutlined", - "SwipeRight", - "SwipeRightAlt", - "SwipeRightAltOutlined", - "SwipeRightAltRounded", - "SwipeRightAltSharp", - "SwipeRightAltTwoTone", - "SwipeRightOutlined", - "SwipeRightRounded", - "SwipeRightSharp", - "SwipeRightTwoTone", - "SwipeRounded", - "SwipeSharp", - "SwipeTwoTone", - "SwipeUp", - "SwipeUpAlt", - "SwipeUpAltOutlined", - "SwipeUpAltRounded", - "SwipeUpAltSharp", - "SwipeUpAltTwoTone", - "SwipeUpOutlined", - "SwipeUpRounded", - "SwipeUpSharp", - "SwipeUpTwoTone", - "SwipeVertical", - "SwipeVerticalOutlined", - "SwipeVerticalRounded", - "SwipeVerticalSharp", - "SwipeVerticalTwoTone", - "SwitchAccessShortcut", - "SwitchAccessShortcutAdd", - "SwitchAccessShortcutAddOutlined", - "SwitchAccessShortcutAddRounded", - "SwitchAccessShortcutAddSharp", - "SwitchAccessShortcutAddTwoTone", - "SwitchAccessShortcutOutlined", - "SwitchAccessShortcutRounded", - "SwitchAccessShortcutSharp", - "SwitchAccessShortcutTwoTone", - "SwitchAccount", - "SwitchAccountOutlined", - "SwitchAccountRounded", - "SwitchAccountSharp", - "SwitchAccountTwoTone", - "SwitchCamera", - "SwitchCameraOutlined", - "SwitchCameraRounded", - "SwitchCameraSharp", - "SwitchCameraTwoTone", - "SwitchLeft", - "SwitchLeftOutlined", - "SwitchLeftRounded", - "SwitchLeftSharp", - "SwitchLeftTwoTone", - "SwitchRight", - "SwitchRightOutlined", - "SwitchRightRounded", - "SwitchRightSharp", - "SwitchRightTwoTone", - "SwitchVideo", - "SwitchVideoOutlined", - "SwitchVideoRounded", - "SwitchVideoSharp", - "SwitchVideoTwoTone", - "Synagogue", - "SynagogueOutlined", - "SynagogueRounded", - "SynagogueSharp", - "SynagogueTwoTone", - "Sync", - "SyncAlt", - "SyncAltOutlined", - "SyncAltRounded", - "SyncAltSharp", - "SyncAltTwoTone", - "SyncDisabled", - "SyncDisabledOutlined", - "SyncDisabledRounded", - "SyncDisabledSharp", - "SyncDisabledTwoTone", - "SyncLock", - "SyncLockOutlined", - "SyncLockRounded", - "SyncLockSharp", - "SyncLockTwoTone", - "SyncOutlined", - "SyncProblem", - "SyncProblemOutlined", - "SyncProblemRounded", - "SyncProblemSharp", - "SyncProblemTwoTone", - "SyncRounded", - "SyncSharp", - "SyncTwoTone", - "SystemSecurityUpdate", - "SystemSecurityUpdateGood", - "SystemSecurityUpdateGoodOutlined", - "SystemSecurityUpdateGoodRounded", - "SystemSecurityUpdateGoodSharp", - "SystemSecurityUpdateGoodTwoTone", - "SystemSecurityUpdateOutlined", - "SystemSecurityUpdateRounded", - "SystemSecurityUpdateSharp", - "SystemSecurityUpdateTwoTone", - "SystemSecurityUpdateWarning", - "SystemSecurityUpdateWarningOutlined", - "SystemSecurityUpdateWarningRounded", - "SystemSecurityUpdateWarningSharp", - "SystemSecurityUpdateWarningTwoTone", - "SystemUpdate", - "SystemUpdateAlt", - "SystemUpdateAltOutlined", - "SystemUpdateAltRounded", - "SystemUpdateAltSharp", - "SystemUpdateAltTwoTone", - "SystemUpdateOutlined", - "SystemUpdateRounded", - "SystemUpdateSharp", - "SystemUpdateTwoTone", - "Tab", - "TabOutlined", - "TabRounded", - "TabSharp", - "TabTwoTone", - "TabUnselected", - "TabUnselectedOutlined", - "TabUnselectedRounded", - "TabUnselectedSharp", - "TabUnselectedTwoTone", - "TableBar", - "TableBarOutlined", - "TableBarRounded", - "TableBarSharp", - "TableBarTwoTone", - "TableChart", - "TableChartOutlined", - "TableChartRounded", - "TableChartSharp", - "TableChartTwoTone", - "TableRestaurant", - "TableRestaurantOutlined", - "TableRestaurantRounded", - "TableRestaurantSharp", - "TableRestaurantTwoTone", - "TableRows", - "TableRowsOutlined", - "TableRowsRounded", - "TableRowsSharp", - "TableRowsTwoTone", - "TableView", - "TableViewOutlined", - "TableViewRounded", - "TableViewSharp", - "TableViewTwoTone", - "Tablet", - "TabletAndroid", - "TabletAndroidOutlined", - "TabletAndroidRounded", - "TabletAndroidSharp", - "TabletAndroidTwoTone", - "TabletMac", - "TabletMacOutlined", - "TabletMacRounded", - "TabletMacSharp", - "TabletMacTwoTone", - "TabletOutlined", - "TabletRounded", - "TabletSharp", - "TabletTwoTone", - "Tag", - "TagFaces", - "TagFacesOutlined", - "TagFacesRounded", - "TagFacesSharp", - "TagFacesTwoTone", - "TagOutlined", - "TagRounded", - "TagSharp", - "TagTwoTone", - "TakeoutDining", - "TakeoutDiningOutlined", - "TakeoutDiningRounded", - "TakeoutDiningSharp", - "TakeoutDiningTwoTone", - "TapAndPlay", - "TapAndPlayOutlined", - "TapAndPlayRounded", - "TapAndPlaySharp", - "TapAndPlayTwoTone", - "Tapas", - "TapasOutlined", - "TapasRounded", - "TapasSharp", - "TapasTwoTone", - "Task", - "TaskAlt", - "TaskAltOutlined", - "TaskAltRounded", - "TaskAltSharp", - "TaskAltTwoTone", - "TaskOutlined", - "TaskRounded", - "TaskSharp", - "TaskTwoTone", - "TaxiAlert", - "TaxiAlertOutlined", - "TaxiAlertRounded", - "TaxiAlertSharp", - "TaxiAlertTwoTone", - "Telegram", - "TempleBuddhist", - "TempleBuddhistOutlined", - "TempleBuddhistRounded", - "TempleBuddhistSharp", - "TempleBuddhistTwoTone", - "TempleHindu", - "TempleHinduOutlined", - "TempleHinduRounded", - "TempleHinduSharp", - "TempleHinduTwoTone", - "Terminal", - "TerminalOutlined", - "TerminalRounded", - "TerminalSharp", - "TerminalTwoTone", - "Terrain", - "TerrainOutlined", - "TerrainRounded", - "TerrainSharp", - "TerrainTwoTone", - "TextDecrease", - "TextDecreaseOutlined", - "TextDecreaseRounded", - "TextDecreaseSharp", - "TextDecreaseTwoTone", - "TextFields", - "TextFieldsOutlined", - "TextFieldsRounded", - "TextFieldsSharp", - "TextFieldsTwoTone", - "TextFormat", - "TextFormatOutlined", - "TextFormatRounded", - "TextFormatSharp", - "TextFormatTwoTone", - "TextIncrease", - "TextIncreaseOutlined", - "TextIncreaseRounded", - "TextIncreaseSharp", - "TextIncreaseTwoTone", - "TextRotateUp", - "TextRotateUpOutlined", - "TextRotateUpRounded", - "TextRotateUpSharp", - "TextRotateUpTwoTone", - "TextRotateVertical", - "TextRotateVerticalOutlined", - "TextRotateVerticalRounded", - "TextRotateVerticalSharp", - "TextRotateVerticalTwoTone", - "TextRotationAngledown", - "TextRotationAngledownOutlined", - "TextRotationAngledownRounded", - "TextRotationAngledownSharp", - "TextRotationAngledownTwoTone", - "TextRotationAngleup", - "TextRotationAngleupOutlined", - "TextRotationAngleupRounded", - "TextRotationAngleupSharp", - "TextRotationAngleupTwoTone", - "TextRotationDown", - "TextRotationDownOutlined", - "TextRotationDownRounded", - "TextRotationDownSharp", - "TextRotationDownTwoTone", - "TextRotationNone", - "TextRotationNoneOutlined", - "TextRotationNoneRounded", - "TextRotationNoneSharp", - "TextRotationNoneTwoTone", - "TextSnippet", - "TextSnippetOutlined", - "TextSnippetRounded", - "TextSnippetSharp", - "TextSnippetTwoTone", - "Textsms", - "TextsmsOutlined", - "TextsmsRounded", - "TextsmsSharp", - "TextsmsTwoTone", - "Texture", - "TextureOutlined", - "TextureRounded", - "TextureSharp", - "TextureTwoTone", - "TheaterComedy", - "TheaterComedyOutlined", - "TheaterComedyRounded", - "TheaterComedySharp", - "TheaterComedyTwoTone", - "Theaters", - "TheatersOutlined", - "TheatersRounded", - "TheatersSharp", - "TheatersTwoTone", - "Thermostat", - "ThermostatAuto", - "ThermostatAutoOutlined", - "ThermostatAutoRounded", - "ThermostatAutoSharp", - "ThermostatAutoTwoTone", - "ThermostatOutlined", - "ThermostatRounded", - "ThermostatSharp", - "ThermostatTwoTone", - "ThumbDown", - "ThumbDownAlt", - "ThumbDownAltOutlined", - "ThumbDownAltRounded", - "ThumbDownAltSharp", - "ThumbDownAltTwoTone", - "ThumbDownOffAlt", - "ThumbDownOffAltOutlined", - "ThumbDownOffAltRounded", - "ThumbDownOffAltSharp", - "ThumbDownOffAltTwoTone", - "ThumbDownOutlined", - "ThumbDownRounded", - "ThumbDownSharp", - "ThumbDownTwoTone", - "ThumbUp", - "ThumbUpAlt", - "ThumbUpAltOutlined", - "ThumbUpAltRounded", - "ThumbUpAltSharp", - "ThumbUpAltTwoTone", - "ThumbUpOffAlt", - "ThumbUpOffAltOutlined", - "ThumbUpOffAltRounded", - "ThumbUpOffAltSharp", - "ThumbUpOffAltTwoTone", - "ThumbUpOutlined", - "ThumbUpRounded", - "ThumbUpSharp", - "ThumbUpTwoTone", - "ThumbsUpDown", - "ThumbsUpDownOutlined", - "ThumbsUpDownRounded", - "ThumbsUpDownSharp", - "ThumbsUpDownTwoTone", - "Thunderstorm", - "ThunderstormOutlined", - "ThunderstormRounded", - "ThunderstormSharp", - "ThunderstormTwoTone", - "TimeToLeave", - "TimeToLeaveOutlined", - "TimeToLeaveRounded", - "TimeToLeaveSharp", - "TimeToLeaveTwoTone", - "Timelapse", - "TimelapseOutlined", - "TimelapseRounded", - "TimelapseSharp", - "TimelapseTwoTone", - "Timeline", - "TimelineOutlined", - "TimelineRounded", - "TimelineSharp", - "TimelineTwoTone", - "Timer", - "Timer10", - "Timer10Outlined", - "Timer10Rounded", - "Timer10Select", - "Timer10SelectOutlined", - "Timer10SelectRounded", - "Timer10SelectSharp", - "Timer10SelectTwoTone", - "Timer10Sharp", - "Timer10TwoTone", - "Timer3", - "Timer3Outlined", - "Timer3Rounded", - "Timer3Select", - "Timer3SelectOutlined", - "Timer3SelectRounded", - "Timer3SelectSharp", - "Timer3SelectTwoTone", - "Timer3Sharp", - "Timer3TwoTone", - "TimerOff", - "TimerOffOutlined", - "TimerOffRounded", - "TimerOffSharp", - "TimerOffTwoTone", - "TimerOutlined", - "TimerRounded", - "TimerSharp", - "TimerTwoTone", - "TipsAndUpdates", - "TipsAndUpdatesOutlined", - "TipsAndUpdatesRounded", - "TipsAndUpdatesSharp", - "TipsAndUpdatesTwoTone", - "TireRepair", - "TireRepairOutlined", - "TireRepairRounded", - "TireRepairSharp", - "TireRepairTwoTone", - "Title", - "TitleOutlined", - "TitleRounded", - "TitleSharp", - "TitleTwoTone", - "Toc", - "TocOutlined", - "TocRounded", - "TocSharp", - "TocTwoTone", - "Today", - "TodayOutlined", - "TodayRounded", - "TodaySharp", - "TodayTwoTone", - "ToggleOff", - "ToggleOffOutlined", - "ToggleOffRounded", - "ToggleOffSharp", - "ToggleOffTwoTone", - "ToggleOn", - "ToggleOnOutlined", - "ToggleOnRounded", - "ToggleOnSharp", - "ToggleOnTwoTone", - "Token", - "TokenOutlined", - "TokenRounded", - "TokenSharp", - "TokenTwoTone", - "Toll", - "TollOutlined", - "TollRounded", - "TollSharp", - "TollTwoTone", - "Tonality", - "TonalityOutlined", - "TonalityRounded", - "TonalitySharp", - "TonalityTwoTone", - "Topic", - "TopicOutlined", - "TopicRounded", - "TopicSharp", - "TopicTwoTone", - "Tornado", - "TornadoOutlined", - "TornadoRounded", - "TornadoSharp", - "TornadoTwoTone", - "TouchApp", - "TouchAppOutlined", - "TouchAppRounded", - "TouchAppSharp", - "TouchAppTwoTone", - "Tour", - "TourOutlined", - "TourRounded", - "TourSharp", - "TourTwoTone", - "Toys", - "ToysOutlined", - "ToysRounded", - "ToysSharp", - "ToysTwoTone", - "TrackChanges", - "TrackChangesOutlined", - "TrackChangesRounded", - "TrackChangesSharp", - "TrackChangesTwoTone", - "Traffic", - "TrafficOutlined", - "TrafficRounded", - "TrafficSharp", - "TrafficTwoTone", - "Train", - "TrainOutlined", - "TrainRounded", - "TrainSharp", - "TrainTwoTone", - "Tram", - "TramOutlined", - "TramRounded", - "TramSharp", - "TramTwoTone", - "Transcribe", - "TranscribeOutlined", - "TranscribeRounded", - "TranscribeSharp", - "TranscribeTwoTone", - "TransferWithinAStation", - "TransferWithinAStationOutlined", - "TransferWithinAStationRounded", - "TransferWithinAStationSharp", - "TransferWithinAStationTwoTone", - "Transform", - "TransformOutlined", - "TransformRounded", - "TransformSharp", - "TransformTwoTone", - "Transgender", - "TransgenderOutlined", - "TransgenderRounded", - "TransgenderSharp", - "TransgenderTwoTone", - "TransitEnterexit", - "TransitEnterexitOutlined", - "TransitEnterexitRounded", - "TransitEnterexitSharp", - "TransitEnterexitTwoTone", - "Translate", - "TranslateOutlined", - "TranslateRounded", - "TranslateSharp", - "TranslateTwoTone", - "TravelExplore", - "TravelExploreOutlined", - "TravelExploreRounded", - "TravelExploreSharp", - "TravelExploreTwoTone", - "TrendingDown", - "TrendingDownOutlined", - "TrendingDownRounded", - "TrendingDownSharp", - "TrendingDownTwoTone", - "TrendingFlat", - "TrendingFlatOutlined", - "TrendingFlatRounded", - "TrendingFlatSharp", - "TrendingFlatTwoTone", - "TrendingUp", - "TrendingUpOutlined", - "TrendingUpRounded", - "TrendingUpSharp", - "TrendingUpTwoTone", - "TripOrigin", - "TripOriginOutlined", - "TripOriginRounded", - "TripOriginSharp", - "TripOriginTwoTone", - "Troubleshoot", - "TroubleshootOutlined", - "TroubleshootRounded", - "TroubleshootSharp", - "TroubleshootTwoTone", - "Try", - "TryOutlined", - "TryRounded", - "TrySharp", - "TryTwoTone", - "Tsunami", - "TsunamiOutlined", - "TsunamiRounded", - "TsunamiSharp", - "TsunamiTwoTone", - "Tty", - "TtyOutlined", - "TtyRounded", - "TtySharp", - "TtyTwoTone", - "Tune", - "TuneOutlined", - "TuneRounded", - "TuneSharp", - "TuneTwoTone", - "Tungsten", - "TungstenOutlined", - "TungstenRounded", - "TungstenSharp", - "TungstenTwoTone", - "TurnLeftOutlined", - "TurnLeftRounded", - "TurnRightOutlined", - "TurnRightRounded", - "TurnSharpLeft", - "TurnSharpLeftOutlined", - "TurnSharpLeftRounded", - "TurnSharpLeftTwoTone", - "TurnSharpRight", - "TurnSharpRightOutlined", - "TurnSharpRightRounded", - "TurnSharpRightTwoTone", - "TurnSlightLeft", - "TurnSlightLeftOutlined", - "TurnSlightLeftRounded", - "TurnSlightLeftSharp", - "TurnSlightLeftTwoTone", - "TurnSlightRight", - "TurnSlightRightOutlined", - "TurnSlightRightRounded", - "TurnSlightRightSharp", - "TurnSlightRightTwoTone", - "TurnedIn", - "TurnedInNot", - "TurnedInNotOutlined", - "TurnedInNotRounded", - "TurnedInNotSharp", - "TurnedInNotTwoTone", - "TurnedInOutlined", - "TurnedInRounded", - "TurnedInSharp", - "TurnedInTwoTone", - "Tv", - "TvOff", - "TvOffOutlined", - "TvOffRounded", - "TvOffSharp", - "TvOffTwoTone", - "TvOutlined", - "TvRounded", - "TvSharp", - "TvTwoTone", - "Twitter", - "TwoWheeler", - "TwoWheelerOutlined", - "TwoWheelerRounded", - "TwoWheelerSharp", - "TwoWheelerTwoTone", - "TypeSpecimen", - "TypeSpecimenOutlined", - "TypeSpecimenRounded", - "TypeSpecimenSharp", - "TypeSpecimenTwoTone", - "UTurnLeft", - "UTurnLeftOutlined", - "UTurnLeftRounded", - "UTurnLeftSharp", - "UTurnLeftTwoTone", - "UTurnRight", - "UTurnRightOutlined", - "UTurnRightRounded", - "UTurnRightSharp", - "UTurnRightTwoTone", - "Umbrella", - "UmbrellaOutlined", - "UmbrellaRounded", - "UmbrellaSharp", - "UmbrellaTwoTone", - "Unarchive", - "UnarchiveOutlined", - "UnarchiveRounded", - "UnarchiveSharp", - "UnarchiveTwoTone", - "Undo", - "UndoOutlined", - "UndoRounded", - "UndoSharp", - "UndoTwoTone", - "UnfoldLess", - "UnfoldLessDouble", - "UnfoldLessDoubleOutlined", - "UnfoldLessDoubleRounded", - "UnfoldLessDoubleSharp", - "UnfoldLessDoubleTwoTone", - "UnfoldLessOutlined", - "UnfoldLessRounded", - "UnfoldLessSharp", - "UnfoldLessTwoTone", - "UnfoldMore", - "UnfoldMoreDouble", - "UnfoldMoreDoubleOutlined", - "UnfoldMoreDoubleRounded", - "UnfoldMoreDoubleSharp", - "UnfoldMoreDoubleTwoTone", - "UnfoldMoreOutlined", - "UnfoldMoreRounded", - "UnfoldMoreSharp", - "UnfoldMoreTwoTone", - "Unpublished", - "UnpublishedOutlined", - "UnpublishedRounded", - "UnpublishedSharp", - "UnpublishedTwoTone", - "Unsubscribe", - "UnsubscribeOutlined", - "UnsubscribeRounded", - "UnsubscribeSharp", - "UnsubscribeTwoTone", - "Upcoming", - "UpcomingOutlined", - "UpcomingRounded", - "UpcomingSharp", - "UpcomingTwoTone", - "Update", - "UpdateDisabled", - "UpdateDisabledOutlined", - "UpdateDisabledRounded", - "UpdateDisabledSharp", - "UpdateDisabledTwoTone", - "UpdateOutlined", - "UpdateRounded", - "UpdateSharp", - "UpdateTwoTone", - "Upgrade", - "UpgradeOutlined", - "UpgradeRounded", - "UpgradeSharp", - "UpgradeTwoTone", - "Upload", - "UploadFile", - "UploadFileOutlined", - "UploadFileRounded", - "UploadFileSharp", - "UploadFileTwoTone", - "UploadOutlined", - "UploadRounded", - "UploadSharp", - "UploadTwoTone", - "Usb", - "UsbOff", - "UsbOffOutlined", - "UsbOffRounded", - "UsbOffSharp", - "UsbOffTwoTone", - "UsbOutlined", - "UsbRounded", - "UsbSharp", - "UsbTwoTone", - "Vaccines", - "VaccinesOutlined", - "VaccinesRounded", - "VaccinesSharp", - "VaccinesTwoTone", - "VapeFree", - "VapeFreeOutlined", - "VapeFreeRounded", - "VapeFreeSharp", - "VapeFreeTwoTone", - "VapingRooms", - "VapingRoomsOutlined", - "VapingRoomsRounded", - "VapingRoomsSharp", - "VapingRoomsTwoTone", - "Verified", - "VerifiedOutlined", - "VerifiedRounded", - "VerifiedSharp", - "VerifiedTwoTone", - "VerifiedUser", - "VerifiedUserOutlined", - "VerifiedUserRounded", - "VerifiedUserSharp", - "VerifiedUserTwoTone", - "VerticalAlignBottom", - "VerticalAlignBottomOutlined", - "VerticalAlignBottomRounded", - "VerticalAlignBottomSharp", - "VerticalAlignBottomTwoTone", - "VerticalAlignCenter", - "VerticalAlignCenterOutlined", - "VerticalAlignCenterRounded", - "VerticalAlignCenterSharp", - "VerticalAlignCenterTwoTone", - "VerticalAlignTop", - "VerticalAlignTopOutlined", - "VerticalAlignTopRounded", - "VerticalAlignTopSharp", - "VerticalAlignTopTwoTone", - "VerticalShades", - "VerticalShadesClosed", - "VerticalShadesClosedOutlined", - "VerticalShadesClosedRounded", - "VerticalShadesClosedSharp", - "VerticalShadesClosedTwoTone", - "VerticalShadesOutlined", - "VerticalShadesRounded", - "VerticalShadesSharp", - "VerticalShadesTwoTone", - "VerticalSplit", - "VerticalSplitOutlined", - "VerticalSplitRounded", - "VerticalSplitSharp", - "VerticalSplitTwoTone", - "Vibration", - "VibrationOutlined", - "VibrationRounded", - "VibrationSharp", - "VibrationTwoTone", - "VideoCall", - "VideoCallOutlined", - "VideoCallRounded", - "VideoCallSharp", - "VideoCallTwoTone", - "VideoCameraBack", - "VideoCameraBackOutlined", - "VideoCameraBackRounded", - "VideoCameraBackSharp", - "VideoCameraBackTwoTone", - "VideoCameraFront", - "VideoCameraFrontOutlined", - "VideoCameraFrontRounded", - "VideoCameraFrontSharp", - "VideoCameraFrontTwoTone", - "VideoChat", - "VideoChatOutlined", - "VideoChatRounded", - "VideoChatSharp", - "VideoChatTwoTone", - "VideoFile", - "VideoFileOutlined", - "VideoFileRounded", - "VideoFileSharp", - "VideoFileTwoTone", - "VideoLabel", - "VideoLabelOutlined", - "VideoLabelRounded", - "VideoLabelSharp", - "VideoLabelTwoTone", - "VideoLibrary", - "VideoLibraryOutlined", - "VideoLibraryRounded", - "VideoLibrarySharp", - "VideoLibraryTwoTone", - "VideoSettings", - "VideoSettingsOutlined", - "VideoSettingsRounded", - "VideoSettingsSharp", - "VideoSettingsTwoTone", - "VideoStable", - "VideoStableOutlined", - "VideoStableRounded", - "VideoStableSharp", - "VideoStableTwoTone", - "Videocam", - "VideocamOff", - "VideocamOffOutlined", - "VideocamOffRounded", - "VideocamOffSharp", - "VideocamOffTwoTone", - "VideocamOutlined", - "VideocamRounded", - "VideocamSharp", - "VideocamTwoTone", - "VideogameAsset", - "VideogameAssetOff", - "VideogameAssetOffOutlined", - "VideogameAssetOffRounded", - "VideogameAssetOffSharp", - "VideogameAssetOffTwoTone", - "VideogameAssetOutlined", - "VideogameAssetRounded", - "VideogameAssetSharp", - "VideogameAssetTwoTone", - "ViewAgenda", - "ViewAgendaOutlined", - "ViewAgendaRounded", - "ViewAgendaSharp", - "ViewAgendaTwoTone", - "ViewArray", - "ViewArrayOutlined", - "ViewArrayRounded", - "ViewArraySharp", - "ViewArrayTwoTone", - "ViewCarousel", - "ViewCarouselOutlined", - "ViewCarouselRounded", - "ViewCarouselSharp", - "ViewCarouselTwoTone", - "ViewColumn", - "ViewColumnOutlined", - "ViewColumnRounded", - "ViewColumnSharp", - "ViewColumnTwoTone", - "ViewComfy", - "ViewComfyAlt", - "ViewComfyAltOutlined", - "ViewComfyAltRounded", - "ViewComfyAltSharp", - "ViewComfyAltTwoTone", - "ViewComfyOutlined", - "ViewComfyRounded", - "ViewComfySharp", - "ViewComfyTwoTone", - "ViewCompact", - "ViewCompactAlt", - "ViewCompactAltOutlined", - "ViewCompactAltRounded", - "ViewCompactAltSharp", - "ViewCompactAltTwoTone", - "ViewCompactOutlined", - "ViewCompactRounded", - "ViewCompactSharp", - "ViewCompactTwoTone", - "ViewCozy", - "ViewCozyOutlined", - "ViewCozyRounded", - "ViewCozySharp", - "ViewCozyTwoTone", - "ViewDay", - "ViewDayOutlined", - "ViewDayRounded", - "ViewDaySharp", - "ViewDayTwoTone", - "ViewHeadline", - "ViewHeadlineOutlined", - "ViewHeadlineRounded", - "ViewHeadlineSharp", - "ViewHeadlineTwoTone", - "ViewInAr", - "ViewInArOutlined", - "ViewInArRounded", - "ViewInArSharp", - "ViewInArTwoTone", - "ViewKanban", - "ViewKanbanOutlined", - "ViewKanbanRounded", - "ViewKanbanSharp", - "ViewKanbanTwoTone", - "ViewList", - "ViewListOutlined", - "ViewListRounded", - "ViewListSharp", - "ViewListTwoTone", - "ViewModule", - "ViewModuleOutlined", - "ViewModuleRounded", - "ViewModuleSharp", - "ViewModuleTwoTone", - "ViewQuilt", - "ViewQuiltOutlined", - "ViewQuiltRounded", - "ViewQuiltSharp", - "ViewQuiltTwoTone", - "ViewSidebar", - "ViewSidebarOutlined", - "ViewSidebarRounded", - "ViewSidebarSharp", - "ViewSidebarTwoTone", - "ViewStream", - "ViewStreamOutlined", - "ViewStreamRounded", - "ViewStreamSharp", - "ViewStreamTwoTone", - "ViewTimeline", - "ViewTimelineOutlined", - "ViewTimelineRounded", - "ViewTimelineSharp", - "ViewTimelineTwoTone", - "ViewWeek", - "ViewWeekOutlined", - "ViewWeekRounded", - "ViewWeekSharp", - "ViewWeekTwoTone", - "Vignette", - "VignetteOutlined", - "VignetteRounded", - "VignetteSharp", - "VignetteTwoTone", - "Villa", - "VillaOutlined", - "VillaRounded", - "VillaSharp", - "VillaTwoTone", - "Visibility", - "VisibilityOff", - "VisibilityOffOutlined", - "VisibilityOffRounded", - "VisibilityOffSharp", - "VisibilityOffTwoTone", - "VisibilityOutlined", - "VisibilityRounded", - "VisibilitySharp", - "VisibilityTwoTone", - "VoiceChat", - "VoiceChatOutlined", - "VoiceChatRounded", - "VoiceChatSharp", - "VoiceChatTwoTone", - "VoiceOverOff", - "VoiceOverOffOutlined", - "VoiceOverOffRounded", - "VoiceOverOffSharp", - "VoiceOverOffTwoTone", - "Voicemail", - "VoicemailOutlined", - "VoicemailRounded", - "VoicemailSharp", - "VoicemailTwoTone", - "Volcano", - "VolcanoOutlined", - "VolcanoRounded", - "VolcanoSharp", - "VolcanoTwoTone", - "VolumeDown", - "VolumeDownOutlined", - "VolumeDownRounded", - "VolumeDownSharp", - "VolumeDownTwoTone", - "VolumeMute", - "VolumeMuteOutlined", - "VolumeMuteRounded", - "VolumeMuteSharp", - "VolumeMuteTwoTone", - "VolumeOff", - "VolumeOffOutlined", - "VolumeOffRounded", - "VolumeOffSharp", - "VolumeOffTwoTone", - "VolumeUp", - "VolumeUpOutlined", - "VolumeUpRounded", - "VolumeUpSharp", - "VolumeUpTwoTone", - "VolunteerActivism", - "VolunteerActivismOutlined", - "VolunteerActivismRounded", - "VolunteerActivismSharp", - "VolunteerActivismTwoTone", - "VpnKey", - "VpnKeyOff", - "VpnKeyOffOutlined", - "VpnKeyOffRounded", - "VpnKeyOffSharp", - "VpnKeyOffTwoTone", - "VpnKeyOutlined", - "VpnKeyRounded", - "VpnKeySharp", - "VpnKeyTwoTone", - "VpnLock", - "VpnLockOutlined", - "VpnLockRounded", - "VpnLockSharp", - "VpnLockTwoTone", - "Vrpano", - "VrpanoOutlined", - "VrpanoRounded", - "VrpanoSharp", - "VrpanoTwoTone", - "Wallet", - "WalletOutlined", - "WalletRounded", - "WalletSharp", - "WalletTwoTone", - "Wallpaper", - "WallpaperOutlined", - "WallpaperRounded", - "WallpaperSharp", - "WallpaperTwoTone", - "Warehouse", - "WarehouseOutlined", - "WarehouseRounded", - "WarehouseSharp", - "WarehouseTwoTone", - "Warning", - "WarningAmber", - "WarningAmberOutlined", - "WarningAmberRounded", - "WarningAmberSharp", - "WarningAmberTwoTone", - "WarningOutlined", - "WarningRounded", - "WarningSharp", - "WarningTwoTone", - "Wash", - "WashOutlined", - "WashRounded", - "WashSharp", - "WashTwoTone", - "Watch", - "WatchLater", - "WatchLaterOutlined", - "WatchLaterRounded", - "WatchLaterSharp", - "WatchLaterTwoTone", - "WatchOff", - "WatchOffOutlined", - "WatchOffRounded", - "WatchOffSharp", - "WatchOffTwoTone", - "WatchOutlined", - "WatchRounded", - "WatchSharp", - "WatchTwoTone", - "Water", - "WaterDamage", - "WaterDamageOutlined", - "WaterDamageRounded", - "WaterDamageSharp", - "WaterDamageTwoTone", - "WaterDrop", - "WaterDropOutlined", - "WaterDropRounded", - "WaterDropSharp", - "WaterDropTwoTone", - "WaterOutlined", - "WaterRounded", - "WaterSharp", - "WaterTwoTone", - "WaterfallChart", - "WaterfallChartOutlined", - "WaterfallChartRounded", - "WaterfallChartSharp", - "WaterfallChartTwoTone", - "Waves", - "WavesOutlined", - "WavesRounded", - "WavesSharp", - "WavesTwoTone", - "WavingHand", - "WavingHandOutlined", - "WavingHandRounded", - "WavingHandSharp", - "WavingHandTwoTone", - "WbAuto", - "WbAutoOutlined", - "WbAutoRounded", - "WbAutoSharp", - "WbAutoTwoTone", - "WbCloudy", - "WbCloudyOutlined", - "WbCloudyRounded", - "WbCloudySharp", - "WbCloudyTwoTone", - "WbIncandescent", - "WbIncandescentOutlined", - "WbIncandescentRounded", - "WbIncandescentSharp", - "WbIncandescentTwoTone", - "WbIridescent", - "WbIridescentOutlined", - "WbIridescentRounded", - "WbIridescentSharp", - "WbIridescentTwoTone", - "WbShade", - "WbShadeOutlined", - "WbShadeRounded", - "WbShadeSharp", - "WbShadeTwoTone", - "WbSunny", - "WbSunnyOutlined", - "WbSunnyRounded", - "WbSunnySharp", - "WbSunnyTwoTone", - "WbTwilight", - "WbTwilightOutlined", - "WbTwilightRounded", - "WbTwilightSharp", - "WbTwilightTwoTone", - "Wc", - "WcOutlined", - "WcRounded", - "WcSharp", - "WcTwoTone", - "Web", - "WebAsset", - "WebAssetOff", - "WebAssetOffOutlined", - "WebAssetOffRounded", - "WebAssetOffSharp", - "WebAssetOffTwoTone", - "WebAssetOutlined", - "WebAssetRounded", - "WebAssetSharp", - "WebAssetTwoTone", - "WebOutlined", - "WebRounded", - "WebSharp", - "WebStories", - "WebStoriesOutlined", - "WebStoriesRounded", - "WebStoriesSharp", - "WebStoriesTwoTone", - "WebTwoTone", - "Webhook", - "WebhookOutlined", - "WebhookRounded", - "WebhookSharp", - "WebhookTwoTone", - "Weekend", - "WeekendOutlined", - "WeekendRounded", - "WeekendSharp", - "WeekendTwoTone", - "West", - "WestOutlined", - "WestRounded", - "WestSharp", - "WestTwoTone", - "WhatsApp", - "Whatshot", - "WhatshotOutlined", - "WhatshotRounded", - "WhatshotSharp", - "WhatshotTwoTone", - "WheelchairPickup", - "WheelchairPickupOutlined", - "WheelchairPickupRounded", - "WheelchairPickupSharp", - "WheelchairPickupTwoTone", - "WhereToVote", - "WhereToVoteOutlined", - "WhereToVoteRounded", - "WhereToVoteSharp", - "WhereToVoteTwoTone", - "Widgets", - "WidgetsOutlined", - "WidgetsRounded", - "WidgetsSharp", - "WidgetsTwoTone", - "WidthFull", - "WidthFullOutlined", - "WidthFullRounded", - "WidthFullSharp", - "WidthFullTwoTone", - "WidthNormal", - "WidthNormalOutlined", - "WidthNormalRounded", - "WidthNormalSharp", - "WidthNormalTwoTone", - "WidthWide", - "WidthWideOutlined", - "WidthWideRounded", - "WidthWideSharp", - "WidthWideTwoTone", - "Wifi", - "Wifi1Bar", - "Wifi1BarOutlined", - "Wifi1BarRounded", - "Wifi1BarSharp", - "Wifi1BarTwoTone", - "Wifi2Bar", - "Wifi2BarOutlined", - "Wifi2BarRounded", - "Wifi2BarSharp", - "Wifi2BarTwoTone", - "WifiCalling", - "WifiCalling3", - "WifiCalling3Outlined", - "WifiCalling3Rounded", - "WifiCalling3Sharp", - "WifiCalling3TwoTone", - "WifiCallingOutlined", - "WifiCallingRounded", - "WifiCallingSharp", - "WifiCallingTwoTone", - "WifiChannel", - "WifiChannelOutlined", - "WifiChannelRounded", - "WifiChannelSharp", - "WifiChannelTwoTone", - "WifiFind", - "WifiFindOutlined", - "WifiFindRounded", - "WifiFindSharp", - "WifiFindTwoTone", - "WifiLock", - "WifiLockOutlined", - "WifiLockRounded", - "WifiLockSharp", - "WifiLockTwoTone", - "WifiOff", - "WifiOffOutlined", - "WifiOffRounded", - "WifiOffSharp", - "WifiOffTwoTone", - "WifiOutlined", - "WifiPassword", - "WifiPasswordOutlined", - "WifiPasswordRounded", - "WifiPasswordSharp", - "WifiPasswordTwoTone", - "WifiProtectedSetup", - "WifiProtectedSetupOutlined", - "WifiProtectedSetupRounded", - "WifiProtectedSetupSharp", - "WifiProtectedSetupTwoTone", - "WifiRounded", - "WifiSharp", - "WifiTethering", - "WifiTetheringError", - "WifiTetheringErrorOutlined", - "WifiTetheringErrorRounded", - "WifiTetheringErrorSharp", - "WifiTetheringErrorTwoTone", - "WifiTetheringOff", - "WifiTetheringOffOutlined", - "WifiTetheringOffRounded", - "WifiTetheringOffSharp", - "WifiTetheringOffTwoTone", - "WifiTetheringOutlined", - "WifiTetheringRounded", - "WifiTetheringSharp", - "WifiTetheringTwoTone", - "WifiTwoTone", - "WindPower", - "WindPowerOutlined", - "WindPowerRounded", - "WindPowerSharp", - "WindPowerTwoTone", - "Window", - "WindowOutlined", - "WindowRounded", - "WindowSharp", - "WindowTwoTone", - "WineBar", - "WineBarOutlined", - "WineBarRounded", - "WineBarSharp", - "WineBarTwoTone", - "Woman", - "Woman2", - "Woman2Outlined", - "Woman2Rounded", - "Woman2Sharp", - "Woman2TwoTone", - "WomanOutlined", - "WomanRounded", - "WomanSharp", - "WomanTwoTone", - "Work", - "WorkHistory", - "WorkHistoryOutlined", - "WorkHistoryRounded", - "WorkHistorySharp", - "WorkHistoryTwoTone", - "WorkOff", - "WorkOffOutlined", - "WorkOffRounded", - "WorkOffSharp", - "WorkOffTwoTone", - "WorkOutline", - "WorkOutlineOutlined", - "WorkOutlineRounded", - "WorkOutlineSharp", - "WorkOutlineTwoTone", - "WorkOutlined", - "WorkRounded", - "WorkSharp", - "WorkTwoTone", - "WorkspacePremium", - "WorkspacePremiumOutlined", - "WorkspacePremiumRounded", - "WorkspacePremiumSharp", - "WorkspacePremiumTwoTone", - "Workspaces", - "WorkspacesOutlined", - "WorkspacesRounded", - "WorkspacesSharp", - "WorkspacesTwoTone", - "WrapText", - "WrapTextOutlined", - "WrapTextRounded", - "WrapTextSharp", - "WrapTextTwoTone", - "WrongLocation", - "WrongLocationOutlined", - "WrongLocationRounded", - "WrongLocationSharp", - "WrongLocationTwoTone", - "Wysiwyg", - "WysiwygOutlined", - "WysiwygRounded", - "WysiwygSharp", - "WysiwygTwoTone", - "X", - "Yard", - "YardOutlined", - "YardRounded", - "YardSharp", - "YardTwoTone", - "YouTube", - "YoutubeSearchedFor", - "YoutubeSearchedForOutlined", - "YoutubeSearchedForRounded", - "YoutubeSearchedForSharp", - "YoutubeSearchedForTwoTone", - "ZoomIn", - "ZoomInMap", - "ZoomInMapOutlined", - "ZoomInMapRounded", - "ZoomInMapSharp", - "ZoomInMapTwoTone", - "ZoomInOutlined", - "ZoomInRounded", - "ZoomInSharp", - "ZoomInTwoTone", - "ZoomOut", - "ZoomOutMap", - "ZoomOutMapOutlined", - "ZoomOutMapRounded", - "ZoomOutMapSharp", - "ZoomOutMapTwoTone", - "ZoomOutOutlined", - "ZoomOutRounded", - "ZoomOutSharp", - "ZoomOutTwoTone" -] diff --git a/packages/iconography/src/index.ts b/packages/iconography/src/index.ts deleted file mode 100644 index 279bdb7..0000000 --- a/packages/iconography/src/index.ts +++ /dev/null @@ -1,107 +0,0 @@ -/* WordPress Dependencies */ -import { registerFormatType } from '@wordpress/rich-text'; - -/* Internal Dependencies */ -import { IconToolbarButton } from './IconToolbarButton'; -import { getIconOptions, selectIconAtCurrentCursor } from './utils'; - -/* Types */ -import type { IconGroup } from './types'; -import domReady from '@wordpress/dom-ready'; - -/** - * The supported icon groups. - */ -export const iconGroups: IconGroup[] = [ - { - title: 'Outlined', - name: 'content-only/ms-outlined', - className: 'material-symbols-outlined', - tagName: 'span', - edit: IconToolbarButton, - options: getIconOptions( 'Outlined' ), - interactive: false, - }, - { - title: 'Rounded', - name: 'content-only/ms-rounded', - className: 'material-symbols-rounded', - tagName: 'span', - edit: () => {}, // only render the button on the first icon group. It contains markup for evertything in a grouped layout. - options: getIconOptions( 'Rounded' ), - interactive: false, - }, - { - title: 'Sharp', - name: 'content-only/ms-sharp', - className: 'material-symbols-sharp', - tagName: 'span', - options: getIconOptions( 'Sharp' ), - edit: () => {}, // only render the button on the first icon group. It contains markup for evertything in a grouped layout. - interactive: false, - }, -]; - -/** - * Keydown event listener for handling the selection of an icon at the current cursor. - * @param {KeyboardEvent} event The keyboard event. - */ -export const handleKeyDown = ( event: KeyboardEvent ) => { - switch ( event.key ) { - case 'ArrowLeft': - case 'Backspace': - case 'Delete': - selectIconAtCurrentCursor(); - break; - default: - break; - } -}; - -/** - * Handle keyup event for ArrowRight. - * @param {KeyboardEvent} event The keyboard event. - */ -export const handleKeyUp = ( event: KeyboardEvent ) => { - if ( 'ArrowRight' === event.key ) { - const { selection, icon } = selectIconAtCurrentCursor(); - // Move the cursor one-right after the icon. - if ( selection && icon ) { - selection.setPosition( icon, 1 ); - selection.selectAllChildren( icon ); - } - } -}; - -/** - * Handles the key event for Iconography. - * @param {KeyboardEvent} event The keyboard event. - */ -export const handleKeyEvent = ( event: KeyboardEvent ) => { - switch ( event.type ) { - case 'keydown': - handleKeyDown( event ); - break; - case 'keyup': - handleKeyUp( event ); - break; - default: - break; - } -}; - -/** - * Registers the formats, and the event listeners required for Iconography. - */ -const registerIconography = () => { - iconGroups.forEach( ( iconGroup ) => { - registerFormatType( iconGroup.name, iconGroup ); - } ); - - // ArrowLeft, Backspace, and Delete need to be handled on KeyDown, because the selection is updated before the event fires. - document.addEventListener( 'keydown', handleKeyEvent ); - // ArrowRight needs a special case for KeyUp, because the selection needs to happen after the event has moved the cursor into the next character. - document.addEventListener( 'keyup', handleKeyEvent ); -}; - -domReady( registerIconography ); diff --git a/packages/iconography/src/index.tsx b/packages/iconography/src/index.tsx new file mode 100644 index 0000000..67c28d0 --- /dev/null +++ b/packages/iconography/src/index.tsx @@ -0,0 +1,90 @@ +import React, { ComponentProps } from 'react'; + +/* WordPress Dependencies */ +import domReady from '@wordpress/dom-ready'; +import { registerFormatType } from '@wordpress/rich-text'; +import { registerBlockType } from '@wordpress/blocks'; +import { BlockControls } from '@wordpress/block-editor'; + +/* Internal deps */ +import metadata from './block/block.json'; +import { Edit } from './block/Edit'; +import { Save } from './block/Save'; +import { IconToolbarButton } from './IconToolbarButton'; +import { getIconGroups, selectIconAtCurrentCursor } from './utils'; + +/* Types */ +import type { IconGroup } from './types'; + +export const handleKeyDown = + ( iconGroups: IconGroup[] | undefined ) => ( event: KeyboardEvent ) => { + switch ( event.key ) { + case 'ArrowLeft': + case 'Backspace': + case 'Delete': + selectIconAtCurrentCursor( iconGroups ); + break; + default: + break; + } + }; + +export const handleKeyUp = + ( iconGroups: IconGroup[] | undefined ) => ( event: KeyboardEvent ) => { + if ( 'ArrowRight' === event.key ) { + const { selection, icon } = selectIconAtCurrentCursor( iconGroups ); + // Move the cursor one-right after the icon. + if ( selection && icon ) { + selection.setPosition( icon, 1 ); + selection.selectAllChildren( icon ); + } + } + }; + +export const handleKeyEvent = + ( iconGroups: IconGroup[] | undefined ) => ( event: KeyboardEvent ) => { + switch ( event.type ) { + case 'keydown': + handleKeyDown( iconGroups )( event ); + break; + case 'keyup': + handleKeyUp( iconGroups )( event ); + break; + default: + break; + } + }; + +export const registerIconography = () => { + const iconGroups = getIconGroups(); + if ( ! iconGroups ) { + return; + } + + iconGroups.forEach( ( iconGroup, index ) => { + if ( index === 0 ) { + iconGroup.edit = ( + props: ComponentProps< typeof IconToolbarButton > + ) => ( + + + + ); + } + registerFormatType( iconGroup.name, iconGroup ); + } ); + + // ArrowLeft, Backspace, and Delete need to be handled on KeyDown, because the selection is updated before the event fires. + document.addEventListener( 'keydown', handleKeyEvent( iconGroups ) ); + // ArrowRight needs a special case for KeyUp, because the selection needs to happen after the event has moved the cursor into the next character. + document.addEventListener( 'keyup', handleKeyEvent( iconGroups ) ); +}; + +domReady( () => { + registerIconography(); +} ); + +registerBlockType( metadata, { + edit: Edit, + save: Save, +} ); diff --git a/packages/iconography/src/readme.md b/packages/iconography/src/readme.md deleted file mode 100644 index 44ffbdd..0000000 --- a/packages/iconography/src/readme.md +++ /dev/null @@ -1,7 +0,0 @@ -# Iconography - -The data for the iconography is defined here _instead_ of deriving it directly from -the MUI-Symbols package. This is because if we import all the MUI-Symbols the bundle -size is _massive_ where we don't actually need any of the SVG elements. As a result, -we define the names of all the supported icons. This package will need to be updated -periodically to ensure it is in sync with the MUI-Symbols package. diff --git a/packages/iconography/src/tests/IconPanel.test.tsx b/packages/iconography/src/tests/IconPanel.test.tsx index f191cea..1e9eee0 100644 --- a/packages/iconography/src/tests/IconPanel.test.tsx +++ b/packages/iconography/src/tests/IconPanel.test.tsx @@ -7,7 +7,6 @@ import { IconPanel } from '../IconPanel'; jest.mock( '../utils', () => ( { generateRichTextFormat: jest.fn(), - getIconOptions: jest.fn(), } ) ); const iconGroup = { @@ -46,6 +45,19 @@ describe( 'IconPanel', () => { ).toMatchSnapshot(); } ); + test( 'search term filters icons', () => { + render( + + ); + + expect( screen.queryByText( 'accessibility' ) ).toBe( null ); + expect( screen.queryByText( 'add' ) ).not.toBe( null ); + } ); + test( 'clicking icon triggers onClick', () => { const onClick = jest.fn(); render( diff --git a/packages/iconography/src/tests/__snapshots__/IconPanel.test.tsx.snap b/packages/iconography/src/tests/__snapshots__/IconPanel.test.tsx.snap index 47d34d6..6776fbf 100644 --- a/packages/iconography/src/tests/__snapshots__/IconPanel.test.tsx.snap +++ b/packages/iconography/src/tests/__snapshots__/IconPanel.test.tsx.snap @@ -30,15 +30,15 @@ exports[`IconPanel rendered IconPanel matches snapshot 1`] = ` />